diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 6c491936..00000000 --- a/Dockerfile +++ /dev/null @@ -1,42 +0,0 @@ -# Dockerfile for Dereth Tracker application -# Base image: lightweight Python runtime -FROM python:3.12-slim - -## Set application working directory -WORKDIR /app - -# Upgrade pip and install required Python packages without caching -RUN python -m pip install --upgrade pip && \ - pip install --no-cache-dir \ - fastapi \ - uvicorn \ - pydantic \ - websockets \ - databases[postgresql] \ - sqlalchemy \ - alembic \ - psycopg2-binary \ - httpx - -## Copy application source code and migration scripts into container -COPY static/ /app/static/ -COPY main.py /app/main.py -COPY db.py /app/db.py -COPY db_async.py /app/db_async.py -COPY alembic.ini /app/alembic.ini -COPY alembic/ /app/alembic/ -COPY Dockerfile /Dockerfile -## Expose the application port to host -EXPOSE 8765 - -## Default environment variables for application configuration -ENV DATABASE_URL=postgresql://postgres:password@db:5432/dereth \ - DB_MAX_SIZE_MB=2048 \ - DB_RETENTION_DAYS=7 \ - DB_MAX_SQL_LENGTH=1000000000 \ - DB_MAX_SQL_VARIABLES=32766 \ - DB_WAL_AUTOCHECKPOINT_PAGES=1000 \ - SHARED_SECRET=your_shared_secret - -## Launch the FastAPI app using Uvicorn -CMD ["uvicorn","main:app","--host","0.0.0.0","--port","8765","--reload","--workers","1","--no-access-log","--log-level","warning"] diff --git a/Makefile b/Makefile index 154d9085..1358d3a3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,2 @@ -# Reformat Python code using Black formatter -.PHONY: reformat reformat: - black *.py + black *py diff --git a/README.md b/README.md index ecc22f92..a4d1aaca 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Dereth Tracker -Dereth Tracker is a real-time telemetry service for the world of Dereth. It collects player data, stores it in a PostgreSQL (TimescaleDB) database for efficient time-series storage, provides a live map interface, and includes a comprehensive inventory management system for tracking and searching character equipment. +Dereth Tracker is a real-time telemetry service for the world of Dereth. It collects player data, stores it in a SQLite database, and provides both a live map interface and an analytics dashboard. ## Table of Contents - [Overview](#overview) @@ -12,59 +12,39 @@ Dereth Tracker is a real-time telemetry service for the world of Dereth. It coll - [API Reference](#api-reference) - [Frontend](#frontend) - [Database Schema](#database-schema) +- [Sample Payload](#sample-payload) - [Contributing](#contributing) ## Overview This project provides: - A FastAPI backend with endpoints for receiving and querying telemetry data. -- PostgreSQL/TimescaleDB-based storage for time-series telemetry and per-character stats. +- SQLite-based storage for snapshots and live state. - A live, interactive map using static HTML, CSS, and JavaScript. -- A comprehensive inventory management system with search capabilities. -- Real-time inventory updates via WebSocket when characters log in/out. -- A sample data generator script (`generate_data.py`) for simulating telemetry snapshots. +- An analytics dashboard for visualizing kills and session metrics. ## Features -- **WebSocket /ws/position**: Stream telemetry snapshots and inventory updates (protected by a shared secret). +- **POST /position**: Submit a telemetry snapshot (protected by a shared secret). - **GET /live**: Fetch active players seen in the last 30 seconds. - **GET /history**: Retrieve historical telemetry data with optional time filtering. - **GET /debug**: Health check endpoint. - **Live Map**: Interactive map interface with panning, zooming, and sorting. -- **Inventory Management**: - - Real-time inventory updates via WebSocket on character login/logout - - Advanced search across all character inventories - - Filter by character, equipment type, material, stats, and more - - Sort by any column with live results - - Track item properties including spells, armor level, damage ratings -- **Suitbuilder**: - - Equipment optimization across multiple character inventories - - Constraint-based search for optimal armor combinations - - Support for primary and secondary armor sets - - Real-time streaming results during long-running searches -- **Portal Tracking**: - - Automatic discovery and tracking of in-game portals - - 1-hour retention for discovered portals - - Coordinate-based uniqueness (rounded to 0.1 precision) - - Real-time portal updates on the map interface -- **Discord Rare Monitor Bot**: Monitors rare discoveries and posts filtered notifications to Discord channels -- **Sample Data Generator**: `generate_data.py` sends telemetry snapshots over WebSocket for testing. + - **Analytics Dashboard**: Interactive charts for kills over time and kills per hour using D3.js. ## Requirements -- Python 3.9 or newer (only if running without Docker) -- pip (only if running without Docker) -- Docker & Docker Compose (recommended) +- Python 3.9 or newer +- pip +- (Optional) virtual environment tool (venv) -Python packages (if using local virtualenv): +Python packages: - fastapi - uvicorn - pydantic -- databases -- asyncpg -- sqlalchemy -- websockets # required for sample data generator +- pandas +- matplotlib ## Installation @@ -80,128 +60,33 @@ Python packages (if using local virtualenv): ``` 3. Install dependencies: ```bash - pip install fastapi uvicorn pydantic websockets + pip install fastapi uvicorn pydantic pandas matplotlib ``` ## Configuration - - Configure the plugin shared secret via the `SHARED_SECRET` environment variable (default in code: `"your_shared_secret"`). - - The database connection is controlled by the `DATABASE_URL` environment variable (e.g. `postgresql://postgres:password@db:5432/dereth`). - By default, when using Docker Compose, a TimescaleDB container is provisioned for you. - - If you need to tune Timescale or Postgres settings (retention, checkpoint, etc.), set the corresponding `DB_*` environment variables as documented in `docker-compose.yml`. +- Update the `SHARED_SECRET` in `main.py` to match your plugin (default: `"your_shared_secret"`). +- The SQLite database file `dereth.db` is created in the project root. To change the path, edit `DB_FILE` in `db.py`. ## Usage -### Using Docker (Recommended) - -1. Build and start all services: - ```bash - docker compose up -d - ``` - -2. Rebuild container after code changes: - ```bash - docker compose build --no-cache dereth-tracker - docker compose up -d dereth-tracker - ``` - -3. View logs: - ```bash - docker logs mosswartoverlord-dereth-tracker-1 - docker logs dereth-db - ``` - -### Without Docker - Start the server using Uvicorn: ```bash uvicorn main:app --reload --host 0.0.0.0 --port 8000 ``` - -# Grafana Dashboard UI -```nginx -location /grafana/ { - # Optional: require basic auth on the Grafana UI - auth_basic "Restricted"; - auth_basic_user_file /etc/nginx/.htpasswd; - proxy_pass http://127.0.0.1:3000/; - proxy_http_version 1.1; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - # Inject Grafana service account token for anonymous panel embeds - proxy_set_header Authorization "Bearer "; - # WebSocket support (for live panels) - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - proxy_cache_bypass $http_upgrade; -} -``` - -## NGINX Proxy Configuration - -If you cannot reassign the existing `/live` and `/trails` routes, you can namespace this service under `/api` (or any other prefix) and configure NGINX accordingly. Be sure to forward WebSocket upgrade headers so that `/ws/live` and `/ws/position` continue to work. Example: -```nginx -location /api/ { - proxy_pass http://127.0.0.1:8765/; - proxy_http_version 1.1; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - # WebSocket support - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - proxy_cache_bypass $http_upgrade; -} -``` -Then the browser client (static/script.js) will fetch `/api/live/` and `/api/trails/` to reach this new server. - - - Live Map: `http://localhost:8000/` (or `http:///api/` if behind a prefix) - - Grafana UI: `http://localhost:3000/grafana/` (or `http:///grafana/` if proxied under that path) - -### Frontend Configuration - -- In `static/script.js`, the constant `API_BASE` controls where live/trails data and WebSocket `/ws/live` are fetched. By default: - ```js - const API_BASE = '/api'; - ``` - Update `API_BASE` if you mount the service under a different path or serve it at root. - -### Debugging WebSockets - -- Server logs now print every incoming WebSocket frame in `main.py`: - - `[WS-PLUGIN RX] : ` for plugin messages on `/ws/position` - - `[WS-LIVE RX] : ` for browser messages on `/ws/live` -- Use these logs to verify messages and troubleshoot handshake failures. - -### Styling Adjustments - -- Chat input bar is fixed at the bottom of the chat window (`.chat-form { position:absolute; bottom:0; }`). -- Input text and placeholder are white for readability (`.chat-input, .chat-input::placeholder { color:#fff; }`). -- Incoming chat messages forced white via `.chat-messages div { color:#fff !important; }`. +- Live Map: `http://localhost:8000/` +- Analytics Dashboard: `http://localhost:8000/graphs.html` ## API Reference -### WebSocket /ws/position -Stream telemetry snapshots over a WebSocket connection. Provide your shared secret either as a query parameter or WebSocket header: - -``` -ws://:/ws/position?secret= -``` -or -``` -X-Plugin-Secret: -``` - -After connecting, send JSON messages matching the `TelemetrySnapshot` schema. For example: +### POST /position +Submit a JSON telemetry snapshot. Requires header `X-Plugin-Secret: `. +**Request Body Example:** ```json { - "type": "telemetry", "character_name": "Dunking Rares", "char_tag": "moss", "session_id": "dunk-20250422-xyz", @@ -211,62 +96,14 @@ After connecting, send JSON messages matching the `TelemetrySnapshot` schema. Fo "z": 10.2, "kills": 42, "deaths": 1, + "rares_found": 2, "prismatic_taper_count": 17, "vt_state": "Combat", "kills_per_hour": "N/A", "onlinetime": "00:05:00" - } -``` - - Each message above is sent as its own JSON object over the WebSocket (one frame per event). When you want to report a rare spawn, send a standalone `rare` event instead of embedding rare counts in telemetry. For example: - - ```json - { - "type": "rare", - "timestamp": "2025-04-22T13:48:00Z", - "character_name": "MyCharacter", - "name": "Golden Gryphon", - "ew": 150.5, - "ns": 350.7, - "z": 5.0, - "additional_info": "first sighting of the day" - } - ``` - -### Chat messages -You can also send chat envelopes over the same WebSocket to display messages in the browser. Fields: -- `type`: must be "chat" -- `character_name`: target player name -- `text`: message content -- `color` (optional): CSS color string (e.g. "#ff8800"); if sent as an integer (0xRRGGBB), it will be converted to hex. - -Example chat payload: -```json -{ - "type": "chat", - "character_name": "MyCharacter", - "text": "Hello world!", - "color": "#88f" } ``` -## Event Payload Formats - -For a complete reference of JSON payloads accepted by the backend (over `/ws/position`), see the file `EVENT_FORMATS.json` in the project root. It contains example schemas for: - - **Telemetry events** (`type`: "telemetry") - - **Spawn events** (`type`: "spawn") - - **Chat events** (`type`: "chat") - - **Rare events** (`type`: "rare") - - **Inventory events** (`type`: "inventory") - -Notes on payload changes: - - Spawn events no longer require the `z` coordinate; if omitted, the server defaults it to 0.0. - Coordinates (`ew`, `ns`, `z`) may be sent as JSON numbers or strings; the backend will coerce them to floats. - - Telemetry events have removed the `latency_ms` field; please omit it from your payloads. - - Inventory events are sent automatically on character login/logout containing complete inventory data. - -Each entry shows all required and optional fields, their types, and example values. - ### GET /live Returns active players seen within the last 30 seconds: @@ -294,119 +131,17 @@ Response: ## Frontend - **Live Map**: `static/index.html` โ€“ Real-time player positions on a map. -- **Inventory Search**: `static/inventory.html` โ€“ Search and browse character inventories with advanced filtering. +- **Analytics Dashboard**: `static/graphs.html` โ€“ Interactive charts powered by [D3.js](https://d3js.org/). ## Database Schema -This service uses PostgreSQL with the TimescaleDB extension to store telemetry time-series data, -aggregate character statistics, and a separate inventory database for equipment management. +- **telemetry_log**: Stored history of snapshots. +- **live_state**: Current snapshot per character (upserted). -### Telemetry Database Tables: +## Sample Payload -- **telemetry_events** (hypertable): - - `id` (PK, serial) - - `character_name` (text, indexed) - - `char_tag` (text, nullable) - - `session_id` (text, indexed) - - `timestamp` (timestamptz, indexed) - - `ew`, `ns`, `z` (float) - - `kills`, `deaths`, `rares_found`, `prismatic_taper_count` (integer) - - `kills_per_hour` (float) - - `onlinetime`, `vt_state` (text) - - Optional metrics: `mem_mb`, `cpu_pct`, `mem_handles`, `latency_ms` (float) - -- **char_stats**: - - `character_name` (text, PK) - - `total_kills` (integer) - -- **rare_stats**: - - `character_name` (text, PK) - - `total_rares` (integer) - -- **rare_stats_sessions**: - - `character_name`, `session_id` (composite PK) - - `session_rares` (integer) - -- **spawn_events**: - - `id` (PK, serial) - - `character_name` (text) - - `mob` (text) - - `timestamp` (timestamptz) - - `ew`, `ns`, `z` (float) - -- **rare_events**: - - `id` (PK, serial) - - `character_name` (text) - - `name` (text) - - `timestamp` (timestamptz) - - `ew`, `ns`, `z` (float) - -- **portals**: - - `id` (PK, serial) - - `portal_name` (text) - - `ns`, `ew`, `z` (float coordinates) - - `discovered_at` (timestamptz, indexed) - - `discovered_by` (text) - - Unique constraint: `ROUND(ns::numeric, 1), ROUND(ew::numeric, 1)` - -### Inventory Database Tables: - -- **items**: - - `id` (PK, serial) - - `character_name` (text, indexed) - - `item_id` (bigint) - - `name` (text) - - `object_class` (integer) - - `icon`, `value`, `burden` (integer) - - `current_wielded_location`, `bonded`, `attuned`, `unique` (various) - - `timestamp` (timestamptz) - -- **item_combat_stats**: - - `item_id` (FK to items.id) - - `armor_level`, `max_damage` (integer) - - `damage_bonus`, `attack_bonus` (float) - - Various defense bonuses - -- **item_enhancements**: - - `item_id` (FK to items.id) - - `material` (varchar) - - `item_set` (varchar) - - `tinks`, `workmanship` (integer/float) - -- **item_spells**: - - `item_id` (FK to items.id) - - `spell_id` (integer) - - `spell_name` (text) - - `is_legendary`, `is_epic` (boolean) - -- **item_raw_data**: - - `item_id` (FK to items.id) - - `int_values`, `double_values`, `string_values`, `bool_values` (JSONB) - - `original_json` (JSONB) +See `test.json` for an example telemetry snapshot. ## Contributing Contributions are welcome! Feel free to open issues or submit pull requests. - -## Roadmap & TODO -For detailed tasks, migration steps, and future enhancements, see [TODO.md](TODO.md). - -### Local Development Database -This service uses PostgreSQL with the TimescaleDB extension. You can configure local development using the provided Docker Compose setup or connect to an external instance: - -1. PostgreSQL/TimescaleDB via Docker Compose (recommended): - - Pros: - - Reproducible, isolated environment out-of-the-box - - No need to install Postgres locally - - Aligns development with production setups - - Cons: - - Additional resource usage (memory, CPU) - - Slightly more complex Docker configuration - -2. External PostgreSQL instance: - - Pros: - - Leverages existing infrastructure - - No Docker overhead - - Cons: - - Requires manual setup and Timescale extension - - Less portable for new contributors diff --git a/alembic.ini b/alembic.ini deleted file mode 100644 index b0e98c44..00000000 --- a/alembic.ini +++ /dev/null @@ -1,39 +0,0 @@ -; Alembic configuration file for database migrations -[alembic] -; Path to migration scripts directory -script_location = alembic -; Default SQLAlchemy URL for migrations (use DATABASE_URL env var to override) -sqlalchemy.url = postgresql://postgres:password@localhost:5432/dereth - -[loggers] -keys = root,sqlalchemy,alembic - -[handlers] -keys = console - -[formatters] -keys = generic - -[logger_root] -level = WARN -handlers = console -qualname = - -[logger_sqlalchemy] -level = WARN -handlers = -qualname = sqlalchemy.engine - -[logger_alembic] -level = INFO -handlers = -qualname = alembic - -[handler_console] -class = StreamHandler -level = NOTSET -args = (sys.stderr,) -formatter = generic - -[formatter_generic] -format = %(levelname)-5.5s [%(name)s] %(message)s \ No newline at end of file diff --git a/alembic/env.py b/alembic/env.py deleted file mode 100644 index 240e1d8d..00000000 --- a/alembic/env.py +++ /dev/null @@ -1,64 +0,0 @@ -"""Alembic environment configuration for database migrations. - -Configures offline and online migration contexts using SQLAlchemy -and the target metadata defined in db_async.metadata. -""" -import os -from logging.config import fileConfig - -from sqlalchemy import engine_from_config, pool -from alembic import context - - # Alembic Config object provides access to values in the .ini file -config = context.config - - # Override sqlalchemy.url with DATABASE_URL environment variable if provided -database_url = os.getenv('DATABASE_URL', config.get_main_option('sqlalchemy.url')) -config.set_main_option('sqlalchemy.url', database_url) - -# Set up Python logging according to config file -if config.config_file_name is not None: - fileConfig(config.config_file_name) - -# add your model's MetaData object here -# for 'autogenerate' support -from db_async import metadata # noqa -target_metadata = metadata - - -def run_migrations_offline(): - """Run migrations in 'offline' mode using literal SQL script generation.""" - url = config.get_main_option('sqlalchemy.url') - context.configure( - url=url, - target_metadata=target_metadata, - literal_binds=True, - dialect_opts={"paramstyle": "named"}, - ) - - with context.begin_transaction(): - context.run_migrations() - - -def run_migrations_online(): - """Run migrations in 'online' mode against a live database connection.""" - connectable = engine_from_config( - config.get_section(config.config_ini_section), - prefix='sqlalchemy.', - poolclass=pool.NullPool, - ) - - with connectable.connect() as connection: - context.configure( - connection=connection, - target_metadata=target_metadata, - ) - - with context.begin_transaction(): - context.run_migrations() - - -if context.is_offline_mode(): - run_migrations_offline() -else: - run_migrations_online() \ No newline at end of file diff --git a/alembic/script.py.mako b/alembic/script.py.mako deleted file mode 100644 index 58bc01a7..00000000 --- a/alembic/script.py.mako +++ /dev/null @@ -1,25 +0,0 @@ -<%# - Alembic migration script template generated by 'alembic revision'. - Edit the upgrade() and downgrade() functions to apply schema changes. -%> -""" -Revision ID: ${up_revision} -Revises: ${down_revision | comma,n} -Create Date: ${create_date} -""" -from alembic import op -import sqlalchemy as sa - -# revision identifiers, used by Alembic. -revision = '${up_revision}' -down_revision = ${repr(down_revision) if down_revision else None} -branch_labels = ${repr(branch_labels) if branch_labels else None} -depends_on = ${repr(depends_on) if depends_on else None} - -def upgrade(): - """Upgrade migrations go here.""" - pass - -def downgrade(): - """Downgrade migrations go here.""" - pass \ No newline at end of file diff --git a/alembic/versions/__init__.py b/alembic/versions/__init__.py deleted file mode 100644 index 8776ed6b..00000000 --- a/alembic/versions/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -""" -This directory will hold Alembic migration scripts. -Each migration filename should follow the naming convention: - _.py -""" \ No newline at end of file diff --git a/db.py b/db.py index e7cc4890..91e97369 100644 --- a/db.py +++ b/db.py @@ -1,59 +1,15 @@ -"""SQLite3 helper module for local telemetry storage. - -Provides functions to initialize the local database schema and save -telemetry snapshots into history and live_state tables. -Enforces WAL mode, size limits, and auto-vacuum for efficient storage. -""" -import os import sqlite3 from typing import Dict -from datetime import datetime, timedelta -# Local SQLite database file name (used when running without TimescaleDB) DB_FILE = "dereth.db" -# Maximum allowed database size (in MB). Defaults to 2048 (2GB). Override via env DB_MAX_SIZE_MB. -MAX_DB_SIZE_MB = int(os.getenv("DB_MAX_SIZE_MB", "2048")) - # Retention window for telemetry history in days (currently not auto-enforced). - # Override via env DB_RETENTION_DAYS for future cleanup scripts. -MAX_RETENTION_DAYS = int(os.getenv("DB_RETENTION_DAYS", "7")) -# SQLite runtime limits customization -DB_MAX_SQL_LENGTH = int(os.getenv("DB_MAX_SQL_LENGTH", "1000000000")) -DB_MAX_SQL_VARIABLES = int(os.getenv("DB_MAX_SQL_VARIABLES", "32766")) -# Number of WAL frames to write before forcing a checkpoint (override via env DB_WAL_AUTOCHECKPOINT_PAGES) -DB_WAL_AUTOCHECKPOINT_PAGES = int(os.getenv("DB_WAL_AUTOCHECKPOINT_PAGES", "1000")) def init_db() -> None: - """ - Initialize local SQLite database schema for telemetry logging. - - - Applies SQLite PRAGMA settings for performance and file size management - - Ensures WAL journaling and auto-vacuum for concurrency and compaction - - Creates telemetry_log for full history and live_state for latest snapshot per character - """ - # Open connection with a longer timeout - # Open connection with extended timeout for schema operations - conn = sqlite3.connect(DB_FILE, timeout=30) - # Bump SQLite runtime limits - conn.setlimit(sqlite3.SQLITE_LIMIT_LENGTH, DB_MAX_SQL_LENGTH) - conn.setlimit(sqlite3.SQLITE_LIMIT_SQL_LENGTH, DB_MAX_SQL_LENGTH) - conn.setlimit(sqlite3.SQLITE_LIMIT_VARIABLE_NUMBER, DB_MAX_SQL_VARIABLES) + """Create tables if they do not exist (extended with kills_per_hour and onlinetime).""" + conn = sqlite3.connect(DB_FILE) c = conn.cursor() - # Enable auto_vacuum FULL and rebuild DB so that deletions shrink the file - # Enable full auto-vacuum to shrink database file on deletes - c.execute("PRAGMA auto_vacuum=FULL;") - conn.commit() - # Rebuild database to apply auto_vacuum changes - c.execute("VACUUM;") - conn.commit() - # Switch to WAL mode for concurrency, adjust checkpointing, and enforce max size - # Configure write-ahead logging for concurrency and performance - c.execute("PRAGMA journal_mode=WAL") - c.execute("PRAGMA synchronous=NORMAL") - # Auto-checkpoint after specified WAL frames to limit WAL file size - c.execute(f"PRAGMA wal_autocheckpoint={DB_WAL_AUTOCHECKPOINT_PAGES}") - # Create history log table for all telemetry snapshots + # History log c.execute( """ CREATE TABLE IF NOT EXISTS telemetry_log ( @@ -76,7 +32,7 @@ def init_db() -> None: """ ) - # Create live_state table for upserts of the most recent snapshot per character + # Live snapshot (upsert) c.execute( """ CREATE TABLE IF NOT EXISTS live_state ( @@ -103,27 +59,11 @@ def init_db() -> None: def save_snapshot(data: Dict) -> None: - """ - Save a telemetry snapshot into the local SQLite database. - - Inserts a full record into telemetry_log (history) and upserts into live_state - for quick lookup of the most recent data per character. - - Respects WAL mode and checkpoint settings on each connection. - """ - # Open new connection with extended timeout for inserting data - conn = sqlite3.connect(DB_FILE, timeout=30) - # Bump SQLite runtime limits on this connection - conn.setlimit(sqlite3.SQLITE_LIMIT_LENGTH, DB_MAX_SQL_LENGTH) - conn.setlimit(sqlite3.SQLITE_LIMIT_SQL_LENGTH, DB_MAX_SQL_LENGTH) - conn.setlimit(sqlite3.SQLITE_LIMIT_VARIABLE_NUMBER, DB_MAX_SQL_VARIABLES) + """Insert snapshot into history and upsert into live_state (with new fields).""" + conn = sqlite3.connect(DB_FILE) c = conn.cursor() - # Ensure WAL mode and checkpointing settings on this connection - c.execute("PRAGMA journal_mode=WAL") - c.execute("PRAGMA synchronous=NORMAL") - c.execute(f"PRAGMA wal_autocheckpoint={DB_WAL_AUTOCHECKPOINT_PAGES}") - # Insert the snapshot into the telemetry_log (history) table + # Insert full history row c.execute( """ INSERT INTO telemetry_log ( @@ -151,7 +91,7 @@ def save_snapshot(data: Dict) -> None: ), ) - # Upsert (insert or update) the latest snapshot into live_state table + # Upsert into live_state c.execute( """ INSERT INTO live_state ( diff --git a/db_async.py b/db_async.py deleted file mode 100644 index 8a5623e7..00000000 --- a/db_async.py +++ /dev/null @@ -1,269 +0,0 @@ -"""Asynchronous database layer for telemetry service using PostgreSQL/TimescaleDB. - -Defines table schemas via SQLAlchemy Core and provides an -initialization function to set up TimescaleDB hypertable. -""" -import os -import sqlalchemy -from datetime import datetime, timedelta, timezone -from databases import Database -from sqlalchemy import MetaData, Table, Column, Integer, String, Float, DateTime, text -from sqlalchemy import Index, BigInteger, JSON, Boolean, UniqueConstraint - -# Environment: Postgres/TimescaleDB connection URL -DATABASE_URL = os.getenv("DATABASE_URL", "postgresql://postgres:password@localhost:5432/dereth") -# Async database client with explicit connection pool configuration and query timeout -database = Database(DATABASE_URL, min_size=5, max_size=100, command_timeout=120) -# Metadata for SQLAlchemy Core -# SQLAlchemy metadata container for table definitions -metadata = MetaData() - -# --- Table Definitions --- -# Table for storing raw telemetry snapshots at scale (converted to hypertable) -telemetry_events = Table( - # Time-series hypertable storing raw telemetry snapshots from plugins - "telemetry_events", - metadata, - Column("character_name", String, nullable=False, index=True), - Column("char_tag", String, nullable=True), - Column("session_id", String, nullable=False, index=True), - Column("timestamp", DateTime(timezone=True), nullable=False, index=True), - Column("ew", Float, nullable=False), - Column("ns", Float, nullable=False), - Column("z", Float, nullable=False), - Column("kills", Integer, nullable=False), - Column("kills_per_hour", Float, nullable=True), - Column("onlinetime", String, nullable=True), - Column("deaths", Integer, nullable=False), - Column("total_deaths", Integer, nullable=True), - Column("rares_found", Integer, nullable=False), - Column("prismatic_taper_count", Integer, nullable=False), - Column("vt_state", String, nullable=True), - # New telemetry metrics - Column("mem_mb", Float, nullable=True), - Column("cpu_pct", Float, nullable=True), - Column("mem_handles", Integer, nullable=True), - Column("latency_ms", Float, nullable=True), -) -# Composite index to accelerate Grafana queries filtering by character_name then ordering by timestamp -Index( - 'ix_telemetry_events_char_ts', - telemetry_events.c.character_name, - telemetry_events.c.timestamp -) - -# Table for persistent total kills per character -char_stats = Table( - # Stores cumulative kills per character in a single-row upsert table - "char_stats", - metadata, - Column("character_name", String, primary_key=True), - Column("total_kills", Integer, nullable=False, default=0), -) - -# Table for persistent total rare counts per character -rare_stats = Table( - # Stores cumulative rare event counts per character - "rare_stats", - metadata, - Column("character_name", String, primary_key=True), - Column("total_rares", Integer, nullable=False, default=0), -) - -rare_stats_sessions = Table( - # Stores per-session rare counts; composite PK (character_name, session_id) - "rare_stats_sessions", - metadata, - Column("character_name", String, primary_key=True), - Column("session_id", String, primary_key=True), - Column("session_rares", Integer, nullable=False, default=0), -) -# Table for recording spawn events (mob creates) for heatmap analysis -spawn_events = Table( - # Records individual mob spawn occurrences for heatmap and analysis - "spawn_events", - metadata, - Column("id", Integer, primary_key=True), - Column("character_name", String, nullable=False), - Column("mob", String, nullable=False), - Column("timestamp", DateTime(timezone=True), nullable=False, index=True), - Column("ew", Float, nullable=False), - Column("ns", Float, nullable=False), - Column("z", Float, nullable=False), -) -# Table for recording individual rare spawn events for analysis -rare_events = Table( - # Records individual rare mob events for detailed analysis and heatmaps - "rare_events", - metadata, - Column("id", Integer, primary_key=True), - Column("character_name", String, nullable=False), - Column("name", String, nullable=False), - Column("timestamp", DateTime(timezone=True), nullable=False, index=True), - Column("ew", Float, nullable=False), - Column("ns", Float, nullable=False), - Column("z", Float, nullable=False), -) - -character_inventories = Table( - # Stores complete character inventory snapshots with searchable fields - "character_inventories", - metadata, - Column("id", Integer, primary_key=True), - Column("character_name", String, nullable=False, index=True), - Column("item_id", BigInteger, nullable=False), - Column("timestamp", DateTime(timezone=True), nullable=False), - # Extracted searchable fields - Column("name", String), - Column("icon", Integer), - Column("object_class", Integer, index=True), - Column("value", Integer, index=True), - Column("burden", Integer), - Column("has_id_data", Boolean), - # Complete item data as JSONB - Column("item_data", JSON, nullable=False), - # Unique constraint to prevent duplicate items per character - UniqueConstraint("character_name", "item_id", name="uq_char_item"), -) - -# Portals table with coordinate-based uniqueness and 1-hour retention -portals = Table( - # Stores unique portals by coordinates with 1-hour retention - "portals", - metadata, - Column("id", Integer, primary_key=True), - Column("portal_name", String, nullable=False), - Column("ns", Float, nullable=False), - Column("ew", Float, nullable=False), - Column("z", Float, nullable=False), - Column("discovered_at", DateTime(timezone=True), nullable=False, index=True), - Column("discovered_by", String, nullable=False), -) - -# Server health monitoring tables -server_health_checks = Table( - # Time-series data for server health checks - "server_health_checks", - metadata, - Column("id", Integer, primary_key=True), - Column("server_name", String, nullable=False, index=True), - Column("server_address", String, nullable=False), - Column("timestamp", DateTime(timezone=True), nullable=False, default=sqlalchemy.func.now()), - Column("status", String(10), nullable=False), # 'up' or 'down' - Column("latency_ms", Float, nullable=True), - Column("player_count", Integer, nullable=True), -) - -server_status = Table( - # Current server status and uptime tracking - "server_status", - metadata, - Column("server_name", String, primary_key=True), - Column("current_status", String(10), nullable=False), - Column("last_seen_up", DateTime(timezone=True), nullable=True), - Column("last_restart", DateTime(timezone=True), nullable=True), - Column("total_uptime_seconds", BigInteger, default=0), - Column("last_check", DateTime(timezone=True), nullable=True), - Column("last_latency_ms", Float, nullable=True), - Column("last_player_count", Integer, nullable=True), -) - -# Index for efficient server health check queries -Index( - 'ix_server_health_checks_name_ts', - server_health_checks.c.server_name, - server_health_checks.c.timestamp.desc() -) - -async def init_db_async(): - """Initialize PostgreSQL/TimescaleDB schema and hypertable. - - Creates all defined tables and ensures the TimescaleDB extension is - installed. Converts telemetry_events table into a hypertable for efficient - time-series data storage. - """ - # Create tables in Postgres - engine = sqlalchemy.create_engine(DATABASE_URL) - # Reflects metadata definitions into actual database tables via SQLAlchemy - metadata.create_all(engine) - # Ensure TimescaleDB extension is installed and telemetry_events is a hypertable - # Run DDL in autocommit mode so errors don't abort subsequent statements - try: - with engine.connect().execution_options(isolation_level="AUTOCOMMIT") as conn: - # Install extension if missing - try: - conn.execute(text("CREATE EXTENSION IF NOT EXISTS timescaledb")) - except Exception as e: - print(f"Warning: failed to create extension timescaledb: {e}") - # Convert to hypertable, migrating existing data and skipping default index creation - try: - conn.execute(text( - "SELECT create_hypertable('telemetry_events', 'timestamp', " - "if_not_exists => true, migrate_data => true, create_default_indexes => false)" - )) - except Exception as e: - print(f"Warning: failed to create hypertable telemetry_events: {e}") - except Exception as e: - print(f"Warning: timescale extension/hypertable setup failed: {e}") - # Ensure composite index exists for efficient time-series queries by character - try: - with engine.connect() as conn: - conn.execute(text( - "CREATE INDEX IF NOT EXISTS ix_telemetry_events_char_ts " - "ON telemetry_events (character_name, timestamp)" - )) - except Exception as e: - print(f"Warning: failed to create composite index ix_telemetry_events_char_ts: {e}") - # Add retention and compression policies on the hypertable - try: - with engine.connect().execution_options(isolation_level="AUTOCOMMIT") as conn: - # Retain only recent data (default 7 days or override via DB_RETENTION_DAYS) - days = int(os.getenv('DB_RETENTION_DAYS', '7')) - conn.execute(text( - f"SELECT add_retention_policy('telemetry_events', INTERVAL '{days} days')" - )) - # Compress chunks older than 1 day - conn.execute(text( - "SELECT add_compression_policy('telemetry_events', INTERVAL '1 day')" - )) - except Exception as e: - print(f"Warning: failed to set retention/compression policies: {e}") - - # Create unique constraint on rounded portal coordinates - try: - with engine.connect().execution_options(isolation_level="AUTOCOMMIT") as conn: - # Drop old portal_discoveries table if it exists - conn.execute(text("DROP TABLE IF EXISTS portal_discoveries CASCADE")) - - # Create unique constraint on rounded coordinates for the new portals table - conn.execute(text( - """CREATE UNIQUE INDEX IF NOT EXISTS unique_portal_coords - ON portals (ROUND(ns::numeric, 2), ROUND(ew::numeric, 2))""" - )) - - # Create index on coordinates for efficient lookups - conn.execute(text( - "CREATE INDEX IF NOT EXISTS idx_portals_coords ON portals (ns, ew)" - )) - - print("Portal table indexes and constraints created successfully") - except Exception as e: - print(f"Warning: failed to create portal table constraints: {e}") - -async def cleanup_old_portals(): - """Clean up portals older than 1 hour.""" - try: - cutoff_time = datetime.now(timezone.utc) - timedelta(hours=1) - - # Delete old portals - result = await database.execute( - "DELETE FROM portals WHERE discovered_at < :cutoff_time", - {"cutoff_time": cutoff_time} - ) - - print(f"Cleaned up {result} portals older than 1 hour") - return result - - except Exception as e: - print(f"Warning: failed to cleanup old portals: {e}") - return 0 \ No newline at end of file diff --git a/discord-rare-monitor/Dockerfile b/discord-rare-monitor/Dockerfile deleted file mode 100644 index d0480ff9..00000000 --- a/discord-rare-monitor/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -# Discord Rare Monitor Bot - Dockerfile -FROM python:3.12-slim - -# Set working directory -WORKDIR /app - -# Install Python dependencies -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -# Copy application code -COPY discord_rare_monitor.py . -COPY test_websocket.py . -COPY icon_mapping.py . - -# Copy icons directory -COPY icons/ ./icons/ - -# Default environment variables -ENV DISCORD_RARE_BOT_TOKEN="" \ - DERETH_TRACKER_WS_URL="ws://dereth-tracker:8765/ws/position" \ - COMMON_RARE_CHANNEL_ID="1355328792184226014" \ - GREAT_RARE_CHANNEL_ID="1353676584334131211" \ - LOG_LEVEL="INFO" - -# Run the bot -CMD ["python", "discord_rare_monitor.py"] \ No newline at end of file diff --git a/discord-rare-monitor/README.md b/discord-rare-monitor/README.md deleted file mode 100644 index 4a785f3e..00000000 --- a/discord-rare-monitor/README.md +++ /dev/null @@ -1,95 +0,0 @@ -# Discord Rare Monitor Bot - -A Discord bot that monitors the Dereth Tracker WebSocket stream for rare discoveries and posts filtered notifications to Discord channels. - -## Features - -- **Real-time Monitoring**: Connects to Dereth Tracker WebSocket for instant rare notifications -- **Smart Classification**: Automatically classifies rares as "common" or "great" based on keywords -- **Rich Embeds**: Posts formatted Discord embeds with location and timestamp information -- **Dual Channels**: Posts to separate channels for common and great rares -- **Robust Connection**: Automatic reconnection with exponential backoff on connection failures - -## Rare Classification - -### Common Rares -Items containing these keywords (except "Frore Crystal"): -- Crystal -- Jewel -- Pearl -- Elixir -- Kit - -### Great Rares -All other rare discoveries not classified as common. - -## Configuration - -The bot is configured via environment variables: - -| Variable | Default | Description | -|----------|---------|-------------| -| `DISCORD_RARE_BOT_TOKEN` | Required | Discord bot token | -| `DERETH_TRACKER_WS_URL` | `ws://dereth-tracker:8765/ws/position` | WebSocket URL | -| `COMMON_RARE_CHANNEL_ID` | `1355328792184226014` | Discord channel for common rares | -| `GREAT_RARE_CHANNEL_ID` | `1353676584334131211` | Discord channel for great rares | -| `LOG_LEVEL` | `INFO` | Logging level (DEBUG, INFO, WARNING, ERROR) | - -## Docker Usage - -The bot is designed to run as a Docker container alongside the Dereth Tracker services: - -```bash -# Build and start all services including the Discord bot -docker-compose up -d - -# View bot logs -docker-compose logs discord-rare-monitor - -# Restart just the bot -docker-compose restart discord-rare-monitor -``` - -## Manual Setup - -1. Create a Discord application and bot at https://discord.com/developers/applications -2. Get the bot token and invite the bot to your Discord server -3. Set the `DISCORD_RARE_BOT_TOKEN` environment variable -4. Ensure the bot has permissions to send messages in the target channels - -## Message Format - -The bot listens for WebSocket messages with this structure: - -```json -{ - "type": "rare", - "character_name": "PlayerName", - "name": "Dark Heart", - "timestamp": "2025-06-22T16:00:00Z", - "ew": 12.34, - "ns": -56.78, - "z": 10.5 -} -``` - -## Architecture - -- **WebSocket Client**: Connects to Dereth Tracker's WebSocket stream -- **Message Filter**: Only processes `{"type": "rare"}` messages -- **Classifier**: Determines rare type based on name keywords -- **Discord Client**: Posts formatted embeds to appropriate channels -- **Retry Logic**: Automatic reconnection with exponential backoff - -## Dependencies - -- `discord.py>=2.3.0` - Discord API client -- `websockets>=11.0.0` - WebSocket client library - -## Benefits - -- **Zero Duplication**: Each rare generates exactly one notification -- **Real-time**: Instant notifications via WebSocket stream -- **Lightweight**: Minimal resource usage (~50MB RAM) -- **Reliable**: Robust error handling and reconnection logic -- **Integrated**: Seamlessly works with existing Dereth Tracker infrastructure \ No newline at end of file diff --git a/discord-rare-monitor/config.py b/discord-rare-monitor/config.py deleted file mode 100644 index 60d826d7..00000000 --- a/discord-rare-monitor/config.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -Configuration module for Discord Rare Monitor Bot. -Centralizes environment variable handling and configuration constants. -""" - -import os -from typing import Optional - - -class Config: - """Configuration class for Discord Rare Monitor Bot.""" - - # Discord Configuration - DISCORD_TOKEN: str = os.getenv('DISCORD_RARE_BOT_TOKEN', '') - COMMON_RARE_CHANNEL_ID: int = int(os.getenv('COMMON_RARE_CHANNEL_ID', '1355328792184226014')) - GREAT_RARE_CHANNEL_ID: int = int(os.getenv('GREAT_RARE_CHANNEL_ID', '1353676584334131211')) - - # WebSocket Configuration - WEBSOCKET_URL: str = os.getenv('DERETH_TRACKER_WS_URL', 'ws://dereth-tracker:8765/ws/position') - - # Logging Configuration - LOG_LEVEL: str = os.getenv('LOG_LEVEL', 'INFO').upper() - - # Rare Classification Configuration - COMMON_RARE_KEYWORDS: list = ["Crystal", "Jewel", "Pearl", "Elixir", "Kit"] - - # WebSocket Retry Configuration - INITIAL_RETRY_DELAY: int = 5 # seconds - MAX_RETRY_DELAY: int = 300 # 5 minutes - - @classmethod - def validate(cls) -> list: - """Validate configuration and return list of errors.""" - errors = [] - - if not cls.DISCORD_TOKEN: - errors.append("DISCORD_RARE_BOT_TOKEN environment variable is required") - - if not cls.WEBSOCKET_URL: - errors.append("DERETH_TRACKER_WS_URL environment variable is required") - - try: - cls.COMMON_RARE_CHANNEL_ID = int(cls.COMMON_RARE_CHANNEL_ID) - except (ValueError, TypeError): - errors.append("COMMON_RARE_CHANNEL_ID must be a valid integer") - - try: - cls.GREAT_RARE_CHANNEL_ID = int(cls.GREAT_RARE_CHANNEL_ID) - except (ValueError, TypeError): - errors.append("GREAT_RARE_CHANNEL_ID must be a valid integer") - - return errors - - @classmethod - def log_config(cls, logger): - """Log current configuration (excluding sensitive data).""" - logger.info("๐Ÿ”ง Discord Rare Monitor Configuration:") - logger.info(f" WebSocket URL: {cls.WEBSOCKET_URL}") - logger.info(f" Common Rare Channel ID: {cls.COMMON_RARE_CHANNEL_ID}") - logger.info(f" Great Rare Channel ID: {cls.GREAT_RARE_CHANNEL_ID}") - logger.info(f" Log Level: {cls.LOG_LEVEL}") - logger.info(f" Common Keywords: {cls.COMMON_RARE_KEYWORDS}") - logger.info(f" Discord Token: {'โœ… Set' if cls.DISCORD_TOKEN else 'โŒ Not Set'}") - - -# Global config instance -config = Config() \ No newline at end of file diff --git a/discord-rare-monitor/discord_rare_monitor.py b/discord-rare-monitor/discord_rare_monitor.py deleted file mode 100644 index 849d3963..00000000 --- a/discord-rare-monitor/discord_rare_monitor.py +++ /dev/null @@ -1,1181 +0,0 @@ -#!/usr/bin/env python3 -""" -Discord Rare Monitor Bot - Monitors Dereth Tracker WebSocket for rare discoveries -and posts filtered notifications to Discord channels. - -Listens for {"type": "rare"} messages from the WebSocket stream and posts them -to appropriate Discord channels based on rare classification. -""" - -import asyncio -import json -import logging -import os -import re -import sys -import time -from datetime import datetime -from typing import Optional - -import discord -import websockets - -# Get log level from environment -log_level = os.getenv('LOG_LEVEL', 'INFO').upper() - -# Configure logging -logging.basicConfig( - level=getattr(logging, log_level, logging.INFO), - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', - handlers=[logging.StreamHandler(sys.stdout)] -) -logger = logging.getLogger(__name__) - -# Configuration from environment variables -DISCORD_TOKEN = os.getenv('DISCORD_RARE_BOT_TOKEN') -WEBSOCKET_URL = os.getenv('DERETH_TRACKER_WS_URL', 'ws://dereth-tracker:8765/ws/live') -SHARED_SECRET = 'your_shared_secret' -ACLOG_CHANNEL_ID = int(os.getenv('ACLOG_CHANNEL_ID', '1349649482786275328')) -COMMON_RARE_CHANNEL_ID = int(os.getenv('COMMON_RARE_CHANNEL_ID', '1355328792184226014')) -GREAT_RARE_CHANNEL_ID = int(os.getenv('GREAT_RARE_CHANNEL_ID', '1353676584334131211')) -SAWATOLIFE_CHANNEL_ID = int(os.getenv('SAWATOLIFE_CHANNEL_ID', '1387323032271327423')) - -# Character to monitor for allegiance chat -MONITOR_CHARACTER = os.getenv('MONITOR_CHARACTER', 'Dunking Rares') - -# Comprehensive rare classification patterns - -# Common Rares - Exact match pattern (71 items) -COMMON_RARES_PATTERN = re.compile(r"^(Alchemist's Crystal|Scholar's Crystal|Smithy's Crystal|Hunter's Crystal|Observer's Crystal|Thorsten's Crystal|Elysa's Crystal|Chef's Crystal|Enchanter's Crystal|Oswald's Crystal|Deceiver's Crystal|Fletcher's Crystal|Physician's Crystal|Artificer's Crystal|Tinker's Crystal|Vaulter's Crystal|Monarch's Crystal|Life Giver's Crystal|Thief's Crystal|Adherent's Crystal|Resister's Crystal|Imbuer's Crystal|Converter's Crystal|Evader's Crystal|Dodger's Crystal|Zefir's Crystal|Ben Ten's Crystal|Corruptor's Crystal|Artist's Crystal|T'ing's Crystal|Warrior's Crystal|Brawler's Crystal|Hieromancer's Crystal|Rogue's Crystal|Berzerker's Crystal|Knight's Crystal|Lugian's Pearl|Ursuin's Pearl|Wayfarer's Pearl|Sprinter's Pearl|Magus's Pearl|Lich's Pearl|Warrior's Jewel|Melee's Jewel|Mage's Jewel|Duelist's Jewel|Archer's Jewel|Tusker's Jewel|Olthoi's Jewel|Inferno's Jewel|Gelid's Jewel|Astyrrian's Jewel|Executor's Jewel|Pearl of Blood Drinking|Pearl of Heart Seeking|Pearl of Defending|Pearl of Swift Killing|Pearl of Spirit Drinking|Pearl of Hermetic Linking|Pearl of Blade Baning|Pearl of Pierce Baning|Pearl of Bludgeon Baning|Pearl of Acid Baning|Pearl of Flame Baning|Pearl of Frost Baning|Pearl of Lightning Baning|Pearl of Impenetrability|Refreshing Elixir|Invigorating Elixir|Miraculous Elixir|Medicated Health Kit|Medicated Stamina Kit|Medicated Mana Kit|Casino Exquisite Keyring)$") - -# Combined pattern for detecting any rare in chat messages (simplified for common detection) -RARE_IN_CHAT_PATTERN = re.compile(r"(Crystal|Pearl|Jewel|Elixir|Kit|Hieroglyph|Pictograph|Ideograph|Rune|Infinite|Eternal|Perennial|Foolproof|Limitless|Shimmering|Gelidite|Leikotha|Frore|Staff of|Count Renari|Wand of)") - -# Legacy keywords for backward compatibility -COMMON_RARE_KEYWORDS = ["Crystal", "Jewel", "Pearl", "Elixir", "Kit"] - - -class DiscordRareMonitor: - """Discord bot that monitors WebSocket for rare discoveries and posts to Discord.""" - - def __init__(self): - # Discord client setup - intents = discord.Intents.default() - intents.guilds = True - intents.messages = True - intents.message_content = True - self.client = discord.Client(intents=intents) - - # WebSocket connection tracking - self.websocket_task: Optional[asyncio.Task] = None - self.health_monitor_task: Optional[asyncio.Task] = None - self.running = False - - # Setup Discord event handlers - self.setup_discord_handlers() - - def setup_discord_handlers(self): - """Setup Discord client event handlers.""" - - @self.client.event - async def on_ready(): - logger.info(f'โœ… Discord bot logged in as {self.client.user}') - - # Debug: List all guilds (servers) the bot is in - guild_count = len(self.client.guilds) - logger.info(f"๐Ÿฐ Bot is in {guild_count} guild(s)") - for guild in self.client.guilds: - logger.info(f" - {guild.name} (ID: {guild.id})") - # List first 5 channels in each guild for debugging - channels = list(guild.channels)[:5] - for channel in channels: - logger.info(f" Channel: #{channel.name} (ID: {channel.id})") - - # Verify channels exist - aclog_channel = self.client.get_channel(ACLOG_CHANNEL_ID) - common_channel = self.client.get_channel(COMMON_RARE_CHANNEL_ID) - great_channel = self.client.get_channel(GREAT_RARE_CHANNEL_ID) - sawatolife_channel = self.client.get_channel(SAWATOLIFE_CHANNEL_ID) - - logger.info(f"๐Ÿ” Looking for aclog channel {ACLOG_CHANNEL_ID}: {'Found' if aclog_channel else 'NOT FOUND'}") - logger.info(f"๐Ÿ” Looking for common channel {COMMON_RARE_CHANNEL_ID}: {'Found' if common_channel else 'NOT FOUND'}") - logger.info(f"๐Ÿ” Looking for great channel {GREAT_RARE_CHANNEL_ID}: {'Found' if great_channel else 'NOT FOUND'}") - logger.info(f"๐Ÿ” Looking for sawatolife channel {SAWATOLIFE_CHANNEL_ID}: {'Found' if sawatolife_channel else 'NOT FOUND'}") - - if aclog_channel: - logger.info(f"๐Ÿ“ AC Log channel: #{aclog_channel.name}") - if common_channel: - logger.info(f"๐Ÿ“ Common rares channel: #{common_channel.name}") - if great_channel: - logger.info(f"๐Ÿ“ Great rares channel: #{great_channel.name}") - - logger.info("๐ŸŽฏ Bot ready to receive messages!") - - # Start WebSocket monitoring - self.running = True - self.websocket_task = asyncio.create_task(self.monitor_websocket()) - logger.info("๐Ÿ”„ Started WebSocket monitoring task") - - # Start health monitoring task - self.health_monitor_task = asyncio.create_task(self.monitor_websocket_health()) - logger.info("๐Ÿ’“ Started WebSocket health monitoring task") - - @self.client.event - async def on_disconnect(): - logger.warning("โš ๏ธ Discord client disconnected (gateway connection lost)") - # Don't stop WebSocket monitoring on temporary Discord disconnects - # Discord will attempt to resume automatically - - @self.client.event - async def on_resumed(): - logger.info("๐Ÿ”„ Discord session resumed - checking WebSocket health") - # Check if WebSocket task is still running after Discord resume - if not self.websocket_task or self.websocket_task.done(): - logger.warning("๐Ÿ”ง WebSocket task was lost during Discord disconnect - restarting") - await self.post_status_to_aclog("๐Ÿ”„ Discord resumed: WebSocket was lost, restarting connection") - self.websocket_task = asyncio.create_task(self.monitor_websocket()) - else: - logger.info("โœ… WebSocket task still healthy after Discord resume") - await self.post_status_to_aclog("โœ… Discord resumed: WebSocket connection still healthy") - - @self.client.event - async def on_message(message): - # Don't respond to bot's own messages - if message.author == self.client.user: - return - - # Debug: log all messages (remove this after testing) - logger.info(f"๐Ÿ“จ Received message: '{message.content}' from {message.author} in #{message.channel}") - - # Handle !echo command for testing bot responsiveness - content = message.content # Don't convert to lowercase for echo - if content.startswith('!echo'): - # Extract the text after !echo - echo_text = message.content[5:].strip() - if echo_text: - await message.channel.send(f"๐Ÿค– Echo: {echo_text}") - else: - await message.channel.send("๐Ÿค– Echo: Hello! Discord Rare Monitor Bot is alive and responding!") - logger.info(f"๐Ÿ“ฃ Responded to !echo command from {message.author} in #{message.channel}") - - # Handle !status command for bot status - elif message.content.startswith('!status'): - status_msg = "๐Ÿค– **Discord Rare Monitor Bot Status:**\n" - status_msg += f"โœ… Bot is online and connected\n" - status_msg += f"๐Ÿ”— WebSocket: {'Connected' if self.websocket_task and not self.websocket_task.done() else 'Disconnected'}\n" - status_msg += f"๐Ÿ“ก Monitoring: {WEBSOCKET_URL}\n" - status_msg += f"๐Ÿ“ Common Rares Channel: <#{COMMON_RARE_CHANNEL_ID}>\n" - status_msg += f"๐Ÿ“ Great Rares Channel: <#{GREAT_RARE_CHANNEL_ID}>" - - await message.channel.send(status_msg) - logger.info(f"๐Ÿ“Š Responded to !status command from {message.author} in #{message.channel}") - - # Handle !icons command to display all rare icons - elif message.content.startswith('!icons'): - # Parse command arguments - args = message.content.split() - logger.info(f"๐Ÿ” !icons command received with args: {args}") - if len(args) > 1: - if args[1].lower() == 'all': - logger.info("๐Ÿ“‹ Calling handle_icons_command for 'all'") - await self.handle_icons_command(message) - elif args[1].lower() == 'grid': - await self.handle_icons_grid(message) - else: - # Search for specific rare item - search_term = ' '.join(args[1:]) - await self.handle_icons_search(message, search_term) - else: - logger.info("๐Ÿ“‹ Calling handle_icons_summary (no args)") - await self.handle_icons_summary(message) - - # Handle !test_great command to test great rare display - elif message.content.startswith('!test_great'): - logger.info(f"๐Ÿงช !test_great command received from {message.author}") - await self.handle_test_great_command(message) - - async def monitor_websocket_health(self): - """Periodically monitor WebSocket task health and restart if needed.""" - health_check_interval = 60 # Check every 1 minute - - while self.running: - try: - await asyncio.sleep(health_check_interval) - - if not self.running: - break - - # Check if WebSocket task is still alive - if not self.websocket_task or self.websocket_task.done(): - logger.warning("๐Ÿšจ WebSocket task health check failed - task is not running") - - # Check if task completed with an exception - if self.websocket_task and self.websocket_task.done(): - try: - exception = self.websocket_task.exception() - if exception: - logger.error(f"๐Ÿšจ WebSocket task failed with exception: {exception}") - except Exception as e: - logger.warning(f"Could not get task exception: {e}") - - # Restart the WebSocket monitoring task - logger.info("๐Ÿ”ง Restarting WebSocket monitoring task") - await self.post_status_to_aclog("๐Ÿšจ Health check detected WebSocket failure - restarting connection") - self.websocket_task = asyncio.create_task(self.monitor_websocket()) - else: - logger.debug("๐Ÿ’“ WebSocket task health check passed") - - except asyncio.CancelledError: - logger.info("๐Ÿ’“ WebSocket health monitoring task cancelled") - break - except Exception as e: - logger.error(f"๐Ÿ’“ WebSocket health monitoring error: {e}", exc_info=True) - # Continue monitoring despite errors - - async def monitor_websocket(self): - """Monitor Dereth Tracker WebSocket with immediate failure detection and reconnection.""" - retry_delay = 1 # Start with immediate retry - max_retry_delay = 60 # Max 1 minute delay - consecutive_failures = 0 - max_consecutive_failures = 20 # Allow more attempts before giving up - - while self.running: - websocket = None - connection_failed = False - connection_start_time = None - - try: - # Connect to live endpoint with built-in ping/pong for failure detection - logger.info(f"๐Ÿ”— Connecting to WebSocket: {WEBSOCKET_URL}") - - websocket = await websockets.connect( - WEBSOCKET_URL, - ping_interval=20, # Built-in ping every 20 seconds - ping_timeout=10, # Fail if no pong response in 10 seconds - close_timeout=5 # Quick close timeout - ) - - connection_start_time = time.time() - logger.info(f"โœ… WebSocket connected successfully at {time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(connection_start_time))}") - retry_delay = 1 # Reset retry delay on successful connection - consecutive_failures = 0 # Reset failure counter - - # Log connection details - logger.info(f"๐Ÿ“Š Connection details: Local={websocket.local_address}, Remote={websocket.remote_address}") - - # Send connection established message - await self.post_status_to_aclog("๐Ÿ”— WebSocket connection established") - - # Simple message processing with comprehensive error handling - try: - message_count = 0 - last_health_log = time.time() - health_log_interval = 600 # Log health every 10 minutes - - async for message in websocket: - if not self.running: - break - - message_count += 1 - logger.debug(f"๐Ÿ“จ Raw WebSocket message: {message[:100]}...") - await self.process_websocket_message(message) - - # Periodic health logging - current_time = time.time() - if current_time - last_health_log >= health_log_interval: - connection_duration = current_time - connection_start_time - hours = connection_duration / 3600 - logger.info(f"๐Ÿ’“ Connection health: {hours:.2f}h uptime, {message_count} messages received") - last_health_log = current_time - - # If async for ends, connection was closed - connection_duration = time.time() - connection_start_time if connection_start_time else 0 - hours = connection_duration / 3600 - - # Try to get close code and reason - close_code = None - close_reason = None - try: - close_code = websocket.close_code - close_reason = websocket.close_reason - except: - pass - - logger.warning(f"๐Ÿ”Œ WebSocket connection ended after {hours:.2f} hours (async for loop exited)") - logger.warning(f"๐Ÿ“Š Close details: code={close_code}, reason='{close_reason}'") - connection_failed = True - - # Post disconnect notification to Discord - await self.post_status_to_aclog(f"๐Ÿ”Œ WebSocket disconnected after {hours:.2f}h (code={close_code}), reconnecting...") - - except asyncio.CancelledError: - logger.info("๐Ÿ“ก WebSocket task cancelled") - raise - except Exception as e: - # Any exception during message processing indicates connection failure - logger.warning(f"โš ๏ธ WebSocket message processing failed: {type(e).__name__}: {e}") - connection_failed = True - raise # Re-raise to trigger reconnection - - except websockets.exceptions.ConnectionClosed as e: - connection_duration = time.time() - connection_start_time if connection_start_time else 0 - hours = connection_duration / 3600 - logger.warning(f"โš ๏ธ WebSocket connection closed after {hours:.2f} hours: {e}") - logger.warning(f"๐Ÿ“Š ConnectionClosed details: code={e.code}, reason='{e.reason}'") - consecutive_failures += 1 - await self.post_status_to_aclog(f"โš ๏ธ WebSocket disconnected after {hours:.2f}h, reconnecting...") - - except websockets.exceptions.InvalidStatusCode as e: - logger.error(f"โŒ WebSocket server error: {e}") - consecutive_failures += 1 - await self.post_status_to_aclog(f"โŒ Server error {e.status_code}, retrying...") - - except (OSError, ConnectionRefusedError) as e: - logger.warning(f"โš ๏ธ Network connection failed: {e}") - consecutive_failures += 1 - await self.post_status_to_aclog(f"โš ๏ธ Network error, retrying...") - - except Exception as e: - connection_duration = time.time() - connection_start_time if connection_start_time else 0 - hours = connection_duration / 3600 - logger.error(f"โŒ WebSocket error after {hours:.2f} hours: {type(e).__name__}: {e}") - logger.error(f"๐Ÿ“Š Exception details: {repr(e)}") - consecutive_failures += 1 - await self.post_status_to_aclog(f"โŒ Connection error after {hours:.2f}h: {type(e).__name__}") - - finally: - # Ensure websocket is properly closed - if websocket: - try: - await websocket.close() - except Exception: - pass - - # Log final connection stats - if connection_start_time: - connection_duration = time.time() - connection_start_time - hours = connection_duration / 3600 - logger.info(f"๐Ÿ“Š Connection summary: Duration={hours:.2f}h, Total failures={consecutive_failures}") - - # If we got here, the connection failed somehow - if connection_failed and consecutive_failures == 0: - consecutive_failures = 1 # Count silent failures - logger.warning("โš ๏ธ Connection failed without exception - forcing reconnection") - await self.post_status_to_aclog("โš ๏ธ WebSocket connection lost, reconnecting...") - - # Check if we should keep retrying - if consecutive_failures >= max_consecutive_failures: - logger.error(f"โŒ Too many consecutive failures ({consecutive_failures}). Stopping reconnection attempts.") - await self.post_status_to_aclog(f"โŒ WebSocket reconnection failed after {consecutive_failures} attempts. Bot may need restart.") - break - - # Immediate retry for first few failures, then exponential backoff - if self.running and consecutive_failures > 0: - if consecutive_failures <= 3: - logger.info(f"๐Ÿ”„ Immediate reconnection attempt #{consecutive_failures}") - await asyncio.sleep(1) # Brief pause to avoid tight loop - else: - logger.info(f"๐Ÿ”„ Retrying WebSocket connection in {retry_delay} seconds... (failure #{consecutive_failures})") - await asyncio.sleep(retry_delay) - retry_delay = min(retry_delay * 2, max_retry_delay) # Exponential backoff - - async def process_websocket_message(self, raw_message: str): - """Process incoming WebSocket message.""" - try: - data = json.loads(raw_message) - msg_type = data.get('type') - - # Debug: Log all message types - logger.debug(f"๐Ÿ“ฉ WebSocket message type: {msg_type} from {data.get('character_name', 'Unknown')}") - - # Handle rare event messages - if msg_type == 'rare': - await self.handle_rare_event(data) - - # Handle chat messages from monitored character - elif msg_type == 'chat': - await self.handle_chat_message(data) - - except json.JSONDecodeError: - # Ignore invalid JSON messages - pass - except Exception as e: - logger.error(f"โŒ Error processing WebSocket message: {e}") - - async def handle_rare_event(self, data: dict): - """Handle a rare discovery event.""" - try: - rare_name = data.get('name', 'Unknown Rare') - character_name = data.get('character_name', 'Unknown Character') - timestamp = data.get('timestamp', '') - - logger.info(f"๐ŸŽฏ RARE EVENT RECEIVED: {rare_name} by {character_name}") - logger.debug(f"๐Ÿ“ฆ Full rare data: {data}") - - # Classify rare type - rare_type = self.classify_rare(rare_name) - - # Post to Discord - await self.post_rare_to_discord(data, rare_type) - - logger.info(f"๐Ÿ“ฌ Posted to Discord: {rare_name} ({rare_type}) from {character_name}") - - except Exception as e: - logger.error(f"โŒ Error handling rare event: {e}") - - async def handle_chat_message(self, data: dict): - """Handle a chat message from monitored character.""" - try: - character_name = data.get('character_name', '') - chat_text = data.get('text', '') - - logger.debug(f"๐Ÿ” Checking chat from '{character_name}' (looking for '{MONITOR_CHARACTER}')") - - # Only process messages from the monitored character - if character_name != MONITOR_CHARACTER: - return - - # Check for special vortex warning message FIRST - simplified matching - # Debug: log what we're checking - logger.debug(f"๐Ÿ” Checking for vortex in: {repr(chat_text)}") - - if "m in whirlwind of vortexes" in chat_text: - logger.warning(f"โš ๏ธ๐ŸŒช๏ธ VORTEX WARNING from {character_name}: {chat_text}") - - # Get timestamp for the warning - from datetime import datetime - timestamp_str = data.get('timestamp', '') - try: - if timestamp_str: - if timestamp_str.endswith('Z'): - timestamp = datetime.fromisoformat(timestamp_str.replace('Z', '+00:00')) - else: - timestamp = datetime.fromisoformat(timestamp_str) - else: - timestamp = datetime.now() - except ValueError: - timestamp = datetime.now() - - time_str = timestamp.strftime("%H:%M:%S") - - # Extract the actual character name from allegiance chat - # Format: [Allegiance] Character Name says, "message" - actual_character = "Unknown Character" - if "[Allegiance]" in chat_text and " says," in chat_text: - try: - # Extract between "] " and " says," - start = chat_text.find("] ") + 2 - end = chat_text.find(" says,") - if start > 1 and end > start: - actual_character = chat_text[start:end] - except: - actual_character = "Unknown Character" - - try: - channel = self.client.get_channel(ACLOG_CHANNEL_ID) - if channel: - # Create clean vortex warning embed - embed = discord.Embed( - title="๐ŸŒช๏ธ **VORTEX WARNING** ๐ŸŒช๏ธ", - description=f"**{actual_character}** is caught in vortexes!", - color=0xFF4500 # Orange-red - ) - - # Add time and character info - embed.add_field( - name="๐Ÿ• **Time**", - value=f"โฐ {time_str}", - inline=True - ) - - embed.add_field( - name="๐ŸŽฏ **Character**", - value=f"**{actual_character}**", - inline=True - ) - - # Add footer - embed.set_footer(text="Someone needs help with vortexes!") - - # Send clean warning - await channel.send(embed=embed) - - logger.info(f"๐ŸŒช๏ธ Posted vortex warning for {actual_character} to #{channel.name}") - else: - logger.error(f"โŒ Could not find channel {ACLOG_CHANNEL_ID}") - except Exception as e: - logger.error(f"๐Ÿ’ฅ VORTEX WARNING POSTING FAILED: {e}", exc_info=True) - - # Also post the original vortex message to sawatolife (raw format) - try: - await self.post_chat_to_discord(data) - logger.info(f"๐ŸŒช๏ธ Posted raw vortex message to sawatolife") - except Exception as e: - logger.error(f"โŒ Error posting vortex to sawatolife: {e}") - - return - elif "whirlwind of vortex" in chat_text.lower(): - logger.debug(f"๐ŸŒช๏ธ Found 'whirlwind of vortex' but not exact match in: {repr(chat_text)}") - elif "jeebus" in chat_text.lower(): - logger.debug(f"๐Ÿ‘€ Found 'jeebus' but not vortex pattern in: {repr(chat_text)}") - - # Log all chat messages (no longer filtering rares) - logger.info(f"๐Ÿ’ฌ Chat from {character_name}: {chat_text}") - - - # Post to AC Log channel - await self.post_chat_to_discord(data) - - except Exception as e: - logger.error(f"โŒ Error handling chat message: {e}") - - def is_rare_message(self, text: str) -> bool: - """Check if text appears to be a rare discovery message.""" - # Look for common rare discovery patterns - rare_patterns = [ - "has discovered the", - "found a rare", - "discovered a", - "rare discovery", - "Golden Gryphon", - "Dark Heart", - "Sunstone", - ] - return any(pattern.lower() in text.lower() for pattern in rare_patterns) - - def classify_rare(self, rare_name: str) -> str: - """Classify rare as 'common' or 'great' based on exact name matching.""" - # Use regex pattern matching for precise classification - if COMMON_RARES_PATTERN.match(rare_name): - return "common" - else: - return "great" - - def get_rare_icon_path(self, rare_name: str) -> Optional[str]: - """Get the file path for a rare item's icon if it exists.""" - try: - # Convert rare name to icon filename using same logic as download script - filename = rare_name.replace("'", "").replace(" ", "_").replace("-", "_") + "_Icon.png" - - # Get the icons directory path - icons_dir = os.path.join(os.path.dirname(__file__), "icons") - icon_path = os.path.join(icons_dir, filename) - - # Check if file exists - if os.path.exists(icon_path): - return icon_path - else: - logger.debug(f"๐Ÿ” Icon not found for '{rare_name}': {filename}") - return None - - except Exception as e: - logger.warning(f"โš ๏ธ Error getting icon path for '{rare_name}': {e}") - return None - - async def post_rare_to_discord(self, data: dict, rare_type: str): - """Post rare discovery to appropriate Discord channel.""" - try: - rare_name = data.get('name', 'Unknown Rare') - character_name = data.get('character_name', 'Unknown Character') - timestamp_str = data.get('timestamp', '') - ew = data.get('ew') - ns = data.get('ns') - z = data.get('z') - - # Parse timestamp - try: - if timestamp_str: - # Handle both with and without 'Z' suffix - if timestamp_str.endswith('Z'): - timestamp = datetime.fromisoformat(timestamp_str.replace('Z', '+00:00')) - else: - timestamp = datetime.fromisoformat(timestamp_str) - else: - timestamp = datetime.now() - except ValueError: - timestamp = datetime.now() - - # Try to get icon for this rare - icon_path = self.get_rare_icon_path(rare_name) - icon_file = None - icon_filename = None - - if icon_path: - icon_filename = os.path.basename(icon_path) - icon_file = discord.File(icon_path, filename=icon_filename) - logger.debug(f"๐Ÿ–ผ๏ธ Found icon for '{rare_name}': {icon_filename}") - else: - logger.debug(f"๐Ÿ“ท No icon available for '{rare_name}'") - - # Create Discord embed - if rare_type == "great": - embed = discord.Embed( - title="๐Ÿ’Ž Great Rare Discovery!", - description=f"**{character_name}** has discovered the **{rare_name}**!", - color=discord.Color.gold(), - timestamp=timestamp - ) - else: - embed = discord.Embed( - title="๐Ÿ”ธ Common Rare Discovery", - description=f"**{character_name}** has discovered the **{rare_name}**!", - color=discord.Color.blue(), - timestamp=timestamp - ) - - # Add icon image if available (at original size) - if icon_file and icon_filename: - embed.set_image(url=f"attachment://{icon_filename}") - - # Add location if available - if ew is not None and ns is not None: - location_str = f"{ew:.1f}E, {ns:.1f}N" - if z is not None: - location_str += f", {z:.1f}Z" - embed.add_field(name="๐Ÿ“ Location", value=location_str, inline=True) - - # Add timestamp in a readable format - embed.add_field( - name="โฐ Time", - value=timestamp.strftime("%H:%M:%S UTC"), - inline=True - ) - - # Get appropriate channel - if rare_type == "common": - channel = self.client.get_channel(COMMON_RARE_CHANNEL_ID) - else: - channel = self.client.get_channel(GREAT_RARE_CHANNEL_ID) - - if channel: - # Send with or without icon file - if icon_file: - await channel.send(file=icon_file, embed=embed) - logger.debug(f"๐Ÿ“ค Sent embed with icon to #{channel.name}") - else: - await channel.send(embed=embed) - logger.debug(f"๐Ÿ“ค Sent text-only embed to #{channel.name}") - else: - logger.error(f"โŒ Could not find Discord channel for {rare_type} rares") - - except Exception as e: - logger.error(f"โŒ Error posting to Discord: {e}") - - def clean_and_format_chat_message(self, chat_text: str) -> str: - """Clean chat message by removing 'Dunking Rares:' prefix and add color coding.""" - try: - # Remove "Dunking Rares: " prefix if present - cleaned_text = chat_text - if cleaned_text.startswith("Dunking Rares: "): - cleaned_text = cleaned_text[15:] # Remove "Dunking Rares: " - - # Return cleaned text without any special formatting - return cleaned_text - - except Exception as e: - logger.warning(f"โš ๏ธ Error cleaning chat message: {e}") - return chat_text # Return original on error - - async def post_chat_to_discord(self, data: dict): - """Post chat message to sawatolife Discord channel.""" - try: - character_name = data.get('character_name', 'Unknown Character') - chat_text = data.get('text', '') - timestamp_str = data.get('timestamp', '') - - # Parse timestamp - try: - if timestamp_str: - if timestamp_str.endswith('Z'): - timestamp = datetime.fromisoformat(timestamp_str.replace('Z', '+00:00')) - else: - timestamp = datetime.fromisoformat(timestamp_str) - else: - timestamp = datetime.now() - except ValueError: - timestamp = datetime.now() - - # Clean and format the message - time_str = timestamp.strftime("%H:%M:%S") - cleaned_chat = self.clean_and_format_chat_message(chat_text) - message_content = f"`{time_str}` {cleaned_chat}" - - - # Get sawatolife channel - channel = self.client.get_channel(SAWATOLIFE_CHANNEL_ID) - - if channel: - await channel.send(message_content) - logger.debug(f"๐Ÿ“ค Posted chat to #{channel.name}: {character_name}") - else: - logger.error(f"โŒ Could not find sawatolife channel ID: {SAWATOLIFE_CHANNEL_ID}") - - except Exception as e: - logger.error(f"โŒ Error posting chat to Discord: {e}") - - - async def post_vortex_warning_to_discord(self, data: dict): - """Post vortex warning as a special alert message to Discord.""" - logger.info(f"๐Ÿ”ง Starting vortex warning posting process...") - try: - character_name = data.get('character_name', 'Unknown Character') - chat_text = data.get('text', '') - timestamp_str = data.get('timestamp', '') - - # Parse timestamp - try: - if timestamp_str: - if timestamp_str.endswith('Z'): - timestamp = datetime.fromisoformat(timestamp_str.replace('Z', '+00:00')) - else: - timestamp = datetime.fromisoformat(timestamp_str) - else: - timestamp = datetime.now() - except ValueError: - timestamp = datetime.now() - - logger.info(f"๐Ÿ”ง Creating vortex warning embed for {character_name}") - - # Create warning embed - embed = discord.Embed( - title="๐ŸŒช๏ธ VORTEX WARNING! ๐ŸŒช๏ธ", - description=f"**{character_name}** reported a vortex situation!", - color=discord.Color.red(), - timestamp=timestamp - ) - - # Add the chat message as a field - but truncate if too long - chat_display = chat_text[:1800] + "..." if len(chat_text) > 1800 else chat_text - embed.add_field( - name="Message", - value=f"```{chat_display}```", - inline=False - ) - - # Add warning footer - embed.set_footer(text="โš ๏ธ Immediate attention required!") - - logger.info(f"๐Ÿ”ง Getting AC Log channel {ACLOG_CHANNEL_ID}") - # Get AC Log channel - channel = self.client.get_channel(ACLOG_CHANNEL_ID) - logger.info(f"๐Ÿ”ง Channel result: {channel}") - - if channel: - # Send the warning embed first - await channel.send(embed=embed) - logger.info(f"๐ŸŒช๏ธ Posted VORTEX WARNING embed to #{channel.name}") - - # Try to send alert ping (might fail due to permissions) - try: - await channel.send("๐Ÿšจ VORTEX ALERT! ๐Ÿšจ") - logger.info(f"๐Ÿšจ Posted VORTEX ALERT ping to #{channel.name}") - except Exception as ping_error: - logger.warning(f"โš ๏ธ Could not send @here ping: {ping_error}") - else: - logger.error(f"โŒ Could not find AC Log channel for vortex warning: {ACLOG_CHANNEL_ID}") - - except Exception as e: - logger.error(f"โŒ Error posting vortex warning to Discord: {e}") - - async def post_status_to_aclog(self, status_message: str): - """Post status update to sawatolife channel.""" - try: - # Create status message with timestamp - timestamp = datetime.now().strftime("%H:%M:%S") - message = f"`{timestamp}` **BOT STATUS**: {status_message}" - - # Get sawatolife channel - channel = self.client.get_channel(SAWATOLIFE_CHANNEL_ID) - - if channel: - await channel.send(message) - logger.debug(f"๐Ÿ“ค Posted status to #{channel.name}: {status_message}") - else: - logger.error(f"โŒ Could not find sawatolife channel for status: {SAWATOLIFE_CHANNEL_ID}") - - except Exception as e: - logger.error(f"โŒ Error posting status to Discord: {e}") - - async def handle_icons_command(self, message): - """Handle !icons all command to display 10 random rare icons with images.""" - try: - logger.info("๐ŸŽฏ STARTING handle_icons_command - will send 10 separate messages") - import random - import asyncio - icons_dir = os.path.join(os.path.dirname(__file__), "icons") - - # Get all icon files - all_icons = [f for f in os.listdir(icons_dir) if f.endswith("_Icon.png")] - logger.info(f"๐Ÿ“‚ Found {len(all_icons)} total icons") - - # Select 10 random icons - random_icons = random.sample(all_icons, min(10, len(all_icons))) - logger.info(f"๐ŸŽฒ Selected {len(random_icons)} random icons to display") - - # Send each icon individually - no embeds, just file + text - for i, filename in enumerate(random_icons): - # Convert filename to display name - base_name = filename[:-9] - display_name = base_name.replace("_", " ") - display_name = display_name.replace("s Crystal", "'s Crystal") - display_name = display_name.replace("s Pearl", "'s Pearl") - display_name = display_name.replace("s Jewel", "'s Jewel") - - # Classify rare - rare_type = "common" if self.classify_rare(display_name) == "common" else "great" - emoji = "๐Ÿ”ธ" if rare_type == "common" else "๐Ÿ’Ž" - - # Send just the file with simple text - icon_path = os.path.join(icons_dir, filename) - if os.path.exists(icon_path): - file = discord.File(icon_path, filename=filename) - text = f"{emoji} **{display_name}** ({rare_type} rare)" - - logger.info(f"๐Ÿ“ค Sending message {i+1}/10: {display_name}") - await message.channel.send(content=text, file=file) - - # Small delay between messages to avoid rate limiting - await asyncio.sleep(0.8) - - # Send summary message - await message.channel.send(f"๐Ÿ“š Displayed 10 random icons from {len(all_icons)} total rare icons. Use `!icons [name]` to search.") - - logger.info(f"๐Ÿ“š Sent 10 random icon samples to {message.author} in #{message.channel}") - - except Exception as e: - logger.error(f"โŒ Error handling !icons command: {e}") - await message.channel.send(f"โŒ Error displaying icons: {str(e)}") - - async def handle_icons_summary(self, message): - """Handle !icons command to display summary with example images.""" - try: - icons_dir = os.path.join(os.path.dirname(__file__), "icons") - - # Count icons by category and get examples - common_count = 0 - great_count = 0 - icon_files = [] - common_examples = [] - great_examples = [] - - for filename in os.listdir(icons_dir): - if filename.endswith("_Icon.png"): - base_name = filename[:-9] - display_name = base_name.replace("_", " ") - # Fix common patterns - display_name = display_name.replace("s Crystal", "'s Crystal") - display_name = display_name.replace("s Pearl", "'s Pearl") - display_name = display_name.replace("s Jewel", "'s Jewel") - - icon_files.append((filename, display_name)) - - # Classify and collect examples - if self.classify_rare(display_name) == "common": - common_count += 1 - if len(common_examples) < 3: - common_examples.append((filename, display_name)) - else: - great_count += 1 - if len(great_examples) < 3: - great_examples.append((filename, display_name)) - - total_count = len(icon_files) - - # Create summary embed with thumbnail - embed = discord.Embed( - title="๐Ÿ“š Rare Icons Library Summary", - description=f"Complete collection of Asheron's Call rare item icons\n\n**{total_count}** total icons ({common_count} common, {great_count} great)", - color=discord.Color.gold() - ) - - # Add example icons text - examples_text = "**Common Rare Examples:**\n" - for _, name in common_examples: - examples_text += f"๐Ÿ”ธ {name}\n" - - examples_text += "\n**Great Rare Examples:**\n" - for _, name in great_examples: - examples_text += f"๐Ÿ’Ž {name}\n" - - embed.add_field( - name="๐Ÿ“‹ Icon Examples", - value=examples_text, - inline=False - ) - - embed.add_field( - name="๐Ÿ’ก Commands", - value="`!icons all` - Browse all icons with images\n`!icons [item_name]` - Search for specific item\n`!icons grid` - View icon grids", - inline=False - ) - - embed.set_footer(text=f"Coverage: {(total_count/293)*100:.1f}% of all known rares") - - # Select a representative icon for thumbnail (first great rare) - if great_examples: - thumbnail_file = great_examples[0][0] - thumbnail_path = os.path.join(icons_dir, thumbnail_file) - if os.path.exists(thumbnail_path): - file = discord.File(thumbnail_path, filename=thumbnail_file) - embed.set_thumbnail(url=f"attachment://{thumbnail_file}") - await message.channel.send(file=file, embed=embed) - else: - await message.channel.send(embed=embed) - else: - await message.channel.send(embed=embed) - - logger.info(f"๐Ÿ“Š Sent icon summary with thumbnail to {message.author} in #{message.channel}") - - except Exception as e: - logger.error(f"โŒ Error handling !icons summary: {e}") - await message.channel.send(f"โŒ Error displaying icon summary: {str(e)}") - - async def handle_icons_search(self, message, search_term): - """Handle !icons [item_name] to search for specific rare item.""" - try: - icons_dir = os.path.join(os.path.dirname(__file__), "icons") - - # Load icon mapping - icon_mapping = {} - for filename in os.listdir(icons_dir): - if filename.endswith("_Icon.png"): - base_name = filename[:-9] - display_name = base_name.replace("_", " ") - # Fix common patterns - display_name = display_name.replace("s Crystal", "'s Crystal") - display_name = display_name.replace("s Pearl", "'s Pearl") - display_name = display_name.replace("s Jewel", "'s Jewel") - display_name = display_name.replace("s Breath", "'s Breath") - display_name = display_name.replace("s Glaive", "'s Glaive") - display_name = display_name.replace("s Grip", "'s Grip") - display_name = display_name.replace("Tri Blade", "Tri-Blade") - display_name = display_name.replace("T ing", "T'ing") - if "Renari" in display_name: - display_name = display_name.replace("Renaris", "Renari's") - if "Leikotha" in display_name: - display_name = display_name.replace("Leikothas", "Leikotha's") - icon_mapping[filename] = display_name - - # Search for matching items (case-insensitive, partial match) - search_lower = search_term.lower() - matches = [] - for filename, display_name in icon_mapping.items(): - if search_lower in display_name.lower(): - matches.append((filename, display_name)) - - if not matches: - await message.channel.send(f"โŒ No rare items found matching '{search_term}'. Try a different search term.") - return - - # Sort matches by relevance (exact match first, then starts with, then contains) - def match_score(item): - name = item[1].lower() - if name == search_lower: - return 0 # Exact match - elif name.startswith(search_lower): - return 1 # Starts with - else: - return 2 # Contains - - matches.sort(key=match_score) - - # Limit to first 10 matches to avoid spam - matches = matches[:10] - - if len(matches) == 1: - # Single match - show full detail with large image - filename, display_name = matches[0] - icon_path = os.path.join(icons_dir, filename) - - if os.path.exists(icon_path): - # Get file stats - file_size = os.path.getsize(icon_path) / 1024 - rare_type = "common" if self.classify_rare(display_name) == "common" else "great" - emoji = "๐Ÿ”ธ" if rare_type == "common" else "๐Ÿ’Ž" - - embed = discord.Embed( - title=f"{emoji} {display_name}", - description=f"**Type:** {rare_type.title()} Rare\n**File:** `{filename}`\n**Size:** {file_size:.1f} KB", - color=discord.Color.blue() if rare_type == "common" else discord.Color.gold() - ) - - file = discord.File(icon_path, filename=filename) - embed.set_image(url=f"attachment://{filename}") - - await message.channel.send(file=file, embed=embed) - logger.info(f"๐Ÿ” Sent single icon result for '{search_term}' to {message.author}") - else: - await message.channel.send(f"โŒ Icon file not found for {display_name}") - else: - # Multiple matches - show list with thumbnails - embed = discord.Embed( - title=f"๐Ÿ” Search Results for '{search_term}'", - description=f"Found {len(matches)} matching rare items:", - color=discord.Color.blue() - ) - - # Add matches to embed - for i, (filename, display_name) in enumerate(matches): - rare_type = "common" if self.classify_rare(display_name) == "common" else "great" - emoji = "๐Ÿ”ธ" if rare_type == "common" else "๐Ÿ’Ž" - embed.add_field( - name=f"{emoji} {display_name}", - value=f"{rare_type.title()} rare", - inline=True - ) - - # Attach first 5 images - files = [] - for i in range(min(5, len(matches))): - filename, _ = matches[i] - icon_path = os.path.join(icons_dir, filename) - if os.path.exists(icon_path): - files.append(discord.File(icon_path, filename=filename)) - - if files: - embed.add_field( - name="๐Ÿ–ผ๏ธ Preview Images", - value=f"First {len(files)} results shown as attachments", - inline=False - ) - await message.channel.send(files=files, embed=embed) - else: - await message.channel.send(embed=embed) - - logger.info(f"๐Ÿ” Sent {len(matches)} search results for '{search_term}' to {message.author}") - - except Exception as e: - logger.error(f"โŒ Error handling !icons search: {e}") - await message.channel.send(f"โŒ Error searching icons: {str(e)}") - - async def handle_icons_grid(self, message): - """Handle !icons grid to show icon grid compositions.""" - await message.channel.send("๐Ÿšง **Grid View Coming Soon!**\n\nThis feature will show multiple icons arranged in grids. For now, use:\nโ€ข `!icons` - Summary with examples\nโ€ข `!icons all` - Browse all icons\nโ€ข `!icons [name]` - Search specific items") - - async def handle_test_great_command(self, message): - """Test great rare display with a random great rare icon.""" - try: - import random - - # Get icons directory - icons_dir = os.path.join(os.path.dirname(__file__), "icons") - - if not os.path.exists(icons_dir): - await message.channel.send("โŒ Icons directory not found!") - return - - # Get all icon files - icon_files = [f for f in os.listdir(icons_dir) if f.endswith('_Icon.png')] - - # Filter to get great rares only (exclude common rares) - great_rare_icons = [] - for filename in icon_files: - # Convert filename to rare name - rare_name = filename.replace('_Icon.png', '').replace('_', ' ').replace("'", "'") - # Fix common naming issues - if "s " in rare_name: - rare_name = rare_name.replace("s ", "'s ") - - # Check if it's NOT a common rare - if not COMMON_RARES_PATTERN.match(rare_name): - great_rare_icons.append((filename, rare_name)) - - if not great_rare_icons: - await message.channel.send("โŒ No great rare icons found!") - return - - # Pick a random great rare - filename, rare_name = random.choice(great_rare_icons) - - # Create mock rare discovery data - mock_data = { - 'name': rare_name, - 'character_name': 'Test Character', - 'timestamp': datetime.now().isoformat(), - 'ew': 12.3, - 'ns': 34.5, - 'z': 56.7 - } - - # Send confirmation message first - await message.channel.send(f"๐Ÿงช **Testing great rare display with:** {rare_name}\n๐Ÿ“ค Posting to great rares channel...") - - # Post to great rares channel using existing function - await self.post_rare_to_discord(mock_data, "great") - - logger.info(f"๐Ÿงช Test great rare posted: {rare_name} (from {filename})") - - except Exception as e: - logger.error(f"โŒ Error in test_great command: {e}", exc_info=True) - await message.channel.send(f"โŒ Error testing great rare: {e}") - - async def start(self): - """Start the Discord bot.""" - if not DISCORD_TOKEN: - logger.error("โŒ DISCORD_RARE_BOT_TOKEN environment variable not set") - return False - - try: - logger.info("๐Ÿš€ Starting Discord Rare Monitor Bot...") - await self.client.start(DISCORD_TOKEN) - except Exception as e: - logger.error(f"โŒ Failed to start Discord bot: {e}") - return False - - async def stop(self): - """Stop the Discord bot and cleanup.""" - logger.info("๐Ÿ›‘ Stopping Discord Rare Monitor Bot...") - self.running = False - - # Cancel WebSocket monitoring task - if self.websocket_task: - self.websocket_task.cancel() - try: - await self.websocket_task - except asyncio.CancelledError: - pass - - # Cancel health monitoring task - if self.health_monitor_task: - self.health_monitor_task.cancel() - try: - await self.health_monitor_task - except asyncio.CancelledError: - pass - - if not self.client.is_closed(): - await self.client.close() - - -async def main(): - """Main entry point.""" - # Validate required environment variables - if not DISCORD_TOKEN: - logger.error("โŒ Missing required environment variable: DISCORD_RARE_BOT_TOKEN") - sys.exit(1) - - # Log configuration - actual_log_level = logging.getLevelName(logger.getEffectiveLevel()) - logger.info("๐Ÿ”ง Discord Rare Monitor Configuration:") - logger.info(f" WebSocket URL: {WEBSOCKET_URL}") - logger.info(f" Monitor Character: {MONITOR_CHARACTER}") - logger.info(f" AC Log Channel ID: {ACLOG_CHANNEL_ID}") - logger.info(f" Common Rare Channel ID: {COMMON_RARE_CHANNEL_ID}") - logger.info(f" Great Rare Channel ID: {GREAT_RARE_CHANNEL_ID}") - logger.info(f" Log Level: {actual_log_level} (ENV: {log_level})") - - # Create and start bot - bot = DiscordRareMonitor() - - try: - await bot.start() - except KeyboardInterrupt: - logger.info("๐Ÿ›‘ Received keyboard interrupt") - except Exception as e: - logger.error(f"โŒ Unexpected error: {e}") - finally: - await bot.stop() - - -if __name__ == "__main__": - asyncio.run(main()) \ No newline at end of file diff --git a/discord-rare-monitor/icon_mapping.py b/discord-rare-monitor/icon_mapping.py deleted file mode 100644 index 7b9c6ca0..00000000 --- a/discord-rare-monitor/icon_mapping.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env python3 -""" -Generate mapping between icon filenames and rare item names. -""" - -import os -import json - -def generate_icon_mapping(): - """Generate mapping from icon filenames to display names.""" - icons_dir = "/home/erik/MosswartOverlord/discord-rare-monitor/icons" - - # Create reverse mapping from filename to display name - icon_mapping = {} - - # List all PNG files in the icons directory - for filename in os.listdir(icons_dir): - if filename.endswith("_Icon.png"): - # Convert filename back to display name - # Remove _Icon.png suffix - base_name = filename[:-9] - - # Convert underscores to spaces and handle apostrophes - display_name = base_name.replace("_", " ") - - # Fix common patterns - display_name = display_name.replace("s Crystal", "'s Crystal") - display_name = display_name.replace("s Pearl", "'s Pearl") - display_name = display_name.replace("s Jewel", "'s Jewel") - display_name = display_name.replace("s Breath", "'s Breath") - display_name = display_name.replace("s Glaive", "'s Glaive") - display_name = display_name.replace("s Grip", "'s Grip") - display_name = display_name.replace("Tri Blade", "Tri-Blade") - display_name = display_name.replace("T ing", "T'ing") - - # Special cases - if "Renari" in display_name: - display_name = display_name.replace("Renaris", "Renari's") - if "Leikotha" in display_name: - display_name = display_name.replace("Leikothas", "Leikotha's") - - icon_mapping[filename] = display_name - - # Save mapping to JSON file - with open(os.path.join(os.path.dirname(icons_dir), "icon_name_mapping.json"), "w") as f: - json.dump(icon_mapping, f, indent=2, sort_keys=True) - - return icon_mapping - -if __name__ == "__main__": - mapping = generate_icon_mapping() - print(f"Generated mapping for {len(mapping)} icons") - print("\nFirst 10 mappings:") - for i, (filename, display_name) in enumerate(list(mapping.items())[:10]): - print(f" {filename} -> {display_name}") \ No newline at end of file diff --git a/discord-rare-monitor/icon_name_mapping.json b/discord-rare-monitor/icon_name_mapping.json deleted file mode 100644 index fc5173d5..00000000 --- a/discord-rare-monitor/icon_name_mapping.json +++ /dev/null @@ -1,294 +0,0 @@ -{ - "Adepts_Fervor_Icon.png": "Adepts Fervor", - "Adherents_Crystal_Icon.png": "Adherent's Crystal", - "Alchemists_Crystal_Icon.png": "Alchemist's Crystal", - "Aquamarine_Foolproof_Icon.png": "Aquamarine Foolproof", - "Archers_Jewel_Icon.png": "Archer's Jewel", - "Aristocrats_Bracelet_Icon.png": "Aristocrats Bracelet", - "Artificers_Crystal_Icon.png": "Artificer's Crystal", - "Artists_Crystal_Icon.png": "Artist's Crystal", - "Assassins_Whisper_Icon.png": "Assassins Whisper", - "Astyrrians_Jewel_Icon.png": "Astyrrian's Jewel", - "Band_of_Elemental_Harmony_Icon.png": "Band of Elemental Harmony", - "Baton_of_Tirethas_Icon.png": "Baton of Tirethas", - "Bearded_Axe_of_Souia-Vey_Icon.png": "Bearded Axe of Souia-Vey", - "Ben_Tens_Crystal_Icon.png": "Ben Ten's Crystal", - "Berzerkers_Crystal_Icon.png": "Berzerker's Crystal", - "Black_Cloud_Bow_Icon.png": "Black Cloud Bow", - "Black_Garnet_Foolproof_Icon.png": "Black Garnet Foolproof", - "Black_Opal_Foolproof_Icon.png": "Black Opal Foolproof", - "Black_Thistle_Icon.png": "Black Thistle", - "Bloodmark_Crossbow_Icon.png": "Bloodmark Crossbow", - "Bracelet_of_Binding_Icon.png": "Bracelet of Binding", - "Bracers_of_Leikothas_Tears_Icon.png": "Bracers of Leikotha's Tears", - "Bradors_Frozen_Eye_Icon.png": "Bradors Frozen Eye", - "Brawlers_Crystal_Icon.png": "Brawler's Crystal", - "Breastplate_of_Leikothas_Tears_Icon.png": "Breastplate of Leikotha's Tears", - "Canfield_Cleaver_Icon.png": "Canfield Cleaver", - "Casino_Exquisite_Keyring_Icon.png": "Casino Exquisite Keyring", - "Champions_Demise_Icon.png": "Champions Demise", - "Chefs_Crystal_Icon.png": "Chef's Crystal", - "Chitin_Cracker_Icon.png": "Chitin Cracker", - "Circle_of_Pure_Thought_Icon.png": "Circle of Pure Thought", - "Converters_Crystal_Icon.png": "Converter's Crystal", - "Corruptors_Crystal_Icon.png": "Corruptor's Crystal", - "Corsairs_Arc_Icon.png": "Corsairs Arc", - "Count_Renaris_Equalizer_Icon.png": "Count Renari's Equalizer", - "Dart_Flicker_Icon.png": "Dart Flicker", - "Deaths_Grip_Staff_Icon.png": "Death's Grip Staff", - "Decapitators_Blade_Icon.png": "Decapitators Blade", - "Deceivers_Crystal_Icon.png": "Deceiver's Crystal", - "Defiler_of_Milantos_Icon.png": "Defiler of Milantos", - "Deru_Limb_Icon.png": "Deru Limb", - "Desert_Wyrm_Icon.png": "Desert Wyrm", - "Dodgers_Crystal_Icon.png": "Dodger's Crystal", - "Dragonspine_Bow_Icon.png": "Dragonspine Bow", - "Dread_Marauder_Shield_Icon.png": "Dread Marauder Shield", - "Dreamseer_Bangle_Icon.png": "Dreamseer Bangle", - "Drifters_Atlatl_Icon.png": "Drifters Atlatl", - "Dripping_Death_Icon.png": "Dripping Death", - "Duelists_Jewel_Icon.png": "Duelist's Jewel", - "Dusk_Coat_Icon.png": "Dusk Coat", - "Dusk_Leggings_Icon.png": "Dusk Leggings", - "Ebonwood_Shortbow_Icon.png": "Ebonwood Shortbow", - "Elysas_Crystal_Icon.png": "Elysa's Crystal", - "Emerald_Foolproof_Icon.png": "Emerald Foolproof", - "Enchanters_Crystal_Icon.png": "Enchanter's Crystal", - "Eternal_Health_Kit_Icon.png": "Eternal Health Kit", - "Eternal_Mana_Charge_Icon.png": "Eternal Mana Charge", - "Eternal_Mana_Kit_Icon.png": "Eternal Mana Kit", - "Eternal_Stamina_Kit_Icon.png": "Eternal Stamina Kit", - "Evaders_Crystal_Icon.png": "Evader's Crystal", - "Executors_Jewel_Icon.png": "Executor's Jewel", - "Eye_of_Muramm_Icon.png": "Eye of Muramm", - "Feathered_Razor_Icon.png": "Feathered Razor", - "Fire_Opal_Foolproof_Icon.png": "Fire Opal Foolproof", - "Fist_of_Three_Principles_Icon.png": "Fist of Three Principles", - "Fletchers_Crystal_Icon.png": "Fletcher's Crystal", - "Footmans_Boots_Icon.png": "Footmans Boots", - "Gauntlets_of_Leikothas_Tears_Icon.png": "Gauntlets of Leikotha's Tears", - "Gauntlets_of_the_Crimson_Star_Icon.png": "Gauntlets of the Crimson Star", - "Gelidite_Boots_Icon.png": "Gelidite Boots", - "Gelidite_Bracers_Icon.png": "Gelidite Bracers", - "Gelidite_Breastplate_Icon.png": "Gelidite Breastplate", - "Gelidite_Gauntlets_Icon.png": "Gelidite Gauntlets", - "Gelidite_Girth_Icon.png": "Gelidite Girth", - "Gelidite_Greaves_Icon.png": "Gelidite Greaves", - "Gelidite_Mitre_Icon.png": "Gelidite Mitre", - "Gelidite_Pauldrons_Icon.png": "Gelidite Pauldrons", - "Gelidite_Tassets_Icon.png": "Gelidite Tassets", - "Gelids_Jewel_Icon.png": "Gelid's Jewel", - "Girth_of_Leikothas_Tears_Icon.png": "Girth of Leikotha's Tears", - "Golden_Snake_Choker_Icon.png": "Golden Snake Choker", - "Greaves_of_Leikothas_Tears_Icon.png": "Greaves of Leikotha's Tears", - "Guardian_of_Pwyll_Icon.png": "Guardian of Pwyll", - "Heart_of_Darkest_Flame_Icon.png": "Heart of Darkest Flame", - "Helm_of_Leikothas_Tears_Icon.png": "Helm of Leikotha's Tears", - "Hevelios_Half-Moon_Icon.png": "Hevelios Half-Moon", - "Hieroglyph_of_Alchemy_Mastery_Icon.png": "Hieroglyph of Alchemy Mastery", - "Hieroglyph_of_Arcane_Enlightenment_Icon.png": "Hieroglyph of Arcane Enlightenment", - "Hieroglyph_of_Armor_Tinkering_Expertise_Icon.png": "Hieroglyph of Armor Tinkering Expertise", - "Hieroglyph_of_Cooking_Mastery_Icon.png": "Hieroglyph of Cooking Mastery", - "Hieroglyph_of_Creature_Enchantment_Mastery_Icon.png": "Hieroglyph of Creature Enchantment Mastery", - "Hieroglyph_of_Deception_Mastery_Icon.png": "Hieroglyph of Deception Mastery", - "Hieroglyph_of_Dirty_Fighting_Mastery_Icon.png": "Hieroglyph of Dirty Fighting Mastery", - "Hieroglyph_of_Dual_Wield_Mastery_Icon.png": "Hieroglyph of Dual Wield Mastery", - "Hieroglyph_of_Fealty_Icon.png": "Hieroglyph of Fealty", - "Hieroglyph_of_Finesse_Weapon_Mastery_Icon.png": "Hieroglyph of Finesse Weapon Mastery", - "Hieroglyph_of_Fletching_Mastery_Icon.png": "Hieroglyph of Fletching Mastery", - "Hieroglyph_of_Healing_Mastery_Icon.png": "Hieroglyph of Healing Mastery", - "Hieroglyph_of_Heavy_Weapon_Mastery_Icon.png": "Hieroglyph of Heavy Weapon Mastery", - "Hieroglyph_of_Impregnability_Icon.png": "Hieroglyph of Impregnability", - "Hieroglyph_of_Invulnerability_Icon.png": "Hieroglyph of Invulnerability", - "Hieroglyph_of_Item_Enchantment_Mastery_Icon.png": "Hieroglyph of Item Enchantment Mastery", - "Hieroglyph_of_Item_Tinkering_Expertise_Icon.png": "Hieroglyph of Item Tinkering Expertise", - "Hieroglyph_of_Jumping_Mastery_Icon.png": "Hieroglyph of Jumping Mastery", - "Hieroglyph_of_Leadership_Mastery_Icon.png": "Hieroglyph of Leadership Mastery", - "Hieroglyph_of_Life_Magic_Mastery_Icon.png": "Hieroglyph of Life Magic Mastery", - "Hieroglyph_of_Light_Weapon_Mastery_Icon.png": "Hieroglyph of Light Weapon Mastery", - "Hieroglyph_of_Lockpick_Mastery_Icon.png": "Hieroglyph of Lockpick Mastery", - "Hieroglyph_of_Magic_Item_Tinkering_Expertise_Icon.png": "Hieroglyph of Magic Item Tinkering Expertise", - "Hieroglyph_of_Magic_Resistance_Icon.png": "Hieroglyph of Magic Resistance", - "Hieroglyph_of_Mana_Conversion_Mastery_Icon.png": "Hieroglyph of Mana Conversion Mastery", - "Hieroglyph_of_Missile_Weapon_Mastery_Icon.png": "Hieroglyph of Missile Weapon Mastery", - "Hieroglyph_of_Monster_Attunement_Icon.png": "Hieroglyph of Monster Attunement", - "Hieroglyph_of_Person_Attunement_Icon.png": "Hieroglyph of Person Attunement", - "Hieroglyph_of_Recklessness_Mastery_Icon.png": "Hieroglyph of Recklessness Mastery", - "Hieroglyph_of_Shield_Mastery_Icon.png": "Hieroglyph of Shield Mastery", - "Hieroglyph_of_Sneak_Attack_Mastery_Icon.png": "Hieroglyph of Sneak Attack Mastery", - "Hieroglyph_of_Sprint_Icon.png": "Hieroglyph of Sprint", - "Hieroglyph_of_Two_Handed_Weapons_Mastery_Icon.png": "Hieroglyph of Two Handed Weapons Mastery", - "Hieroglyph_of_Void_Magic_Mastery_Icon.png": "Hieroglyph of Void Magic Mastery", - "Hieroglyph_of_War_Magic_Mastery_Icon.png": "Hieroglyph of War Magic Mastery", - "Hieroglyph_of_Weapon_Tinkering_Expertise_Icon.png": "Hieroglyph of Weapon Tinkering Expertise", - "Hieromancers_Crystal_Icon.png": "Hieromancer's Crystal", - "Hooded_Serpent_Slinger_Icon.png": "Hooded Serpent Slinger", - "Hunters_Crystal_Icon.png": "Hunter's Crystal", - "Huntsmans_Dart-Thrower_Icon.png": "Huntsmans Dart-Thrower", - "Ibriyas_Choice_Icon.png": "Ibriyas Choice", - "Ideograph_of_Acid_Protection_Icon.png": "Ideograph of Acid Protection", - "Ideograph_of_Armor_Icon.png": "Ideograph of Armor", - "Ideograph_of_Blade_Protection_Icon.png": "Ideograph of Blade Protection", - "Ideograph_of_Bludgeoning_Protection_Icon.png": "Ideograph of Bludgeoning Protection", - "Ideograph_of_Fire_Protection_Icon.png": "Ideograph of Fire Protection", - "Ideograph_of_Frost_Protection_Icon.png": "Ideograph of Frost Protection", - "Ideograph_of_Lightning_Protection_Icon.png": "Ideograph of Lightning Protection", - "Ideograph_of_Mana_Renewal_Icon.png": "Ideograph of Mana Renewal", - "Ideograph_of_Piercing_Protection_Icon.png": "Ideograph of Piercing Protection", - "Ideograph_of_Regeneration_Icon.png": "Ideograph of Regeneration", - "Ideograph_of_Revitalization_Icon.png": "Ideograph of Revitalization", - "Imbuers_Crystal_Icon.png": "Imbuer's Crystal", - "Imperial_Chevairds_Helm_Icon.png": "Imperial Chevairds Helm", - "Imperial_Topaz_Foolproof_Icon.png": "Imperial Topaz Foolproof", - "Infernos_Jewel_Icon.png": "Inferno's Jewel", - "Infinite_Deadly_Acid_Arrowheads_Icon.png": "Infinite Deadly Acid Arrowheads", - "Infinite_Deadly_Armor_Piercing_Arrowheads_Icon.png": "Infinite Deadly Armor Piercing Arrowheads", - "Infinite_Deadly_Blunt_Arrowheads_Icon.png": "Infinite Deadly Blunt Arrowheads", - "Infinite_Deadly_Broad_Arrowheads_Icon.png": "Infinite Deadly Broad Arrowheads", - "Infinite_Deadly_Electric_Arrowheads_Icon.png": "Infinite Deadly Electric Arrowheads", - "Infinite_Deadly_Fire_Arrowheads_Icon.png": "Infinite Deadly Fire Arrowheads", - "Infinite_Deadly_Frog_Crotch_Arrowheads_Icon.png": "Infinite Deadly Frog Crotch Arrowheads", - "Infinite_Deadly_Frost_Arrowheads_Icon.png": "Infinite Deadly Frost Arrowheads", - "Infinite_Elaborate_Dried_Rations_Icon.png": "Infinite Elaborate Dried Rations", - "Infinite_Ivory_Icon.png": "Infinite Ivory", - "Infinite_Leather_Icon.png": "Infinite Leather", - "Infinite_Simple_Dried_Rations_Icon.png": "Infinite Simple Dried Rations", - "Invigorating_Elixir_Icon.png": "Invigorating Elixir", - "Iron_Bull_Icon.png": "Iron Bull", - "Itakas_Naginata_Icon.png": "Itakas Naginata", - "Jet_Foolproof_Icon.png": "Jet Foolproof", - "Lichs_Pearl_Icon.png": "Lich's Pearl", - "Life_Givers_Crystal_Icon.png": "Life Giver's Crystal", - "Limitless_Lockpick_Icon.png": "Limitless Lockpick", - "Loop_of_Opposing_Benedictions_Icon.png": "Loop of Opposing Benedictions", - "Loves_Favor_Icon.png": "Loves Favor", - "Lugians_Pearl_Icon.png": "Lugian's Pearl", - "Mages_Jewel_Icon.png": "Mage's Jewel", - "Maguss_Pearl_Icon.png": "Magus's Pearl", - "Malachite_Slasher_Icon.png": "Malachite Slasher", - "Medicated_Health_Kit_Icon.png": "Medicated Health Kit", - "Medicated_Mana_Kit_Icon.png": "Medicated Mana Kit", - "Medicated_Stamina_Kit_Icon.png": "Medicated Stamina Kit", - "Melees_Jewel_Icon.png": "Melee's Jewel", - "Miraculous_Elixir_Icon.png": "Miraculous Elixir", - "Mirrored_Justice_Icon.png": "Mirrored Justice", - "Monarchs_Crystal_Icon.png": "Monarch's Crystal", - "Moriharus_Kitchen_Knife_Icon.png": "Moriharus Kitchen Knife", - "Morrigans_Vanity_Icon.png": "Morrigans Vanity", - "Necklace_of_Iniquity_Icon.png": "Necklace of Iniquity", - "Observers_Crystal_Icon.png": "Observer's Crystal", - "Olthois_Jewel_Icon.png": "Olthoi's Jewel", - "Orb_of_the_Ironsea_Icon.png": "Orb of the Ironsea", - "Oswalds_Crystal_Icon.png": "Oswald's Crystal", - "Patriarchs_Twilight_Coat_Icon.png": "Patriarchs Twilight Coat", - "Patriarchs_Twilight_Tights_Icon.png": "Patriarchs Twilight Tights", - "Pauldrons_of_Leikothas_Tears_Icon.png": "Pauldrons of Leikotha's Tears", - "Pearl_of_Acid_Baning_Icon.png": "Pearl of Acid Baning", - "Pearl_of_Blade_Baning_Icon.png": "Pearl of Blade Baning", - "Pearl_of_Blood_Drinking_Icon.png": "Pearl of Blood Drinking", - "Pearl_of_Bludgeon_Baning_Icon.png": "Pearl of Bludgeon Baning", - "Pearl_of_Defending_Icon.png": "Pearl of Defending", - "Pearl_of_Flame_Baning_Icon.png": "Pearl of Flame Baning", - "Pearl_of_Frost_Baning_Icon.png": "Pearl of Frost Baning", - "Pearl_of_Heart_Seeking_Icon.png": "Pearl of Heart Seeking", - "Pearl_of_Hermetic_Linking_Icon.png": "Pearl of Hermetic Linking", - "Pearl_of_Impenetrability_Icon.png": "Pearl of Impenetrability", - "Pearl_of_Lightning_Baning_Icon.png": "Pearl of Lightning Baning", - "Pearl_of_Pierce_Baning_Icon.png": "Pearl of Pierce Baning", - "Pearl_of_Spirit_Drinking_Icon.png": "Pearl of Spirit Drinking", - "Pearl_of_Swift_Killing_Icon.png": "Pearl of Swift Killing", - "Perennial_Argenory_Dye_Icon.png": "Perennial Argenory Dye", - "Perennial_Berimphur_Dye_Icon.png": "Perennial Berimphur Dye", - "Perennial_Botched_Dye_Icon.png": "Perennial Botched Dye", - "Perennial_Colban_Dye_Icon.png": "Perennial Colban Dye", - "Perennial_Hennacin_Dye_Icon.png": "Perennial Hennacin Dye", - "Perennial_Lapyan_Dye_Icon.png": "Perennial Lapyan Dye", - "Perennial_Minalim_Dye_Icon.png": "Perennial Minalim Dye", - "Perennial_Relanim_Dye_Icon.png": "Perennial Relanim Dye", - "Perennial_Thananim_Dye_Icon.png": "Perennial Thananim Dye", - "Perennial_Verdalim_Dye_Icon.png": "Perennial Verdalim Dye", - "Peridot_Foolproof_Icon.png": "Peridot Foolproof", - "Physicians_Crystal_Icon.png": "Physician's Crystal", - "Pictograph_of_Coordination_Icon.png": "Pictograph of Coordination", - "Pictograph_of_Endurance_Icon.png": "Pictograph of Endurance", - "Pictograph_of_Focus_Icon.png": "Pictograph of Focus", - "Pictograph_of_Quickness_Icon.png": "Pictograph of Quickness", - "Pictograph_of_Strength_Icon.png": "Pictograph of Strength", - "Pictograph_of_Willpower_Icon.png": "Pictograph of Willpower", - "Pillar_of_Fearlessness_Icon.png": "Pillar of Fearlessness", - "Pitfighters_Edge_Icon.png": "Pitfighters Edge", - "Red_Garnet_Foolproof_Icon.png": "Red Garnet Foolproof", - "Refreshing_Elixir_Icon.png": "Refreshing Elixir", - "Resisters_Crystal_Icon.png": "Resister's Crystal", - "Revenants_Scythe_Icon.png": "Revenants Scythe", - "Ridgeback_Dagger_Icon.png": "Ridgeback Dagger", - "Ring_of_Channeling_Icon.png": "Ring of Channeling", - "Rogues_Crystal_Icon.png": "Rogue's Crystal", - "Royal_Ladle_Icon.png": "Royal Ladle", - "Rune_of_Acid_Bane_Icon.png": "Rune of Acid Bane", - "Rune_of_Blade_Bane_Icon.png": "Rune of Blade Bane", - "Rune_of_Blood_Drinker_Icon.png": "Rune of Blood Drinker", - "Rune_of_Bludgeon_Bane_Icon.png": "Rune of Bludgeon Bane", - "Rune_of_Defender_Icon.png": "Rune of Defender", - "Rune_of_Dispel_Icon.png": "Rune of Dispel", - "Rune_of_Flame_Bane_Icon.png": "Rune of Flame Bane", - "Rune_of_Frost_Bane_Icon.png": "Rune of Frost Bane", - "Rune_of_Heart_Seeker_Icon.png": "Rune of Heart Seeker", - "Rune_of_Hermetic_Link_Icon.png": "Rune of Hermetic Link", - "Rune_of_Impenetrability_Icon.png": "Rune of Impenetrability", - "Rune_of_Lifestone_Recall_Icon.png": "Rune of Lifestone Recall", - "Rune_of_Lightning_Bane_Icon.png": "Rune of Lightning Bane", - "Rune_of_Pierce_Bane_Icon.png": "Rune of Pierce Bane", - "Rune_of_Portal_Recall_Icon.png": "Rune of Portal Recall", - "Rune_of_Spirit_Drinker_Icon.png": "Rune of Spirit Drinker", - "Rune_of_Swift_Killer_Icon.png": "Rune of Swift Killer", - "Scholars_Crystal_Icon.png": "Scholar's Crystal", - "Serpents_Flight_Icon.png": "Serpents Flight", - "Shield_of_Engorgement_Icon.png": "Shield of Engorgement", - "Shimmering_Skeleton_Key_Icon.png": "Shimmering Skeleton Key", - "Skullpuncher_Icon.png": "Skullpuncher", - "Smite_Icon.png": "Smite", - "Smithys_Crystal_Icon.png": "Smithy's Crystal", - "Spear_of_Lost_Truths_Icon.png": "Spear of Lost Truths", - "Spirit_Shifting_Staff_Icon.png": "Spirit Shifting Staff", - "Sprinters_Pearl_Icon.png": "Sprinter's Pearl", - "Squires_Glaive_Icon.png": "Squire's Glaive", - "Staff_of_All_Aspects_Icon.png": "Staff of All Aspects", - "Staff_of_Fettered_Souls_Icon.png": "Staff of Fettered Souls", - "Staff_of_Tendrils_Icon.png": "Staff of Tendrils", - "Star_of_Gharun_Icon.png": "Star of Gharun", - "Star_of_Tukal_Icon.png": "Star of Tukal", - "Steel_Butterfly_Icon.png": "Steel Butterfly", - "Steel_Wall_Boots_Icon.png": "Steel Wall Boots", - "Subjugator_Icon.png": "Subjugator", - "Sunstone_Foolproof_Icon.png": "Sunstone Foolproof", - "Swift_Strike_Ring_Icon.png": "Swift Strike Ring", - "Tassets_of_Leikothas_Tears_Icon.png": "Tassets of Leikotha's Tears", - "Thiefs_Crystal_Icon.png": "Thief's Crystal", - "Thorstens_Crystal_Icon.png": "Thorsten's Crystal", - "Thunderhead_Icon.png": "Thunderhead", - "Tings_Crystal_Icon.png": "Ting's Crystal", - "Tinkers_Crystal_Icon.png": "Tinker's Crystal", - "Tracker_Boots_Icon.png": "Tracker Boots", - "Tri_Blade_Spear_Icon.png": "Tri-Blade Spear", - "Tusked_Axe_of_Ayan_Baqur_Icon.png": "Tusked Axe of Ayan Baqur", - "Tuskers_Jewel_Icon.png": "Tusker's Jewel", - "Twin_Ward_Icon.png": "Twin Ward", - "Unchained_Prowess_Ring_Icon.png": "Unchained Prowess Ring", - "Ursuins_Pearl_Icon.png": "Ursuin's Pearl", - "Valkeers_Helm_Icon.png": "Valkeers Helm", - "Vaulters_Crystal_Icon.png": "Vaulter's Crystal", - "Wand_of_the_Frore_Crystal_Icon.png": "Wand of the Frore Crystal", - "Warriors_Crystal_Icon.png": "Warrior's Crystal", - "Warriors_Jewel_Icon.png": "Warrior's Jewel", - "Wayfarers_Pearl_Icon.png": "Wayfarer's Pearl", - "Weeping_Ring_Icon.png": "Weeping Ring", - "White_Sapphire_Foolproof_Icon.png": "White Sapphire Foolproof", - "Wings_of_Rakhil_Icon.png": "Wings of Rakhil", - "Winters_Heart_Icon.png": "Winters Heart", - "Yellow_Topaz_Foolproof_Icon.png": "Yellow Topaz Foolproof", - "Zefirs_Breath_Icon.png": "Zefir's Breath", - "Zefirs_Crystal_Icon.png": "Zefir's Crystal", - "Zharalim_Crookblade_Icon.png": "Zharalim Crookblade", - "Zircon_Foolproof_Icon.png": "Zircon Foolproof" -} \ No newline at end of file diff --git a/discord-rare-monitor/icons/Adepts_Fervor_Icon.png b/discord-rare-monitor/icons/Adepts_Fervor_Icon.png deleted file mode 100644 index d12568b7..00000000 Binary files a/discord-rare-monitor/icons/Adepts_Fervor_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Adherents_Crystal_Icon.png b/discord-rare-monitor/icons/Adherents_Crystal_Icon.png deleted file mode 100644 index be76b2ff..00000000 Binary files a/discord-rare-monitor/icons/Adherents_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Alchemists_Crystal_Icon.png b/discord-rare-monitor/icons/Alchemists_Crystal_Icon.png deleted file mode 100644 index 52e4b394..00000000 Binary files a/discord-rare-monitor/icons/Alchemists_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Aquamarine_Foolproof_Icon.png b/discord-rare-monitor/icons/Aquamarine_Foolproof_Icon.png deleted file mode 100644 index 314406f6..00000000 Binary files a/discord-rare-monitor/icons/Aquamarine_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Archers_Jewel_Icon.png b/discord-rare-monitor/icons/Archers_Jewel_Icon.png deleted file mode 100644 index 644eda49..00000000 Binary files a/discord-rare-monitor/icons/Archers_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Aristocrats_Bracelet_Icon.png b/discord-rare-monitor/icons/Aristocrats_Bracelet_Icon.png deleted file mode 100644 index df13bd7d..00000000 Binary files a/discord-rare-monitor/icons/Aristocrats_Bracelet_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Artificers_Crystal_Icon.png b/discord-rare-monitor/icons/Artificers_Crystal_Icon.png deleted file mode 100644 index 305b81fa..00000000 Binary files a/discord-rare-monitor/icons/Artificers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Artists_Crystal_Icon.png b/discord-rare-monitor/icons/Artists_Crystal_Icon.png deleted file mode 100644 index 21ac0644..00000000 Binary files a/discord-rare-monitor/icons/Artists_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Assassins_Whisper_Icon.png b/discord-rare-monitor/icons/Assassins_Whisper_Icon.png deleted file mode 100644 index 357524e2..00000000 Binary files a/discord-rare-monitor/icons/Assassins_Whisper_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Astyrrians_Jewel_Icon.png b/discord-rare-monitor/icons/Astyrrians_Jewel_Icon.png deleted file mode 100644 index da146d23..00000000 Binary files a/discord-rare-monitor/icons/Astyrrians_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Band_of_Elemental_Harmony_Icon.png b/discord-rare-monitor/icons/Band_of_Elemental_Harmony_Icon.png deleted file mode 100644 index 6efe0b6e..00000000 Binary files a/discord-rare-monitor/icons/Band_of_Elemental_Harmony_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Baton_of_Tirethas_Icon.png b/discord-rare-monitor/icons/Baton_of_Tirethas_Icon.png deleted file mode 100644 index 18ed3ebf..00000000 Binary files a/discord-rare-monitor/icons/Baton_of_Tirethas_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Bearded_Axe_of_Souia-Vey_Icon.png b/discord-rare-monitor/icons/Bearded_Axe_of_Souia-Vey_Icon.png deleted file mode 100644 index d613c982..00000000 Binary files a/discord-rare-monitor/icons/Bearded_Axe_of_Souia-Vey_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ben_Tens_Crystal_Icon.png b/discord-rare-monitor/icons/Ben_Tens_Crystal_Icon.png deleted file mode 100644 index 58a7e344..00000000 Binary files a/discord-rare-monitor/icons/Ben_Tens_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Berzerkers_Crystal_Icon.png b/discord-rare-monitor/icons/Berzerkers_Crystal_Icon.png deleted file mode 100644 index 018147c7..00000000 Binary files a/discord-rare-monitor/icons/Berzerkers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Black_Cloud_Bow_Icon.png b/discord-rare-monitor/icons/Black_Cloud_Bow_Icon.png deleted file mode 100644 index 354a1519..00000000 Binary files a/discord-rare-monitor/icons/Black_Cloud_Bow_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Black_Garnet_Foolproof_Icon.png b/discord-rare-monitor/icons/Black_Garnet_Foolproof_Icon.png deleted file mode 100644 index f93a0745..00000000 Binary files a/discord-rare-monitor/icons/Black_Garnet_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Black_Opal_Foolproof_Icon.png b/discord-rare-monitor/icons/Black_Opal_Foolproof_Icon.png deleted file mode 100644 index b1ed1f0e..00000000 Binary files a/discord-rare-monitor/icons/Black_Opal_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Black_Thistle_Icon.png b/discord-rare-monitor/icons/Black_Thistle_Icon.png deleted file mode 100644 index 06f4714d..00000000 Binary files a/discord-rare-monitor/icons/Black_Thistle_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Bloodmark_Crossbow_Icon.png b/discord-rare-monitor/icons/Bloodmark_Crossbow_Icon.png deleted file mode 100644 index b3177c2b..00000000 Binary files a/discord-rare-monitor/icons/Bloodmark_Crossbow_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Bracelet_of_Binding_Icon.png b/discord-rare-monitor/icons/Bracelet_of_Binding_Icon.png deleted file mode 100644 index 6d87690b..00000000 Binary files a/discord-rare-monitor/icons/Bracelet_of_Binding_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Bracers_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Bracers_of_Leikothas_Tears_Icon.png deleted file mode 100644 index d2802903..00000000 Binary files a/discord-rare-monitor/icons/Bracers_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Bradors_Frozen_Eye_Icon.png b/discord-rare-monitor/icons/Bradors_Frozen_Eye_Icon.png deleted file mode 100644 index f0754455..00000000 Binary files a/discord-rare-monitor/icons/Bradors_Frozen_Eye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Brawlers_Crystal_Icon.png b/discord-rare-monitor/icons/Brawlers_Crystal_Icon.png deleted file mode 100644 index 1e991db4..00000000 Binary files a/discord-rare-monitor/icons/Brawlers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Breastplate_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Breastplate_of_Leikothas_Tears_Icon.png deleted file mode 100644 index a6659339..00000000 Binary files a/discord-rare-monitor/icons/Breastplate_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Canfield_Cleaver_Icon.png b/discord-rare-monitor/icons/Canfield_Cleaver_Icon.png deleted file mode 100644 index 54e1a148..00000000 Binary files a/discord-rare-monitor/icons/Canfield_Cleaver_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Casino_Exquisite_Keyring_Icon.png b/discord-rare-monitor/icons/Casino_Exquisite_Keyring_Icon.png deleted file mode 100644 index 570cdd25..00000000 Binary files a/discord-rare-monitor/icons/Casino_Exquisite_Keyring_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Champions_Demise_Icon.png b/discord-rare-monitor/icons/Champions_Demise_Icon.png deleted file mode 100644 index 44c78ff6..00000000 Binary files a/discord-rare-monitor/icons/Champions_Demise_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Chefs_Crystal_Icon.png b/discord-rare-monitor/icons/Chefs_Crystal_Icon.png deleted file mode 100644 index c8683794..00000000 Binary files a/discord-rare-monitor/icons/Chefs_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Chitin_Cracker_Icon.png b/discord-rare-monitor/icons/Chitin_Cracker_Icon.png deleted file mode 100644 index 98be641e..00000000 Binary files a/discord-rare-monitor/icons/Chitin_Cracker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Circle_of_Pure_Thought_Icon.png b/discord-rare-monitor/icons/Circle_of_Pure_Thought_Icon.png deleted file mode 100644 index bbc2fdff..00000000 Binary files a/discord-rare-monitor/icons/Circle_of_Pure_Thought_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Converters_Crystal_Icon.png b/discord-rare-monitor/icons/Converters_Crystal_Icon.png deleted file mode 100644 index a5d582dd..00000000 Binary files a/discord-rare-monitor/icons/Converters_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Corruptors_Crystal_Icon.png b/discord-rare-monitor/icons/Corruptors_Crystal_Icon.png deleted file mode 100644 index 0bb16969..00000000 Binary files a/discord-rare-monitor/icons/Corruptors_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Corsairs_Arc_Icon.png b/discord-rare-monitor/icons/Corsairs_Arc_Icon.png deleted file mode 100644 index b4d6baff..00000000 Binary files a/discord-rare-monitor/icons/Corsairs_Arc_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Count_Renaris_Equalizer_Icon.png b/discord-rare-monitor/icons/Count_Renaris_Equalizer_Icon.png deleted file mode 100644 index 78bd2b64..00000000 Binary files a/discord-rare-monitor/icons/Count_Renaris_Equalizer_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dart_Flicker_Icon.png b/discord-rare-monitor/icons/Dart_Flicker_Icon.png deleted file mode 100644 index 8956b25e..00000000 Binary files a/discord-rare-monitor/icons/Dart_Flicker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Deaths_Grip_Staff_Icon.png b/discord-rare-monitor/icons/Deaths_Grip_Staff_Icon.png deleted file mode 100644 index d9ad6b8d..00000000 Binary files a/discord-rare-monitor/icons/Deaths_Grip_Staff_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Decapitators_Blade_Icon.png b/discord-rare-monitor/icons/Decapitators_Blade_Icon.png deleted file mode 100644 index 00c9029b..00000000 Binary files a/discord-rare-monitor/icons/Decapitators_Blade_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Deceivers_Crystal_Icon.png b/discord-rare-monitor/icons/Deceivers_Crystal_Icon.png deleted file mode 100644 index 81183593..00000000 Binary files a/discord-rare-monitor/icons/Deceivers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Defiler_of_Milantos_Icon.png b/discord-rare-monitor/icons/Defiler_of_Milantos_Icon.png deleted file mode 100644 index 3cac6845..00000000 Binary files a/discord-rare-monitor/icons/Defiler_of_Milantos_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Deru_Limb_Icon.png b/discord-rare-monitor/icons/Deru_Limb_Icon.png deleted file mode 100644 index 3777a2ce..00000000 Binary files a/discord-rare-monitor/icons/Deru_Limb_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Desert_Wyrm_Icon.png b/discord-rare-monitor/icons/Desert_Wyrm_Icon.png deleted file mode 100644 index f541c874..00000000 Binary files a/discord-rare-monitor/icons/Desert_Wyrm_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dodgers_Crystal_Icon.png b/discord-rare-monitor/icons/Dodgers_Crystal_Icon.png deleted file mode 100644 index 3f54a4ca..00000000 Binary files a/discord-rare-monitor/icons/Dodgers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dragonspine_Bow_Icon.png b/discord-rare-monitor/icons/Dragonspine_Bow_Icon.png deleted file mode 100644 index ff14a66b..00000000 Binary files a/discord-rare-monitor/icons/Dragonspine_Bow_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dread_Marauder_Shield_Icon.png b/discord-rare-monitor/icons/Dread_Marauder_Shield_Icon.png deleted file mode 100644 index 61572e3d..00000000 Binary files a/discord-rare-monitor/icons/Dread_Marauder_Shield_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dreamseer_Bangle_Icon.png b/discord-rare-monitor/icons/Dreamseer_Bangle_Icon.png deleted file mode 100644 index 09963846..00000000 Binary files a/discord-rare-monitor/icons/Dreamseer_Bangle_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Drifters_Atlatl_Icon.png b/discord-rare-monitor/icons/Drifters_Atlatl_Icon.png deleted file mode 100644 index 4cef64b2..00000000 Binary files a/discord-rare-monitor/icons/Drifters_Atlatl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dripping_Death_Icon.png b/discord-rare-monitor/icons/Dripping_Death_Icon.png deleted file mode 100644 index 0686177c..00000000 Binary files a/discord-rare-monitor/icons/Dripping_Death_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Duelists_Jewel_Icon.png b/discord-rare-monitor/icons/Duelists_Jewel_Icon.png deleted file mode 100644 index 65632b42..00000000 Binary files a/discord-rare-monitor/icons/Duelists_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dusk_Coat_Icon.png b/discord-rare-monitor/icons/Dusk_Coat_Icon.png deleted file mode 100644 index b54d220e..00000000 Binary files a/discord-rare-monitor/icons/Dusk_Coat_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Dusk_Leggings_Icon.png b/discord-rare-monitor/icons/Dusk_Leggings_Icon.png deleted file mode 100644 index bb0432a0..00000000 Binary files a/discord-rare-monitor/icons/Dusk_Leggings_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ebonwood_Shortbow_Icon.png b/discord-rare-monitor/icons/Ebonwood_Shortbow_Icon.png deleted file mode 100644 index 90ebdf52..00000000 Binary files a/discord-rare-monitor/icons/Ebonwood_Shortbow_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Elysas_Crystal_Icon.png b/discord-rare-monitor/icons/Elysas_Crystal_Icon.png deleted file mode 100644 index 5a479521..00000000 Binary files a/discord-rare-monitor/icons/Elysas_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Emerald_Foolproof_Icon.png b/discord-rare-monitor/icons/Emerald_Foolproof_Icon.png deleted file mode 100644 index b12aa774..00000000 Binary files a/discord-rare-monitor/icons/Emerald_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Enchanters_Crystal_Icon.png b/discord-rare-monitor/icons/Enchanters_Crystal_Icon.png deleted file mode 100644 index 20873ff2..00000000 Binary files a/discord-rare-monitor/icons/Enchanters_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Eternal_Health_Kit_Icon.png b/discord-rare-monitor/icons/Eternal_Health_Kit_Icon.png deleted file mode 100644 index ff0d0a01..00000000 Binary files a/discord-rare-monitor/icons/Eternal_Health_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Eternal_Mana_Charge_Icon.png b/discord-rare-monitor/icons/Eternal_Mana_Charge_Icon.png deleted file mode 100644 index f82907ac..00000000 Binary files a/discord-rare-monitor/icons/Eternal_Mana_Charge_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Eternal_Mana_Kit_Icon.png b/discord-rare-monitor/icons/Eternal_Mana_Kit_Icon.png deleted file mode 100644 index 951cbd77..00000000 Binary files a/discord-rare-monitor/icons/Eternal_Mana_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Eternal_Stamina_Kit_Icon.png b/discord-rare-monitor/icons/Eternal_Stamina_Kit_Icon.png deleted file mode 100644 index da964083..00000000 Binary files a/discord-rare-monitor/icons/Eternal_Stamina_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Evaders_Crystal_Icon.png b/discord-rare-monitor/icons/Evaders_Crystal_Icon.png deleted file mode 100644 index cdc7010f..00000000 Binary files a/discord-rare-monitor/icons/Evaders_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Executors_Jewel_Icon.png b/discord-rare-monitor/icons/Executors_Jewel_Icon.png deleted file mode 100644 index c21a2d6a..00000000 Binary files a/discord-rare-monitor/icons/Executors_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Eye_of_Muramm_Icon.png b/discord-rare-monitor/icons/Eye_of_Muramm_Icon.png deleted file mode 100644 index 72be9788..00000000 Binary files a/discord-rare-monitor/icons/Eye_of_Muramm_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Feathered_Razor_Icon.png b/discord-rare-monitor/icons/Feathered_Razor_Icon.png deleted file mode 100644 index e921ed5f..00000000 Binary files a/discord-rare-monitor/icons/Feathered_Razor_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Fire_Opal_Foolproof_Icon.png b/discord-rare-monitor/icons/Fire_Opal_Foolproof_Icon.png deleted file mode 100644 index b03afd41..00000000 Binary files a/discord-rare-monitor/icons/Fire_Opal_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Fist_of_Three_Principles_Icon.png b/discord-rare-monitor/icons/Fist_of_Three_Principles_Icon.png deleted file mode 100644 index 31bb2bdd..00000000 Binary files a/discord-rare-monitor/icons/Fist_of_Three_Principles_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Fletchers_Crystal_Icon.png b/discord-rare-monitor/icons/Fletchers_Crystal_Icon.png deleted file mode 100644 index 71a0bb5b..00000000 Binary files a/discord-rare-monitor/icons/Fletchers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Footmans_Boots_Icon.png b/discord-rare-monitor/icons/Footmans_Boots_Icon.png deleted file mode 100644 index d61c4c4a..00000000 Binary files a/discord-rare-monitor/icons/Footmans_Boots_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gauntlets_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Gauntlets_of_Leikothas_Tears_Icon.png deleted file mode 100644 index cea0165f..00000000 Binary files a/discord-rare-monitor/icons/Gauntlets_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gauntlets_of_the_Crimson_Star_Icon.png b/discord-rare-monitor/icons/Gauntlets_of_the_Crimson_Star_Icon.png deleted file mode 100644 index f3367237..00000000 Binary files a/discord-rare-monitor/icons/Gauntlets_of_the_Crimson_Star_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Boots_Icon.png b/discord-rare-monitor/icons/Gelidite_Boots_Icon.png deleted file mode 100644 index aff6d1ba..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Boots_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Bracers_Icon.png b/discord-rare-monitor/icons/Gelidite_Bracers_Icon.png deleted file mode 100644 index 9353fc75..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Bracers_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Breastplate_Icon.png b/discord-rare-monitor/icons/Gelidite_Breastplate_Icon.png deleted file mode 100644 index c0ecbda5..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Breastplate_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Gauntlets_Icon.png b/discord-rare-monitor/icons/Gelidite_Gauntlets_Icon.png deleted file mode 100644 index e4c1eeca..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Gauntlets_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Girth_Icon.png b/discord-rare-monitor/icons/Gelidite_Girth_Icon.png deleted file mode 100644 index 8118f64a..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Girth_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Greaves_Icon.png b/discord-rare-monitor/icons/Gelidite_Greaves_Icon.png deleted file mode 100644 index 3efe8bbb..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Greaves_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Mitre_Icon.png b/discord-rare-monitor/icons/Gelidite_Mitre_Icon.png deleted file mode 100644 index debe1756..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Mitre_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Pauldrons_Icon.png b/discord-rare-monitor/icons/Gelidite_Pauldrons_Icon.png deleted file mode 100644 index 2b55a576..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Pauldrons_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelidite_Tassets_Icon.png b/discord-rare-monitor/icons/Gelidite_Tassets_Icon.png deleted file mode 100644 index 0e71f332..00000000 Binary files a/discord-rare-monitor/icons/Gelidite_Tassets_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Gelids_Jewel_Icon.png b/discord-rare-monitor/icons/Gelids_Jewel_Icon.png deleted file mode 100644 index 554f8c2c..00000000 Binary files a/discord-rare-monitor/icons/Gelids_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Girth_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Girth_of_Leikothas_Tears_Icon.png deleted file mode 100644 index 2fe7f701..00000000 Binary files a/discord-rare-monitor/icons/Girth_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Golden_Snake_Choker_Icon.png b/discord-rare-monitor/icons/Golden_Snake_Choker_Icon.png deleted file mode 100644 index 13009908..00000000 Binary files a/discord-rare-monitor/icons/Golden_Snake_Choker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Greaves_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Greaves_of_Leikothas_Tears_Icon.png deleted file mode 100644 index 75d695dc..00000000 Binary files a/discord-rare-monitor/icons/Greaves_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Guardian_of_Pwyll_Icon.png b/discord-rare-monitor/icons/Guardian_of_Pwyll_Icon.png deleted file mode 100644 index 85a81659..00000000 Binary files a/discord-rare-monitor/icons/Guardian_of_Pwyll_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Heart_of_Darkest_Flame_Icon.png b/discord-rare-monitor/icons/Heart_of_Darkest_Flame_Icon.png deleted file mode 100644 index daee6eea..00000000 Binary files a/discord-rare-monitor/icons/Heart_of_Darkest_Flame_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Helm_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Helm_of_Leikothas_Tears_Icon.png deleted file mode 100644 index e2429a51..00000000 Binary files a/discord-rare-monitor/icons/Helm_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hevelios_Half-Moon_Icon.png b/discord-rare-monitor/icons/Hevelios_Half-Moon_Icon.png deleted file mode 100644 index 00230389..00000000 Binary files a/discord-rare-monitor/icons/Hevelios_Half-Moon_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Alchemy_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Alchemy_Mastery_Icon.png deleted file mode 100644 index 9a9c3f8f..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Alchemy_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Arcane_Enlightenment_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Arcane_Enlightenment_Icon.png deleted file mode 100644 index 769d55df..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Arcane_Enlightenment_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Armor_Tinkering_Expertise_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Armor_Tinkering_Expertise_Icon.png deleted file mode 100644 index 38ef6553..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Armor_Tinkering_Expertise_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Cooking_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Cooking_Mastery_Icon.png deleted file mode 100644 index 962a6b45..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Cooking_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Creature_Enchantment_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Creature_Enchantment_Mastery_Icon.png deleted file mode 100644 index 760e8bb0..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Creature_Enchantment_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Deception_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Deception_Mastery_Icon.png deleted file mode 100644 index 59de83d3..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Deception_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Dirty_Fighting_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Dirty_Fighting_Mastery_Icon.png deleted file mode 100644 index 158d9088..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Dirty_Fighting_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Dual_Wield_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Dual_Wield_Mastery_Icon.png deleted file mode 100644 index 34a1122f..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Dual_Wield_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Fealty_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Fealty_Icon.png deleted file mode 100644 index 6eff68ac..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Fealty_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Finesse_Weapon_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Finesse_Weapon_Mastery_Icon.png deleted file mode 100644 index f4c893f7..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Finesse_Weapon_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Fletching_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Fletching_Mastery_Icon.png deleted file mode 100644 index df0ce5ff..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Fletching_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Healing_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Healing_Mastery_Icon.png deleted file mode 100644 index e189dd50..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Healing_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Heavy_Weapon_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Heavy_Weapon_Mastery_Icon.png deleted file mode 100644 index 2b14badc..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Heavy_Weapon_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Impregnability_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Impregnability_Icon.png deleted file mode 100644 index 9fcb2eaf..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Impregnability_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Invulnerability_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Invulnerability_Icon.png deleted file mode 100644 index 0dc83ab3..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Invulnerability_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Item_Enchantment_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Item_Enchantment_Mastery_Icon.png deleted file mode 100644 index 4d03b7fc..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Item_Enchantment_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Item_Tinkering_Expertise_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Item_Tinkering_Expertise_Icon.png deleted file mode 100644 index d888c51f..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Item_Tinkering_Expertise_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Jumping_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Jumping_Mastery_Icon.png deleted file mode 100644 index 03f16fa7..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Jumping_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Leadership_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Leadership_Mastery_Icon.png deleted file mode 100644 index 695549a3..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Leadership_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Life_Magic_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Life_Magic_Mastery_Icon.png deleted file mode 100644 index a60fd7e6..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Life_Magic_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Light_Weapon_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Light_Weapon_Mastery_Icon.png deleted file mode 100644 index 3cd542ed..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Light_Weapon_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Lockpick_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Lockpick_Mastery_Icon.png deleted file mode 100644 index 5731085b..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Lockpick_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Magic_Item_Tinkering_Expertise_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Magic_Item_Tinkering_Expertise_Icon.png deleted file mode 100644 index 09d1126b..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Magic_Item_Tinkering_Expertise_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Magic_Resistance_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Magic_Resistance_Icon.png deleted file mode 100644 index 16399fe4..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Magic_Resistance_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Mana_Conversion_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Mana_Conversion_Mastery_Icon.png deleted file mode 100644 index 159031f2..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Mana_Conversion_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Missile_Weapon_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Missile_Weapon_Mastery_Icon.png deleted file mode 100644 index 249b6ef6..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Missile_Weapon_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Monster_Attunement_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Monster_Attunement_Icon.png deleted file mode 100644 index 57c32652..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Monster_Attunement_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Person_Attunement_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Person_Attunement_Icon.png deleted file mode 100644 index 25a3d35b..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Person_Attunement_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Recklessness_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Recklessness_Mastery_Icon.png deleted file mode 100644 index cb5a5bc5..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Recklessness_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Shield_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Shield_Mastery_Icon.png deleted file mode 100644 index 64192bb6..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Shield_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Sneak_Attack_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Sneak_Attack_Mastery_Icon.png deleted file mode 100644 index 4795bbd1..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Sneak_Attack_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Sprint_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Sprint_Icon.png deleted file mode 100644 index 43b3152e..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Sprint_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Two_Handed_Weapons_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Two_Handed_Weapons_Mastery_Icon.png deleted file mode 100644 index 8f33336a..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Two_Handed_Weapons_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Void_Magic_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Void_Magic_Mastery_Icon.png deleted file mode 100644 index a144ad90..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Void_Magic_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_War_Magic_Mastery_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_War_Magic_Mastery_Icon.png deleted file mode 100644 index 57e53ee3..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_War_Magic_Mastery_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieroglyph_of_Weapon_Tinkering_Expertise_Icon.png b/discord-rare-monitor/icons/Hieroglyph_of_Weapon_Tinkering_Expertise_Icon.png deleted file mode 100644 index e7bc22a4..00000000 Binary files a/discord-rare-monitor/icons/Hieroglyph_of_Weapon_Tinkering_Expertise_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hieromancers_Crystal_Icon.png b/discord-rare-monitor/icons/Hieromancers_Crystal_Icon.png deleted file mode 100644 index 96ae1902..00000000 Binary files a/discord-rare-monitor/icons/Hieromancers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hooded_Serpent_Slinger_Icon.png b/discord-rare-monitor/icons/Hooded_Serpent_Slinger_Icon.png deleted file mode 100644 index 026cf5cd..00000000 Binary files a/discord-rare-monitor/icons/Hooded_Serpent_Slinger_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Hunters_Crystal_Icon.png b/discord-rare-monitor/icons/Hunters_Crystal_Icon.png deleted file mode 100644 index d4346380..00000000 Binary files a/discord-rare-monitor/icons/Hunters_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Huntsmans_Dart-Thrower_Icon.png b/discord-rare-monitor/icons/Huntsmans_Dart-Thrower_Icon.png deleted file mode 100644 index 84c66281..00000000 Binary files a/discord-rare-monitor/icons/Huntsmans_Dart-Thrower_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ibriyas_Choice_Icon.png b/discord-rare-monitor/icons/Ibriyas_Choice_Icon.png deleted file mode 100644 index 3db55f0d..00000000 Binary files a/discord-rare-monitor/icons/Ibriyas_Choice_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Acid_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Acid_Protection_Icon.png deleted file mode 100644 index 7ac7921b..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Acid_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Armor_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Armor_Icon.png deleted file mode 100644 index af3af711..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Armor_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Blade_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Blade_Protection_Icon.png deleted file mode 100644 index 43205e6d..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Blade_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Bludgeoning_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Bludgeoning_Protection_Icon.png deleted file mode 100644 index 9df9d261..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Bludgeoning_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Fire_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Fire_Protection_Icon.png deleted file mode 100644 index ba248565..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Fire_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Frost_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Frost_Protection_Icon.png deleted file mode 100644 index dd2a9e40..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Frost_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Lightning_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Lightning_Protection_Icon.png deleted file mode 100644 index a104d239..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Lightning_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Mana_Renewal_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Mana_Renewal_Icon.png deleted file mode 100644 index 05b832c8..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Mana_Renewal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Piercing_Protection_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Piercing_Protection_Icon.png deleted file mode 100644 index cdab7ac8..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Piercing_Protection_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Regeneration_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Regeneration_Icon.png deleted file mode 100644 index f5d43ab4..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Regeneration_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ideograph_of_Revitalization_Icon.png b/discord-rare-monitor/icons/Ideograph_of_Revitalization_Icon.png deleted file mode 100644 index 280571b9..00000000 Binary files a/discord-rare-monitor/icons/Ideograph_of_Revitalization_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Imbuers_Crystal_Icon.png b/discord-rare-monitor/icons/Imbuers_Crystal_Icon.png deleted file mode 100644 index d2db616d..00000000 Binary files a/discord-rare-monitor/icons/Imbuers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Imperial_Chevairds_Helm_Icon.png b/discord-rare-monitor/icons/Imperial_Chevairds_Helm_Icon.png deleted file mode 100644 index 7c422d11..00000000 Binary files a/discord-rare-monitor/icons/Imperial_Chevairds_Helm_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Imperial_Topaz_Foolproof_Icon.png b/discord-rare-monitor/icons/Imperial_Topaz_Foolproof_Icon.png deleted file mode 100644 index e12a82ef..00000000 Binary files a/discord-rare-monitor/icons/Imperial_Topaz_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infernos_Jewel_Icon.png b/discord-rare-monitor/icons/Infernos_Jewel_Icon.png deleted file mode 100644 index bb451c5a..00000000 Binary files a/discord-rare-monitor/icons/Infernos_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Acid_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Acid_Arrowheads_Icon.png deleted file mode 100644 index 30ed50ba..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Acid_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Armor_Piercing_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Armor_Piercing_Arrowheads_Icon.png deleted file mode 100644 index 55578f96..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Armor_Piercing_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Blunt_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Blunt_Arrowheads_Icon.png deleted file mode 100644 index d0d7512d..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Blunt_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Broad_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Broad_Arrowheads_Icon.png deleted file mode 100644 index cb8aecbf..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Broad_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Electric_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Electric_Arrowheads_Icon.png deleted file mode 100644 index cf9b176f..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Electric_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Fire_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Fire_Arrowheads_Icon.png deleted file mode 100644 index 1c3d29ac..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Fire_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Frog_Crotch_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Frog_Crotch_Arrowheads_Icon.png deleted file mode 100644 index 4f9baa78..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Frog_Crotch_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Deadly_Frost_Arrowheads_Icon.png b/discord-rare-monitor/icons/Infinite_Deadly_Frost_Arrowheads_Icon.png deleted file mode 100644 index 9863a3ae..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Deadly_Frost_Arrowheads_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Elaborate_Dried_Rations_Icon.png b/discord-rare-monitor/icons/Infinite_Elaborate_Dried_Rations_Icon.png deleted file mode 100644 index d7334b24..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Elaborate_Dried_Rations_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Ivory_Icon.png b/discord-rare-monitor/icons/Infinite_Ivory_Icon.png deleted file mode 100644 index a546e978..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Ivory_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Leather_Icon.png b/discord-rare-monitor/icons/Infinite_Leather_Icon.png deleted file mode 100644 index 24be2fa5..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Leather_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Infinite_Simple_Dried_Rations_Icon.png b/discord-rare-monitor/icons/Infinite_Simple_Dried_Rations_Icon.png deleted file mode 100644 index 39096f99..00000000 Binary files a/discord-rare-monitor/icons/Infinite_Simple_Dried_Rations_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Invigorating_Elixir_Icon.png b/discord-rare-monitor/icons/Invigorating_Elixir_Icon.png deleted file mode 100644 index f62e825f..00000000 Binary files a/discord-rare-monitor/icons/Invigorating_Elixir_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Iron_Bull_Icon.png b/discord-rare-monitor/icons/Iron_Bull_Icon.png deleted file mode 100644 index 3cce448c..00000000 Binary files a/discord-rare-monitor/icons/Iron_Bull_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Itakas_Naginata_Icon.png b/discord-rare-monitor/icons/Itakas_Naginata_Icon.png deleted file mode 100644 index 7c39600e..00000000 Binary files a/discord-rare-monitor/icons/Itakas_Naginata_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Jet_Foolproof_Icon.png b/discord-rare-monitor/icons/Jet_Foolproof_Icon.png deleted file mode 100644 index 1dc53cec..00000000 Binary files a/discord-rare-monitor/icons/Jet_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Lichs_Pearl_Icon.png b/discord-rare-monitor/icons/Lichs_Pearl_Icon.png deleted file mode 100644 index a48ca0c8..00000000 Binary files a/discord-rare-monitor/icons/Lichs_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Life_Givers_Crystal_Icon.png b/discord-rare-monitor/icons/Life_Givers_Crystal_Icon.png deleted file mode 100644 index c06f94ae..00000000 Binary files a/discord-rare-monitor/icons/Life_Givers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Limitless_Lockpick_Icon.png b/discord-rare-monitor/icons/Limitless_Lockpick_Icon.png deleted file mode 100644 index 88e935ba..00000000 Binary files a/discord-rare-monitor/icons/Limitless_Lockpick_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Loop_of_Opposing_Benedictions_Icon.png b/discord-rare-monitor/icons/Loop_of_Opposing_Benedictions_Icon.png deleted file mode 100644 index 0f2b587b..00000000 Binary files a/discord-rare-monitor/icons/Loop_of_Opposing_Benedictions_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Loves_Favor_Icon.png b/discord-rare-monitor/icons/Loves_Favor_Icon.png deleted file mode 100644 index a118a15f..00000000 Binary files a/discord-rare-monitor/icons/Loves_Favor_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Lugians_Pearl_Icon.png b/discord-rare-monitor/icons/Lugians_Pearl_Icon.png deleted file mode 100644 index 6b08f072..00000000 Binary files a/discord-rare-monitor/icons/Lugians_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Mages_Jewel_Icon.png b/discord-rare-monitor/icons/Mages_Jewel_Icon.png deleted file mode 100644 index 899deed7..00000000 Binary files a/discord-rare-monitor/icons/Mages_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Maguss_Pearl_Icon.png b/discord-rare-monitor/icons/Maguss_Pearl_Icon.png deleted file mode 100644 index a66eef4a..00000000 Binary files a/discord-rare-monitor/icons/Maguss_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Malachite_Slasher_Icon.png b/discord-rare-monitor/icons/Malachite_Slasher_Icon.png deleted file mode 100644 index 7c614cef..00000000 Binary files a/discord-rare-monitor/icons/Malachite_Slasher_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Medicated_Health_Kit_Icon.png b/discord-rare-monitor/icons/Medicated_Health_Kit_Icon.png deleted file mode 100644 index 5e9aa0d1..00000000 Binary files a/discord-rare-monitor/icons/Medicated_Health_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Medicated_Mana_Kit_Icon.png b/discord-rare-monitor/icons/Medicated_Mana_Kit_Icon.png deleted file mode 100644 index be8e2dca..00000000 Binary files a/discord-rare-monitor/icons/Medicated_Mana_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Medicated_Stamina_Kit_Icon.png b/discord-rare-monitor/icons/Medicated_Stamina_Kit_Icon.png deleted file mode 100644 index e9467a97..00000000 Binary files a/discord-rare-monitor/icons/Medicated_Stamina_Kit_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Melees_Jewel_Icon.png b/discord-rare-monitor/icons/Melees_Jewel_Icon.png deleted file mode 100644 index b4ed5f9c..00000000 Binary files a/discord-rare-monitor/icons/Melees_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Miraculous_Elixir_Icon.png b/discord-rare-monitor/icons/Miraculous_Elixir_Icon.png deleted file mode 100644 index 2bc916d8..00000000 Binary files a/discord-rare-monitor/icons/Miraculous_Elixir_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Mirrored_Justice_Icon.png b/discord-rare-monitor/icons/Mirrored_Justice_Icon.png deleted file mode 100644 index 52b1aee0..00000000 Binary files a/discord-rare-monitor/icons/Mirrored_Justice_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Monarchs_Crystal_Icon.png b/discord-rare-monitor/icons/Monarchs_Crystal_Icon.png deleted file mode 100644 index 978e82fe..00000000 Binary files a/discord-rare-monitor/icons/Monarchs_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Moriharus_Kitchen_Knife_Icon.png b/discord-rare-monitor/icons/Moriharus_Kitchen_Knife_Icon.png deleted file mode 100644 index 3ea93c84..00000000 Binary files a/discord-rare-monitor/icons/Moriharus_Kitchen_Knife_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Morrigans_Vanity_Icon.png b/discord-rare-monitor/icons/Morrigans_Vanity_Icon.png deleted file mode 100644 index 2fb104f4..00000000 Binary files a/discord-rare-monitor/icons/Morrigans_Vanity_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Necklace_of_Iniquity_Icon.png b/discord-rare-monitor/icons/Necklace_of_Iniquity_Icon.png deleted file mode 100644 index b59883fa..00000000 Binary files a/discord-rare-monitor/icons/Necklace_of_Iniquity_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Observers_Crystal_Icon.png b/discord-rare-monitor/icons/Observers_Crystal_Icon.png deleted file mode 100644 index d2d402e5..00000000 Binary files a/discord-rare-monitor/icons/Observers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Olthois_Jewel_Icon.png b/discord-rare-monitor/icons/Olthois_Jewel_Icon.png deleted file mode 100644 index fac897b4..00000000 Binary files a/discord-rare-monitor/icons/Olthois_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Orb_of_the_Ironsea_Icon.png b/discord-rare-monitor/icons/Orb_of_the_Ironsea_Icon.png deleted file mode 100644 index 9345188f..00000000 Binary files a/discord-rare-monitor/icons/Orb_of_the_Ironsea_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Oswalds_Crystal_Icon.png b/discord-rare-monitor/icons/Oswalds_Crystal_Icon.png deleted file mode 100644 index 7a852ea3..00000000 Binary files a/discord-rare-monitor/icons/Oswalds_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Patriarchs_Twilight_Coat_Icon.png b/discord-rare-monitor/icons/Patriarchs_Twilight_Coat_Icon.png deleted file mode 100644 index d5b00667..00000000 Binary files a/discord-rare-monitor/icons/Patriarchs_Twilight_Coat_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Patriarchs_Twilight_Tights_Icon.png b/discord-rare-monitor/icons/Patriarchs_Twilight_Tights_Icon.png deleted file mode 100644 index ee05fe21..00000000 Binary files a/discord-rare-monitor/icons/Patriarchs_Twilight_Tights_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pauldrons_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Pauldrons_of_Leikothas_Tears_Icon.png deleted file mode 100644 index 7e05aac5..00000000 Binary files a/discord-rare-monitor/icons/Pauldrons_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Acid_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Acid_Baning_Icon.png deleted file mode 100644 index a834da7f..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Acid_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Blade_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Blade_Baning_Icon.png deleted file mode 100644 index 3b205382..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Blade_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Blood_Drinking_Icon.png b/discord-rare-monitor/icons/Pearl_of_Blood_Drinking_Icon.png deleted file mode 100644 index d05b7522..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Blood_Drinking_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Bludgeon_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Bludgeon_Baning_Icon.png deleted file mode 100644 index 913d120b..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Bludgeon_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Defending_Icon.png b/discord-rare-monitor/icons/Pearl_of_Defending_Icon.png deleted file mode 100644 index a690099a..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Defending_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Flame_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Flame_Baning_Icon.png deleted file mode 100644 index 74c3d086..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Flame_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Frost_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Frost_Baning_Icon.png deleted file mode 100644 index bcae8840..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Frost_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Heart_Seeking_Icon.png b/discord-rare-monitor/icons/Pearl_of_Heart_Seeking_Icon.png deleted file mode 100644 index 09e2a5bf..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Heart_Seeking_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Hermetic_Linking_Icon.png b/discord-rare-monitor/icons/Pearl_of_Hermetic_Linking_Icon.png deleted file mode 100644 index 972058aa..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Hermetic_Linking_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Impenetrability_Icon.png b/discord-rare-monitor/icons/Pearl_of_Impenetrability_Icon.png deleted file mode 100644 index 861e1e15..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Impenetrability_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Lightning_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Lightning_Baning_Icon.png deleted file mode 100644 index a4f62e04..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Lightning_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Pierce_Baning_Icon.png b/discord-rare-monitor/icons/Pearl_of_Pierce_Baning_Icon.png deleted file mode 100644 index c7b3d692..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Pierce_Baning_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Spirit_Drinking_Icon.png b/discord-rare-monitor/icons/Pearl_of_Spirit_Drinking_Icon.png deleted file mode 100644 index 31b84452..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Spirit_Drinking_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pearl_of_Swift_Killing_Icon.png b/discord-rare-monitor/icons/Pearl_of_Swift_Killing_Icon.png deleted file mode 100644 index 457ce4de..00000000 Binary files a/discord-rare-monitor/icons/Pearl_of_Swift_Killing_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Argenory_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Argenory_Dye_Icon.png deleted file mode 100644 index 0f02fccc..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Argenory_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Berimphur_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Berimphur_Dye_Icon.png deleted file mode 100644 index 90212735..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Berimphur_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Botched_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Botched_Dye_Icon.png deleted file mode 100644 index 30638694..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Botched_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Colban_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Colban_Dye_Icon.png deleted file mode 100644 index 903b7c3e..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Colban_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Hennacin_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Hennacin_Dye_Icon.png deleted file mode 100644 index c252f804..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Hennacin_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Lapyan_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Lapyan_Dye_Icon.png deleted file mode 100644 index 4375a1b0..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Lapyan_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Minalim_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Minalim_Dye_Icon.png deleted file mode 100644 index 3f671a53..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Minalim_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Relanim_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Relanim_Dye_Icon.png deleted file mode 100644 index ef195017..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Relanim_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Thananim_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Thananim_Dye_Icon.png deleted file mode 100644 index 08e90fb0..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Thananim_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Perennial_Verdalim_Dye_Icon.png b/discord-rare-monitor/icons/Perennial_Verdalim_Dye_Icon.png deleted file mode 100644 index 641b48b2..00000000 Binary files a/discord-rare-monitor/icons/Perennial_Verdalim_Dye_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Peridot_Foolproof_Icon.png b/discord-rare-monitor/icons/Peridot_Foolproof_Icon.png deleted file mode 100644 index ac1e5e0d..00000000 Binary files a/discord-rare-monitor/icons/Peridot_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Physicians_Crystal_Icon.png b/discord-rare-monitor/icons/Physicians_Crystal_Icon.png deleted file mode 100644 index 0eedd0d4..00000000 Binary files a/discord-rare-monitor/icons/Physicians_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Coordination_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Coordination_Icon.png deleted file mode 100644 index 74b0756a..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Coordination_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Endurance_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Endurance_Icon.png deleted file mode 100644 index f41cacc5..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Endurance_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Focus_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Focus_Icon.png deleted file mode 100644 index 23b2d739..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Focus_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Quickness_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Quickness_Icon.png deleted file mode 100644 index 1d8925be..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Quickness_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Strength_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Strength_Icon.png deleted file mode 100644 index 382598c8..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Strength_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pictograph_of_Willpower_Icon.png b/discord-rare-monitor/icons/Pictograph_of_Willpower_Icon.png deleted file mode 100644 index 5fe50a43..00000000 Binary files a/discord-rare-monitor/icons/Pictograph_of_Willpower_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pillar_of_Fearlessness_Icon.png b/discord-rare-monitor/icons/Pillar_of_Fearlessness_Icon.png deleted file mode 100644 index 25b3c4b3..00000000 Binary files a/discord-rare-monitor/icons/Pillar_of_Fearlessness_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Pitfighters_Edge_Icon.png b/discord-rare-monitor/icons/Pitfighters_Edge_Icon.png deleted file mode 100644 index 4a7d415c..00000000 Binary files a/discord-rare-monitor/icons/Pitfighters_Edge_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Red_Garnet_Foolproof_Icon.png b/discord-rare-monitor/icons/Red_Garnet_Foolproof_Icon.png deleted file mode 100644 index d7266260..00000000 Binary files a/discord-rare-monitor/icons/Red_Garnet_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Refreshing_Elixir_Icon.png b/discord-rare-monitor/icons/Refreshing_Elixir_Icon.png deleted file mode 100644 index 7b29b40d..00000000 Binary files a/discord-rare-monitor/icons/Refreshing_Elixir_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Resisters_Crystal_Icon.png b/discord-rare-monitor/icons/Resisters_Crystal_Icon.png deleted file mode 100644 index 86d003a4..00000000 Binary files a/discord-rare-monitor/icons/Resisters_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Revenants_Scythe_Icon.png b/discord-rare-monitor/icons/Revenants_Scythe_Icon.png deleted file mode 100644 index effa1272..00000000 Binary files a/discord-rare-monitor/icons/Revenants_Scythe_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ridgeback_Dagger_Icon.png b/discord-rare-monitor/icons/Ridgeback_Dagger_Icon.png deleted file mode 100644 index 0934db78..00000000 Binary files a/discord-rare-monitor/icons/Ridgeback_Dagger_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ring_of_Channeling_Icon.png b/discord-rare-monitor/icons/Ring_of_Channeling_Icon.png deleted file mode 100644 index a68b5b9e..00000000 Binary files a/discord-rare-monitor/icons/Ring_of_Channeling_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rogues_Crystal_Icon.png b/discord-rare-monitor/icons/Rogues_Crystal_Icon.png deleted file mode 100644 index 86615625..00000000 Binary files a/discord-rare-monitor/icons/Rogues_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Royal_Ladle_Icon.png b/discord-rare-monitor/icons/Royal_Ladle_Icon.png deleted file mode 100644 index 98dcf18a..00000000 Binary files a/discord-rare-monitor/icons/Royal_Ladle_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Acid_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Acid_Bane_Icon.png deleted file mode 100644 index a4e3a52c..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Acid_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Blade_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Blade_Bane_Icon.png deleted file mode 100644 index daafe74e..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Blade_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Blood_Drinker_Icon.png b/discord-rare-monitor/icons/Rune_of_Blood_Drinker_Icon.png deleted file mode 100644 index 29bae16a..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Blood_Drinker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Bludgeon_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Bludgeon_Bane_Icon.png deleted file mode 100644 index 8edfb0b7..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Bludgeon_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Defender_Icon.png b/discord-rare-monitor/icons/Rune_of_Defender_Icon.png deleted file mode 100644 index 0562492b..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Defender_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Dispel_Icon.png b/discord-rare-monitor/icons/Rune_of_Dispel_Icon.png deleted file mode 100644 index d0599043..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Dispel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Flame_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Flame_Bane_Icon.png deleted file mode 100644 index 5568d55f..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Flame_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Frost_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Frost_Bane_Icon.png deleted file mode 100644 index 67ee24f5..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Frost_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Heart_Seeker_Icon.png b/discord-rare-monitor/icons/Rune_of_Heart_Seeker_Icon.png deleted file mode 100644 index e487ac3b..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Heart_Seeker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Hermetic_Link_Icon.png b/discord-rare-monitor/icons/Rune_of_Hermetic_Link_Icon.png deleted file mode 100644 index 3cc38751..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Hermetic_Link_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Impenetrability_Icon.png b/discord-rare-monitor/icons/Rune_of_Impenetrability_Icon.png deleted file mode 100644 index e4be4d4d..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Impenetrability_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Lifestone_Recall_Icon.png b/discord-rare-monitor/icons/Rune_of_Lifestone_Recall_Icon.png deleted file mode 100644 index 1fbb421c..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Lifestone_Recall_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Lightning_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Lightning_Bane_Icon.png deleted file mode 100644 index fb786b3c..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Lightning_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Pierce_Bane_Icon.png b/discord-rare-monitor/icons/Rune_of_Pierce_Bane_Icon.png deleted file mode 100644 index 2f2879f0..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Pierce_Bane_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Portal_Recall_Icon.png b/discord-rare-monitor/icons/Rune_of_Portal_Recall_Icon.png deleted file mode 100644 index f908a527..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Portal_Recall_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Spirit_Drinker_Icon.png b/discord-rare-monitor/icons/Rune_of_Spirit_Drinker_Icon.png deleted file mode 100644 index dac6b01f..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Spirit_Drinker_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Rune_of_Swift_Killer_Icon.png b/discord-rare-monitor/icons/Rune_of_Swift_Killer_Icon.png deleted file mode 100644 index 90c3564c..00000000 Binary files a/discord-rare-monitor/icons/Rune_of_Swift_Killer_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Scholars_Crystal_Icon.png b/discord-rare-monitor/icons/Scholars_Crystal_Icon.png deleted file mode 100644 index 0145c9c7..00000000 Binary files a/discord-rare-monitor/icons/Scholars_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Serpents_Flight_Icon.png b/discord-rare-monitor/icons/Serpents_Flight_Icon.png deleted file mode 100644 index d64e62d0..00000000 Binary files a/discord-rare-monitor/icons/Serpents_Flight_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Shield_of_Engorgement_Icon.png b/discord-rare-monitor/icons/Shield_of_Engorgement_Icon.png deleted file mode 100644 index f9fd139f..00000000 Binary files a/discord-rare-monitor/icons/Shield_of_Engorgement_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Shimmering_Skeleton_Key_Icon.png b/discord-rare-monitor/icons/Shimmering_Skeleton_Key_Icon.png deleted file mode 100644 index a0b3a055..00000000 Binary files a/discord-rare-monitor/icons/Shimmering_Skeleton_Key_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Skullpuncher_Icon.png b/discord-rare-monitor/icons/Skullpuncher_Icon.png deleted file mode 100644 index a2d14e56..00000000 Binary files a/discord-rare-monitor/icons/Skullpuncher_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Smite_Icon.png b/discord-rare-monitor/icons/Smite_Icon.png deleted file mode 100644 index 50a34aae..00000000 Binary files a/discord-rare-monitor/icons/Smite_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Smithys_Crystal_Icon.png b/discord-rare-monitor/icons/Smithys_Crystal_Icon.png deleted file mode 100644 index 574dbd22..00000000 Binary files a/discord-rare-monitor/icons/Smithys_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Spear_of_Lost_Truths_Icon.png b/discord-rare-monitor/icons/Spear_of_Lost_Truths_Icon.png deleted file mode 100644 index 303e9ce4..00000000 Binary files a/discord-rare-monitor/icons/Spear_of_Lost_Truths_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Spirit_Shifting_Staff_Icon.png b/discord-rare-monitor/icons/Spirit_Shifting_Staff_Icon.png deleted file mode 100644 index e80800af..00000000 Binary files a/discord-rare-monitor/icons/Spirit_Shifting_Staff_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Sprinters_Pearl_Icon.png b/discord-rare-monitor/icons/Sprinters_Pearl_Icon.png deleted file mode 100644 index 65e3c2ff..00000000 Binary files a/discord-rare-monitor/icons/Sprinters_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Squires_Glaive_Icon.png b/discord-rare-monitor/icons/Squires_Glaive_Icon.png deleted file mode 100644 index 2d840559..00000000 Binary files a/discord-rare-monitor/icons/Squires_Glaive_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Staff_of_All_Aspects_Icon.png b/discord-rare-monitor/icons/Staff_of_All_Aspects_Icon.png deleted file mode 100644 index 73be56e0..00000000 Binary files a/discord-rare-monitor/icons/Staff_of_All_Aspects_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Staff_of_Fettered_Souls_Icon.png b/discord-rare-monitor/icons/Staff_of_Fettered_Souls_Icon.png deleted file mode 100644 index 231664bc..00000000 Binary files a/discord-rare-monitor/icons/Staff_of_Fettered_Souls_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Staff_of_Tendrils_Icon.png b/discord-rare-monitor/icons/Staff_of_Tendrils_Icon.png deleted file mode 100644 index 855a1b90..00000000 Binary files a/discord-rare-monitor/icons/Staff_of_Tendrils_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Star_of_Gharun_Icon.png b/discord-rare-monitor/icons/Star_of_Gharun_Icon.png deleted file mode 100644 index 522b35fb..00000000 Binary files a/discord-rare-monitor/icons/Star_of_Gharun_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Star_of_Tukal_Icon.png b/discord-rare-monitor/icons/Star_of_Tukal_Icon.png deleted file mode 100644 index 45c5dc18..00000000 Binary files a/discord-rare-monitor/icons/Star_of_Tukal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Steel_Butterfly_Icon.png b/discord-rare-monitor/icons/Steel_Butterfly_Icon.png deleted file mode 100644 index 6db118f9..00000000 Binary files a/discord-rare-monitor/icons/Steel_Butterfly_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Steel_Wall_Boots_Icon.png b/discord-rare-monitor/icons/Steel_Wall_Boots_Icon.png deleted file mode 100644 index ebb59604..00000000 Binary files a/discord-rare-monitor/icons/Steel_Wall_Boots_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Subjugator_Icon.png b/discord-rare-monitor/icons/Subjugator_Icon.png deleted file mode 100644 index 46431021..00000000 Binary files a/discord-rare-monitor/icons/Subjugator_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Sunstone_Foolproof_Icon.png b/discord-rare-monitor/icons/Sunstone_Foolproof_Icon.png deleted file mode 100644 index 762a610f..00000000 Binary files a/discord-rare-monitor/icons/Sunstone_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Swift_Strike_Ring_Icon.png b/discord-rare-monitor/icons/Swift_Strike_Ring_Icon.png deleted file mode 100644 index 265e7a35..00000000 Binary files a/discord-rare-monitor/icons/Swift_Strike_Ring_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tassets_of_Leikothas_Tears_Icon.png b/discord-rare-monitor/icons/Tassets_of_Leikothas_Tears_Icon.png deleted file mode 100644 index b99f2fca..00000000 Binary files a/discord-rare-monitor/icons/Tassets_of_Leikothas_Tears_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Thiefs_Crystal_Icon.png b/discord-rare-monitor/icons/Thiefs_Crystal_Icon.png deleted file mode 100644 index bf94da5d..00000000 Binary files a/discord-rare-monitor/icons/Thiefs_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Thorstens_Crystal_Icon.png b/discord-rare-monitor/icons/Thorstens_Crystal_Icon.png deleted file mode 100644 index 2f484ec3..00000000 Binary files a/discord-rare-monitor/icons/Thorstens_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Thunderhead_Icon.png b/discord-rare-monitor/icons/Thunderhead_Icon.png deleted file mode 100644 index ffa65236..00000000 Binary files a/discord-rare-monitor/icons/Thunderhead_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tings_Crystal_Icon.png b/discord-rare-monitor/icons/Tings_Crystal_Icon.png deleted file mode 100644 index 1f51ecad..00000000 Binary files a/discord-rare-monitor/icons/Tings_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tinkers_Crystal_Icon.png b/discord-rare-monitor/icons/Tinkers_Crystal_Icon.png deleted file mode 100644 index 45b73aea..00000000 Binary files a/discord-rare-monitor/icons/Tinkers_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tracker_Boots_Icon.png b/discord-rare-monitor/icons/Tracker_Boots_Icon.png deleted file mode 100644 index 73f0b17c..00000000 Binary files a/discord-rare-monitor/icons/Tracker_Boots_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tri_Blade_Spear_Icon.png b/discord-rare-monitor/icons/Tri_Blade_Spear_Icon.png deleted file mode 100644 index f26bc4b4..00000000 Binary files a/discord-rare-monitor/icons/Tri_Blade_Spear_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tusked_Axe_of_Ayan_Baqur_Icon.png b/discord-rare-monitor/icons/Tusked_Axe_of_Ayan_Baqur_Icon.png deleted file mode 100644 index f8a3b03f..00000000 Binary files a/discord-rare-monitor/icons/Tusked_Axe_of_Ayan_Baqur_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Tuskers_Jewel_Icon.png b/discord-rare-monitor/icons/Tuskers_Jewel_Icon.png deleted file mode 100644 index d0edc6b6..00000000 Binary files a/discord-rare-monitor/icons/Tuskers_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Twin_Ward_Icon.png b/discord-rare-monitor/icons/Twin_Ward_Icon.png deleted file mode 100644 index 0c94f3d2..00000000 Binary files a/discord-rare-monitor/icons/Twin_Ward_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Unchained_Prowess_Ring_Icon.png b/discord-rare-monitor/icons/Unchained_Prowess_Ring_Icon.png deleted file mode 100644 index 41632888..00000000 Binary files a/discord-rare-monitor/icons/Unchained_Prowess_Ring_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Ursuins_Pearl_Icon.png b/discord-rare-monitor/icons/Ursuins_Pearl_Icon.png deleted file mode 100644 index 3ae87a30..00000000 Binary files a/discord-rare-monitor/icons/Ursuins_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Valkeers_Helm_Icon.png b/discord-rare-monitor/icons/Valkeers_Helm_Icon.png deleted file mode 100644 index 64162139..00000000 Binary files a/discord-rare-monitor/icons/Valkeers_Helm_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Vaulters_Crystal_Icon.png b/discord-rare-monitor/icons/Vaulters_Crystal_Icon.png deleted file mode 100644 index c4ea7eff..00000000 Binary files a/discord-rare-monitor/icons/Vaulters_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Wand_of_the_Frore_Crystal_Icon.png b/discord-rare-monitor/icons/Wand_of_the_Frore_Crystal_Icon.png deleted file mode 100644 index 6d7538b2..00000000 Binary files a/discord-rare-monitor/icons/Wand_of_the_Frore_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Warriors_Crystal_Icon.png b/discord-rare-monitor/icons/Warriors_Crystal_Icon.png deleted file mode 100644 index c205ce90..00000000 Binary files a/discord-rare-monitor/icons/Warriors_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Warriors_Jewel_Icon.png b/discord-rare-monitor/icons/Warriors_Jewel_Icon.png deleted file mode 100644 index b309958a..00000000 Binary files a/discord-rare-monitor/icons/Warriors_Jewel_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Wayfarers_Pearl_Icon.png b/discord-rare-monitor/icons/Wayfarers_Pearl_Icon.png deleted file mode 100644 index d17b70c5..00000000 Binary files a/discord-rare-monitor/icons/Wayfarers_Pearl_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Weeping_Ring_Icon.png b/discord-rare-monitor/icons/Weeping_Ring_Icon.png deleted file mode 100644 index 7433c148..00000000 Binary files a/discord-rare-monitor/icons/Weeping_Ring_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/White_Sapphire_Foolproof_Icon.png b/discord-rare-monitor/icons/White_Sapphire_Foolproof_Icon.png deleted file mode 100644 index 84b7247b..00000000 Binary files a/discord-rare-monitor/icons/White_Sapphire_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Wings_of_Rakhil_Icon.png b/discord-rare-monitor/icons/Wings_of_Rakhil_Icon.png deleted file mode 100644 index ae95f340..00000000 Binary files a/discord-rare-monitor/icons/Wings_of_Rakhil_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Winters_Heart_Icon.png b/discord-rare-monitor/icons/Winters_Heart_Icon.png deleted file mode 100644 index 6e431f87..00000000 Binary files a/discord-rare-monitor/icons/Winters_Heart_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Yellow_Topaz_Foolproof_Icon.png b/discord-rare-monitor/icons/Yellow_Topaz_Foolproof_Icon.png deleted file mode 100644 index d6cc6ad9..00000000 Binary files a/discord-rare-monitor/icons/Yellow_Topaz_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Zefirs_Breath_Icon.png b/discord-rare-monitor/icons/Zefirs_Breath_Icon.png deleted file mode 100644 index b7afa1b1..00000000 Binary files a/discord-rare-monitor/icons/Zefirs_Breath_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Zefirs_Crystal_Icon.png b/discord-rare-monitor/icons/Zefirs_Crystal_Icon.png deleted file mode 100644 index 4fabf3a4..00000000 Binary files a/discord-rare-monitor/icons/Zefirs_Crystal_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Zharalim_Crookblade_Icon.png b/discord-rare-monitor/icons/Zharalim_Crookblade_Icon.png deleted file mode 100644 index 0d4320ec..00000000 Binary files a/discord-rare-monitor/icons/Zharalim_Crookblade_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/icons/Zircon_Foolproof_Icon.png b/discord-rare-monitor/icons/Zircon_Foolproof_Icon.png deleted file mode 100644 index 2d3474c5..00000000 Binary files a/discord-rare-monitor/icons/Zircon_Foolproof_Icon.png and /dev/null differ diff --git a/discord-rare-monitor/requirements.txt b/discord-rare-monitor/requirements.txt deleted file mode 100644 index ae60bac2..00000000 --- a/discord-rare-monitor/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -# Discord Rare Monitor Bot Dependencies -discord.py>=2.3.0 -websockets>=11.0.0 \ No newline at end of file diff --git a/discord-rare-monitor/test_websocket.py b/discord-rare-monitor/test_websocket.py deleted file mode 100644 index 1ecf5c6a..00000000 --- a/discord-rare-monitor/test_websocket.py +++ /dev/null @@ -1,169 +0,0 @@ -#!/usr/bin/env python3 -""" -Test script for Discord Rare Monitor Bot WebSocket functionality. -Tests WebSocket connection and message parsing without requiring Discord token. -""" - -import asyncio -import json -import logging -import sys -from datetime import datetime - -import websockets - -# Configure logging -logging.basicConfig( - level=logging.INFO, - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', - handlers=[logging.StreamHandler(sys.stdout)] -) -logger = logging.getLogger(__name__) - -# Test configuration -WEBSOCKET_URL = "ws://localhost:8765/ws/position" # Test against local instance -COMMON_RARE_KEYWORDS = ["Crystal", "Jewel", "Pearl", "Elixir", "Kit"] - - -def classify_rare(rare_name: str) -> str: - """Classify rare as 'common' or 'great' based on keywords.""" - if any(keyword in rare_name for keyword in COMMON_RARE_KEYWORDS) and "Frore Crystal" not in rare_name: - return "common" - else: - return "great" - - -async def test_websocket_connection(duration: int = 30): - """Test WebSocket connection and message processing for specified duration.""" - logger.info(f"๐Ÿ”— Testing WebSocket connection to: {WEBSOCKET_URL}") - logger.info(f"โฑ๏ธ Test duration: {duration} seconds") - - message_count = 0 - rare_count = 0 - start_time = asyncio.get_event_loop().time() - - try: - async with websockets.connect(WEBSOCKET_URL) as websocket: - logger.info("โœ… WebSocket connected successfully") - - while True: - try: - # Check if test duration has elapsed - current_time = asyncio.get_event_loop().time() - if current_time - start_time >= duration: - logger.info(f"โฐ Test duration of {duration} seconds completed") - break - - # Receive message with timeout - message = await asyncio.wait_for(websocket.recv(), timeout=1.0) - message_count += 1 - - # Parse JSON - try: - data = json.loads(message) - msg_type = data.get('type', 'unknown') - - # Log message types (for first few messages) - if message_count <= 10: - logger.info(f"๐Ÿ“จ Message {message_count}: type={msg_type}") - - # Process rare events - if msg_type == 'rare': - rare_count += 1 - rare_name = data.get('name', 'Unknown Rare') - character_name = data.get('character_name', 'Unknown Character') - rare_type = classify_rare(rare_name) - - logger.info(f"๐ŸŽฏ RARE DISCOVERED: {rare_name} by {character_name} ({rare_type})") - logger.info(f" Location: {data.get('ew', 'N/A')}E, {data.get('ns', 'N/A')}N") - logger.info(f" Timestamp: {data.get('timestamp', 'N/A')}") - - except json.JSONDecodeError: - # Ignore invalid JSON - continue - - except asyncio.TimeoutError: - # No message received in timeout period, continue - continue - - logger.info(f"๐Ÿ“Š Test Summary:") - logger.info(f" Total messages received: {message_count}") - logger.info(f" Rare events detected: {rare_count}") - logger.info(f" Test duration: {duration} seconds") - - except websockets.exceptions.ConnectionClosed: - logger.warning("โš ๏ธ WebSocket connection closed") - return False - except ConnectionRefusedError: - logger.error("โŒ Connection refused - is Dereth Tracker running?") - return False - except Exception as e: - logger.error(f"โŒ WebSocket error: {e}") - return False - - return True - - -async def test_rare_classification(): - """Test rare classification logic.""" - logger.info("๐Ÿงช Testing rare classification logic...") - - test_cases = [ - ("Dark Heart", "great"), - ("Pyreal Crystal", "common"), - ("Frore Crystal", "great"), # Special case - should be great despite having "Crystal" - ("Ruby Jewel", "common"), - ("Ancient Relic", "great"), - ("Mana Elixir", "common"), - ("Health Kit", "common"), - ("Sunstone", "great") - ] - - for rare_name, expected in test_cases: - result = classify_rare(rare_name) - status = "โœ…" if result == expected else "โŒ" - logger.info(f" {status} {rare_name}: {result} (expected {expected})") - - -def create_test_rare_message(name: str, character: str) -> str: - """Create a test rare message for testing.""" - return json.dumps({ - "type": "rare", - "character_name": character, - "name": name, - "timestamp": datetime.now().isoformat() + "Z", - "ew": 12.34, - "ns": -56.78, - "z": 10.5 - }) - - -async def main(): - """Main test function.""" - logger.info("๐Ÿš€ Starting Discord Rare Monitor Bot WebSocket Tests") - - # Test 1: Rare classification logic - await test_rare_classification() - - # Test 2: WebSocket connection (if available) - logger.info("\n" + "="*50) - logger.info("Testing WebSocket connection...") - - success = await test_websocket_connection(duration=30) - - if success: - logger.info("โœ… All tests completed successfully!") - else: - logger.warning("โš ๏ธ WebSocket test failed - this is expected if Dereth Tracker is not running") - - logger.info("๐Ÿ Test suite complete") - - -if __name__ == "__main__": - try: - asyncio.run(main()) - except KeyboardInterrupt: - logger.info("๐Ÿ›‘ Test interrupted by user") - except Exception as e: - logger.error(f"โŒ Test failed with error: {e}") - sys.exit(1) \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 1f04d940..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,162 +0,0 @@ -## Docker Compose configuration for Dereth Tracker microservices -version: "3.8" - -services: - # Application service: Dereth Tracker API and WebSockets server - dereth-tracker: - build: . - ports: - - "127.0.0.1:8765:8765" - depends_on: - - db - volumes: - - "./main.py:/app/main.py" - - "./db_async.py:/app/db_async.py" - - "./static:/app/static" - - "./icons:/app/icons" - - "./alembic:/app/alembic" - - "./alembic.ini:/app/alembic.ini" - environment: - # Database connection URL for TimescaleDB (built from POSTGRES_PASSWORD) - DATABASE_URL: "postgresql://postgres:${POSTGRES_PASSWORD}@db:5432/dereth" - # Override application settings as needed - DB_MAX_SIZE_MB: "${DB_MAX_SIZE_MB}" - DB_RETENTION_DAYS: "${DB_RETENTION_DAYS}" - DB_MAX_SQL_LENGTH: "${DB_MAX_SQL_LENGTH}" - DB_MAX_SQL_VARIABLES: "${DB_MAX_SQL_VARIABLES}" - DB_WAL_AUTOCHECKPOINT_PAGES: "${DB_WAL_AUTOCHECKPOINT_PAGES}" - SHARED_SECRET: "${SHARED_SECRET}" - LOG_LEVEL: "DEBUG" - INVENTORY_SERVICE_URL: "http://inventory-service:8000" - restart: unless-stopped - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - - # TimescaleDB service for telemetry data storage - db: - image: timescale/timescaledb:2.19.3-pg14 - container_name: dereth-db - environment: - POSTGRES_DB: dereth - POSTGRES_USER: postgres - POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}" - DB_RETENTION_DAYS: 30 - volumes: - - timescale-data:/var/lib/postgresql/data - ports: - - "5432:5432" - restart: unless-stopped - healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres"] - interval: 30s - timeout: 5s - retries: 5 - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - # Inventory Service: Separate microservice for item data processing - inventory-service: - build: ./inventory-service - ports: - - "127.0.0.1:8766:8000" - depends_on: - - inventory-db - volumes: - - "./inventory-service:/app" - environment: - DATABASE_URL: "postgresql://inventory_user:${INVENTORY_DB_PASSWORD}@inventory-db:5432/inventory_db" - LOG_LEVEL: "DEBUG" - restart: unless-stopped - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - - # Separate database for inventory service - inventory-db: - image: postgres:14 - container_name: inventory-db - environment: - POSTGRES_DB: inventory_db - POSTGRES_USER: inventory_user - POSTGRES_PASSWORD: "${INVENTORY_DB_PASSWORD}" - volumes: - - inventory-data:/var/lib/postgresql/data - ports: - - "5433:5432" - restart: unless-stopped - healthcheck: - test: ["CMD-SHELL", "pg_isready -U inventory_user"] - interval: 30s - timeout: 5s - retries: 5 - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - - # Discord Rare Monitor Bot: Monitors rare discoveries and posts to Discord - discord-rare-monitor: - build: ./discord-rare-monitor - depends_on: - - dereth-tracker - volumes: - - "./discord-rare-monitor:/app" - environment: - DISCORD_RARE_BOT_TOKEN: "${DISCORD_RARE_BOT_TOKEN}" - DERETH_TRACKER_WS_URL: "ws://dereth-tracker:8765/ws/live" - COMMON_RARE_CHANNEL_ID: "${COMMON_RARE_CHANNEL_ID:-1355328792184226014}" - GREAT_RARE_CHANNEL_ID: "${GREAT_RARE_CHANNEL_ID:-1353676584334131211}" - ACLOG_CHANNEL_ID: "${ACLOG_CHANNEL_ID:-1349649482786275328}" - MONITOR_CHARACTER: "${MONITOR_CHARACTER:-Dunking Rares}" - LOG_LEVEL: "INFO" - restart: unless-stopped - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - - # Grafana service for visualization and dashboards - grafana: - image: grafana/grafana:latest - container_name: dereth-grafana - ports: - - "127.0.0.1:3000:3000" - depends_on: - - db - environment: - # Grafana admin settings - GF_SECURITY_ADMIN_PASSWORD: "${GF_SECURITY_ADMIN_PASSWORD}" - # Allow embedding Grafana dashboards in iframes - GF_SECURITY_ALLOW_EMBEDDING: "true" - # Enable anonymous access so embedded panels work without login - GF_AUTH_ANONYMOUS_ENABLED: "true" - GF_AUTH_ANONYMOUS_ORG_ROLE: "Viewer" - GF_USERS_ALLOW_SIGN_UP: "false" - # Serve Grafana under /grafana path - GF_SERVER_ROOT_URL: "https://overlord.snakedesert.se/grafana" - GF_SERVER_SERVE_FROM_SUB_PATH: "true" - # Postgres password for provisioning datasource - POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}" - volumes: - # Provisioning directories for automated data source and dashboards - - ./grafana/provisioning:/etc/grafana/provisioning - - ./grafana/dashboards:/var/lib/grafana/dashboards - restart: unless-stopped - logging: - driver: "json-file" - options: - max-size: "10m" - max-file: "3" - -volumes: - timescale-data: - inventory-data: \ No newline at end of file diff --git a/generate_data.py b/generate_data.py index e8838cd6..fdbbfd1a 100644 --- a/generate_data.py +++ b/generate_data.py @@ -1,79 +1,45 @@ -""" -generate_data.py - Standalone script to simulate plugin telemetry data. - -This script connects to the plugin WebSocket at /ws/position and sends -fabricated TelemetrySnapshot payloads at regular intervals. Useful for: - - Functional testing of the telemetry ingestion pipeline - - Demonstrating real-time map updates without a live game client -""" -import asyncio # Async event loop and sleep support -import websockets # WebSocket client for Python -import json # JSON serialization of payloads +import httpx from datetime import datetime, timedelta, timezone -from main import TelemetrySnapshot # Pydantic model matches plugin protocol +from time import sleep +from main import TelemetrySnapshot -async def main() -> None: - """ - Continuously emit synthetic telemetry snapshots at fixed intervals. - - Updates in-game coordinates (ew, ns) gradually and increments - an 'online_time' counter to mimic real gameplay progression. - Each iteration: - 1. Build TelemetrySnapshot with current state - 2. Serialize to JSON, set 'type' field - 3. Send over WebSocket - 4. Sleep for 'wait' seconds - """ - # Interval between snapshots (seconds) +def main() -> None: wait = 10 - # Simulated total online time in seconds (starting at 24h) - online_time = 24 * 3600 - # Starting coordinates (E/W and N/S) - ew = 0.0 - ns = 0.0 - # WebSocket endpoint for plugin telemetry (include secret for auth) - uri = "ws://localhost:8000/ws/position?secret=your_shared_secret" - # Connect to the plugin WebSocket endpoint with authentication - # Establish WebSocket connection to the server - async with websockets.connect(uri) as websocket: - print(f"Connected to {uri}") - # Loop indefinitely, sending telemetry at each interval - while True: - # Construct a new TelemetrySnapshot dataclass instance - snapshot = TelemetrySnapshot( - character_name="Test name", - char_tag="test_tag", - session_id="test_session_id", - timestamp=datetime.now(tz=timezone.utc), - ew=ew, - ns=ns, - z=0, - kills=0, - kills_per_hour="kph_str", - onlinetime=str(timedelta(seconds=online_time)), - deaths=0, - # rares_found removed from telemetry payload; tracked via rare events - prismatic_taper_count=0, - vt_state="test state", - ) - # Prepare payload dictionary: - # - Convert Pydantic model to dict - # - Remove any extraneous fields (e.g., 'rares_found') - # - Insert message 'type' for server routing - payload = snapshot.model_dump() - payload.pop("rares_found", None) - payload["type"] = "telemetry" - # Send JSON-encoded payload over WebSocket - # Transmit JSON payload (datetime serialized via default=str) - await websocket.send(json.dumps(payload, default=str)) - print(f"Sent snapshot: EW={ew:.2f}, NS={ns:.2f}") - # Wait before next update, then increment simulated state - await asyncio.sleep(wait) - ew += 0.1 - ns += 0.1 - online_time += wait + online_time = 24 * 3600 # start at 1 day + ew = 0 + ns = 0 + while True: + snapshot = TelemetrySnapshot( + character_name="Test name", + char_tag="test_tag", + session_id="test_session_id", + timestamp=datetime.now(tz=timezone.utc), + ew=ew, + ns=ns, + z=0, + kills=0, + kills_per_hour="kph_str", + onlinetime=str(timedelta(seconds=online_time)), + deaths=0, + rares_found=0, + prismatic_taper_count=0, + vt_state="test state", + ) + resp = httpx.post( + "http://localhost:8000/position/", + data=snapshot.model_dump_json(), + headers={ + "Content-Type": "application/json", + "X-PLUGIN-SECRET": "your_shared_secret", + }, + ) + print(resp) + sleep(wait) + ew += 0.1 + ns += 0.1 + online_time += wait if __name__ == "__main__": - asyncio.run(main()) + main() diff --git a/grafana/dashboards/dereth_tracker_dashboard.json b/grafana/dashboards/dereth_tracker_dashboard.json deleted file mode 100644 index 6c886790..00000000 --- a/grafana/dashboards/dereth_tracker_dashboard.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "id": null, - "uid": "dereth-tracker", - "title": "Dereth Tracker Dashboard", - "schemaVersion": 30, - "version": 1, - "refresh": "30s", - "time": { - "from": "now-24h", - "to": "now" - }, - "panels": [ - { - "type": "timeseries", - "title": "Kills per Hour", - "gridPos": { "h": 8, "w": 12, "x": 0, "y": 0 }, - "id": 1, - "fieldConfig": { "defaults": {}, "overrides": [] }, - "targets": [ - { - "refId": "A", - "format": "time_series", - "datasource": { "uid": "dereth-db" }, - "rawSql": "SELECT $__time(timestamp), kills_per_hour AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp" - } - ] - }, - { - "type": "timeseries", - "title": "Memory (MB)", - "gridPos": { "h": 8, "w": 6, "x": 0, "y": 8 }, - "id": 2, - "fieldConfig": { "defaults": {}, "overrides": [] }, - "targets": [ - { - "refId": "A", - "format": "time_series", - "datasource": { "uid": "dereth-db" }, - "rawSql": "SELECT $__time(timestamp), mem_mb AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp" - } - ] - }, - { - "type": "timeseries", - "title": "CPU (%)", - "gridPos": { "h": 8, "w": 6, "x": 6, "y": 8 }, - "id": 3, - "fieldConfig": { "defaults": {}, "overrides": [] }, - "targets": [ - { - "refId": "A", - "format": "time_series", - "datasource": { "uid": "dereth-db" }, - "rawSql": "SELECT $__time(timestamp), cpu_pct AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp" - } - ] - }, - { - "type": "timeseries", - "title": "Mem Handles", - "gridPos": { "h": 8, "w": 6, "x": 0, "y": 16 }, - "id": 4, - "fieldConfig": { "defaults": {}, "overrides": [] }, - "targets": [ - { - "refId": "A", - "format": "time_series", - "datasource": { "uid": "dereth-db" }, - "rawSql": "SELECT $__time(timestamp), mem_handles AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp" - } - ] - } - ], - "templating": { - "list": [ - { - "type": "query", - "name": "character", - "label": "Character", - "datasource": { "uid": "dereth-db" }, - "query": "SELECT DISTINCT character_name FROM telemetry_events ORDER BY character_name", - "refresh": 2, - "sort": 1, - "multi": false, - "includeAll": false - } - ] - } -} \ No newline at end of file diff --git a/grafana/provisioning/dashboards/dashboards.yaml b/grafana/provisioning/dashboards/dashboards.yaml deleted file mode 100644 index b6c4c55b..00000000 --- a/grafana/provisioning/dashboards/dashboards.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: 1 - -providers: - - name: 'dereth_dashboards' - orgId: 1 - folder: '' - type: file - disableDeletion: false - updateIntervalSeconds: 30 - options: - path: /var/lib/grafana/dashboards \ No newline at end of file diff --git a/grafana/provisioning/datasources/datasource.yaml b/grafana/provisioning/datasources/datasource.yaml deleted file mode 100644 index 7137fb4a..00000000 --- a/grafana/provisioning/datasources/datasource.yaml +++ /dev/null @@ -1,16 +0,0 @@ -apiVersion: 1 - -datasources: - - name: DerethDB - uid: dereth-db - type: postgres - access: proxy - url: db:5432 - database: dereth - user: postgres - # Securely provision the password - secureJsonData: - password: ${POSTGRES_PASSWORD} - jsonData: - sslmode: disable - postgresVersion: 1400 \ No newline at end of file diff --git a/inventory-service/Dockerfile b/inventory-service/Dockerfile deleted file mode 100644 index a06227f0..00000000 --- a/inventory-service/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM python:3.11-slim - -WORKDIR /app - -# Install system dependencies -RUN apt-get update && apt-get install -y \ - postgresql-client \ - && rm -rf /var/lib/apt/lists/* - -# Copy requirements first for better caching -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -# Copy application code -COPY . . - -# Create non-root user -RUN useradd -m -u 1000 inventory && chown -R inventory:inventory /app -USER inventory - -# Default command -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file diff --git a/inventory-service/add_dictionaries.py b/inventory-service/add_dictionaries.py deleted file mode 100644 index 35df31bb..00000000 --- a/inventory-service/add_dictionaries.py +++ /dev/null @@ -1,84 +0,0 @@ -#!/usr/bin/env python3 -"""Add dictionaries to the comprehensive enum database.""" - -import json - -# AttributeSetInfo dictionary manually extracted (COMPLETE) -attribute_set_info = { - "2": "Test", - "4": "Carraida's Benediction", - "5": "Noble Relic Set", - "6": "Ancient Relic Set", - "7": "Relic Alduressa Set", - "8": "Shou-jen Set", - "9": "Empyrean Rings Set", - "10": "Arm, Mind, Heart Set", - "11": "Coat of the Perfect Light Set", - "12": "Leggings of Perfect Light Set", - "13": "Soldier's Set", - "14": "Adept's Set", - "15": "Archer's Set", - "16": "Defender's Set", - "17": "Tinker's Set", - "18": "Crafter's Set", - "19": "Hearty Set", - "20": "Dexterous Set", - "21": "Wise Set", - "22": "Swift Set", - "23": "Hardenend Set", - "24": "Reinforced Set", - "25": "Interlocking Set", - "26": "Flame Proof Set", - "27": "Acid Proof Set", - "28": "Cold Proof Set", - "29": "Lightning Proof Set", - "30": "Dedication Set", - "31": "Gladiatorial Clothing Set", - "32": "Ceremonial Clothing", - "33": "Protective Clothing", - "34": "Noobie Armor", - "35": "Sigil of Defense", - "36": "Sigil of Destruction", - "37": "Sigil of Fury", - "38": "Sigil of Growth", - "39": "Sigil of Vigor", - "40": "Heroic Protector Set", - "41": "Heroic Destroyer Set", - "42": "Olthoi Armor D Red", - "43": "Olthoi Armor C Rat", - "44": "Olthoi Armor C Red", - "45": "Olthoi Armor F Red", - "46": "Olthoi Armor K Red", - "47": "Olthoi Armor M Red", - "48": "Olthoi Armor B Red", - "49": "Olthoi Armor B Rat", - "50": "Olthoi Armor K Rat", - "51": "Olthoi Armor M Rat", - "52": "Olthoi Armor F Rat", - "53": "Olthoi Armor D Rat" -} - -# Load existing database -with open('comprehensive_enum_database_v2.json', 'r') as f: - db = json.load(f) - -# Add dictionaries section -if 'dictionaries' not in db: - db['dictionaries'] = {} - -db['dictionaries']['AttributeSetInfo'] = { - 'name': 'AttributeSetInfo', - 'description': 'Equipment set names', - 'values': attribute_set_info -} - -# Save updated database -with open('comprehensive_enum_database_v2.json', 'w') as f: - json.dump(db, f, indent=2) - -print("Added AttributeSetInfo dictionary to comprehensive enum database") -print(f"Total equipment sets: {len(attribute_set_info)}") -print("Example sets:") -for set_id in ['13', '14', '16', '21']: - if set_id in attribute_set_info: - print(f" {set_id} -> {attribute_set_info[set_id]}") \ No newline at end of file diff --git a/inventory-service/complete_enum_database.json b/inventory-service/complete_enum_database.json deleted file mode 100644 index ecaea978..00000000 --- a/inventory-service/complete_enum_database.json +++ /dev/null @@ -1,2230 +0,0 @@ -{ - "metadata": { - "extracted_at": "2025-06-10", - "source": "Mag-Plugins/Shared/Constants", - "total_enums": 13, - "version": "1.0.0" - }, - "categories": { - "item_properties": { - "description": "Item property value keys for different data types", - "enums": [ - "IntValueKey", - "DoubleValueKey", - "StringValueKey", - "BoolValueKey", - "QuadValueKey" - ] - }, - "item_classification": { - "description": "Item type and material classification", - "enums": [ - "ItemType", - "MaterialType", - "WeenieType" - ] - }, - "game_mechanics": { - "description": "Skills, spells, and game system enums", - "enums": [ - "Skill", - "SpellCategory", - "WieldRequirement" - ] - }, - "technical": { - "description": "Technical flags and masks for game engine", - "enums": [ - "CoverageMask", - "EquipMask" - ] - } - }, - "translations": { - "int_values": { - "5": "Encumbrance", - "19": "Value (Pyreals)", - "25": "Level", - "28": "Armor Level", - "44": "Base Damage", - "45": "Damage Type", - "48": "Weapon Skill", - "158": "Wield Requirements", - "160": "Wield Difficulty", - "218103842": "Maximum Damage", - "218103849": "Icon Overlay", - "218103850": "Icon Underlay" - }, - "materials": { - "0": "Unknown", - "1": "Ceramic", - "20": "Diamond", - "21": "Emerald", - "31": "Ruby", - "32": "Sapphire" - } - }, - "enums": { - "CoverageMask": { - "type": "int", - "values": { - "0": "None", - "1": "Unknown", - "2": "UnderwearUpperLegs", - "4": "UnderwearLowerLegs", - "8": "UnderwearChest", - "16": "UnderwearAbdomen", - "32": "UnderwearUpperArms", - "64": "UnderwearLowerArms", - "256": "OuterwearUpperLegs", - "512": "OuterwearLowerLegs", - "1024": "OuterwearChest", - "2048": "OuterwearAbdomen", - "4096": "OuterwearUpperArms", - "8192": "OuterwearLowerArms", - "16384": "Head", - "32768": "Hands", - "65536": "Feet", - "131072": "Cloak" - }, - "comments": { - "Unknown": "Original pants abdomen?", - "UnderwearUpperLegs": "I think... 0x13 = Abdomen/UpperLegs", - "UnderwearLowerLegs": "I think... 0x16 = Abdomen/UpperLegs/LowerLegs", - "UnderwearAbdomen": "Original shirt abdomen?" - }, - "attributes": {}, - "source_file": "CoverageMask.cs" - }, - "MaterialType": { - "type": "uint", - "values": { - "0": "Unknown", - "1": "Ceramic", - "2": "Porcelain", - "4": "Linen", - "5": "Satin", - "6": "Silk", - "7": "Velvet", - "8": "Wool", - "10": "Agate", - "11": "Amber", - "12": "Amethyst", - "13": "Aquamarine", - "14": "Azurite", - "15": "BlackGarnet", - "16": "BlackOpal", - "17": "Bloodstone", - "18": "Carnelian", - "19": "Citrine", - "20": "Diamond", - "21": "Emerald", - "22": "FireOpal", - "23": "GreenGarnet", - "24": "GreenJade", - "25": "Hematite", - "26": "ImperialTopaz", - "27": "Jet", - "28": "LapisLazuli", - "29": "LavenderJade", - "30": "Malachite", - "31": "Moonstone", - "32": "Onyx", - "33": "Opal", - "34": "Peridot", - "35": "RedGarnet", - "36": "RedJade", - "37": "RoseQuartz", - "38": "Ruby", - "39": "Sapphire", - "40": "SmokeyQuartz", - "41": "Sunstone", - "42": "TigerEye", - "43": "Tourmaline", - "44": "Turquoise", - "45": "WhiteJade", - "46": "WhiteQuartz", - "47": "WhiteSapphire", - "48": "YellowGarnet", - "49": "YellowTopaz", - "50": "Zircon", - "51": "Ivory", - "52": "Leather", - "53": "ArmoredilloHide", - "54": "GromnieHide", - "55": "ReedSharkHide", - "57": "Brass", - "58": "Bronze", - "59": "Copper", - "60": "Gold", - "61": "Iron", - "62": "Pyreal", - "63": "Silver", - "64": "Steel", - "66": "Alabaster", - "67": "Granite", - "68": "Marble", - "69": "Obsidian", - "70": "Sandstone", - "71": "Serpentine", - "73": "Ebony", - "74": "Mahogany", - "75": "Oak", - "76": "Pine", - "77": "Teak" - }, - "comments": {}, - "attributes": {}, - "source_file": "MaterialType.cs" - }, - "DoubleValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "HeartbeatInterval", - "2": "HeartbeatTimestamp", - "3": "HealthRate", - "4": "StaminaRate", - "5": "ManaRate", - "6": "HealthUponResurrection", - "7": "StaminaUponResurrection", - "8": "ManaUponResurrection", - "9": "StartTime", - "10": "StopTime", - "11": "ResetInterval", - "12": "Shade", - "13": "ArmorModVsSlash", - "14": "ArmorModVsPierce", - "15": "ArmorModVsBludgeon", - "16": "ArmorModVsCold", - "17": "ArmorModVsFire", - "18": "ArmorModVsAcid", - "19": "ArmorModVsElectric", - "20": "CombatSpeed", - "21": "WeaponLength", - "22": "DamageVariance", - "23": "CurrentPowerMod", - "24": "AccuracyMod", - "25": "StrengthMod", - "26": "MaximumVelocity", - "27": "RotationSpeed", - "28": "MotionTimestamp", - "29": "WeaponDefense", - "30": "WimpyLevel", - "31": "VisualAwarenessRange", - "32": "AuralAwarenessRange", - "33": "PerceptionLevel", - "34": "PowerupTime", - "35": "MaxChargeDistance", - "36": "ChargeSpeed", - "37": "BuyPrice", - "38": "SellPrice", - "39": "DefaultScale", - "40": "LockpickMod", - "41": "RegenerationInterval", - "42": "RegenerationTimestamp", - "43": "GeneratorRadius", - "44": "TimeToRot", - "45": "DeathTimestamp", - "46": "PkTimestamp", - "47": "VictimTimestamp", - "48": "LoginTimestamp", - "49": "CreationTimestamp", - "50": "MinimumTimeSincePk", - "51": "DeprecatedHousekeepingPriority", - "52": "AbuseLoggingTimestamp", - "53": "LastPortalTeleportTimestamp", - "54": "UseRadius", - "55": "HomeRadius", - "56": "ReleasedTimestamp", - "57": "MinHomeRadius", - "58": "Facing", - "59": "ResetTimestamp", - "60": "LogoffTimestamp", - "61": "EconRecoveryInterval", - "62": "WeaponOffense", - "63": "DamageMod", - "64": "ResistSlash", - "65": "ResistPierce", - "66": "ResistBludgeon", - "67": "ResistFire", - "68": "ResistCold", - "69": "ResistAcid", - "70": "ResistElectric", - "71": "ResistHealthBoost", - "72": "ResistStaminaDrain", - "73": "ResistStaminaBoost", - "74": "ResistManaDrain", - "75": "ResistManaBoost", - "76": "Translucency", - "77": "PhysicsScriptIntensity", - "78": "Friction", - "79": "Elasticity", - "80": "AiUseMagicDelay", - "81": "ItemMinSpellcraftMod", - "82": "ItemMaxSpellcraftMod", - "83": "ItemRankProbability", - "84": "Shade2", - "85": "Shade3", - "86": "Shade4", - "87": "ItemEfficiency", - "88": "ItemManaUpdateTimestamp", - "89": "SpellGestureSpeedMod", - "90": "SpellStanceSpeedMod", - "91": "AllegianceAppraisalTimestamp", - "92": "PowerLevel", - "93": "AccuracyLevel", - "94": "AttackAngle", - "95": "AttackTimestamp", - "96": "CheckpointTimestamp", - "97": "SoldTimestamp", - "98": "UseTimestamp", - "99": "UseLockTimestamp", - "100": "HealkitMod", - "101": "FrozenTimestamp", - "102": "HealthRateMod", - "103": "AllegianceSwearTimestamp", - "104": "ObviousRadarRange", - "105": "HotspotCycleTime", - "106": "HotspotCycleTimeVariance", - "107": "SpamTimestamp", - "108": "SpamRate", - "109": "BondWieldedTreasure", - "110": "BulkMod", - "111": "SizeMod", - "112": "GagTimestamp", - "113": "GeneratorUpdateTimestamp", - "114": "DeathSpamTimestamp", - "115": "DeathSpamRate", - "116": "WildAttackProbability", - "117": "FocusedProbability", - "118": "CrashAndTurnProbability", - "119": "CrashAndTurnRadius", - "120": "CrashAndTurnBias", - "121": "GeneratorInitialDelay", - "122": "AiAcquireHealth", - "123": "AiAcquireStamina", - "124": "AiAcquireMana", - "125": "ResistHealthDrain", - "126": "LifestoneProtectionTimestamp", - "127": "AiCounteractEnchantment", - "128": "AiDispelEnchantment", - "129": "TradeTimestamp", - "130": "AiTargetedDetectionRadius", - "131": "EmotePriority", - "132": "LastTeleportStartTimestamp", - "133": "EventSpamTimestamp", - "134": "EventSpamRate", - "135": "InventoryOffset", - "136": "CriticalMultiplier", - "137": "ManaStoneDestroyChance", - "138": "SlayerDamageBonus", - "139": "AllegianceInfoSpamTimestamp", - "140": "AllegianceInfoSpamRate", - "141": "NextSpellcastTimestamp", - "142": "AppraisalRequestedTimestamp", - "143": "AppraisalHeartbeatDueTimestamp", - "144": "ManaConversionMod", - "145": "LastPkAttackTimestamp", - "146": "FellowshipUpdateTimestamp", - "147": "CriticalFrequency", - "148": "LimboStartTimestamp", - "149": "WeaponMissileDefense", - "150": "WeaponMagicDefense", - "151": "IgnoreShield", - "152": "ElementalDamageMod", - "153": "StartMissileAttackTimestamp", - "154": "LastRareUsedTimestamp", - "155": "IgnoreArmor", - "156": "ProcSpellRate", - "157": "ResistanceModifier", - "158": "AllegianceGagTimestamp", - "159": "AbsorbMagicDamage", - "160": "CachedMaxAbsorbMagicDamage", - "161": "GagDuration", - "162": "AllegianceGagDuration", - "163": "GlobalXpMod", - "164": "HealingModifier", - "165": "ArmorModVsNether", - "166": "ResistNether", - "167": "CooldownDuration", - "168": "WeaponAuraOffense", - "169": "WeaponAuraDefense", - "170": "WeaponAuraElemental", - "171": "WeaponAuraManaConv", - "8004": "PCAPRecordedWorkmanship", - "8010": "PCAPRecordedVelocityX", - "8011": "PCAPRecordedVelocityY", - "8012": "PCAPRecordedVelocityZ", - "8013": "PCAPRecordedAccelerationX", - "8014": "PCAPRecordedAccelerationY", - "8015": "PCAPRecordedAccelerationZ", - "8016": "PCAPRecordeOmegaX", - "8017": "PCAPRecordeOmegaY", - "8018": "PCAPRecordeOmegaZ", - "167772160": "SlashProt_Decal", - "167772161": "PierceProt_Decal", - "167772162": "BludgeonProt_Decal", - "167772163": "AcidProt_Decal", - "167772164": "LightningProt_Decal", - "167772165": "FireProt_Decal", - "167772166": "ColdProt_Decal", - "167772167": "Heading_Decal", - "167772168": "ApproachDistance_Decal", - "167772169": "SalvageWorkmanship_Decal", - "167772170": "Scale_Decal", - "167772171": "Variance_Decal", - "167772172": "AttackBonus_Decal", - "167772173": "Range_Decal", - "167772174": "DamageBonus_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "DoubleValueKey.cs" - }, - "WeenieType": { - "type": "uint", - "values": { - "0": "Undef", - "1": "Generic", - "2": "Clothing", - "3": "MissileLauncher", - "4": "Missile", - "5": "Ammunition", - "6": "MeleeWeapon", - "7": "Portal", - "8": "Book", - "9": "Coin", - "10": "Creature", - "11": "Admin", - "12": "Vendor", - "13": "HotSpot", - "14": "Corpse", - "15": "Cow", - "16": "AI", - "17": "Machine", - "18": "Food", - "19": "Door", - "20": "Chest", - "21": "Container", - "22": "Key", - "23": "Lockpick", - "24": "PressurePlate", - "25": "LifeStone", - "26": "Switch", - "27": "PKModifier", - "28": "Healer", - "29": "LightSource", - "30": "Allegiance", - "31": "UNKNOWN__GUESSEDNAME32", - "32": "SpellComponent", - "33": "ProjectileSpell", - "34": "Scroll", - "35": "Caster", - "36": "Channel", - "37": "ManaStone", - "38": "Gem", - "39": "AdvocateFane", - "40": "AdvocateItem", - "41": "Sentinel", - "42": "GSpellEconomy", - "43": "LSpellEconomy", - "44": "CraftTool", - "45": "LScoreKeeper", - "46": "GScoreKeeper", - "47": "GScoreGatherer", - "48": "ScoreBook", - "49": "EventCoordinator", - "50": "Entity", - "51": "Stackable", - "52": "HUD", - "53": "House", - "54": "Deed", - "55": "SlumLord", - "56": "Hook", - "57": "Storage", - "58": "BootSpot", - "59": "HousePortal", - "60": "Game", - "61": "GamePiece", - "62": "SkillAlterationDevice", - "63": "AttributeTransferDevice", - "64": "Hooker", - "65": "AllegianceBindstone", - "66": "InGameStatKeeper", - "67": "AugmentationDevice", - "68": "SocialManager", - "69": "Pet", - "70": "PetDevice", - "71": "CombatPet" - }, - "comments": { - "UNKNOWN__GUESSEDNAME32": "NOTE: Missing 1" - }, - "attributes": {}, - "source_file": "WeenieType.cs" - }, - "Skill": { - "type": "indexed", - "values": { - "0": { - "name": "None", - "status": "Active" - }, - "1": { - "name": "Axe", - "status": "Retired" - }, - "2": { - "name": "Bow", - "status": "Retired" - }, - "3": { - "name": "Crossbow", - "status": "Retired" - }, - "4": { - "name": "Dagger", - "status": "Retired" - }, - "5": { - "name": "Mace", - "status": "Retired" - }, - "6": { - "name": "MeleeDefense", - "status": "Active" - }, - "7": { - "name": "MissileDefense", - "status": "Active" - }, - "8": { - "name": "Sling", - "status": "Retired" - }, - "9": { - "name": "Spear", - "status": "Retired" - }, - "10": { - "name": "Staff", - "status": "Retired" - }, - "11": { - "name": "Sword", - "status": "Retired" - }, - "12": { - "name": "ThrownWeapon", - "status": "Retired" - }, - "13": { - "name": "UnarmedCombat", - "status": "Retired" - }, - "14": { - "name": "ArcaneLore", - "status": "Active" - }, - "15": { - "name": "MagicDefense", - "status": "Active" - }, - "16": { - "name": "ManaConversion", - "status": "Active" - }, - "17": { - "name": "Spellcraft", - "status": "Unimplemented" - }, - "18": { - "name": "ItemTinkering", - "status": "Active" - }, - "19": { - "name": "AssessPerson", - "status": "Active" - }, - "20": { - "name": "Deception", - "status": "Active" - }, - "21": { - "name": "Healing", - "status": "Active" - }, - "22": { - "name": "Jump", - "status": "Active" - }, - "23": { - "name": "Lockpick", - "status": "Active" - }, - "24": { - "name": "Run", - "status": "Active" - }, - "25": { - "name": "Awareness", - "status": "Unimplemented" - }, - "26": { - "name": "ArmsAndArmorRepair", - "status": "Unimplemented" - }, - "27": { - "name": "AssessCreature", - "status": "Active" - }, - "28": { - "name": "WeaponTinkering", - "status": "Active" - }, - "29": { - "name": "ArmorTinkering", - "status": "Active" - }, - "30": { - "name": "MagicItemTinkering", - "status": "Active" - }, - "31": { - "name": "CreatureEnchantment", - "status": "Active" - }, - "32": { - "name": "ItemEnchantment", - "status": "Active" - }, - "33": { - "name": "LifeMagic", - "status": "Active" - }, - "34": { - "name": "WarMagic", - "status": "Active" - }, - "35": { - "name": "Leadership", - "status": "Active" - }, - "36": { - "name": "Loyalty", - "status": "Active" - }, - "37": { - "name": "Fletching", - "status": "Active" - }, - "38": { - "name": "Alchemy", - "status": "Active" - }, - "39": { - "name": "Cooking", - "status": "Active" - }, - "40": { - "name": "Salvaging", - "status": "Active" - }, - "41": { - "name": "TwoHandedCombat", - "status": "Active" - }, - "42": { - "name": "Gearcraft", - "status": "Retired" - }, - "43": { - "name": "VoidMagic", - "status": "Active" - }, - "44": { - "name": "HeavyWeapons", - "status": "Active" - }, - "45": { - "name": "LightWeapons", - "status": "Active" - }, - "46": { - "name": "FinesseWeapons", - "status": "Active" - }, - "47": { - "name": "MissileWeapons", - "status": "Active" - }, - "48": { - "name": "Shield", - "status": "Active" - }, - "49": { - "name": "DualWield", - "status": "Active" - }, - "50": { - "name": "Recklessness", - "status": "Active" - }, - "51": { - "name": "SneakAttack", - "status": "Active" - }, - "52": { - "name": "DirtyFighting", - "status": "Active" - }, - "53": { - "name": "Challenge", - "status": "Unimplemented" - }, - "54": { - "name": "Summoning", - "status": "Active" - } - }, - "source_file": "Skill.cs" - }, - "BoolValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "Stuck", - "2": "Open", - "3": "Locked", - "4": "RotProof", - "5": "AllegianceUpdateRequest", - "6": "AiUsesMana", - "7": "AiUseHumanMagicAnimations", - "8": "AllowGive", - "9": "CurrentlyAttacking", - "10": "AttackerAi", - "11": "IgnoreCollisions", - "12": "ReportCollisions", - "13": "Ethereal", - "14": "GravityStatus", - "15": "LightsStatus", - "16": "ScriptedCollision", - "17": "Inelastic", - "18": "Visibility", - "19": "Attackable", - "20": "SafeSpellComponents", - "21": "AdvocateState", - "22": "Inscribable", - "23": "DestroyOnSell", - "24": "UiHidden", - "25": "IgnoreHouseBarriers", - "26": "HiddenAdmin", - "27": "PkWounder", - "28": "PkKiller", - "29": "NoCorpse", - "30": "UnderLifestoneProtection", - "31": "ItemManaUpdatePending", - "32": "GeneratorStatus", - "33": "ResetMessagePending", - "34": "DefaultOpen", - "35": "DefaultLocked", - "36": "DefaultOn", - "37": "OpenForBusiness", - "38": "IsFrozen", - "39": "DealMagicalItems", - "40": "LogoffImDead", - "41": "ReportCollisionsAsEnvironment", - "42": "AllowEdgeSlide", - "43": "AdvocateQuest", - "44": "IsAdmin", - "45": "IsArch", - "46": "IsSentinel", - "47": "IsAdvocate", - "48": "CurrentlyPoweringUp", - "49": "GeneratorEnteredWorld", - "50": "NeverFailCasting", - "51": "VendorService", - "52": "AiImmobile", - "53": "DamagedByCollisions", - "54": "IsDynamic", - "55": "IsHot", - "56": "IsAffecting", - "57": "AffectsAis", - "58": "SpellQueueActive", - "59": "GeneratorDisabled", - "60": "IsAcceptingTells", - "61": "LoggingChannel", - "62": "OpensAnyLock", - "63": "UnlimitedUse", - "64": "GeneratedTreasureItem", - "65": "IgnoreMagicResist", - "66": "IgnoreMagicArmor", - "67": "AiAllowTrade", - "68": "SpellComponentsRequired", - "69": "IsSellable", - "70": "IgnoreShieldsBySkill", - "71": "NoDraw", - "72": "ActivationUntargeted", - "73": "HouseHasGottenPriorityBootPos", - "74": "GeneratorAutomaticDestruction", - "75": "HouseHooksVisible", - "76": "HouseRequiresMonarch", - "77": "HouseHooksEnabled", - "78": "HouseNotifiedHudOfHookCount", - "79": "AiAcceptEverything", - "80": "IgnorePortalRestrictions", - "81": "RequiresBackpackSlot", - "82": "DontTurnOrMoveWhenGiving", - "83": "NpcLooksLikeObject", - "84": "IgnoreCloIcons", - "85": "AppraisalHasAllowedWielder", - "86": "ChestRegenOnClose", - "87": "LogoffInMinigame", - "88": "PortalShowDestination", - "89": "PortalIgnoresPkAttackTimer", - "90": "NpcInteractsSilently", - "91": "Retained", - "92": "IgnoreAuthor", - "93": "Limbo", - "94": "AppraisalHasAllowedActivator", - "95": "ExistedBeforeAllegianceXpChanges", - "96": "IsDeaf", - "97": "IsPsr", - "98": "Invincible", - "99": "Ivoryable", - "100": "Dyable", - "101": "CanGenerateRare", - "102": "CorpseGeneratedRare", - "103": "NonProjectileMagicImmune", - "104": "ActdReceivedItems", - "105": "Unknown105", - "106": "FirstEnterWorldDone", - "107": "RecallsDisabled", - "108": "RareUsesTimer", - "109": "ActdPreorderReceivedItems", - "110": "Afk", - "111": "IsGagged", - "112": "ProcSpellSelfTargeted", - "113": "IsAllegianceGagged", - "114": "EquipmentSetTriggerPiece", - "115": "Uninscribe", - "116": "WieldOnUse", - "117": "ChestClearedWhenClosed", - "118": "NeverAttack", - "119": "SuppressGenerateEffect", - "120": "TreasureCorpse", - "121": "EquipmentSetAddLevel", - "122": "BarberActive", - "123": "TopLayerPriority", - "124": "NoHeldItemShown", - "125": "LoginAtLifestone", - "126": "OlthoiPk", - "127": "Account15Days", - "128": "HadNoVitae", - "129": "NoOlthoiTalk", - "130": "AutowieldLeft", - "9001": "LinkedPortalOneSummon", - "9002": "LinkedPortalTwoSummon", - "9003": "HouseEvicted", - "9004": "UntrainedSkills", - "201326592": "Lockable_Decal", - "201326593": "Inscribable_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "BoolValueKey.cs" - }, - "QuadValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "TotalExperience", - "2": "AvailableExperience", - "3": "AugmentationCost", - "4": "ItemTotalXp", - "5": "ItemBaseXp", - "6": "AvailableLuminance", - "7": "MaximumLuminance", - "8": "InteractionReqs", - "9000": "AllegianceXPCached", - "9001": "AllegianceXPGenerated", - "9002": "AllegianceXPReceived", - "9003": "VerifyXp" - }, - "comments": {}, - "attributes": {}, - "source_file": "QuadValueKey.cs" - }, - "ItemType": { - "type": "uint", - "values": { - "0": "None", - "1": "MeleeWeapon", - "2": "Armor", - "4": "Clothing", - "8": "Jewelry", - "16": "Creature", - "32": "Food", - "64": "Money", - "128": "Misc", - "256": "MissileWeapon", - "512": "Container", - "1024": "Useless", - "2048": "Gem", - "4096": "SpellComponents", - "8192": "Writable", - "16384": "Key", - "32768": "Caster", - "65536": "Portal", - "131072": "Lockable", - "262144": "PromissoryNote", - "524288": "ManaStone", - "1048576": "Service", - "2097152": "MagicWieldable", - "4194304": "CraftCookingBase", - "8388608": "CraftAlchemyBase", - "33554432": "CraftFletchingBase", - "67108864": "CraftAlchemyIntermediate", - "134217728": "CraftFletchingIntermediate", - "268435456": "LifeStone", - "536870912": "TinkeringTool", - "1073741824": "TinkeringMaterial", - "2147483648": "Gameboard", - "EXPR:Portal | LifeStone": "PortalMagicTarget", - "EXPR:Misc | Container": "LockableMagicTarget", - "EXPR:Armor | Clothing": "Vestements", - "EXPR:MeleeWeapon | MissileWeapon": "Weapon", - "EXPR:MeleeWeapon | MissileWeapon | Caster": "WeaponOrCaster", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Food | Money | Misc | MissileWeapon | Container |": "Item", - "EXPR:MeleeWeapon | Armor | Clothing | MissileWeapon | Caster": "RedirectableItemEnchantmentTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Misc | MissileWeapon | Container | Gem | Caster | ManaStone": "ItemEnchantableTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Food | Misc | MissileWeapon | Container | Useless | Writable | Key |": "VendorShopKeep", - "EXPR:Food | Container | Writable | Key | PromissoryNote | CraftCookingBase": "VendorGrocer" - }, - "comments": {}, - "attributes": {}, - "source_file": "ItemType.cs" - }, - "IntValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "ItemType", - "2": "CreatureType", - "3": "PaletteTemplate", - "4": "ClothingPriority", - "5": "EncumbranceVal", - "6": "ItemsCapacity", - "7": "ContainersCapacity", - "8": "Mass", - "9": "ValidLocations", - "10": "CurrentWieldedLocation", - "11": "MaxStackSize", - "12": "StackSize", - "13": "StackUnitEncumbrance", - "14": "StackUnitMass", - "15": "StackUnitValue", - "16": "ItemUseable", - "17": "RareId", - "18": "UiEffects", - "19": "Value", - "20": "CoinValue", - "21": "TotalExperience", - "22": "AvailableCharacter", - "23": "TotalSkillCredits", - "24": "AvailableSkillCredits", - "25": "Level", - "26": "AccountRequirements", - "27": "ArmorType", - "28": "ArmorLevel", - "29": "AllegianceCpPool", - "30": "AllegianceRank", - "31": "ChannelsAllowed", - "32": "ChannelsActive", - "33": "Bonded", - "34": "MonarchsRank", - "35": "AllegianceFollowers", - "36": "ResistMagic", - "37": "ResistItemAppraisal", - "38": "ResistLockpick", - "39": "DeprecatedResistRepair", - "40": "CombatMode", - "41": "CurrentAttackHeight", - "42": "CombatCollisions", - "43": "NumDeaths", - "44": "Damage", - "45": "DamageType", - "46": "DefaultCombatStyle", - "47": "AttackType", - "48": "WeaponSkill", - "49": "WeaponTime", - "50": "AmmoType", - "51": "CombatUse", - "52": "ParentLocation", - "53": "PlacementPosition", - "54": "WeaponEncumbrance", - "55": "WeaponMass", - "56": "ShieldValue", - "57": "ShieldEncumbrance", - "58": "MissileInventoryLocation", - "59": "FullDamageType", - "60": "WeaponRange", - "61": "AttackersSkill", - "62": "DefendersSkill", - "63": "AttackersSkillValue", - "64": "AttackersClass", - "65": "Placement", - "66": "CheckpointStatus", - "67": "Tolerance", - "68": "TargetingTactic", - "69": "CombatTactic", - "70": "HomesickTargetingTactic", - "71": "NumFollowFailures", - "72": "FriendType", - "73": "FoeType", - "74": "MerchandiseItemTypes", - "75": "MerchandiseMinValue", - "76": "MerchandiseMaxValue", - "77": "NumItemsSold", - "78": "NumItemsBought", - "79": "MoneyIncome", - "80": "MoneyOutflow", - "81": "MaxGeneratedObjects", - "82": "InitGeneratedObjects", - "83": "ActivationResponse", - "84": "OriginalValue", - "85": "NumMoveFailures", - "86": "MinLevel", - "87": "MaxLevel", - "88": "LockpickMod", - "89": "BoosterEnum", - "90": "BoostValue", - "91": "MaxStructure", - "92": "Structure", - "93": "PhysicsState", - "94": "TargetType", - "95": "RadarBlipColor", - "96": "EncumbranceCapacity", - "97": "LoginTimestamp", - "98": "CreationTimestamp", - "99": "PkLevelModifier", - "100": "GeneratorType", - "101": "AiAllowedCombatStyle", - "102": "LogoffTimestamp", - "103": "GeneratorDestructionType", - "104": "ActivationCreateClass", - "105": "ItemWorkmanship", - "106": "ItemSpellcraft", - "107": "ItemCurMana", - "108": "ItemMaxMana", - "109": "ItemDifficulty", - "110": "ItemAllegianceRankLimit", - "111": "PortalBitmask", - "112": "AdvocateLevel", - "113": "Gender", - "114": "Attuned", - "115": "ItemSkillLevelLimit", - "116": "GateLogic", - "117": "ItemManaCost", - "118": "Logoff", - "119": "Active", - "120": "AttackHeight", - "121": "NumAttackFailures", - "122": "AiCpThreshold", - "123": "AiAdvancementStrategy", - "124": "Version", - "125": "Age", - "126": "VendorHappyMean", - "127": "VendorHappyVariance", - "128": "CloakStatus", - "129": "VitaeCpPool", - "130": "NumServicesSold", - "131": "MaterialType", - "132": "NumAllegianceBreaks", - "133": "ShowableOnRadar", - "134": "PlayerKillerStatus", - "135": "VendorHappyMaxItems", - "136": "ScorePageNum", - "137": "ScoreConfigNum", - "138": "ScoreNumScores", - "139": "DeathLevel", - "140": "AiOptions", - "141": "OpenToEveryone", - "142": "GeneratorTimeType", - "143": "GeneratorStartTime", - "144": "GeneratorEndTime", - "145": "GeneratorEndDestructionType", - "146": "XpOverride", - "147": "NumCrashAndTurns", - "148": "ComponentWarningThreshold", - "149": "HouseStatus", - "150": "HookPlacement", - "151": "HookType", - "152": "HookItemType", - "153": "AiPpThreshold", - "154": "GeneratorVersion", - "155": "HouseType", - "156": "PickupEmoteOffset", - "157": "WeenieIteration", - "158": "WieldRequirements", - "159": "WieldSkillType", - "160": "WieldDifficulty", - "161": "HouseMaxHooksUsable", - "162": "HouseCurrentHooksUsable", - "163": "AllegianceMinLevel", - "164": "AllegianceMaxLevel", - "165": "HouseRelinkHookCount", - "166": "SlayerCreatureType", - "167": "ConfirmationInProgress", - "168": "ConfirmationTypeInProgress", - "169": "TsysMutationData", - "170": "NumItemsInMaterial", - "171": "NumTimesTinkered", - "172": "AppraisalLongDescDecoration", - "173": "AppraisalLockpickSuccessPercent", - "174": "AppraisalPages", - "175": "AppraisalMaxPages", - "176": "AppraisalItemSkill", - "177": "GemCount", - "178": "GemType", - "179": "ImbuedEffect", - "180": "AttackersRawSkillValue", - "181": "ChessRank", - "182": "ChessTotalGames", - "183": "ChessGamesWon", - "184": "ChessGamesLost", - "185": "TypeOfAlteration", - "186": "SkillToBeAltered", - "187": "SkillAlterationCount", - "188": "HeritageGroup", - "189": "TransferFromAttribute", - "190": "TransferToAttribute", - "191": "AttributeTransferCount", - "192": "FakeFishingSkill", - "193": "NumKeys", - "194": "DeathTimestamp", - "195": "PkTimestamp", - "196": "VictimTimestamp", - "197": "HookGroup", - "198": "AllegianceSwearTimestamp", - "199": "HousePurchaseTimestamp", - "200": "RedirectableEquippedArmorCount", - "201": "MeleeDefenseImbuedEffectTypeCache", - "202": "MissileDefenseImbuedEffectTypeCache", - "203": "MagicDefenseImbuedEffectTypeCache", - "204": "ElementalDamageBonus", - "205": "ImbueAttempts", - "206": "ImbueSuccesses", - "207": "CreatureKills", - "208": "PlayerKillsPk", - "209": "PlayerKillsPkl", - "210": "RaresTierOne", - "211": "RaresTierTwo", - "212": "RaresTierThree", - "213": "RaresTierFour", - "214": "RaresTierFive", - "215": "AugmentationStat", - "216": "AugmentationFamilyStat", - "217": "AugmentationInnateFamily", - "218": "AugmentationInnateStrength", - "219": "AugmentationInnateEndurance", - "220": "AugmentationInnateCoordination", - "221": "AugmentationInnateQuickness", - "222": "AugmentationInnateFocus", - "223": "AugmentationInnateSelf", - "224": "AugmentationSpecializeSalvaging", - "225": "AugmentationSpecializeItemTinkering", - "226": "AugmentationSpecializeArmorTinkering", - "227": "AugmentationSpecializeMagicItemTinkering", - "228": "AugmentationSpecializeWeaponTinkering", - "229": "AugmentationExtraPackSlot", - "230": "AugmentationIncreasedCarryingCapacity", - "231": "AugmentationLessDeathItemLoss", - "232": "AugmentationSpellsRemainPastDeath", - "233": "AugmentationCriticalDefense", - "234": "AugmentationBonusXp", - "235": "AugmentationBonusSalvage", - "236": "AugmentationBonusImbueChance", - "237": "AugmentationFasterRegen", - "238": "AugmentationIncreasedSpellDuration", - "239": "AugmentationResistanceFamily", - "240": "AugmentationResistanceSlash", - "241": "AugmentationResistancePierce", - "242": "AugmentationResistanceBlunt", - "243": "AugmentationResistanceAcid", - "244": "AugmentationResistanceFire", - "245": "AugmentationResistanceFrost", - "246": "AugmentationResistanceLightning", - "247": "RaresTierOneLogin", - "248": "RaresTierTwoLogin", - "249": "RaresTierThreeLogin", - "250": "RaresTierFourLogin", - "251": "RaresTierFiveLogin", - "252": "RaresLoginTimestamp", - "253": "RaresTierSix", - "254": "RaresTierSeven", - "255": "RaresTierSixLogin", - "256": "RaresTierSevenLogin", - "257": "ItemAttributeLimit", - "258": "ItemAttributeLevelLimit", - "259": "ItemAttribute2ndLimit", - "260": "ItemAttribute2ndLevelLimit", - "261": "CharacterTitleId", - "262": "NumCharacterTitles", - "263": "ResistanceModifierType", - "264": "FreeTinkersBitfield", - "265": "EquipmentSetId", - "266": "PetClass", - "267": "Lifespan", - "268": "RemainingLifespan", - "269": "UseCreateQuantity", - "270": "WieldRequirements2", - "271": "WieldSkillType2", - "272": "WieldDifficulty2", - "273": "WieldRequirements3", - "274": "WieldSkillType3", - "275": "WieldDifficulty3", - "276": "WieldRequirements4", - "277": "WieldSkillType4", - "278": "WieldDifficulty4", - "279": "Unique", - "280": "SharedCooldown", - "281": "Faction1Bits", - "282": "Faction2Bits", - "283": "Faction3Bits", - "284": "Hatred1Bits", - "285": "Hatred2Bits", - "286": "Hatred3Bits", - "287": "SocietyRankCelhan", - "288": "SocietyRankEldweb", - "289": "SocietyRankRadblo", - "290": "HearLocalSignals", - "291": "HearLocalSignalsRadius", - "292": "Cleaving", - "293": "AugmentationSpecializeGearcraft", - "294": "AugmentationInfusedCreatureMagic", - "295": "AugmentationInfusedItemMagic", - "296": "AugmentationInfusedLifeMagic", - "297": "AugmentationInfusedWarMagic", - "298": "AugmentationCriticalExpertise", - "299": "AugmentationCriticalPower", - "300": "AugmentationSkilledMelee", - "301": "AugmentationSkilledMissile", - "302": "AugmentationSkilledMagic", - "303": "ImbuedEffect2", - "304": "ImbuedEffect3", - "305": "ImbuedEffect4", - "306": "ImbuedEffect5", - "307": "DamageRating", - "308": "DamageResistRating", - "309": "AugmentationDamageBonus", - "310": "AugmentationDamageReduction", - "311": "ImbueStackingBits", - "312": "HealOverTime", - "313": "CritRating", - "314": "CritDamageRating", - "315": "CritResistRating", - "316": "CritDamageResistRating", - "317": "HealingResistRating", - "318": "DamageOverTime", - "319": "ItemMaxLevel", - "320": "ItemXpStyle", - "321": "EquipmentSetExtra", - "322": "AetheriaBitfield", - "323": "HealingBoostRating", - "324": "HeritageSpecificArmor", - "325": "AlternateRacialSkills", - "326": "AugmentationJackOfAllTrades", - "327": "AugmentationResistanceNether", - "328": "AugmentationInfusedVoidMagic", - "329": "WeaknessRating", - "330": "NetherOverTime", - "331": "NetherResistRating", - "332": "LuminanceAward", - "333": "LumAugDamageRating", - "334": "LumAugDamageReductionRating", - "335": "LumAugCritDamageRating", - "336": "LumAugCritReductionRating", - "337": "LumAugSurgeEffectRating", - "338": "LumAugSurgeChanceRating", - "339": "LumAugItemManaUsage", - "340": "LumAugItemManaGain", - "341": "LumAugVitality", - "342": "LumAugHealingRating", - "343": "LumAugSkilledCraft", - "344": "LumAugSkilledSpec", - "345": "LumAugNoDestroyCraft", - "346": "RestrictInteraction", - "347": "OlthoiLootTimestamp", - "348": "OlthoiLootStep", - "349": "UseCreatesContractId", - "350": "DotResistRating", - "351": "LifeResistRating", - "352": "CloakWeaveProc", - "353": "WeaponType", - "354": "MeleeMastery", - "355": "RangedMastery", - "356": "SneakAttackRating", - "357": "RecklessnessRating", - "358": "DeceptionRating", - "359": "CombatPetRange", - "360": "WeaponAuraDamage", - "361": "WeaponAuraSpeed", - "362": "SummoningMastery", - "363": "HeartbeatLifespan", - "364": "UseLevelRequirement", - "365": "LumAugAllSkills", - "366": "UseRequiresSkill", - "367": "UseRequiresSkillLevel", - "368": "UseRequiresSkillSpec", - "369": "UseRequiresLevel", - "370": "GearDamage", - "371": "GearDamageResist", - "372": "GearCrit", - "373": "GearCritResist", - "374": "GearCritDamage", - "375": "GearCritDamageResist", - "376": "GearHealingBoost", - "377": "GearNetherResist", - "378": "GearLifeResist", - "379": "GearMaxHealth", - "380": "Unknown380", - "381": "PKDamageRating", - "382": "PKDamageResistRating", - "383": "GearPKDamageRating", - "384": "GearPKDamageResistRating", - "385": "Unknown385", - "386": "Overpower", - "387": "OverpowerResist", - "388": "GearOverpower", - "389": "GearOverpowerResist", - "390": "Enlightenment", - "8007": "PCAPRecordedAutonomousMovement", - "8030": "PCAPRecordedMaxVelocityEstimated", - "8041": "PCAPRecordedPlacement", - "8042": "PCAPRecordedAppraisalPages", - "8043": "PCAPRecordedAppraisalMaxPages", - "9008": "CurrentLoyaltyAtLastLogoff", - "9009": "CurrentLeadershipAtLastLogoff", - "9010": "AllegianceOfficerRank", - "9011": "HouseRentTimestamp", - "9012": "Hairstyle", - "9013": "VisualClothingPriority", - "9014": "SquelchGlobal", - "9015": "InventoryOrder", - "218103808": "WeenieClassId_Decal", - "218103809": "Icon_Decal_DID", - "218103810": "Container_Decal_IID", - "218103811": "Landblock_Decal", - "218103812": "ItemSlots_Decal", - "218103813": "PackSlots_Decal", - "218103814": "StackCount_Decal", - "218103815": "StackMax_Decal", - "218103816": "Spell_Decal_DID", - "218103817": "SlotLegacy_Decal", - "218103818": "Wielder_Decal_IID", - "218103819": "WieldingSlot_Decal", - "218103820": "Monarch_Decal_IID", - "218103821": "Coverage_Decal", - "218103822": "EquipableSlots_Decal", - "218103823": "EquipType_Decal", - "218103824": "IconOutline_Decal", - "218103825": "MissileType_Decal", - "218103826": "UsageMask_Decal", - "218103827": "HouseOwner_Decal_IID", - "218103828": "HookMask_Decal", - "218103829": "HookType_Decal", - "218103830": "Setup_Decal_DID", - "218103831": "ObjectDescriptionFlags_Decal", - "218103832": "CreateFlags1_Decal", - "218103833": "CreateFlags2_Decal", - "218103834": "Category_Decal", - "218103835": "Behavior_Decal", - "218103836": "MagicDef_Decal", - "218103837": "SpecialProps_Decal", - "218103838": "SpellCount_Decal", - "218103839": "WeapSpeed_Decal", - "218103840": "EquipSkill_Decal", - "218103841": "DamageType_Decal", - "218103842": "MaxDamage_Decal", - "218103843": "Unknown10_Decal", - "218103844": "Unknown100000_Decal", - "218103845": "Unknown800000_Decal", - "218103846": "Unknown8000000_Decal", - "218103847": "PhysicsDataFlags_Decal", - "218103848": "ActiveSpellCount_Decal", - "218103849": "IconOverlay_Decal_DID", - "218103850": "IconUnderlay_Decal_DID", - "231735296": "Slot_Decal" - }, - "comments": { - "EncumbranceVal": "ENCUMB_VAL_INT,", - "ValidLocations": "LOCATIONS_INT", - "Unknown10_Decal": "CurrentWieldLocation?", - "Unknown100000_Decal": "RadarBlipColor ???" - }, - "attributes": {}, - "source_file": "IntValueKey.cs" - }, - "EquipMask": { - "type": "uint", - "values": { - "0": "None", - "1": "HeadWear", - "2": "ChestWear", - "4": "AbdomenWear", - "8": "UpperArmWear", - "16": "LowerArmWear", - "32": "HandWear", - "64": "UpperLegWear", - "128": "LowerLegWear", - "256": "FootWear", - "512": "ChestArmor", - "1024": "AbdomenArmor", - "2048": "UpperArmArmor", - "4096": "LowerArmArmor", - "8192": "UpperLegArmor", - "16384": "LowerLegArmor", - "32768": "NeckWear", - "65536": "WristWearLeft", - "131072": "WristWearRight", - "262144": "FingerWearLeft", - "524288": "FingerWearRight", - "1048576": "MeleeWeapon", - "2097152": "Shield", - "4194304": "MissileWeapon", - "8388608": "MissileAmmo", - "16777216": "Held", - "33554432": "TwoHanded", - "67108864": "TrinketOne", - "134217728": "Cloak", - "268435456": "SigilOne", - "536870912": "SigilTwo", - "1073741824": "SigilThree", - "EXPR:0x80000000 | HeadWear | ChestWear | AbdomenWear | UpperArmWear | LowerArmWear | HandWear | UpperLegWear | LowerLegWear | FootWear": "Clothing", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor | FootWear": "Armor", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor": "ArmorExclusive", - "EXPR:HeadWear | HandWear | FootWear": "Extremity", - "EXPR:NeckWear | WristWearLeft | WristWearRight | FingerWearLeft | FingerWearRight | TrinketOne | Cloak | SigilOne | SigilTwo | SigilThree": "Jewelry", - "EXPR:WristWearLeft | WristWearRight": "WristWear", - "EXPR:FingerWearLeft | FingerWearRight": "FingerWear", - "EXPR:SigilOne | SigilTwo | SigilThree": "Sigil", - "EXPR:Held | TwoHanded | TrinketOne | Cloak | SigilOne | SigilTwo": "ReadySlot", - "EXPR:SigilTwo | TrinketOne | Held": "Weapon", - "EXPR:SigilOne | SigilTwo | TrinketOne | Held": "WeaponReadySlot", - "EXPR:MeleeWeapon | Shield | MissileWeapon | Held | TwoHanded": "Selectable", - "EXPR:Selectable | MissileAmmo": "SelectablePlusAmmo", - "2147483647": "CanGoInReadySlot" - }, - "comments": { - "SigilOne": "Blue", - "SigilTwo": "Yellow", - "SigilThree": "Red" - }, - "attributes": {}, - "source_file": "EquipMask.cs" - }, - "SpellCategory": { - "type": "int", - "values": { - "0": "Undefined", - "1": "Strength_Raising", - "2": "Strength_Lowering", - "3": "Endurance_Raising", - "4": "Endurance_Lowering", - "5": "Quickness_Raising", - "6": "Quickness_Lowering", - "7": "Coordination_Raising", - "8": "Coordination_Lowering", - "9": "Focus_Raising", - "10": "Focus_Lowering", - "11": "Self_Raising", - "12": "Self_Lowering", - "13": "Focus_Concentration", - "14": "Focus_Disruption", - "15": "Focus_Brilliance", - "16": "Focus_Dullness", - "17": "Axe_Raising", - "18": "Axe_Lowering", - "19": "Bow_Raising", - "20": "Bow_Lowering", - "21": "Crossbow_Raising", - "22": "Crossbow_Lowering", - "23": "Dagger_Raising", - "24": "Dagger_Lowering", - "25": "Mace_Raising", - "26": "Mace_Lowering", - "27": "Spear_Raising", - "28": "Spear_Lowering", - "29": "Staff_Raising", - "30": "Staff_Lowering", - "31": "Sword_Raising", - "32": "Sword_Lowering", - "33": "Thrown_Weapons_Raising", - "34": "Thrown_Weapons_Lowering", - "35": "Unarmed_Combat_Raising", - "36": "Unarmed_Combat_Lowering", - "37": "Melee_Defense_Raising", - "38": "Melee_Defense_Lowering", - "39": "Missile_Defense_Raising", - "40": "Missile_Defense_Lowering", - "41": "Magic_Defense_Raising", - "42": "Magic_Defense_Lowering", - "43": "Creature_Enchantment_Raising", - "44": "Creature_Enchantment_Lowering", - "45": "Item_Enchantment_Raising", - "46": "Item_Enchantment_Lowering", - "47": "Life_Magic_Raising", - "48": "Life_Magic_Lowering", - "49": "War_Magic_Raising", - "50": "War_Magic_Lowering", - "51": "Mana_Conversion_Raising", - "52": "Mana_Conversion_Lowering", - "53": "Arcane_Lore_Raising", - "54": "Arcane_Lore_Lowering", - "55": "Appraise_Armor_Raising", - "56": "Appraise_Armor_Lowering", - "57": "Appraise_Item_Raising", - "58": "Appraise_Item_Lowering", - "59": "Appraise_Magic_Item_Raising", - "60": "Appraise_Magic_Item_Lowering", - "61": "Appraise_Weapon_Raising", - "62": "Appraise_Weapon_Lowering", - "63": "Assess_Monster_Raising", - "64": "Assess_Monster_Lowering", - "65": "Deception_Raising", - "66": "Deception_Lowering", - "67": "Healing_Raising", - "68": "Healing_Lowering", - "69": "Jump_Raising", - "70": "Jump_Lowering", - "71": "Leadership_Raising", - "72": "Leadership_Lowering", - "73": "Lockpick_Raising", - "74": "Lockpick_Lowering", - "75": "Loyalty_Raising", - "76": "Loyalty_Lowering", - "77": "Run_Raising", - "78": "Run_Lowering", - "79": "Health_Raising", - "80": "Health_Lowering", - "81": "Stamina_Raising", - "82": "Stamina_Lowering", - "83": "Mana_Raising", - "84": "Mana_Lowering", - "85": "Mana_Remedy", - "86": "Mana_Malediction", - "87": "Health_Transfer_to_caster", - "88": "Health_Transfer_from_caster", - "89": "Stamina_Transfer_to_caster", - "90": "Stamina_Transfer_from_caster", - "91": "Mana_Transfer_to_caster", - "92": "Mana_Transfer_from_caster", - "93": "Health_Accelerating", - "94": "Health_Decelerating", - "95": "Stamina_Accelerating", - "96": "Stamina_Decelerating", - "97": "Mana_Accelerating", - "98": "Mana_Decelerating", - "99": "Vitae_Raising", - "100": "Vitae_Lowering", - "101": "Acid_Protection", - "102": "Acid_Vulnerability", - "103": "Bludgeon_Protection", - "104": "Bludgeon_Vulnerability", - "105": "Cold_Protection", - "106": "Cold_Vulnerability", - "107": "Electric_Protection", - "108": "Electric_Vulnerability", - "109": "Fire_Protection", - "110": "Fire_Vulnerability", - "111": "Pierce_Protection", - "112": "Pierce_Vulnerability", - "113": "Slash_Protection", - "114": "Slash_Vulnerability", - "115": "Armor_Raising", - "116": "Armor_Lowering", - "117": "Acid_Missile", - "118": "Bludgeoning_Missile", - "119": "Cold_Missile", - "120": "Electric_Missile", - "121": "Fire_Missile", - "122": "Piercing_Missile", - "123": "Slashing_Missile", - "124": "Acid_Seeker", - "125": "Bludgeoning_Seeker", - "126": "Cold_Seeker", - "127": "Electric_Seeker", - "128": "Fire_Seeker", - "129": "Piercing_Seeker", - "130": "Slashing_Seeker", - "131": "Acid_Burst", - "132": "Bludgeoning_Burst", - "133": "Cold_Burst", - "134": "Electric_Burst", - "135": "Fire_Burst", - "136": "Piercing_Burst", - "137": "Slashing_Burst", - "138": "Acid_Blast", - "139": "Bludgeoning_Blast", - "140": "Cold_Blast", - "141": "Electric_Blast", - "142": "Fire_Blast", - "143": "Piercing_Blast", - "144": "Slashing_Blast", - "145": "Acid_Scatter", - "146": "Bludgeoning_Scatter", - "147": "Cold_Scatter", - "148": "Electric_Scatter", - "149": "Fire_Scatter", - "150": "Piercing_Scatter", - "151": "Slashing_Scatter", - "152": "Attack_Mod_Raising", - "153": "Attack_Mod_Lowering", - "154": "Damage_Raising", - "155": "Damage_Lowering", - "156": "Defense_Mod_Raising", - "157": "Defense_Mod_Lowering", - "158": "Weapon_Time_Raising", - "159": "Weapon_Time_Lowering", - "160": "Armor_Value_Raising", - "161": "Armor_Value_Lowering", - "162": "Acid_Resistance_Raising", - "163": "Acid_Resistance_Lowering", - "164": "Bludgeon_Resistance_Raising", - "165": "Bludgeon_Resistance_Lowering", - "166": "Cold_Resistance_Raising", - "167": "Cold_Resistance_Lowering", - "168": "Electric_Resistance_Raising", - "169": "Electric_Resistance_Lowering", - "170": "Fire_Resistance_Raising", - "171": "Fire_Resistance_Lowering", - "172": "Pierce_Resistance_Raising", - "173": "Pierce_Resistance_Lowering", - "174": "Slash_Resistance_Raising", - "175": "Slash_Resistance_Lowering", - "176": "Bludgeoning_Resistance_Raising", - "177": "Bludgeoning_Resistance_Lowering", - "178": "Slashing_Resistance_Raising", - "179": "Slashing_Resistance_Lowering", - "180": "Piercing_Resistance_Raising", - "181": "Piercing_Resistance_Lowering", - "182": "Electrical_Resistance_Raising", - "183": "Electrical_Resistance_Lowering", - "184": "Frost_Resistance_Raising", - "185": "Frost_Resistance_Lowering", - "186": "Flame_Resistance_Raising", - "187": "Flame_Resistance_Lowering", - "188": "Acidic_Resistance_Raising", - "189": "Acidic_Resistance_Lowering", - "190": "Armor_Level_Raising", - "191": "Armor_Level_Lowering", - "192": "Lockpick_Resistance_Raising", - "193": "Lockpick_Resistance_Lowering", - "194": "Appraisal_Resistance_Raising", - "195": "Appraisal_Resistance_Lowering", - "196": "Vision_Raising", - "197": "Vision_Lowering", - "198": "Transparency_Raising", - "199": "Transparency_Lowering", - "200": "Portal_Tie", - "201": "Portal_Recall", - "202": "Portal_Creation", - "203": "Portal_Item_Creation", - "204": "Vitae", - "205": "Assess_Person_Raising", - "206": "Assess_Person_Lowering", - "207": "Acid_Volley", - "208": "Bludgeoning_Volley", - "209": "Frost_Volley", - "210": "Lightning_Volley", - "211": "Flame_Volley", - "212": "Force_Volley", - "213": "Blade_Volley", - "214": "Portal_Sending", - "215": "Lifestone_Sending", - "216": "Cooking_Raising", - "217": "Cooking_Lowering", - "218": "Fletching_Raising", - "219": "Fletching_Lowering", - "220": "Alchemy_Lowering", - "221": "Alchemy_Raising", - "222": "Acid_Ring", - "223": "Bludgeoning_Ring", - "224": "Cold_Ring", - "225": "Electric_Ring", - "226": "Fire_Ring", - "227": "Piercing_Ring", - "228": "Slashing_Ring", - "229": "Acid_Wall", - "230": "Bludgeoning_Wall", - "231": "Cold_Wall", - "232": "Electric_Wall", - "233": "Fire_Wall", - "234": "Piercing_Wall", - "235": "Slashing_Wall", - "236": "Acid_Strike", - "237": "Bludgeoning_Strike", - "238": "Cold_Strike", - "239": "Electric_Strike", - "240": "Fire_Strike", - "241": "Piercing_Strike", - "242": "Slashing_Strike", - "243": "Acid_Streak", - "244": "Bludgeoning_Streak", - "245": "Cold_Streak", - "246": "Electric_Streak", - "247": "Fire_Streak", - "248": "Piercing_Streak", - "249": "Slashing_Streak", - "250": "Dispel", - "251": "Creature_Mystic_Raising", - "252": "Creature_Mystic_Lowering", - "253": "Item_Mystic_Raising", - "254": "Item_Mystic_Lowering", - "255": "War_Mystic_Raising", - "256": "War_Mystic_Lowering", - "257": "Health_Restoring", - "258": "Health_Depleting", - "259": "Mana_Restoring", - "260": "Mana_Depleting", - "261": "Strength_Increase", - "262": "Strength_Decrease", - "263": "Endurance_Increase", - "264": "Endurance_Decrease", - "265": "Quickness_Increase", - "266": "Quickness_Decrease", - "267": "Coordination_Increase", - "268": "Coordination_Decrease", - "269": "Focus_Increase", - "270": "Focus_Decrease", - "271": "Self_Increase", - "272": "Self_Decrease", - "273": "GreatVitality_Raising", - "274": "PoorVitality_Lowering", - "275": "GreatVigor_Raising", - "276": "PoorVigor_Lowering", - "277": "GreaterIntellect_Raising", - "278": "LessorIntellect_Lowering", - "279": "LifeGiver_Raising", - "280": "LifeTaker_Lowering", - "281": "StaminaGiver_Raising", - "282": "StaminaTaker_Lowering", - "283": "ManaGiver_Raising", - "284": "ManaTaker_Lowering", - "285": "Acid_Ward_Protection", - "286": "Acid_Ward_Vulnerability", - "287": "Fire_Ward_Protection", - "288": "Fire_Ward_Vulnerability", - "289": "Cold_Ward_Protection", - "290": "Cold_Ward_Vulnerability", - "291": "Electric_Ward_Protection", - "292": "Electric_Ward_Vulnerability", - "293": "Leadership_Obedience_Raising", - "294": "Leadership_Obedience_Lowering", - "295": "Melee_Defense_Shelter_Raising", - "296": "Melee_Defense_Shelter_Lowering", - "297": "Missile_Defense_Shelter_Raising", - "298": "Missile_Defense_Shelter_Lowering", - "299": "Magic_Defense_Shelter_Raising", - "300": "Magic_Defense_Shelter_Lowering", - "301": "HuntersAcumen_Raising", - "302": "HuntersAcumen_Lowering", - "303": "StillWater_Raising", - "304": "StillWater_Lowering", - "305": "StrengthofEarth_Raising", - "306": "StrengthofEarth_Lowering", - "307": "Torrent_Raising", - "308": "Torrent_Lowering", - "309": "Growth_Raising", - "310": "Growth_Lowering", - "311": "CascadeAxe_Raising", - "312": "CascadeAxe_Lowering", - "313": "CascadeDagger_Raising", - "314": "CascadeDagger_Lowering", - "315": "CascadeMace_Raising", - "316": "CascadeMace_Lowering", - "317": "CascadeSpear_Raising", - "318": "CascadeSpear_Lowering", - "319": "CascadeStaff_Raising", - "320": "CascadeStaff_Lowering", - "321": "StoneCliffs_Raising", - "322": "StoneCliffs_Lowering", - "323": "MaxDamage_Raising", - "324": "MaxDamage_Lowering", - "325": "Bow_Damage_Raising", - "326": "Bow_Damage_Lowering", - "327": "Bow_Range_Raising", - "328": "Bow_Range_Lowering", - "329": "Extra_Defense_Mod_Raising", - "330": "Extra_Defense_Mod_Lowering", - "331": "Extra_Bow_Skill_Raising", - "332": "Extra_Bow_Skill_Lowering", - "333": "Extra_Alchemy_Skill_Raising", - "334": "Extra_Alchemy_Skill_Lowering", - "335": "Extra_Arcane_Lore_Skill_Raising", - "336": "Extra_Arcane_Lore_Skill_Lowering", - "337": "Extra_Appraise_Armor_Skill_Raising", - "338": "Extra_Appraise_Armor_Skill_Lowering", - "339": "Extra_Cooking_Skill_Raising", - "340": "Extra_Cooking_Skill_Lowering", - "341": "Extra_Crossbow_Skill_Raising", - "342": "Extra_Crossbow_Skill_Lowering", - "343": "Extra_Deception_Skill_Raising", - "344": "Extra_Deception_Skill_Lowering", - "345": "Extra_Loyalty_Skill_Raising", - "346": "Extra_Loyalty_Skill_Lowering", - "347": "Extra_Fletching_Skill_Raising", - "348": "Extra_Fletching_Skill_Lowering", - "349": "Extra_Healing_Skill_Raising", - "350": "Extra_Healing_Skill_Lowering", - "351": "Extra_Melee_Defense_Skill_Raising", - "352": "Extra_Melee_Defense_Skill_Lowering", - "353": "Extra_Appraise_Item_Skill_Raising", - "354": "Extra_Appraise_Item_Skill_Lowering", - "355": "Extra_Jumping_Skill_Raising", - "356": "Extra_Jumping_Skill_Lowering", - "357": "Extra_Life_Magic_Skill_Raising", - "358": "Extra_Life_Magic_Skill_Lowering", - "359": "Extra_Lockpick_Skill_Raising", - "360": "Extra_Lockpick_Skill_Lowering", - "361": "Extra_Appraise_Magic_Item_Skill_Raising", - "362": "Extra_Appraise_Magic_Item_Skill_Lowering", - "363": "Extra_Mana_Conversion_Skill_Raising", - "364": "Extra_Mana_Conversion_Skill_Lowering", - "365": "Extra_Assess_Creature_Skill_Raising", - "366": "Extra_Assess_Creature_Skill_Lowering", - "367": "Extra_Assess_Person_Skill_Raising", - "368": "Extra_Assess_Person_Skill_Lowering", - "369": "Extra_Run_Skill_Raising", - "370": "Extra_Run_Skill_Lowering", - "371": "Extra_Sword_Skill_Raising", - "372": "Extra_Sword_Skill_Lowering", - "373": "Extra_Thrown_Weapons_Skill_Raising", - "374": "Extra_Thrown_Weapons_Skill_Lowering", - "375": "Extra_Unarmed_Combat_Skill_Raising", - "376": "Extra_Unarmed_Combat_Skill_Lowering", - "377": "Extra_Appraise_Weapon_Skill_Raising", - "378": "Extra_Appraise_Weapon_Skill_Lowering", - "379": "Armor_Increase", - "380": "Armor_Decrease", - "381": "Extra_Acid_Resistance_Raising", - "382": "Extra_Acid_Resistance_Lowering", - "383": "Extra_Bludgeon_Resistance_Raising", - "384": "Extra_Bludgeon_Resistance_Lowering", - "385": "Extra_Fire_Resistance_Raising", - "386": "Extra_Fire_Resistance_Lowering", - "387": "Extra_Cold_Resistance_Raising", - "388": "Extra_Cold_Resistance_Lowering", - "389": "Extra_Attack_Mod_Raising", - "390": "Extra_Attack_Mod_Lowering", - "391": "Extra_Armor_Value_Raising", - "392": "Extra_Armor_Value_Lowering", - "393": "Extra_Pierce_Resistance_Raising", - "394": "Extra_Pierce_Resistance_Lowering", - "395": "Extra_Slash_Resistance_Raising", - "396": "Extra_Slash_Resistance_Lowering", - "397": "Extra_Electric_Resistance_Raising", - "398": "Extra_Electric_Resistance_Lowering", - "399": "Extra_Weapon_Time_Raising", - "400": "Extra_Weapon_Time_Lowering", - "401": "Bludgeon_Ward_Protection", - "402": "Bludgeon_Ward_Vulnerability", - "403": "Slash_Ward_Protection", - "404": "Slash_Ward_Vulnerability", - "405": "Pierce_Ward_Protection", - "406": "Pierce_Ward_Vulnerability", - "407": "Stamina_Restoring", - "408": "Stamina_Depleting", - "409": "Fireworks", - "410": "Health_Divide", - "411": "Stamina_Divide", - "412": "Mana_Divide", - "413": "Coordination_Increase2", - "414": "Strength_Increase2", - "415": "Focus_Increase2", - "416": "Endurance_Increase2", - "417": "Self_Increase2", - "418": "Melee_Defense_Multiply", - "419": "Missile_Defense_Multiply", - "420": "Magic_Defense_Multiply", - "421": "Attributes_Decrease", - "422": "LifeGiver_Raising2", - "423": "Item_Enchantment_Raising2", - "424": "Skills_Decrease", - "425": "Extra_Mana_Conversion_Bonus", - "426": "War_Mystic_Raising2", - "427": "War_Mystic_Lowering2", - "428": "Magic_Defense_Shelter_Raising2", - "429": "Extra_Life_Magic_Skill_Raising2", - "430": "Creature_Mystic_Raising2", - "431": "Item_Mystic_Raising2", - "432": "Mana_Raising2", - "433": "Self_Raising2", - "434": "CreatureEnchantment_Raising2", - "435": "Salvaging_Raising", - "436": "Extra_Salvaging_Raising", - "437": "Extra_Salvaging_Raising2", - "438": "CascadeAxe_Raising2", - "439": "Extra_Bow_Skill_Raising2", - "440": "Extra_Thrown_Weapons_Skill_Raising2", - "441": "Extra_Crossbow_Skill_Raising2", - "442": "CascadeDagger_Raising2", - "443": "CascadeMace_Raising2", - "444": "Extra_Unarmed_Combat_Skill_Raising2", - "445": "CascadeSpear_Raising2", - "446": "CascadeStaff_Raising2", - "447": "Extra_Sword_Skill_Raising2", - "448": "Acid_Protection_Rare", - "449": "Acid_Resistance_Raising_Rare", - "450": "Alchemy_Raising_Rare", - "451": "Appraisal_Resistance_Lowering_Rare", - "452": "Appraise_Armor_Raising_Rare", - "453": "Appraise_Item_Raising_Rare", - "454": "Appraise_Magic_Item_Raising_Rare", - "455": "Appraise_Weapon_Raising_Rare", - "456": "Arcane_Lore_Raising_Rare", - "457": "Armor_Raising_Rare", - "458": "Armor_Value_Raising_Rare", - "459": "Assess_Monster_Raising_Rare", - "460": "Assess_Person_Raising_Rare", - "461": "Attack_Mod_Raising_Rare", - "462": "Axe_Raising_Rare", - "463": "Bludgeon_Protection_Rare", - "464": "Bludgeon_Resistance_Raising_Rare", - "465": "Bow_Raising_Rare", - "466": "Cold_Protection_Rare", - "467": "Cold_Resistance_Raising_Rare", - "468": "Cooking_Raising_Rare", - "469": "Coordination_Raising_Rare", - "470": "Creature_Enchantment_Raising_Rare", - "471": "Crossbow_Raising_Rare", - "472": "Dagger_Raising_Rare", - "473": "Damage_Raising_Rare", - "474": "Deception_Raising_Rare", - "475": "Defense_Mod_Raising_Rare", - "476": "Electric_Protection_Rare", - "477": "Electric_Resistance_Raising_Rare", - "478": "Endurance_Raising_Rare", - "479": "Fire_Protection_Rare", - "480": "Fire_Resistance_Raising_Rare", - "481": "Fletching_Raising_Rare", - "482": "Focus_Raising_Rare", - "483": "Healing_Raising_Rare", - "484": "Health_Accelerating_Rare", - "485": "Item_Enchantment_Raising_Rare", - "486": "Jump_Raising_Rare", - "487": "Leadership_Raising_Rare", - "488": "Life_Magic_Raising_Rare", - "489": "Lockpick_Raising_Rare", - "490": "Loyalty_Raising_Rare", - "491": "Mace_Raising_Rare", - "492": "Magic_Defense_Raising_Rare", - "493": "Mana_Accelerating_Rare", - "494": "Mana_Conversion_Raising_Rare", - "495": "Melee_Defense_Raising_Rare", - "496": "Missile_Defense_Raising_Rare", - "497": "Pierce_Protection_Rare", - "498": "Pierce_Resistance_Raising_Rare", - "499": "Quickness_Raising_Rare", - "500": "Run_Raising_Rare", - "501": "Self_Raising_Rare", - "502": "Slash_Protection_Rare", - "503": "Slash_Resistance_Raising_Rare", - "504": "Spear_Raising_Rare", - "505": "Staff_Raising_Rare", - "506": "Stamina_Accelerating_Rare", - "507": "Strength_Raising_Rare", - "508": "Sword_Raising_Rare", - "509": "Thrown_Weapons_Raising_Rare", - "510": "Unarmed_Combat_Raising_Rare", - "511": "War_Magic_Raising_Rare", - "512": "Weapon_Time_Raising_Rare", - "513": "Armor_Increase_Inky_Armor", - "514": "Magic_Defense_Shelter_Raising_Fiun", - "515": "Extra_Run_Skill_Raising_Fiun", - "516": "Extra_Mana_Conversion_Skill_Raising_Fiun", - "517": "Attributes_Increase_Cantrip1", - "518": "Extra_Melee_Defense_Skill_Raising2", - "519": "ACTDPurchaseRewardSpell", - "520": "ACTDPurchaseRewardSpellHealth", - "521": "SaltAsh_Attack_Mod_Raising", - "522": "Quickness_Increase2", - "523": "Extra_Alchemy_Skill_Raising2", - "524": "Extra_Cooking_Skill_Raising2", - "525": "Extra_Fletching_Skill_Raising2", - "526": "Extra_Lockpick_Skill_Raising2", - "527": "MucorManaWell", - "528": "Stamina_Restoring2", - "529": "Allegiance_Raising", - "530": "Health_DoT", - "531": "Health_DoT_Secondary", - "532": "Health_DoT_Tertiary", - "533": "Health_HoT", - "534": "Health_HoT_Secondary", - "535": "Health_HoT_Tertiary", - "536": "Health_Divide_Secondary", - "537": "Health_Divide_Tertiary", - "538": "SetSword_Raising", - "539": "SetAxe_Raising", - "540": "SetDagger_Raising", - "541": "SetMace_Raising", - "542": "SetSpear_Raising", - "543": "SetStaff_Raising", - "544": "SetUnarmed_Raising", - "545": "SetBow_Raising", - "546": "SetCrossbow_Raising", - "547": "SetThrown_Raising", - "548": "SetItemEnchantment_Raising", - "549": "SetCreatureEnchantment_Raising", - "550": "SetWarMagic_Raising", - "551": "SetLifeMagic_Raising", - "552": "SetMeleeDefense_Raising", - "553": "SetMissileDefense_Raising", - "554": "SetMagicDefense_Raising", - "555": "SetStamina_Accelerating", - "556": "SetCooking_Raising", - "557": "SetFletching_Raising", - "558": "SetLockpick_Raising", - "559": "SetAlchemy_Raising", - "560": "SetSalvaging_Raising", - "561": "SetArmorExpertise_Raising", - "562": "SetWeaponExpertise_Raising", - "563": "SetItemTinkering_Raising", - "564": "SetMagicItemExpertise_Raising", - "565": "SetLoyalty_Raising", - "566": "SetStrength_Raising", - "567": "SetEndurance_Raising", - "568": "SetCoordination_Raising", - "569": "SetQuickness_Raising", - "570": "SetFocus_Raising", - "571": "SetWillpower_Raising", - "572": "SetHealth_Raising", - "573": "SetStamina_Raising", - "574": "SetMana_Raising", - "575": "SetSprint_Raising", - "576": "SetJumping_Raising", - "577": "SetSlashResistance_Raising", - "578": "SetBludgeonResistance_Raising", - "579": "SetPierceResistance_Raising", - "580": "SetFlameResistance_Raising", - "581": "SetAcidResistance_Raising", - "582": "SetFrostResistance_Raising", - "583": "SetLightningResistance_Raising", - "584": "Crafting_LockPick_Raising", - "585": "Crafting_Fletching_Raising", - "586": "Crafting_Cooking_Raising", - "587": "Crafting_Alchemy_Raising", - "588": "Crafting_ArmorTinkering_Raising", - "589": "Crafting_WeaponTinkering_Raising", - "590": "Crafting_MagicTinkering_Raising", - "591": "Crafting_ItemTinkering_Raising", - "592": "SkillPercent_Alchemy_Raising", - "593": "TwoHanded_Raising", - "594": "TwoHanded_Lowering", - "595": "Extra_TwoHanded_Skill_Raising", - "596": "Extra_TwoHanded_Skill_Lowering", - "597": "Extra_TwoHanded_Skill_Raising2", - "598": "TwoHanded_Raising_Rare", - "599": "SetTwoHanded_Raising", - "600": "GearCraft_Raising", - "601": "GearCraft_Lowering", - "602": "Extra_GearCraft_Skill_Raising", - "603": "Extra_GearCraft_Skill_Lowering", - "604": "Extra_GearCraft_Skill_Raising2", - "605": "GearCraft_Raising_Rare", - "606": "SetGearCraft_Raising", - "607": "LoyaltyMana_Raising", - "608": "LoyaltyStamina_Raising", - "609": "LeadershipHealth_Raising", - "610": "TrinketDamage_Raising", - "611": "TrinketDamage_Lowering", - "612": "TrinketHealth_Raising", - "613": "TrinketStamina_Raising", - "614": "TrinketMana_Raising", - "615": "TrinketXP_Raising", - "616": "DeceptionArcaneLore_Raising", - "617": "HealOverTime_Raising", - "618": "DamageOverTime_Raising", - "619": "HealingResistRating_Raising", - "620": "AetheriaDamageRating_Raising", - "621": "AetheriaDamageReduction_Raising", - "622": "SKIPPED", - "623": "AetheriaHealth_Raising", - "624": "AetheriaStamina_Raising", - "625": "AetheriaMana_Raising", - "626": "AetheriaCriticalDamage_Raising", - "627": "AetheriaHealingAmplification_Raising", - "628": "AetheriaProcDamageRating_Raising", - "629": "AetheriaProcDamageReduction_Raising", - "630": "AetheriaProcHealthOverTime_Raising", - "631": "AetheriaProcDamageOverTime_Raising", - "632": "AetheriaProcHealingReduction_Raising", - "633": "RareDamageRating_Raising", - "634": "RareDamageReductionRating_Raising", - "635": "AetheriaEndurance_Raising", - "636": "NetherDamageOverTime_Raising", - "637": "NetherDamageOverTime_Raising2", - "638": "NetherDamageOverTime_Raising3", - "639": "Nether_Streak", - "640": "Nether_Missile", - "641": "Nether_Ring", - "642": "NetherDamageRating_Lowering", - "643": "NetherDamageHealingReduction_Raising", - "644": "Void_Magic_Lowering", - "645": "Void_Magic_Raising", - "646": "Void_Mystic_Raising", - "647": "SetVoidMagic_Raising", - "648": "Void_Magic_Raising_Rare", - "649": "Void_Mystic_Raising2", - "650": "LuminanceDamageRating_Raising", - "651": "LuminanceDamageReduction_Raising", - "652": "LuminanceHealth_Raising", - "653": "AetheriaCriticalReduction_Raising", - "654": "Extra_Missile_Defense_Skill_Raising", - "655": "Extra_Missile_Defense_Skill_Lowering", - "656": "Extra_Missile_Defense_Skill_Raising2", - "657": "AetheriaHealthResistance_Raising", - "658": "AetheriaDotResistance_Raising", - "659": "Cloak_Skill_Raising", - "660": "Cloak_All_Skill_Raising", - "661": "Cloak_Magic_Defense_Lowering", - "662": "Cloak_Melee_Defense_Lowering", - "663": "Cloak_Missile_Defense_Lowering", - "664": "DirtyFighting_Lowering", - "665": "DirtyFighting_Raising", - "666": "Extra_DirtyFighting_Raising", - "667": "DualWield_Lowering", - "668": "DualWield_Raising", - "669": "Extra_DualWield_Raising", - "670": "Recklessness_Lowering", - "671": "Recklessness_Raising", - "672": "Extra_Recklessness_Raising", - "673": "Shield_Lowering", - "674": "Shield_Raising", - "675": "Extra_Shield_Raising", - "676": "SneakAttack_Lowering", - "677": "SneakAttack_Raising", - "678": "Extra_SneakAttack_Raising", - "679": "Rare_DirtyFighting_Raising", - "680": "Rare_DualWield_Raising", - "681": "Rare_Recklessness_Raising", - "682": "Rare_Shield_Raising", - "683": "Rare_SneakAttack_Raising", - "684": "DF_Attack_Skill_Debuff", - "685": "DF_Bleed_Damage", - "686": "DF_Defense_Skill_Debuff", - "687": "DF_Healing_Debuff", - "688": "SetDirtyFighting_Raising", - "689": "SetDualWield_Raising", - "690": "SetRecklessness_Raising", - "691": "SetShield_Raising", - "692": "SetSneakAttack_Raising", - "693": "LifeGiver_Mhoire", - "694": "RareDamageRating_Raising2", - "695": "Spell_Damage_Raising", - "696": "Summoning_Raising", - "697": "Summoning_Lowering", - "698": "Extra_Summoning_Skill_Raising", - "699": "SetSummoning_Raising" - }, - "comments": {}, - "attributes": {}, - "source_file": "SpellCategory.cs" - }, - "StringValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "Name", - "2": "Title", - "3": "Sex", - "4": "HeritageGroup", - "5": "Template", - "6": "AttackersName", - "7": "Inscription", - "8": "ScribeName", - "9": "VendorsName", - "10": "Fellowship", - "11": "MonarchsName", - "12": "LockCode", - "13": "KeyCode", - "14": "Use", - "15": "ShortDesc", - "16": "LongDesc", - "17": "ActivationTalk", - "18": "UseMessage", - "19": "ItemHeritageGroupRestriction", - "20": "PluralName", - "21": "MonarchsTitle", - "22": "ActivationFailure", - "23": "ScribeAccount", - "24": "TownName", - "25": "CraftsmanName", - "26": "UsePkServerError", - "27": "ScoreCachedText", - "28": "ScoreDefaultEntryFormat", - "29": "ScoreFirstEntryFormat", - "30": "ScoreLastEntryFormat", - "31": "ScoreOnlyEntryFormat", - "32": "ScoreNoEntry", - "33": "Quest", - "34": "GeneratorEvent", - "35": "PatronsTitle", - "36": "HouseOwnerName", - "37": "QuestRestriction", - "38": "AppraisalPortalDestination", - "39": "TinkerName", - "40": "ImbuerName", - "41": "HouseOwnerAccount", - "42": "DisplayName", - "43": "DateOfBirth", - "44": "ThirdPartyApi", - "45": "KillQuest", - "46": "Afk", - "47": "AllegianceName", - "48": "AugmentationAddQuest", - "49": "KillQuest2", - "50": "KillQuest3", - "51": "UseSendsSignal", - "52": "GearPlatingName", - "8006": "PCAPRecordedCurrentMotionState", - "8031": "PCAPRecordedServerName", - "8032": "PCAPRecordedCharacterName", - "9001": "AllegianceMotd", - "9002": "AllegianceMotdSetBy", - "9003": "AllegianceSpeakerTitle", - "9004": "AllegianceSeneschalTitle", - "9005": "AllegianceCastellanTitle", - "9006": "GodState", - "9007": "TinkerLog", - "184549376": "SecondaryName_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "StringValueKey.cs" - }, - "WieldRequirement": { - "type": "int", - "values": { - "0": "Invalid", - "1": "Skill", - "2": "RawSkill", - "3": "Attrib", - "4": "RawAttrib", - "5": "SecondaryAttrib", - "6": "RawSecondaryAttrib", - "7": "Level", - "8": "Training", - "9": "IntStat", - "10": "BoolStat", - "11": "CreatureType", - "12": "HeritageType" - }, - "comments": {}, - "attributes": {}, - "source_file": "WieldRequirement.cs" - } - } -} \ No newline at end of file diff --git a/inventory-service/comprehensive_enum_database_v2.json b/inventory-service/comprehensive_enum_database_v2.json deleted file mode 100644 index fd7ec101..00000000 --- a/inventory-service/comprehensive_enum_database_v2.json +++ /dev/null @@ -1,83761 +0,0 @@ -{ - "metadata": { - "extracted_at": "2025-06-10", - "source": "Mag-Plugins/Shared (comprehensive)", - "version": "2.1.0", - "last_updated": "2025-06-12", - "notes": "COMPLETE extraction: Added missing CoverageMask values (1,2,4,16,etc) and BoolValueKey enum" - }, - "enums": { - "CoverageMask": { - "name": "CoverageMask", - "values": { - "1": "Unknown", - "2": "UnderwearUpperLegs", - "4": "UnderwearLowerLegs", - "8": "UnderwearChest", - "16": "UnderwearAbdomen", - "32": "UnderwearUpperArms", - "64": "UnderwearLowerArms", - "256": "OuterwearUpperLegs", - "512": "OuterwearLowerLegs", - "1024": "OuterwearChest", - "2048": "OuterwearAbdomen", - "4096": "OuterwearUpperArms", - "8192": "OuterwearLowerArms", - "16384": "Head", - "32768": "Hands", - "65536": "Feet", - "131072": "Cloak" - }, - "source_file": "CoverageMask.cs" - }, - "MaterialType": { - "name": "MaterialType", - "values": { - "0": "Unknown", - "1": "Ceramic", - "2": "Porcelain", - "4": "Linen", - "5": "Satin", - "6": "Silk", - "7": "Velvet", - "8": "Wool", - "10": "Agate", - "11": "Amber", - "12": "Amethyst", - "13": "Aquamarine", - "14": "Azurite", - "15": "BlackGarnet", - "16": "BlackOpal", - "17": "Bloodstone", - "18": "Carnelian", - "19": "Citrine", - "20": "Diamond", - "21": "Emerald", - "22": "FireOpal", - "23": "GreenGarnet", - "24": "GreenJade", - "25": "Hematite", - "26": "ImperialTopaz", - "27": "Jet", - "28": "LapisLazuli", - "29": "LavenderJade", - "30": "Malachite", - "31": "Moonstone", - "32": "Onyx", - "33": "Opal", - "34": "Peridot", - "35": "RedGarnet", - "36": "RedJade", - "37": "RoseQuartz", - "38": "Ruby", - "39": "Sapphire", - "40": "SmokeyQuartz", - "41": "Sunstone", - "42": "TigerEye", - "43": "Tourmaline", - "44": "Turquoise", - "45": "WhiteJade", - "46": "WhiteQuartz", - "47": "WhiteSapphire", - "48": "YellowGarnet", - "49": "YellowTopaz", - "50": "Zircon", - "51": "Ivory", - "52": "Leather", - "53": "ArmoredilloHide", - "54": "GromnieHide", - "55": "ReedSharkHide", - "57": "Brass", - "58": "Bronze", - "59": "Copper", - "60": "Gold", - "61": "Iron", - "62": "Pyreal", - "63": "Silver", - "64": "Steel", - "66": "Alabaster", - "67": "Granite", - "68": "Marble", - "69": "Obsidian", - "70": "Sandstone", - "71": "Serpentine", - "73": "Ebony", - "74": "Mahogany", - "75": "Oak", - "76": "Pine", - "77": "Teak" - }, - "source_file": "MaterialType.cs" - }, - "DoubleValueKey": { - "name": "DoubleValueKey", - "values": { - "0": "Undef", - "1": "HeartbeatInterval", - "2": "HeartbeatTimestamp", - "3": "HealthRate", - "4": "StaminaRate", - "5": "ManaRate", - "6": "HealthUponResurrection", - "7": "StaminaUponResurrection", - "8": "ManaUponResurrection", - "9": "StartTime", - "10": "StopTime", - "11": "ResetInterval", - "12": "Shade", - "13": "ArmorModVsSlash", - "14": "ArmorModVsPierce", - "15": "ArmorModVsBludgeon", - "16": "ArmorModVsCold", - "17": "ArmorModVsFire", - "18": "ArmorModVsAcid", - "19": "ArmorModVsElectric", - "20": "CombatSpeed", - "21": "WeaponLength", - "22": "DamageVariance", - "23": "CurrentPowerMod", - "24": "AccuracyMod", - "25": "StrengthMod", - "26": "MaximumVelocity", - "27": "RotationSpeed", - "28": "MotionTimestamp", - "29": "WeaponDefense", - "30": "WimpyLevel", - "31": "VisualAwarenessRange", - "32": "AuralAwarenessRange", - "33": "PerceptionLevel", - "34": "PowerupTime", - "35": "MaxChargeDistance", - "36": "ChargeSpeed", - "37": "BuyPrice", - "38": "SellPrice", - "39": "DefaultScale", - "40": "LockpickMod", - "41": "RegenerationInterval", - "42": "RegenerationTimestamp", - "43": "GeneratorRadius", - "44": "TimeToRot", - "45": "DeathTimestamp", - "46": "PkTimestamp", - "47": "VictimTimestamp", - "48": "LoginTimestamp", - "49": "CreationTimestamp", - "50": "MinimumTimeSincePk", - "51": "DeprecatedHousekeepingPriority", - "52": "AbuseLoggingTimestamp", - "53": "LastPortalTeleportTimestamp", - "54": "UseRadius", - "55": "HomeRadius", - "56": "ReleasedTimestamp", - "57": "MinHomeRadius", - "58": "Facing", - "59": "ResetTimestamp", - "60": "LogoffTimestamp", - "61": "EconRecoveryInterval", - "62": "WeaponOffense", - "63": "DamageMod", - "64": "ResistSlash", - "65": "ResistPierce", - "66": "ResistBludgeon", - "67": "ResistFire", - "68": "ResistCold", - "69": "ResistAcid", - "70": "ResistElectric", - "71": "ResistHealthBoost", - "72": "ResistStaminaDrain", - "73": "ResistStaminaBoost", - "74": "ResistManaDrain", - "75": "ResistManaBoost", - "76": "Translucency", - "77": "PhysicsScriptIntensity", - "78": "Friction", - "79": "Elasticity", - "80": "AiUseMagicDelay", - "81": "ItemMinSpellcraftMod", - "82": "ItemMaxSpellcraftMod", - "83": "ItemRankProbability", - "84": "Shade2", - "85": "Shade3", - "86": "Shade4", - "87": "ItemEfficiency", - "88": "ItemManaUpdateTimestamp", - "89": "SpellGestureSpeedMod", - "90": "SpellStanceSpeedMod", - "91": "AllegianceAppraisalTimestamp", - "92": "PowerLevel", - "93": "AccuracyLevel", - "94": "AttackAngle", - "95": "AttackTimestamp", - "96": "CheckpointTimestamp", - "97": "SoldTimestamp", - "98": "UseTimestamp", - "99": "UseLockTimestamp", - "100": "HealkitMod", - "101": "FrozenTimestamp", - "102": "HealthRateMod", - "103": "AllegianceSwearTimestamp", - "104": "ObviousRadarRange", - "105": "HotspotCycleTime", - "106": "HotspotCycleTimeVariance", - "107": "SpamTimestamp", - "108": "SpamRate", - "109": "BondWieldedTreasure", - "110": "BulkMod", - "111": "SizeMod", - "112": "GagTimestamp", - "113": "GeneratorUpdateTimestamp", - "114": "DeathSpamTimestamp", - "115": "DeathSpamRate", - "116": "WildAttackProbability", - "117": "FocusedProbability", - "118": "CrashAndTurnProbability", - "119": "CrashAndTurnRadius", - "120": "CrashAndTurnBias", - "121": "GeneratorInitialDelay", - "122": "AiAcquireHealth", - "123": "AiAcquireStamina", - "124": "AiAcquireMana", - "125": "ResistHealthDrain", - "126": "LifestoneProtectionTimestamp", - "127": "AiCounteractEnchantment", - "128": "AiDispelEnchantment", - "129": "TradeTimestamp", - "130": "AiTargetedDetectionRadius", - "131": "EmotePriority", - "132": "LastTeleportStartTimestamp", - "133": "EventSpamTimestamp", - "134": "EventSpamRate", - "135": "InventoryOffset", - "136": "CriticalMultiplier", - "137": "ManaStoneDestroyChance", - "138": "SlayerDamageBonus", - "139": "AllegianceInfoSpamTimestamp", - "140": "AllegianceInfoSpamRate", - "141": "NextSpellcastTimestamp", - "142": "AppraisalRequestedTimestamp", - "143": "AppraisalHeartbeatDueTimestamp", - "144": "ManaConversionMod", - "145": "LastPkAttackTimestamp", - "146": "FellowshipUpdateTimestamp", - "147": "CriticalFrequency", - "148": "LimboStartTimestamp", - "149": "WeaponMissileDefense", - "150": "WeaponMagicDefense", - "151": "IgnoreShield", - "152": "ElementalDamageMod", - "153": "StartMissileAttackTimestamp", - "154": "LastRareUsedTimestamp", - "155": "IgnoreArmor", - "156": "ProcSpellRate", - "157": "ResistanceModifier", - "158": "AllegianceGagTimestamp", - "159": "AbsorbMagicDamage", - "160": "CachedMaxAbsorbMagicDamage", - "161": "GagDuration", - "162": "AllegianceGagDuration", - "163": "GlobalXpMod", - "164": "HealingModifier", - "165": "ArmorModVsNether", - "166": "ResistNether", - "167": "CooldownDuration", - "168": "WeaponAuraOffense", - "169": "WeaponAuraDefense", - "170": "WeaponAuraElemental", - "171": "WeaponAuraManaConv", - "172": "[ServerOnly]", - "8004": "PCAPRecordedWorkmanship", - "174": "[ServerOnly]", - "8010": "PCAPRecordedVelocityX", - "176": "[ServerOnly]", - "8011": "PCAPRecordedVelocityY", - "178": "[ServerOnly]", - "8012": "PCAPRecordedVelocityZ", - "180": "[ServerOnly]", - "8013": "PCAPRecordedAccelerationX", - "182": "[ServerOnly]", - "8014": "PCAPRecordedAccelerationY", - "184": "[ServerOnly]", - "8015": "PCAPRecordedAccelerationZ", - "186": "[ServerOnly]", - "8016": "PCAPRecordeOmegaX", - "188": "[ServerOnly]", - "8017": "PCAPRecordeOmegaY", - "190": "[ServerOnly]", - "8018": "PCAPRecordeOmegaZ", - "167772160": "SlashProt_Decal", - "167772161": "PierceProt_Decal", - "167772162": "BludgeonProt_Decal", - "167772163": "AcidProt_Decal", - "167772164": "LightningProt_Decal", - "167772165": "FireProt_Decal", - "167772166": "ColdProt_Decal", - "167772167": "Heading_Decal", - "167772168": "ApproachDistance_Decal", - "167772169": "SalvageWorkmanship_Decal", - "167772170": "Scale_Decal", - "167772171": "Variance_Decal", - "167772172": "AttackBonus_Decal", - "167772173": "Range_Decal", - "167772174": "DamageBonus_Decal" - }, - "source_file": "DoubleValueKey.cs" - }, - "WeenieType": { - "name": "WeenieType", - "values": { - "0": "Undef", - "1": "Generic", - "2": "Clothing", - "3": "MissileLauncher", - "4": "Missile", - "5": "Ammunition", - "6": "MeleeWeapon", - "7": "Portal", - "8": "Book", - "9": "Coin", - "10": "Creature", - "11": "Admin", - "12": "Vendor", - "13": "HotSpot", - "14": "Corpse", - "15": "Cow", - "16": "AI", - "17": "Machine", - "18": "Food", - "19": "Door", - "20": "Chest", - "21": "Container", - "22": "Key", - "23": "Lockpick", - "24": "PressurePlate", - "25": "LifeStone", - "26": "Switch", - "27": "PKModifier", - "28": "Healer", - "29": "LightSource", - "30": "Allegiance", - "31": "UNKNOWN__GUESSEDNAME32, // NOTE: Missing 1", - "32": "SpellComponent", - "33": "ProjectileSpell", - "34": "Scroll", - "35": "Caster", - "36": "Channel", - "37": "ManaStone", - "38": "Gem", - "39": "AdvocateFane", - "40": "AdvocateItem", - "41": "Sentinel", - "42": "GSpellEconomy", - "43": "LSpellEconomy", - "44": "CraftTool", - "45": "LScoreKeeper", - "46": "GScoreKeeper", - "47": "GScoreGatherer", - "48": "ScoreBook", - "49": "EventCoordinator", - "50": "Entity", - "51": "Stackable", - "52": "HUD", - "53": "House", - "54": "Deed", - "55": "SlumLord", - "56": "Hook", - "57": "Storage", - "58": "BootSpot", - "59": "HousePortal", - "60": "Game", - "61": "GamePiece", - "62": "SkillAlterationDevice", - "63": "AttributeTransferDevice", - "64": "Hooker", - "65": "AllegianceBindstone", - "66": "InGameStatKeeper", - "67": "AugmentationDevice", - "68": "SocialManager", - "69": "Pet", - "70": "PetDevice", - "71": "CombatPet" - }, - "source_file": "WeenieType.cs" - }, - "Skill": { - "name": "Skill", - "values": { - "0": "None", - "1": "Axe, /* Retired */", - "2": "Bow, /* Retired */", - "3": "Crossbow, /* Retired */", - "4": "Dagger, /* Retired */", - "5": "Mace, /* Retired */", - "6": "MeleeDefense", - "7": "MissileDefense", - "8": "Sling, /* Retired */", - "9": "Spear, /* Retired */", - "10": "Staff, /* Retired */", - "11": "Sword, /* Retired */", - "12": "ThrownWeapon, /* Retired */", - "13": "UnarmedCombat, /* Retired */", - "14": "ArcaneLore", - "15": "MagicDefense", - "16": "ManaConversion", - "17": "Spellcraft, /* Unimplemented */", - "18": "ItemTinkering", - "19": "AssessPerson", - "20": "Deception", - "21": "Healing", - "22": "Jump", - "23": "Lockpick", - "24": "Run", - "25": "Awareness, /* Unimplemented */", - "26": "ArmsAndArmorRepair, /* Unimplemented */", - "27": "AssessCreature", - "28": "WeaponTinkering", - "29": "ArmorTinkering", - "30": "MagicItemTinkering", - "31": "CreatureEnchantment", - "32": "ItemEnchantment", - "33": "LifeMagic", - "34": "WarMagic", - "35": "Leadership", - "36": "Loyalty", - "37": "Fletching", - "38": "Alchemy", - "39": "Cooking", - "40": "Salvaging", - "41": "TwoHandedCombat", - "42": "Gearcraft, /* Retired */", - "43": "VoidMagic", - "44": "HeavyWeapons", - "45": "LightWeapons", - "46": "FinesseWeapons", - "47": "MissileWeapons", - "48": "Shield", - "49": "DualWield", - "50": "Recklessness", - "51": "SneakAttack", - "52": "DirtyFighting", - "53": "Challenge, /* Unimplemented */", - "54": "Summoning" - }, - "source_file": "Skill.cs" - }, - "BoolValueKey": { - "name": "BoolValueKey", - "values": { - "0": "Undef", - "1": "Stuck", - "2": "Open", - "3": "Locked", - "4": "RotProof", - "5": "AllegianceUpdateRequest", - "6": "AiUsesMana", - "7": "AiUseHumanMagicAnimations", - "8": "AllowGive", - "9": "CurrentlyAttacking", - "10": "AttackerAi", - "11": "IgnoreCollisions", - "12": "ReportCollisions", - "13": "Ethereal", - "14": "GravityStatus", - "15": "LightsStatus", - "16": "ScriptedCollision", - "17": "Inelastic", - "18": "Visibility", - "19": "Attackable", - "20": "SafeSpellComponents", - "21": "AdvocateState", - "22": "Inscribable", - "23": "DestroyOnSell", - "24": "UiHidden", - "25": "IgnoreHouseBarriers", - "26": "HiddenAdmin", - "27": "PkWounder", - "28": "PkKiller", - "29": "NoCorpse", - "30": "UnderLifestoneProtection", - "31": "ItemManaUpdatePending", - "32": "GeneratorStatus", - "33": "ResetMessagePending", - "34": "DefaultOpen", - "35": "DefaultLocked", - "36": "DefaultOn", - "37": "OpenForBusiness", - "38": "IsFrozen", - "39": "DealMagicalItems", - "40": "LogoffImDead", - "41": "ReportCollisionsAsEnvironment", - "42": "AllowEdgeSlide", - "43": "AdvocateQuest", - "44": "IsAdmin", - "45": "IsArch", - "46": "IsSentinel", - "47": "IsAdvocate", - "48": "CurrentlyPoweringUp", - "49": "GeneratorEnteredWorld", - "50": "NeverFailCasting", - "51": "VendorService", - "52": "AiImmobile", - "53": "DamagedByCollisions", - "54": "IsDynamic", - "55": "IsHot", - "56": "IsAffecting", - "57": "AffectsAis", - "58": "SpellQueueActive", - "59": "GeneratorDisabled", - "60": "IsAcceptingTells", - "61": "LoggingChannel", - "62": "OpensAnyLock", - "63": "UnlimitedUse", - "64": "GeneratedTreasureItem", - "65": "IgnoreMagicResist", - "66": "IgnoreMagicArmor", - "67": "AiAllowTrade", - "68": "SpellComponentsRequired", - "69": "IsSellable", - "70": "IgnoreShieldsBySkill", - "71": "NoDraw", - "72": "ActivationUntargeted", - "73": "HouseHasGottenPriorityBootPos", - "74": "GeneratorAutomaticDestruction", - "75": "HouseHooksVisible", - "76": "HouseRequiresMonarch", - "77": "HouseHooksEnabled", - "78": "HouseNotifiedHudOfHookCount", - "79": "AiAcceptEverything", - "80": "IgnorePortalRestrictions", - "81": "RequiresBackpackSlot", - "82": "DontTurnOrMoveWhenGiving", - "83": "NpcLooksLikeObject", - "84": "IgnoreCloIcons", - "85": "AppraisalHasAllowedWielder", - "86": "ChestRegenOnClose", - "87": "LogoffInMinigame", - "88": "PortalShowDestination", - "89": "PortalIgnoresPkAttackTimer", - "90": "NpcInteractsSilently", - "91": "Retained", - "92": "IgnoreAuthor", - "93": "Limbo", - "94": "AppraisalHasAllowedActivator", - "95": "ExistedBeforeAllegianceXpChanges", - "96": "IsDeaf", - "97": "IsPsr", - "98": "Invincible", - "99": "Ivoryable", - "100": "Dyable", - "101": "CanGenerateRare", - "102": "CorpseGeneratedRare", - "103": "NonProjectileMagicImmune", - "104": "ActdReceivedItems", - "105": "Unknown105", - "106": "FirstEnterWorldDone", - "107": "RecallsDisabled", - "108": "RareUsesTimer", - "109": "ActdPreorderReceivedItems", - "110": "Afk", - "111": "IsGagged", - "112": "ProcSpellSelfTargeted", - "113": "IsAllegianceGagged", - "114": "EquipmentSetTriggerPiece", - "115": "Uninscribe", - "116": "WieldOnUse", - "117": "ChestClearedWhenClosed", - "118": "NeverAttack", - "119": "SuppressGenerateEffect", - "120": "TreasureCorpse", - "121": "EquipmentSetAddLevel", - "122": "BarberActive", - "123": "TopLayerPriority", - "124": "NoHeldItemShown", - "125": "LoginAtLifestone", - "126": "OlthoiPk", - "127": "Account15Days", - "128": "HadNoVitae", - "129": "NoOlthoiTalk", - "130": "AutowieldLeft", - "9001": "LinkedPortalOneSummon", - "9002": "LinkedPortalTwoSummon", - "9003": "HouseEvicted", - "9004": "UntrainedSkills", - "201326592": "Lockable_Decal", - "201326593": "Inscribable_Decal" - }, - "source_file": "BoolValueKey.cs" - }, - "QuadValueKey": { - "name": "QuadValueKey", - "values": { - "0": "Undef", - "1": "TotalExperience", - "2": "AvailableExperience", - "3": "AugmentationCost", - "4": "ItemTotalXp", - "5": "ItemBaseXp", - "6": "AvailableLuminance", - "7": "MaximumLuminance", - "8": "InteractionReqs", - "9": "/* custom */", - "10": "[ServerOnly]", - "9000": "AllegianceXPCached", - "12": "[ServerOnly]", - "9001": "AllegianceXPGenerated", - "14": "[ServerOnly]", - "9002": "AllegianceXPReceived", - "16": "[ServerOnly]", - "9003": "VerifyXp" - }, - "source_file": "QuadValueKey.cs" - }, - "ItemType": { - "name": "ItemType", - "values": { - "0": "None", - "1": "MeleeWeapon", - "2": "Armor", - "4": "Clothing", - "8": "Jewelry", - "16": "Creature", - "32": "Food", - "64": "Money", - "128": "Misc", - "256": "MissileWeapon", - "512": "Container", - "1024": "Useless", - "2048": "Gem", - "4096": "SpellComponents", - "8192": "Writable", - "16384": "Key", - "32768": "Caster", - "65536": "Portal", - "131072": "Lockable", - "262144": "PromissoryNote", - "524288": "ManaStone", - "1048576": "Service", - "2097152": "MagicWieldable", - "4194304": "CraftCookingBase", - "8388608": "CraftAlchemyBase", - "33554432": "CraftFletchingBase", - "67108864": "CraftAlchemyIntermediate", - "134217728": "CraftFletchingIntermediate", - "268435456": "LifeStone", - "536870912": "TinkeringTool", - "1073741824": "TinkeringMaterial", - "2147483648": "Gameboard", - "EXPR:Portal | LifeStone": "PortalMagicTarget", - "EXPR:Misc | Container": "LockableMagicTarget", - "EXPR:Armor | Clothing": "Vestements", - "EXPR:MeleeWeapon | MissileWeapon": "Weapon", - "EXPR:MeleeWeapon | MissileWeapon | Caster": "WeaponOrCaster", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Food | Money | Misc | MissileWeapon | Container |": "Item", - "38": "Gem | SpellComponents | Writable | Key | Caster | Portal | PromissoryNote | ManaStone | MagicWieldable", - "EXPR:MeleeWeapon | Armor | Clothing | MissileWeapon | Caster": "RedirectableItemEnchantmentTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Misc | MissileWeapon | Container | Gem | Caster | ManaStone": "ItemEnchantableTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Food | Misc | MissileWeapon | Container | Useless | Writable | Key |": "VendorShopKeep", - "42": "PromissoryNote | CraftFletchingIntermediate | TinkeringMaterial", - "EXPR:Food | Container | Writable | Key | PromissoryNote | CraftCookingBase": "VendorGrocer" - }, - "source_file": "ItemType.cs" - }, - "IntValueKey": { - "name": "IntValueKey", - "values": { - "0": "Undef", - "1": "ItemType", - "2": "CreatureType", - "3": "PaletteTemplate", - "4": "ClothingPriority", - "5": "[SendOnLogin]", - "6": "ItemsCapacity", - "7": "ContainersCapacity", - "8": "Mass", - "9": "[ServerOnly]", - "10": "CurrentWieldedLocation", - "11": "MaxStackSize", - "12": "StackSize", - "13": "StackUnitEncumbrance", - "14": "StackUnitMass", - "15": "StackUnitValue", - "16": "ItemUseable", - "17": "RareId", - "18": "UiEffects", - "19": "Value", - "20": "CoinValue", - "21": "TotalExperience", - "22": "AvailableCharacter", - "23": "TotalSkillCredits", - "24": "AvailableSkillCredits", - "25": "Level", - "26": "AccountRequirements", - "27": "ArmorType", - "28": "ArmorLevel", - "29": "AllegianceCpPool", - "30": "AllegianceRank", - "31": "ChannelsAllowed", - "32": "ChannelsActive", - "33": "Bonded", - "34": "MonarchsRank", - "35": "AllegianceFollowers", - "36": "ResistMagic", - "37": "ResistItemAppraisal", - "38": "ResistLockpick", - "39": "DeprecatedResistRepair", - "40": "CombatMode", - "41": "CurrentAttackHeight", - "42": "CombatCollisions", - "43": "NumDeaths", - "44": "Damage", - "45": "DamageType", - "46": "DefaultCombatStyle", - "47": "AttackType", - "48": "WeaponSkill", - "49": "WeaponTime", - "50": "AmmoType", - "51": "CombatUse", - "52": "ParentLocation", - "53": "PlacementPosition", - "54": "WeaponEncumbrance", - "55": "WeaponMass", - "56": "ShieldValue", - "57": "ShieldEncumbrance", - "58": "MissileInventoryLocation", - "59": "FullDamageType", - "60": "WeaponRange", - "61": "AttackersSkill", - "62": "DefendersSkill", - "63": "AttackersSkillValue", - "64": "AttackersClass", - "65": "Placement", - "66": "CheckpointStatus", - "67": "Tolerance", - "68": "TargetingTactic", - "69": "CombatTactic", - "70": "HomesickTargetingTactic", - "71": "NumFollowFailures", - "72": "FriendType", - "73": "FoeType", - "74": "MerchandiseItemTypes", - "75": "MerchandiseMinValue", - "76": "MerchandiseMaxValue", - "77": "NumItemsSold", - "78": "NumItemsBought", - "79": "MoneyIncome", - "80": "MoneyOutflow", - "81": "MaxGeneratedObjects", - "82": "InitGeneratedObjects", - "83": "ActivationResponse", - "84": "OriginalValue", - "85": "NumMoveFailures", - "86": "MinLevel", - "87": "MaxLevel", - "88": "LockpickMod", - "89": "BoosterEnum", - "90": "BoostValue", - "91": "MaxStructure", - "92": "Structure", - "93": "PhysicsState", - "94": "TargetType", - "95": "RadarBlipColor", - "96": "EncumbranceCapacity", - "97": "LoginTimestamp", - "98": "CreationTimestamp", - "99": "PkLevelModifier", - "100": "GeneratorType", - "101": "AiAllowedCombatStyle", - "102": "LogoffTimestamp", - "103": "GeneratorDestructionType", - "104": "ActivationCreateClass", - "105": "ItemWorkmanship", - "106": "ItemSpellcraft", - "107": "ItemCurMana", - "108": "ItemMaxMana", - "109": "ItemDifficulty", - "110": "ItemAllegianceRankLimit", - "111": "PortalBitmask", - "112": "AdvocateLevel", - "113": "Gender", - "114": "Attuned", - "115": "ItemSkillLevelLimit", - "116": "GateLogic", - "117": "ItemManaCost", - "118": "Logoff", - "119": "Active", - "120": "AttackHeight", - "121": "NumAttackFailures", - "122": "AiCpThreshold", - "123": "AiAdvancementStrategy", - "124": "Version", - "125": "Age", - "126": "VendorHappyMean", - "127": "VendorHappyVariance", - "128": "CloakStatus", - "129": "VitaeCpPool", - "130": "NumServicesSold", - "131": "MaterialType", - "132": "NumAllegianceBreaks", - "133": "ShowableOnRadar", - "134": "PlayerKillerStatus", - "135": "VendorHappyMaxItems", - "136": "ScorePageNum", - "137": "ScoreConfigNum", - "138": "ScoreNumScores", - "139": "DeathLevel", - "140": "AiOptions", - "141": "OpenToEveryone", - "142": "GeneratorTimeType", - "143": "GeneratorStartTime", - "144": "GeneratorEndTime", - "145": "GeneratorEndDestructionType", - "146": "XpOverride", - "147": "NumCrashAndTurns", - "148": "ComponentWarningThreshold", - "149": "HouseStatus", - "150": "HookPlacement", - "151": "HookType", - "152": "HookItemType", - "153": "AiPpThreshold", - "154": "GeneratorVersion", - "155": "HouseType", - "156": "PickupEmoteOffset", - "157": "WeenieIteration", - "158": "WieldRequirements", - "159": "WieldSkillType", - "160": "WieldDifficulty", - "161": "HouseMaxHooksUsable", - "162": "HouseCurrentHooksUsable", - "163": "AllegianceMinLevel", - "164": "AllegianceMaxLevel", - "165": "HouseRelinkHookCount", - "166": "SlayerCreatureType", - "167": "ConfirmationInProgress", - "168": "ConfirmationTypeInProgress", - "169": "TsysMutationData", - "170": "NumItemsInMaterial", - "171": "NumTimesTinkered", - "172": "AppraisalLongDescDecoration", - "173": "AppraisalLockpickSuccessPercent", - "174": "AppraisalPages", - "175": "AppraisalMaxPages", - "176": "AppraisalItemSkill", - "177": "GemCount", - "178": "GemType", - "179": "ImbuedEffect", - "180": "AttackersRawSkillValue", - "181": "ChessRank", - "182": "ChessTotalGames", - "183": "ChessGamesWon", - "184": "ChessGamesLost", - "185": "TypeOfAlteration", - "186": "SkillToBeAltered", - "187": "SkillAlterationCount", - "188": "HeritageGroup", - "189": "TransferFromAttribute", - "190": "TransferToAttribute", - "191": "AttributeTransferCount", - "192": "FakeFishingSkill", - "193": "NumKeys", - "194": "DeathTimestamp", - "195": "PkTimestamp", - "196": "VictimTimestamp", - "197": "HookGroup", - "198": "AllegianceSwearTimestamp", - "199": "HousePurchaseTimestamp", - "200": "RedirectableEquippedArmorCount", - "201": "MeleeDefenseImbuedEffectTypeCache", - "202": "MissileDefenseImbuedEffectTypeCache", - "203": "MagicDefenseImbuedEffectTypeCache", - "204": "ElementalDamageBonus", - "205": "ImbueAttempts", - "206": "ImbueSuccesses", - "207": "CreatureKills", - "208": "PlayerKillsPk", - "209": "PlayerKillsPkl", - "210": "RaresTierOne", - "211": "RaresTierTwo", - "212": "RaresTierThree", - "213": "RaresTierFour", - "214": "RaresTierFive", - "215": "AugmentationStat", - "216": "AugmentationFamilyStat", - "217": "AugmentationInnateFamily", - "218": "AugmentationInnateStrength", - "219": "AugmentationInnateEndurance", - "220": "AugmentationInnateCoordination", - "221": "AugmentationInnateQuickness", - "222": "AugmentationInnateFocus", - "223": "AugmentationInnateSelf", - "224": "AugmentationSpecializeSalvaging", - "225": "AugmentationSpecializeItemTinkering", - "226": "AugmentationSpecializeArmorTinkering", - "227": "AugmentationSpecializeMagicItemTinkering", - "228": "AugmentationSpecializeWeaponTinkering", - "229": "AugmentationExtraPackSlot", - "230": "AugmentationIncreasedCarryingCapacity", - "231": "AugmentationLessDeathItemLoss", - "232": "AugmentationSpellsRemainPastDeath", - "233": "AugmentationCriticalDefense", - "234": "AugmentationBonusXp", - "235": "AugmentationBonusSalvage", - "236": "AugmentationBonusImbueChance", - "237": "AugmentationFasterRegen", - "238": "AugmentationIncreasedSpellDuration", - "239": "AugmentationResistanceFamily", - "240": "AugmentationResistanceSlash", - "241": "AugmentationResistancePierce", - "242": "AugmentationResistanceBlunt", - "243": "AugmentationResistanceAcid", - "244": "AugmentationResistanceFire", - "245": "AugmentationResistanceFrost", - "246": "AugmentationResistanceLightning", - "247": "RaresTierOneLogin", - "248": "RaresTierTwoLogin", - "249": "RaresTierThreeLogin", - "250": "RaresTierFourLogin", - "251": "RaresTierFiveLogin", - "252": "RaresLoginTimestamp", - "253": "RaresTierSix", - "254": "RaresTierSeven", - "255": "RaresTierSixLogin", - "256": "RaresTierSevenLogin", - "257": "ItemAttributeLimit", - "258": "ItemAttributeLevelLimit", - "259": "ItemAttribute2ndLimit", - "260": "ItemAttribute2ndLevelLimit", - "261": "CharacterTitleId", - "262": "NumCharacterTitles", - "263": "ResistanceModifierType", - "264": "FreeTinkersBitfield", - "265": "EquipmentSetId", - "266": "PetClass", - "267": "Lifespan", - "268": "RemainingLifespan", - "269": "UseCreateQuantity", - "270": "WieldRequirements2", - "271": "WieldSkillType2", - "272": "WieldDifficulty2", - "273": "WieldRequirements3", - "274": "WieldSkillType3", - "275": "WieldDifficulty3", - "276": "WieldRequirements4", - "277": "WieldSkillType4", - "278": "WieldDifficulty4", - "279": "Unique", - "280": "SharedCooldown", - "281": "Faction1Bits", - "282": "Faction2Bits", - "283": "Faction3Bits", - "284": "Hatred1Bits", - "285": "Hatred2Bits", - "286": "Hatred3Bits", - "287": "SocietyRankCelhan", - "288": "SocietyRankEldweb", - "289": "SocietyRankRadblo", - "290": "HearLocalSignals", - "291": "HearLocalSignalsRadius", - "292": "Cleaving", - "293": "AugmentationSpecializeGearcraft", - "294": "AugmentationInfusedCreatureMagic", - "295": "AugmentationInfusedItemMagic", - "296": "AugmentationInfusedLifeMagic", - "297": "AugmentationInfusedWarMagic", - "298": "AugmentationCriticalExpertise", - "299": "AugmentationCriticalPower", - "300": "AugmentationSkilledMelee", - "301": "AugmentationSkilledMissile", - "302": "AugmentationSkilledMagic", - "303": "ImbuedEffect2", - "304": "ImbuedEffect3", - "305": "ImbuedEffect4", - "306": "ImbuedEffect5", - "307": "DamageRating", - "308": "DamageResistRating", - "309": "AugmentationDamageBonus", - "310": "AugmentationDamageReduction", - "311": "ImbueStackingBits", - "312": "HealOverTime", - "313": "CritRating", - "314": "CritDamageRating", - "315": "CritResistRating", - "316": "CritDamageResistRating", - "317": "HealingResistRating", - "318": "DamageOverTime", - "319": "ItemMaxLevel", - "320": "ItemXpStyle", - "321": "EquipmentSetExtra", - "322": "AetheriaBitfield", - "323": "HealingBoostRating", - "324": "HeritageSpecificArmor", - "325": "AlternateRacialSkills", - "326": "AugmentationJackOfAllTrades", - "327": "AugmentationResistanceNether", - "328": "AugmentationInfusedVoidMagic", - "329": "WeaknessRating", - "330": "NetherOverTime", - "331": "NetherResistRating", - "332": "LuminanceAward", - "333": "LumAugDamageRating", - "334": "LumAugDamageReductionRating", - "335": "LumAugCritDamageRating", - "336": "LumAugCritReductionRating", - "337": "LumAugSurgeEffectRating", - "338": "LumAugSurgeChanceRating", - "339": "LumAugItemManaUsage", - "340": "LumAugItemManaGain", - "341": "LumAugVitality", - "342": "LumAugHealingRating", - "343": "LumAugSkilledCraft", - "344": "LumAugSkilledSpec", - "345": "LumAugNoDestroyCraft", - "346": "RestrictInteraction", - "347": "OlthoiLootTimestamp", - "348": "OlthoiLootStep", - "349": "UseCreatesContractId", - "350": "DotResistRating", - "351": "LifeResistRating", - "352": "CloakWeaveProc", - "353": "WeaponType", - "354": "MeleeMastery", - "355": "RangedMastery", - "356": "SneakAttackRating", - "357": "RecklessnessRating", - "358": "DeceptionRating", - "359": "CombatPetRange", - "360": "WeaponAuraDamage", - "361": "WeaponAuraSpeed", - "362": "SummoningMastery", - "363": "HeartbeatLifespan", - "364": "UseLevelRequirement", - "365": "LumAugAllSkills", - "366": "UseRequiresSkill", - "367": "UseRequiresSkillLevel", - "368": "UseRequiresSkillSpec", - "369": "UseRequiresLevel", - "370": "GearDamage", - "371": "GearDamageResist", - "372": "GearCrit", - "373": "GearCritResist", - "374": "GearCritDamage", - "375": "GearCritDamageResist", - "376": "GearHealingBoost", - "377": "GearNetherResist", - "378": "GearLifeResist", - "379": "GearMaxHealth", - "380": "Unknown380", - "381": "PKDamageRating", - "382": "PKDamageResistRating", - "383": "GearPKDamageRating", - "384": "GearPKDamageResistRating", - "385": "Unknown385", - "386": "Overpower", - "387": "OverpowerResist", - "388": "GearOverpower", - "389": "GearOverpowerResist", - "390": "Enlightenment", - "391": "[ServerOnly]", - "8007": "PCAPRecordedAutonomousMovement", - "393": "[ServerOnly]", - "8030": "PCAPRecordedMaxVelocityEstimated", - "395": "[ServerOnly]", - "8041": "PCAPRecordedPlacement", - "397": "[ServerOnly]", - "8042": "PCAPRecordedAppraisalPages", - "399": "[ServerOnly]", - "8043": "PCAPRecordedAppraisalMaxPages", - "401": "[ServerOnly]", - "9008": "CurrentLoyaltyAtLastLogoff", - "403": "[ServerOnly]", - "9009": "CurrentLeadershipAtLastLogoff", - "405": "[ServerOnly]", - "9010": "AllegianceOfficerRank", - "407": "[ServerOnly]", - "9011": "HouseRentTimestamp", - "409": "[ServerOnly]", - "9012": "Hairstyle", - "411": "[Ephemeral][ServerOnly]", - "9013": "VisualClothingPriority", - "413": "[ServerOnly]", - "9014": "SquelchGlobal", - "415": "[ServerOnly]", - "9015": "InventoryOrder", - "218103808": "WeenieClassId_Decal", - "218103809": "Icon_Decal_DID", - "218103810": "Container_Decal_IID", - "218103811": "Landblock_Decal", - "218103812": "ItemSlots_Decal", - "218103813": "PackSlots_Decal", - "218103814": "StackCount_Decal", - "218103815": "StackMax_Decal", - "218103816": "Spell_Decal_DID", - "218103817": "SlotLegacy_Decal", - "218103818": "Wielder_Decal_IID", - "218103819": "WieldingSlot_Decal", - "218103820": "Monarch_Decal_IID", - "218103821": "Coverage_Decal", - "218103822": "EquipableSlots_Decal", - "218103823": "EquipType_Decal", - "218103824": "IconOutline_Decal", - "218103825": "MissileType_Decal", - "218103826": "UsageMask_Decal", - "218103827": "HouseOwner_Decal_IID", - "218103828": "HookMask_Decal", - "218103829": "HookType_Decal", - "218103830": "Setup_Decal_DID", - "218103831": "ObjectDescriptionFlags_Decal", - "218103832": "CreateFlags1_Decal", - "218103833": "CreateFlags2_Decal", - "218103834": "Category_Decal", - "218103835": "Behavior_Decal", - "218103836": "MagicDef_Decal", - "218103837": "SpecialProps_Decal", - "218103838": "SpellCount_Decal", - "218103839": "WeapSpeed_Decal", - "218103840": "EquipSkill_Decal", - "218103841": "DamageType_Decal", - "218103842": "MaxDamage_Decal", - "218103845": "Unknown800000_Decal", - "218103846": "Unknown8000000_Decal", - "218103847": "PhysicsDataFlags_Decal", - "218103848": "ActiveSpellCount_Decal", - "218103849": "IconOverlay_Decal_DID", - "218103850": "IconUnderlay_Decal_DID", - "231735296": "Slot_Decal" - }, - "source_file": "IntValueKey.cs" - }, - "EquipMask": { - "name": "EquipMask", - "values": { - "0": "None", - "1": "HeadWear", - "2": "ChestWear", - "4": "AbdomenWear", - "8": "UpperArmWear", - "16": "LowerArmWear", - "32": "HandWear", - "64": "UpperLegWear", - "128": "LowerLegWear", - "256": "FootWear", - "512": "ChestArmor", - "1024": "AbdomenArmor", - "2048": "UpperArmArmor", - "4096": "LowerArmArmor", - "8192": "UpperLegArmor", - "16384": "LowerLegArmor", - "32768": "NeckWear", - "65536": "WristWearLeft", - "131072": "WristWearRight", - "262144": "FingerWearLeft", - "524288": "FingerWearRight", - "1048576": "MeleeWeapon", - "2097152": "Shield", - "4194304": "MissileWeapon", - "8388608": "MissileAmmo", - "16777216": "Held", - "33554432": "TwoHanded", - "67108864": "TrinketOne", - "134217728": "Cloak", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor | FootWear": "Armor", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor": "ArmorExclusive", - "EXPR:HeadWear | HandWear | FootWear": "Extremity", - "EXPR:NeckWear | WristWearLeft | WristWearRight | FingerWearLeft | FingerWearRight | TrinketOne | Cloak | SigilOne | SigilTwo | SigilThree": "Jewelry", - "EXPR:WristWearLeft | WristWearRight": "WristWear", - "EXPR:FingerWearLeft | FingerWearRight": "FingerWear", - "EXPR:SigilOne | SigilTwo | SigilThree": "Sigil", - "EXPR:Held | TwoHanded | TrinketOne | Cloak | SigilOne | SigilTwo": "ReadySlot", - "EXPR:SigilTwo | TrinketOne | Held": "Weapon", - "EXPR:SigilOne | SigilTwo | TrinketOne | Held": "WeaponReadySlot", - "EXPR:MeleeWeapon | Shield | MissileWeapon | Held | TwoHanded": "Selectable", - "EXPR:Selectable | MissileAmmo": "SelectablePlusAmmo", - "2147483647": "CanGoInReadySlot" - }, - "source_file": "EquipMask.cs" - }, - "SpellCategory": { - "name": "SpellCategory", - "values": { - "0": "Undefined", - "1": "Strength_Raising", - "2": "Strength_Lowering", - "3": "Endurance_Raising", - "4": "Endurance_Lowering", - "5": "Quickness_Raising", - "6": "Quickness_Lowering", - "7": "Coordination_Raising", - "8": "Coordination_Lowering", - "9": "Focus_Raising", - "10": "Focus_Lowering", - "11": "Self_Raising", - "12": "Self_Lowering", - "13": "Focus_Concentration", - "14": "Focus_Disruption", - "15": "Focus_Brilliance", - "16": "Focus_Dullness", - "17": "Axe_Raising", - "18": "Axe_Lowering", - "19": "Bow_Raising", - "20": "Bow_Lowering", - "21": "Crossbow_Raising", - "22": "Crossbow_Lowering", - "23": "Dagger_Raising", - "24": "Dagger_Lowering", - "25": "Mace_Raising", - "26": "Mace_Lowering", - "27": "Spear_Raising", - "28": "Spear_Lowering", - "29": "Staff_Raising", - "30": "Staff_Lowering", - "31": "Sword_Raising", - "32": "Sword_Lowering", - "33": "Thrown_Weapons_Raising", - "34": "Thrown_Weapons_Lowering", - "35": "Unarmed_Combat_Raising", - "36": "Unarmed_Combat_Lowering", - "37": "Melee_Defense_Raising", - "38": "Melee_Defense_Lowering", - "39": "Missile_Defense_Raising", - "40": "Missile_Defense_Lowering", - "41": "Magic_Defense_Raising", - "42": "Magic_Defense_Lowering", - "43": "Creature_Enchantment_Raising", - "44": "Creature_Enchantment_Lowering", - "45": "Item_Enchantment_Raising", - "46": "Item_Enchantment_Lowering", - "47": "Life_Magic_Raising", - "48": "Life_Magic_Lowering", - "49": "War_Magic_Raising", - "50": "War_Magic_Lowering", - "51": "Mana_Conversion_Raising", - "52": "Mana_Conversion_Lowering", - "53": "Arcane_Lore_Raising", - "54": "Arcane_Lore_Lowering", - "55": "Appraise_Armor_Raising", - "56": "Appraise_Armor_Lowering", - "57": "Appraise_Item_Raising", - "58": "Appraise_Item_Lowering", - "59": "Appraise_Magic_Item_Raising", - "60": "Appraise_Magic_Item_Lowering", - "61": "Appraise_Weapon_Raising", - "62": "Appraise_Weapon_Lowering", - "63": "Assess_Monster_Raising", - "64": "Assess_Monster_Lowering", - "65": "Deception_Raising", - "66": "Deception_Lowering", - "67": "Healing_Raising", - "68": "Healing_Lowering", - "69": "Jump_Raising", - "70": "Jump_Lowering", - "71": "Leadership_Raising", - "72": "Leadership_Lowering", - "73": "Lockpick_Raising", - "74": "Lockpick_Lowering", - "75": "Loyalty_Raising", - "76": "Loyalty_Lowering", - "77": "Run_Raising", - "78": "Run_Lowering", - "79": "Health_Raising", - "80": "Health_Lowering", - "81": "Stamina_Raising", - "82": "Stamina_Lowering", - "83": "Mana_Raising", - "84": "Mana_Lowering", - "85": "Mana_Remedy", - "86": "Mana_Malediction", - "87": "Health_Transfer_to_caster", - "88": "Health_Transfer_from_caster", - "89": "Stamina_Transfer_to_caster", - "90": "Stamina_Transfer_from_caster", - "91": "Mana_Transfer_to_caster", - "92": "Mana_Transfer_from_caster", - "93": "Health_Accelerating", - "94": "Health_Decelerating", - "95": "Stamina_Accelerating", - "96": "Stamina_Decelerating", - "97": "Mana_Accelerating", - "98": "Mana_Decelerating", - "99": "Vitae_Raising", - "100": "Vitae_Lowering", - "101": "Acid_Protection", - "102": "Acid_Vulnerability", - "103": "Bludgeon_Protection", - "104": "Bludgeon_Vulnerability", - "105": "Cold_Protection", - "106": "Cold_Vulnerability", - "107": "Electric_Protection", - "108": "Electric_Vulnerability", - "109": "Fire_Protection", - "110": "Fire_Vulnerability", - "111": "Pierce_Protection", - "112": "Pierce_Vulnerability", - "113": "Slash_Protection", - "114": "Slash_Vulnerability", - "115": "Armor_Raising", - "116": "Armor_Lowering", - "117": "Acid_Missile", - "118": "Bludgeoning_Missile", - "119": "Cold_Missile", - "120": "Electric_Missile", - "121": "Fire_Missile", - "122": "Piercing_Missile", - "123": "Slashing_Missile", - "124": "Acid_Seeker", - "125": "Bludgeoning_Seeker", - "126": "Cold_Seeker", - "127": "Electric_Seeker", - "128": "Fire_Seeker", - "129": "Piercing_Seeker", - "130": "Slashing_Seeker", - "131": "Acid_Burst", - "132": "Bludgeoning_Burst", - "133": "Cold_Burst", - "134": "Electric_Burst", - "135": "Fire_Burst", - "136": "Piercing_Burst", - "137": "Slashing_Burst", - "138": "Acid_Blast", - "139": "Bludgeoning_Blast", - "140": "Cold_Blast", - "141": "Electric_Blast", - "142": "Fire_Blast", - "143": "Piercing_Blast", - "144": "Slashing_Blast", - "145": "Acid_Scatter", - "146": "Bludgeoning_Scatter", - "147": "Cold_Scatter", - "148": "Electric_Scatter", - "149": "Fire_Scatter", - "150": "Piercing_Scatter", - "151": "Slashing_Scatter", - "152": "Attack_Mod_Raising", - "153": "Attack_Mod_Lowering", - "154": "Damage_Raising", - "155": "Damage_Lowering", - "156": "Defense_Mod_Raising", - "157": "Defense_Mod_Lowering", - "158": "Weapon_Time_Raising", - "159": "Weapon_Time_Lowering", - "160": "Armor_Value_Raising", - "161": "Armor_Value_Lowering", - "162": "Acid_Resistance_Raising", - "163": "Acid_Resistance_Lowering", - "164": "Bludgeon_Resistance_Raising", - "165": "Bludgeon_Resistance_Lowering", - "166": "Cold_Resistance_Raising", - "167": "Cold_Resistance_Lowering", - "168": "Electric_Resistance_Raising", - "169": "Electric_Resistance_Lowering", - "170": "Fire_Resistance_Raising", - "171": "Fire_Resistance_Lowering", - "172": "Pierce_Resistance_Raising", - "173": "Pierce_Resistance_Lowering", - "174": "Slash_Resistance_Raising", - "175": "Slash_Resistance_Lowering", - "176": "Bludgeoning_Resistance_Raising", - "177": "Bludgeoning_Resistance_Lowering", - "178": "Slashing_Resistance_Raising", - "179": "Slashing_Resistance_Lowering", - "180": "Piercing_Resistance_Raising", - "181": "Piercing_Resistance_Lowering", - "182": "Electrical_Resistance_Raising", - "183": "Electrical_Resistance_Lowering", - "184": "Frost_Resistance_Raising", - "185": "Frost_Resistance_Lowering", - "186": "Flame_Resistance_Raising", - "187": "Flame_Resistance_Lowering", - "188": "Acidic_Resistance_Raising", - "189": "Acidic_Resistance_Lowering", - "190": "Armor_Level_Raising", - "191": "Armor_Level_Lowering", - "192": "Lockpick_Resistance_Raising", - "193": "Lockpick_Resistance_Lowering", - "194": "Appraisal_Resistance_Raising", - "195": "Appraisal_Resistance_Lowering", - "196": "Vision_Raising", - "197": "Vision_Lowering", - "198": "Transparency_Raising", - "199": "Transparency_Lowering", - "200": "Portal_Tie", - "201": "Portal_Recall", - "202": "Portal_Creation", - "203": "Portal_Item_Creation", - "204": "Vitae", - "205": "Assess_Person_Raising", - "206": "Assess_Person_Lowering", - "207": "Acid_Volley", - "208": "Bludgeoning_Volley", - "209": "Frost_Volley", - "210": "Lightning_Volley", - "211": "Flame_Volley", - "212": "Force_Volley", - "213": "Blade_Volley", - "214": "Portal_Sending", - "215": "Lifestone_Sending", - "216": "Cooking_Raising", - "217": "Cooking_Lowering", - "218": "Fletching_Raising", - "219": "Fletching_Lowering", - "220": "Alchemy_Lowering", - "221": "Alchemy_Raising", - "222": "Acid_Ring", - "223": "Bludgeoning_Ring", - "224": "Cold_Ring", - "225": "Electric_Ring", - "226": "Fire_Ring", - "227": "Piercing_Ring", - "228": "Slashing_Ring", - "229": "Acid_Wall", - "230": "Bludgeoning_Wall", - "231": "Cold_Wall", - "232": "Electric_Wall", - "233": "Fire_Wall", - "234": "Piercing_Wall", - "235": "Slashing_Wall", - "236": "Acid_Strike", - "237": "Bludgeoning_Strike", - "238": "Cold_Strike", - "239": "Electric_Strike", - "240": "Fire_Strike", - "241": "Piercing_Strike", - "242": "Slashing_Strike", - "243": "Acid_Streak", - "244": "Bludgeoning_Streak", - "245": "Cold_Streak", - "246": "Electric_Streak", - "247": "Fire_Streak", - "248": "Piercing_Streak", - "249": "Slashing_Streak", - "250": "Dispel", - "251": "Creature_Mystic_Raising", - "252": "Creature_Mystic_Lowering", - "253": "Item_Mystic_Raising", - "254": "Item_Mystic_Lowering", - "255": "War_Mystic_Raising", - "256": "War_Mystic_Lowering", - "257": "Health_Restoring", - "258": "Health_Depleting", - "259": "Mana_Restoring", - "260": "Mana_Depleting", - "261": "Strength_Increase", - "262": "Strength_Decrease", - "263": "Endurance_Increase", - "264": "Endurance_Decrease", - "265": "Quickness_Increase", - "266": "Quickness_Decrease", - "267": "Coordination_Increase", - "268": "Coordination_Decrease", - "269": "Focus_Increase", - "270": "Focus_Decrease", - "271": "Self_Increase", - "272": "Self_Decrease", - "273": "GreatVitality_Raising", - "274": "PoorVitality_Lowering", - "275": "GreatVigor_Raising", - "276": "PoorVigor_Lowering", - "277": "GreaterIntellect_Raising", - "278": "LessorIntellect_Lowering", - "279": "LifeGiver_Raising", - "280": "LifeTaker_Lowering", - "281": "StaminaGiver_Raising", - "282": "StaminaTaker_Lowering", - "283": "ManaGiver_Raising", - "284": "ManaTaker_Lowering", - "285": "Acid_Ward_Protection", - "286": "Acid_Ward_Vulnerability", - "287": "Fire_Ward_Protection", - "288": "Fire_Ward_Vulnerability", - "289": "Cold_Ward_Protection", - "290": "Cold_Ward_Vulnerability", - "291": "Electric_Ward_Protection", - "292": "Electric_Ward_Vulnerability", - "293": "Leadership_Obedience_Raising", - "294": "Leadership_Obedience_Lowering", - "295": "Melee_Defense_Shelter_Raising", - "296": "Melee_Defense_Shelter_Lowering", - "297": "Missile_Defense_Shelter_Raising", - "298": "Missile_Defense_Shelter_Lowering", - "299": "Magic_Defense_Shelter_Raising", - "300": "Magic_Defense_Shelter_Lowering", - "301": "HuntersAcumen_Raising", - "302": "HuntersAcumen_Lowering", - "303": "StillWater_Raising", - "304": "StillWater_Lowering", - "305": "StrengthofEarth_Raising", - "306": "StrengthofEarth_Lowering", - "307": "Torrent_Raising", - "308": "Torrent_Lowering", - "309": "Growth_Raising", - "310": "Growth_Lowering", - "311": "CascadeAxe_Raising", - "312": "CascadeAxe_Lowering", - "313": "CascadeDagger_Raising", - "314": "CascadeDagger_Lowering", - "315": "CascadeMace_Raising", - "316": "CascadeMace_Lowering", - "317": "CascadeSpear_Raising", - "318": "CascadeSpear_Lowering", - "319": "CascadeStaff_Raising", - "320": "CascadeStaff_Lowering", - "321": "StoneCliffs_Raising", - "322": "StoneCliffs_Lowering", - "323": "MaxDamage_Raising", - "324": "MaxDamage_Lowering", - "325": "Bow_Damage_Raising", - "326": "Bow_Damage_Lowering", - "327": "Bow_Range_Raising", - "328": "Bow_Range_Lowering", - "329": "Extra_Defense_Mod_Raising", - "330": "Extra_Defense_Mod_Lowering", - "331": "Extra_Bow_Skill_Raising", - "332": "Extra_Bow_Skill_Lowering", - "333": "Extra_Alchemy_Skill_Raising", - "334": "Extra_Alchemy_Skill_Lowering", - "335": "Extra_Arcane_Lore_Skill_Raising", - "336": "Extra_Arcane_Lore_Skill_Lowering", - "337": "Extra_Appraise_Armor_Skill_Raising", - "338": "Extra_Appraise_Armor_Skill_Lowering", - "339": "Extra_Cooking_Skill_Raising", - "340": "Extra_Cooking_Skill_Lowering", - "341": "Extra_Crossbow_Skill_Raising", - "342": "Extra_Crossbow_Skill_Lowering", - "343": "Extra_Deception_Skill_Raising", - "344": "Extra_Deception_Skill_Lowering", - "345": "Extra_Loyalty_Skill_Raising", - "346": "Extra_Loyalty_Skill_Lowering", - "347": "Extra_Fletching_Skill_Raising", - "348": "Extra_Fletching_Skill_Lowering", - "349": "Extra_Healing_Skill_Raising", - "350": "Extra_Healing_Skill_Lowering", - "351": "Extra_Melee_Defense_Skill_Raising", - "352": "Extra_Melee_Defense_Skill_Lowering", - "353": "Extra_Appraise_Item_Skill_Raising", - "354": "Extra_Appraise_Item_Skill_Lowering", - "355": "Extra_Jumping_Skill_Raising", - "356": "Extra_Jumping_Skill_Lowering", - "357": "Extra_Life_Magic_Skill_Raising", - "358": "Extra_Life_Magic_Skill_Lowering", - "359": "Extra_Lockpick_Skill_Raising", - "360": "Extra_Lockpick_Skill_Lowering", - "361": "Extra_Appraise_Magic_Item_Skill_Raising", - "362": "Extra_Appraise_Magic_Item_Skill_Lowering", - "363": "Extra_Mana_Conversion_Skill_Raising", - "364": "Extra_Mana_Conversion_Skill_Lowering", - "365": "Extra_Assess_Creature_Skill_Raising", - "366": "Extra_Assess_Creature_Skill_Lowering", - "367": "Extra_Assess_Person_Skill_Raising", - "368": "Extra_Assess_Person_Skill_Lowering", - "369": "Extra_Run_Skill_Raising", - "370": "Extra_Run_Skill_Lowering", - "371": "Extra_Sword_Skill_Raising", - "372": "Extra_Sword_Skill_Lowering", - "373": "Extra_Thrown_Weapons_Skill_Raising", - "374": "Extra_Thrown_Weapons_Skill_Lowering", - "375": "Extra_Unarmed_Combat_Skill_Raising", - "376": "Extra_Unarmed_Combat_Skill_Lowering", - "377": "Extra_Appraise_Weapon_Skill_Raising", - "378": "Extra_Appraise_Weapon_Skill_Lowering", - "379": "Armor_Increase", - "380": "Armor_Decrease", - "381": "Extra_Acid_Resistance_Raising", - "382": "Extra_Acid_Resistance_Lowering", - "383": "Extra_Bludgeon_Resistance_Raising", - "384": "Extra_Bludgeon_Resistance_Lowering", - "385": "Extra_Fire_Resistance_Raising", - "386": "Extra_Fire_Resistance_Lowering", - "387": "Extra_Cold_Resistance_Raising", - "388": "Extra_Cold_Resistance_Lowering", - "389": "Extra_Attack_Mod_Raising", - "390": "Extra_Attack_Mod_Lowering", - "391": "Extra_Armor_Value_Raising", - "392": "Extra_Armor_Value_Lowering", - "393": "Extra_Pierce_Resistance_Raising", - "394": "Extra_Pierce_Resistance_Lowering", - "395": "Extra_Slash_Resistance_Raising", - "396": "Extra_Slash_Resistance_Lowering", - "397": "Extra_Electric_Resistance_Raising", - "398": "Extra_Electric_Resistance_Lowering", - "399": "Extra_Weapon_Time_Raising", - "400": "Extra_Weapon_Time_Lowering", - "401": "Bludgeon_Ward_Protection", - "402": "Bludgeon_Ward_Vulnerability", - "403": "Slash_Ward_Protection", - "404": "Slash_Ward_Vulnerability", - "405": "Pierce_Ward_Protection", - "406": "Pierce_Ward_Vulnerability", - "407": "Stamina_Restoring", - "408": "Stamina_Depleting", - "409": "Fireworks", - "410": "Health_Divide", - "411": "Stamina_Divide", - "412": "Mana_Divide", - "413": "Coordination_Increase2", - "414": "Strength_Increase2", - "415": "Focus_Increase2", - "416": "Endurance_Increase2", - "417": "Self_Increase2", - "418": "Melee_Defense_Multiply", - "419": "Missile_Defense_Multiply", - "420": "Magic_Defense_Multiply", - "421": "Attributes_Decrease", - "422": "LifeGiver_Raising2", - "423": "Item_Enchantment_Raising2", - "424": "Skills_Decrease", - "425": "Extra_Mana_Conversion_Bonus", - "426": "War_Mystic_Raising2", - "427": "War_Mystic_Lowering2", - "428": "Magic_Defense_Shelter_Raising2", - "429": "Extra_Life_Magic_Skill_Raising2", - "430": "Creature_Mystic_Raising2", - "431": "Item_Mystic_Raising2", - "432": "Mana_Raising2", - "433": "Self_Raising2", - "434": "CreatureEnchantment_Raising2", - "435": "Salvaging_Raising", - "436": "Extra_Salvaging_Raising", - "437": "Extra_Salvaging_Raising2", - "438": "CascadeAxe_Raising2", - "439": "Extra_Bow_Skill_Raising2", - "440": "Extra_Thrown_Weapons_Skill_Raising2", - "441": "Extra_Crossbow_Skill_Raising2", - "442": "CascadeDagger_Raising2", - "443": "CascadeMace_Raising2", - "444": "Extra_Unarmed_Combat_Skill_Raising2", - "445": "CascadeSpear_Raising2", - "446": "CascadeStaff_Raising2", - "447": "Extra_Sword_Skill_Raising2", - "448": "Acid_Protection_Rare", - "449": "Acid_Resistance_Raising_Rare", - "450": "Alchemy_Raising_Rare", - "451": "Appraisal_Resistance_Lowering_Rare", - "452": "Appraise_Armor_Raising_Rare", - "453": "Appraise_Item_Raising_Rare", - "454": "Appraise_Magic_Item_Raising_Rare", - "455": "Appraise_Weapon_Raising_Rare", - "456": "Arcane_Lore_Raising_Rare", - "457": "Armor_Raising_Rare", - "458": "Armor_Value_Raising_Rare", - "459": "Assess_Monster_Raising_Rare", - "460": "Assess_Person_Raising_Rare", - "461": "Attack_Mod_Raising_Rare", - "462": "Axe_Raising_Rare", - "463": "Bludgeon_Protection_Rare", - "464": "Bludgeon_Resistance_Raising_Rare", - "465": "Bow_Raising_Rare", - "466": "Cold_Protection_Rare", - "467": "Cold_Resistance_Raising_Rare", - "468": "Cooking_Raising_Rare", - "469": "Coordination_Raising_Rare", - "470": "Creature_Enchantment_Raising_Rare", - "471": "Crossbow_Raising_Rare", - "472": "Dagger_Raising_Rare", - "473": "Damage_Raising_Rare", - "474": "Deception_Raising_Rare", - "475": "Defense_Mod_Raising_Rare", - "476": "Electric_Protection_Rare", - "477": "Electric_Resistance_Raising_Rare", - "478": "Endurance_Raising_Rare", - "479": "Fire_Protection_Rare", - "480": "Fire_Resistance_Raising_Rare", - "481": "Fletching_Raising_Rare", - "482": "Focus_Raising_Rare", - "483": "Healing_Raising_Rare", - "484": "Health_Accelerating_Rare", - "485": "Item_Enchantment_Raising_Rare", - "486": "Jump_Raising_Rare", - "487": "Leadership_Raising_Rare", - "488": "Life_Magic_Raising_Rare", - "489": "Lockpick_Raising_Rare", - "490": "Loyalty_Raising_Rare", - "491": "Mace_Raising_Rare", - "492": "Magic_Defense_Raising_Rare", - "493": "Mana_Accelerating_Rare", - "494": "Mana_Conversion_Raising_Rare", - "495": "Melee_Defense_Raising_Rare", - "496": "Missile_Defense_Raising_Rare", - "497": "Pierce_Protection_Rare", - "498": "Pierce_Resistance_Raising_Rare", - "499": "Quickness_Raising_Rare", - "500": "Run_Raising_Rare", - "501": "Self_Raising_Rare", - "502": "Slash_Protection_Rare", - "503": "Slash_Resistance_Raising_Rare", - "504": "Spear_Raising_Rare", - "505": "Staff_Raising_Rare", - "506": "Stamina_Accelerating_Rare", - "507": "Strength_Raising_Rare", - "508": "Sword_Raising_Rare", - "509": "Thrown_Weapons_Raising_Rare", - "510": "Unarmed_Combat_Raising_Rare", - "511": "War_Magic_Raising_Rare", - "512": "Weapon_Time_Raising_Rare", - "513": "Armor_Increase_Inky_Armor", - "514": "Magic_Defense_Shelter_Raising_Fiun", - "515": "Extra_Run_Skill_Raising_Fiun", - "516": "Extra_Mana_Conversion_Skill_Raising_Fiun", - "517": "Attributes_Increase_Cantrip1", - "518": "Extra_Melee_Defense_Skill_Raising2", - "519": "ACTDPurchaseRewardSpell", - "520": "ACTDPurchaseRewardSpellHealth", - "521": "SaltAsh_Attack_Mod_Raising", - "522": "Quickness_Increase2", - "523": "Extra_Alchemy_Skill_Raising2", - "524": "Extra_Cooking_Skill_Raising2", - "525": "Extra_Fletching_Skill_Raising2", - "526": "Extra_Lockpick_Skill_Raising2", - "527": "MucorManaWell", - "528": "Stamina_Restoring2", - "529": "Allegiance_Raising", - "530": "Health_DoT", - "531": "Health_DoT_Secondary", - "532": "Health_DoT_Tertiary", - "533": "Health_HoT", - "534": "Health_HoT_Secondary", - "535": "Health_HoT_Tertiary", - "536": "Health_Divide_Secondary", - "537": "Health_Divide_Tertiary", - "538": "SetSword_Raising", - "539": "SetAxe_Raising", - "540": "SetDagger_Raising", - "541": "SetMace_Raising", - "542": "SetSpear_Raising", - "543": "SetStaff_Raising", - "544": "SetUnarmed_Raising", - "545": "SetBow_Raising", - "546": "SetCrossbow_Raising", - "547": "SetThrown_Raising", - "548": "SetItemEnchantment_Raising", - "549": "SetCreatureEnchantment_Raising", - "550": "SetWarMagic_Raising", - "551": "SetLifeMagic_Raising", - "552": "SetMeleeDefense_Raising", - "553": "SetMissileDefense_Raising", - "554": "SetMagicDefense_Raising", - "555": "SetStamina_Accelerating", - "556": "SetCooking_Raising", - "557": "SetFletching_Raising", - "558": "SetLockpick_Raising", - "559": "SetAlchemy_Raising", - "560": "SetSalvaging_Raising", - "561": "SetArmorExpertise_Raising", - "562": "SetWeaponExpertise_Raising", - "563": "SetItemTinkering_Raising", - "564": "SetMagicItemExpertise_Raising", - "565": "SetLoyalty_Raising", - "566": "SetStrength_Raising", - "567": "SetEndurance_Raising", - "568": "SetCoordination_Raising", - "569": "SetQuickness_Raising", - "570": "SetFocus_Raising", - "571": "SetWillpower_Raising", - "572": "SetHealth_Raising", - "573": "SetStamina_Raising", - "574": "SetMana_Raising", - "575": "SetSprint_Raising", - "576": "SetJumping_Raising", - "577": "SetSlashResistance_Raising", - "578": "SetBludgeonResistance_Raising", - "579": "SetPierceResistance_Raising", - "580": "SetFlameResistance_Raising", - "581": "SetAcidResistance_Raising", - "582": "SetFrostResistance_Raising", - "583": "SetLightningResistance_Raising", - "584": "Crafting_LockPick_Raising", - "585": "Crafting_Fletching_Raising", - "586": "Crafting_Cooking_Raising", - "587": "Crafting_Alchemy_Raising", - "588": "Crafting_ArmorTinkering_Raising", - "589": "Crafting_WeaponTinkering_Raising", - "590": "Crafting_MagicTinkering_Raising", - "591": "Crafting_ItemTinkering_Raising", - "592": "SkillPercent_Alchemy_Raising", - "593": "TwoHanded_Raising", - "594": "TwoHanded_Lowering", - "595": "Extra_TwoHanded_Skill_Raising", - "596": "Extra_TwoHanded_Skill_Lowering", - "597": "Extra_TwoHanded_Skill_Raising2", - "598": "TwoHanded_Raising_Rare", - "599": "SetTwoHanded_Raising", - "600": "GearCraft_Raising", - "601": "GearCraft_Lowering", - "602": "Extra_GearCraft_Skill_Raising", - "603": "Extra_GearCraft_Skill_Lowering", - "604": "Extra_GearCraft_Skill_Raising2", - "605": "GearCraft_Raising_Rare", - "606": "SetGearCraft_Raising", - "607": "LoyaltyMana_Raising", - "608": "LoyaltyStamina_Raising", - "609": "LeadershipHealth_Raising", - "610": "TrinketDamage_Raising", - "611": "TrinketDamage_Lowering", - "612": "TrinketHealth_Raising", - "613": "TrinketStamina_Raising", - "614": "TrinketMana_Raising", - "615": "TrinketXP_Raising", - "616": "DeceptionArcaneLore_Raising", - "617": "HealOverTime_Raising", - "618": "DamageOverTime_Raising", - "619": "HealingResistRating_Raising", - "620": "AetheriaDamageRating_Raising", - "621": "AetheriaDamageReduction_Raising", - "622": "SKIPPED", - "623": "AetheriaHealth_Raising", - "624": "AetheriaStamina_Raising", - "625": "AetheriaMana_Raising", - "626": "AetheriaCriticalDamage_Raising", - "627": "AetheriaHealingAmplification_Raising", - "628": "AetheriaProcDamageRating_Raising", - "629": "AetheriaProcDamageReduction_Raising", - "630": "AetheriaProcHealthOverTime_Raising", - "631": "AetheriaProcDamageOverTime_Raising", - "632": "AetheriaProcHealingReduction_Raising", - "633": "RareDamageRating_Raising", - "634": "RareDamageReductionRating_Raising", - "635": "AetheriaEndurance_Raising", - "636": "NetherDamageOverTime_Raising", - "637": "NetherDamageOverTime_Raising2", - "638": "NetherDamageOverTime_Raising3", - "639": "Nether_Streak", - "640": "Nether_Missile", - "641": "Nether_Ring", - "642": "NetherDamageRating_Lowering", - "643": "NetherDamageHealingReduction_Raising", - "644": "Void_Magic_Lowering", - "645": "Void_Magic_Raising", - "646": "Void_Mystic_Raising", - "647": "SetVoidMagic_Raising", - "648": "Void_Magic_Raising_Rare", - "649": "Void_Mystic_Raising2", - "650": "LuminanceDamageRating_Raising", - "651": "LuminanceDamageReduction_Raising", - "652": "LuminanceHealth_Raising", - "653": "AetheriaCriticalReduction_Raising", - "654": "Extra_Missile_Defense_Skill_Raising", - "655": "Extra_Missile_Defense_Skill_Lowering", - "656": "Extra_Missile_Defense_Skill_Raising2", - "657": "AetheriaHealthResistance_Raising", - "658": "AetheriaDotResistance_Raising", - "659": "Cloak_Skill_Raising", - "660": "Cloak_All_Skill_Raising", - "661": "Cloak_Magic_Defense_Lowering", - "662": "Cloak_Melee_Defense_Lowering", - "663": "Cloak_Missile_Defense_Lowering", - "664": "DirtyFighting_Lowering", - "665": "DirtyFighting_Raising", - "666": "Extra_DirtyFighting_Raising", - "667": "DualWield_Lowering", - "668": "DualWield_Raising", - "669": "Extra_DualWield_Raising", - "670": "Recklessness_Lowering", - "671": "Recklessness_Raising", - "672": "Extra_Recklessness_Raising", - "673": "Shield_Lowering", - "674": "Shield_Raising", - "675": "Extra_Shield_Raising", - "676": "SneakAttack_Lowering", - "677": "SneakAttack_Raising", - "678": "Extra_SneakAttack_Raising", - "679": "Rare_DirtyFighting_Raising", - "680": "Rare_DualWield_Raising", - "681": "Rare_Recklessness_Raising", - "682": "Rare_Shield_Raising", - "683": "Rare_SneakAttack_Raising", - "684": "DF_Attack_Skill_Debuff", - "685": "DF_Bleed_Damage", - "686": "DF_Defense_Skill_Debuff", - "687": "DF_Healing_Debuff", - "688": "SetDirtyFighting_Raising", - "689": "SetDualWield_Raising", - "690": "SetRecklessness_Raising", - "691": "SetShield_Raising", - "692": "SetSneakAttack_Raising", - "693": "LifeGiver_Mhoire", - "694": "RareDamageRating_Raising2", - "695": "Spell_Damage_Raising", - "696": "Summoning_Raising", - "697": "Summoning_Lowering", - "698": "Extra_Summoning_Skill_Raising", - "699": "SetSummoning_Raising" - }, - "source_file": "SpellCategory.cs" - }, - "StringValueKey": { - "name": "StringValueKey", - "values": { - "0": "Undef", - "1": "Name", - "2": "Title", - "3": "Sex", - "4": "HeritageGroup", - "5": "Template", - "6": "AttackersName", - "7": "Inscription", - "8": "ScribeName", - "9": "VendorsName", - "10": "Fellowship", - "11": "MonarchsName", - "12": "LockCode", - "13": "KeyCode", - "14": "Use", - "15": "ShortDesc", - "16": "LongDesc", - "17": "ActivationTalk", - "18": "UseMessage", - "19": "ItemHeritageGroupRestriction", - "20": "PluralName", - "21": "MonarchsTitle", - "22": "ActivationFailure", - "23": "ScribeAccount", - "24": "TownName", - "25": "CraftsmanName", - "26": "UsePkServerError", - "27": "ScoreCachedText", - "28": "ScoreDefaultEntryFormat", - "29": "ScoreFirstEntryFormat", - "30": "ScoreLastEntryFormat", - "31": "ScoreOnlyEntryFormat", - "32": "ScoreNoEntry", - "33": "Quest", - "34": "GeneratorEvent", - "35": "PatronsTitle", - "36": "HouseOwnerName", - "37": "QuestRestriction", - "38": "AppraisalPortalDestination", - "39": "TinkerName", - "40": "ImbuerName", - "41": "HouseOwnerAccount", - "42": "DisplayName", - "43": "DateOfBirth", - "44": "ThirdPartyApi", - "45": "KillQuest", - "46": "Afk", - "47": "AllegianceName", - "48": "AugmentationAddQuest", - "49": "KillQuest2", - "50": "KillQuest3", - "51": "UseSendsSignal", - "52": "GearPlatingName", - "53": "[ServerOnly]", - "8006": "PCAPRecordedCurrentMotionState", - "55": "[ServerOnly]", - "8031": "PCAPRecordedServerName", - "57": "[ServerOnly]", - "8032": "PCAPRecordedCharacterName", - "59": "/* custom */", - "60": "[ServerOnly]", - "9001": "AllegianceMotd", - "62": "[ServerOnly]", - "9002": "AllegianceMotdSetBy", - "64": "[ServerOnly]", - "9003": "AllegianceSpeakerTitle", - "66": "[ServerOnly]", - "9004": "AllegianceSeneschalTitle", - "68": "[ServerOnly]", - "9005": "AllegianceCastellanTitle", - "70": "[ServerOnly]", - "9006": "GodState", - "72": "[ServerOnly]", - "9007": "TinkerLog", - "184549376": "SecondaryName_Decal" - }, - "source_file": "StringValueKey.cs" - }, - "WieldRequirement": { - "name": "WieldRequirement", - "values": { - "0": "Invalid", - "1": "Skill", - "2": "RawSkill", - "3": "Attrib", - "4": "RawAttrib", - "5": "SecondaryAttrib", - "6": "RawSecondaryAttrib", - "7": "Level", - "8": "Training", - "9": "IntStat", - "10": "BoolStat", - "11": "CreatureType", - "12": "HeritageType" - }, - "source_file": "WieldRequirement.cs" - }, - "AttributeSetInfo": { - "name": "AttributeSetInfo", - "description": "Equipment set names mapping (Soldier's Set, Adept's Set, Defender's Set, Wise Set, etc.)", - "values": { - "2": "Test", - "4": "Carraida's Benediction", - "5": "Noble Relic Set", - "6": "Ancient Relic Set", - "7": "Relic Alduressa Set", - "8": "Shou-jen Set", - "9": "Empyrean Rings Set", - "10": "Arm, Mind, Heart Set", - "11": "Coat of the Perfect Light Set", - "12": "Leggings of Perfect Light Set", - "13": "Soldier's Set", - "14": "Adept's Set", - "15": "Archer's Set", - "16": "Defender's Set", - "17": "Tinker's Set", - "18": "Crafter's Set", - "19": "Hearty Set", - "20": "Dexterous Set", - "21": "Wise Set", - "22": "Swift Set", - "23": "Hardened Set", - "24": "Reinforced Set", - "25": "Interlocking Set", - "26": "Flame Proof Set", - "27": "Acid Proof Set", - "28": "Cold Proof Set", - "29": "Lightning Proof Set", - "30": "Dedication Set", - "31": "Gladiatorial Clothing Set", - "32": "Ceremonial Clothing", - "33": "Protective Clothing", - "34": "Noobie Armor", - "35": "Sigil of Defense", - "36": "Sigil of Destruction", - "37": "Sigil of Fury", - "38": "Sigil of Growth", - "39": "Sigil of Vigor", - "40": "Heroic Protector Set", - "41": "Heroic Destroyer Set", - "42": "Olthoi Armor D Red", - "43": "Olthoi Armor C Rat", - "44": "Olthoi Armor C Red", - "45": "Olthoi Armor D Rat", - "46": "Upgraded Relic Alduressa Set", - "47": "Upgraded Ancient Relic Set", - "48": "Upgraded Noble Relic Set", - "49": "Weave of Alchemy", - "50": "Weave of Arcane Lore", - "51": "Weave of Armor Tinkering", - "52": "Weave of Assess Person", - "53": "Weave of Light Weapons", - "54": "Weave of Missile Weapons", - "55": "Weave of Cooking", - "56": "Weave of Creature Enchantment", - "57": "Weave of Missile Weapons", - "58": "Weave of Finesse", - "59": "Weave of Deception", - "60": "Weave of Fletching", - "61": "Weave of Healing", - "62": "Weave of Item Enchantment", - "63": "Weave of Item Tinkering", - "64": "Weave of Leadership", - "65": "Weave of Life Magic", - "66": "Weave of Loyalty", - "67": "Weave of Light Weapons", - "68": "Weave of Magic Defense", - "69": "Weave of Magic Item Tinkering", - "70": "Weave of Mana Conversion", - "71": "Weave of Melee Defense", - "72": "Weave of Missile Defense", - "73": "Weave of Salvaging", - "74": "Weave of Light Weapons", - "75": "Weave of Light Weapons", - "76": "Weave of Heavy Weapons", - "77": "Weave of Missile Weapons", - "78": "Weave of Two Handed Combat", - "79": "Weave of Light Weapons", - "80": "Weave of Void Magic", - "81": "Weave of War Magic", - "82": "Weave of Weapon Tinkering", - "83": "Weave of Assess Creature", - "84": "Weave of Dirty Fighting", - "85": "Weave of Dual Wield", - "86": "Weave of Recklessness", - "87": "Weave of Shield", - "88": "Weave of Sneak Attack", - "89": "Ninja_New", - "90": "Weave of Summoning", - "91": "Shrouded Soul", - "92": "Darkened Mind", - "93": "Clouded Spirit", - "131": "Brown Society Locket", - "132": "Yellow Society Locket", - "133": "Red Society Band", - "134": "Green Society Band", - "135": "Purple Society Band", - "136": "Blue Society Band", - "137": "Gauntlet Garb" - }, - "source_file": "Dictionaries.cs" - }, - "SkillInfo": { - "name": "SkillInfo", - "description": "Skill names mapping", - "values": { - "1": "Axe", - "2": "Bow", - "3": "Crossbow", - "4": "Dagger", - "5": "Mace", - "6": "Melee Defense", - "7": "Missile Defense", - "8": "Sling", - "9": "Spear", - "10": "Staff", - "11": "Sword", - "12": "Thrown Weapons", - "13": "Unarmed Combat", - "14": "Arcane Lore", - "15": "Magic Defense", - "16": "Mana Conversion", - "18": "Item Tinkering", - "19": "Assess Person", - "20": "Deception", - "21": "Healing", - "22": "Jump", - "23": "Lockpick", - "24": "Run", - "27": "Assess Creature", - "28": "Weapon Tinkering", - "29": "Armor Tinkering", - "30": "Magic Item Tinkering", - "31": "Creature Enchantment", - "32": "Item Enchantment", - "33": "Life Magic", - "34": "War Magic", - "35": "Leadership", - "36": "Loyalty", - "37": "Fletching", - "38": "Alchemy", - "39": "Cooking", - "40": "Salvaging", - "41": "Two Handed Combat", - "42": "Gearcraft", - "43": "Void", - "44": "Heavy Weapons", - "45": "Light Weapons", - "46": "Finesse Weapons", - "47": "Missile Weapons", - "48": "Shield", - "49": "Dual Wield", - "50": "Recklessness", - "51": "Sneak Attack", - "52": "Dirty Fighting", - "53": "Challenge", - "54": "Summoning" - }, - "source_file": "Dictionaries.cs" - }, - "MasteryInfo": { - "name": "MasteryInfo", - "description": "Weapon mastery names mapping", - "values": { - "1": "Unarmed Weapon", - "2": "Sword", - "3": "Axe", - "4": "Mace", - "5": "Spear", - "6": "Dagger", - "7": "Staff", - "8": "Bow", - "9": "Crossbow", - "10": "Thrown", - "11": "Two Handed Combat" - }, - "source_file": "Dictionaries.cs" - }, - "MaterialInfo": { - "name": "MaterialInfo", - "description": "Material names mapping", - "values": {}, - "source_file": "Dictionaries.cs" - } - }, - "dictionaries": { - "AttributeSetInfo": { - "name": "AttributeSetInfo", - "description": "Equipment set names", - "values": { - "2": "Test", - "4": "Carraida's Benediction", - "5": "Noble Relic Set", - "6": "Ancient Relic Set", - "7": "Relic Alduressa Set", - "8": "Shou-jen Set", - "9": "Empyrean Rings Set", - "10": "Arm, Mind, Heart Set", - "11": "Coat of the Perfect Light Set", - "12": "Leggings of Perfect Light Set", - "13": "Soldier's Set", - "14": "Adept's Set", - "15": "Archer's Set", - "16": "Defender's Set", - "17": "Tinker's Set", - "18": "Crafter's Set", - "19": "Hearty Set", - "20": "Dexterous Set", - "21": "Wise Set", - "22": "Swift Set", - "23": "Hardenend Set", - "24": "Reinforced Set", - "25": "Interlocking Set", - "26": "Flame Proof Set", - "27": "Acid Proof Set", - "28": "Cold Proof Set", - "29": "Lightning Proof Set", - "30": "Dedication Set", - "31": "Gladiatorial Clothing Set", - "32": "Ceremonial Clothing", - "33": "Protective Clothing", - "34": "Noobie Armor", - "35": "Sigil of Defense", - "36": "Sigil of Destruction", - "37": "Sigil of Fury", - "38": "Sigil of Growth", - "39": "Sigil of Vigor", - "40": "Heroic Protector Set", - "41": "Heroic Destroyer Set", - "42": "Olthoi Armor D Red", - "43": "Olthoi Armor C Rat", - "44": "Olthoi Armor C Red", - "45": "Olthoi Armor F Red", - "46": "Olthoi Armor K Red", - "47": "Olthoi Armor M Red", - "48": "Olthoi Armor B Red", - "49": "Olthoi Armor B Rat", - "50": "Olthoi Armor K Rat", - "51": "Olthoi Armor M Rat", - "52": "Olthoi Armor F Rat", - "53": "Olthoi Armor D Rat" - } - } - }, - "spells": { - "name": "Spells", - "values": { - "1": { - "id": 1, - "name": "Strength Other I", - "description": "Increases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "1", - "speed": "0", - "target_effect": "6", - "target_mask": "16" - }, - "2": { - "id": 2, - "name": "Strength Self I", - "description": "Increases the caster's Strength by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3": { - "id": 3, - "name": "Weakness Other I", - "description": "Decreases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "2", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "4": { - "id": 4, - "name": "Weakness Self I", - "description": "Decrease the caster's Strength by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "2", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "5": { - "id": 5, - "name": "Heal Other I", - "description": "Restores 10-25 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "79", - "speed": "0", - "target_effect": "31", - "target_mask": "16" - }, - "6": { - "id": 6, - "name": "Heal Self I", - "description": "Restores 10-25 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "67", - "speed": "0.01", - "target_effect": "31", - "target_mask": "16" - }, - "7": { - "id": 7, - "name": "Harm Other I", - "description": "Drains 4-6 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "8": { - "id": 8, - "name": "Harm Self I", - "description": "Drains 4-6 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "15", - "duration": "-1", - "mana": "15", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "9": { - "id": 9, - "name": "Infuse Mana Other I", - "description": "Drains one-quarter of the caster's Mana and gives 75% of that to the target.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "92", - "speed": "0.1", - "target_effect": "33", - "target_mask": "16" - }, - "15": { - "id": 15, - "name": "Vulnerability Other I", - "description": "Decrease the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "38", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "16": { - "id": 16, - "name": "Vulnerability Self I", - "description": "Decrease the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "38", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "17": { - "id": 17, - "name": "Invulnerability Other I", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "37", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "18": { - "id": 18, - "name": "Invulnerability Self I", - "description": "Increases the caster's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "37", - "speed": "0", - "target_effect": "22", - "target_mask": "16" - }, - "19": { - "id": 19, - "name": "Fire Protection Other I", - "description": "Reduces damage the target takes from fire by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "109", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "20": { - "id": 20, - "name": "Fire Protection Self I", - "description": "Reduces damage the caster takes from Fire by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "109", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "21": { - "id": 21, - "name": "Fire Vulnerability Other I", - "description": "Increases damage the target takes from Fire by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "110", - "speed": "0.01", - "target_effect": "44", - "target_mask": "16" - }, - "22": { - "id": 22, - "name": "Fire Vulnerability Self I", - "description": "Increases damage the caster takes from Fire by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "110", - "speed": "0.01", - "target_effect": "44", - "target_mask": "16" - }, - "23": { - "id": 23, - "name": "Armor Other I", - "description": "Increases the target's natural armor by 20 points.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "115", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "24": { - "id": 24, - "name": "Armor Self I", - "description": "Increases the caster's natural armor by 20 points.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "115", - "speed": "0", - "target_effect": "55", - "target_mask": "16" - }, - "25": { - "id": 25, - "name": "Imperil Other I", - "description": "Decreases the target's natural armor by 20 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "116", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "26": { - "id": 26, - "name": "Imperil Self I", - "description": "Decreases the caster's natural armor by 20 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "20", - "family": "116", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "27": { - "id": 27, - "name": "Flame Bolt I", - "description": "Shoots a bolt of flame at the target. The bolt does 16-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "28": { - "id": 28, - "name": "Frost Bolt I", - "description": "Shoots a bolt of frost at the target. The bolt does 16-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "119", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "35": { - "id": 35, - "name": "Aura of Blood Drinker Self I", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "154", - "speed": "0", - "target_effect": "57", - "target_mask": "16" - }, - "36": { - "id": 36, - "name": "Blood Loather I", - "description": "Decreases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "155", - "speed": "0.05", - "target_effect": "58", - "target_mask": "257" - }, - "37": { - "id": 37, - "name": "Blade Bane I", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "174", - "speed": "0.01", - "target_effect": "61", - "target_mask": "6" - }, - "38": { - "id": 38, - "name": "Blade Lure I", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "175", - "speed": "0.01", - "target_effect": "62", - "target_mask": "6" - }, - "47": { - "id": 47, - "name": "Primary Portal Tie", - "description": "Links the caster to a targeted portal.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "200", - "speed": "0.25", - "target_effect": "17", - "target_mask": "65536" - }, - "48": { - "id": 48, - "name": "Primary Portal Recall", - "description": "Transports the caster to the destination of the portal last successfully linked to with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "50", - "family": "201", - "speed": "0.25", - "target_effect": "0", - "target_mask": "65536" - }, - "49": { - "id": 49, - "name": "Aura of Swift Killer Self I", - "description": "Improves a weapon's speed by 10 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "158", - "speed": "0", - "target_effect": "63", - "target_mask": "16" - }, - "50": { - "id": 50, - "name": "Leaden Weapon I", - "description": "Worsens a weapon's speed by 10 points.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "159", - "speed": "0.01", - "target_effect": "64", - "target_mask": "257" - }, - "51": { - "id": 51, - "name": "Impenetrability I", - "description": "Improves a shield or piece of armor's armor value by 20 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "160", - "speed": "0", - "target_effect": "142", - "target_mask": "6" - }, - "53": { - "id": 53, - "name": "Rejuvenation Other I", - "description": "Increases the rate at which the target regains Stamina by 10%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "95", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "54": { - "id": 54, - "name": "Rejuvenation Self I", - "description": "Increases the rate at which the caster regains Stamina by 10%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "95", - "speed": "0.01", - "target_effect": "41", - "target_mask": "16" - }, - "57": { - "id": 57, - "name": "Magic Bolt", - "description": "Shoots a bolt of force at the target. The bolt does 8-16 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "58": { - "id": 58, - "name": "Acid Stream I", - "description": "Shoots a stream of acid at the target. The stream does 16-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "117", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "59": { - "id": 59, - "name": "Acid Stream II", - "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "117", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "60": { - "id": 60, - "name": "Acid Stream III", - "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "117", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "61": { - "id": 61, - "name": "Acid Stream IV", - "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "62": { - "id": 62, - "name": "Acid Stream V", - "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "117", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "63": { - "id": 63, - "name": "Acid Stream VI", - "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "117", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "64": { - "id": 64, - "name": "Shock Wave I", - "description": "Shoots a shock wave at the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "118", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "65": { - "id": 65, - "name": "Shock Wave II", - "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "118", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "66": { - "id": 66, - "name": "Shock Wave III", - "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "118", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "67": { - "id": 67, - "name": "Shock Wave IV", - "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "68": { - "id": 68, - "name": "Shock Wave V", - "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "118", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "69": { - "id": 69, - "name": "Shock Wave VI", - "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "118", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "70": { - "id": 70, - "name": "Frost Bolt II", - "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "119", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "71": { - "id": 71, - "name": "Frost Bolt III", - "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "119", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "72": { - "id": 72, - "name": "Frost Bolt IV", - "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "73": { - "id": 73, - "name": "Frost Bolt V", - "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "119", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "74": { - "id": 74, - "name": "Frost Bolt VI", - "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "119", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "75": { - "id": 75, - "name": "Lightning Bolt I", - "description": "Shoots a bolt of lighting at the target. The bolt does 16-31 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "76": { - "id": 76, - "name": "Lightning Bolt II", - "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "120", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "77": { - "id": 77, - "name": "Lightning Bolt III", - "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "120", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "78": { - "id": 78, - "name": "Lightning Bolt IV", - "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "79": { - "id": 79, - "name": "Lightning Bolt V", - "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "120", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "80": { - "id": 80, - "name": "Lightning Bolt VI", - "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "120", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "81": { - "id": 81, - "name": "Flame Bolt II", - "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "121", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "82": { - "id": 82, - "name": "Flame Bolt III", - "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "121", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "83": { - "id": 83, - "name": "Flame Bolt IV", - "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "84": { - "id": 84, - "name": "Flame Bolt V", - "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "121", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "85": { - "id": 85, - "name": "Flame Bolt VI", - "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "121", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "86": { - "id": 86, - "name": "Force Bolt I", - "description": "Shoots a bolt of force at the target. The bolt does 16-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "87": { - "id": 87, - "name": "Force Bolt II", - "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "88": { - "id": 88, - "name": "Force Bolt III", - "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "122", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "89": { - "id": 89, - "name": "Force Bolt IV", - "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "90": { - "id": 90, - "name": "Force Bolt V", - "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "122", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "91": { - "id": 91, - "name": "Force Bolt VI", - "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "92": { - "id": 92, - "name": "Whirling Blade I", - "description": "Shoots a magical blade at the target. The bolt does 16-31 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "123", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "93": { - "id": 93, - "name": "Whirling Blade II", - "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "123", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "94": { - "id": 94, - "name": "Whirling Blade III", - "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "123", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "95": { - "id": 95, - "name": "Whirling Blade IV", - "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "96": { - "id": 96, - "name": "Whirling Blade V", - "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "123", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "97": { - "id": 97, - "name": "Whirling Blade VI", - "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "123", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "99": { - "id": 99, - "name": "Acid Blast III", - "description": "Shoots three streams of acid outward from the caster. Each stream does 15-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "100": { - "id": 100, - "name": "Acid Blast IV", - "description": "Shoots three streams of acid outward from the caster. Each stream does 20-40 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "131", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "101": { - "id": 101, - "name": "Acid Blast V", - "description": "Shoots three streams of acid outward from the caster. Each stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "131", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "102": { - "id": 102, - "name": "Acid Blast VI", - "description": "Shoots three streams of acid outward from the caster. Each stream does 34-69 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "131", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "103": { - "id": 103, - "name": "Shock Blast III", - "description": "Shoots three shock waves outward from the caster. Each wave does 15-31 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "132", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "104": { - "id": 104, - "name": "Shock Blast IV", - "description": "Shoots three shock waves outward from the caster. Each wave does 20-40 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "132", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "105": { - "id": 105, - "name": "Shock Blast V", - "description": "Shoots three shock waves outward from the caster. Each wave does 26-52 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "132", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "106": { - "id": 106, - "name": "Shock Blast VI", - "description": "Shoots three shock waves outward from the caster. Each wave does 34-69 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "132", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "107": { - "id": 107, - "name": "Frost Blast III", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 15-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "133", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "108": { - "id": 108, - "name": "Frost Blast IV", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 20-40 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "133", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "109": { - "id": 109, - "name": "Frost Blast V", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "133", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "110": { - "id": 110, - "name": "Frost Blast VI", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 34-69 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "133", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "111": { - "id": 111, - "name": "Lightning Blast III", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 15-31 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "112": { - "id": 112, - "name": "Lightning Blast IV", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 20-40 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "134", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "113": { - "id": 113, - "name": "Lightning Blast V", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 26-52 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "134", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "114": { - "id": 114, - "name": "Lightning Blast VI", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 34-69 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "134", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "115": { - "id": 115, - "name": "Flame Blast III", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 15-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "116": { - "id": 116, - "name": "Flame Blast IV", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 20-40 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "135", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "117": { - "id": 117, - "name": "Flame Blast V", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "135", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "118": { - "id": 118, - "name": "Flame Blast VI", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 34-69 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "135", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "119": { - "id": 119, - "name": "Force Blast III", - "description": "Shoots three force bolts outward from the caster. Each bolt does 15-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "120": { - "id": 120, - "name": "Force Blast IV", - "description": "Shoots three force bolts outward from the caster. Each bolt does 20-40 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "136", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "121": { - "id": 121, - "name": "Force Blast V", - "description": "Shoots three force bolts outward from the caster. Each bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "136", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "122": { - "id": 122, - "name": "Force Blast VI", - "description": "Shoots three force bolts outward from the caster. Each bolt does 34-69 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "136", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "123": { - "id": 123, - "name": "Blade Blast III", - "description": "Shoots three whirling blades outward from the caster. Each blade does 10-20 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "124": { - "id": 124, - "name": "Blade Blast IV", - "description": "Shoots three whirling blades outward from the caster. Each blade does 20-40 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "137", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "125": { - "id": 125, - "name": "Blade Blast V", - "description": "Shoots three whirling blades outward from the caster. Each blade does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "137", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "126": { - "id": 126, - "name": "Blade Blast VI", - "description": "Shoots three whirling blades outward from the caster. Each blade does 34-69 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "137", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "127": { - "id": 127, - "name": "Acid Volley III", - "description": "Shoots three streams of acid toward the target. Each stream does 15-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "128": { - "id": 128, - "name": "Acid Volley IV", - "description": "Shoots three streams of acid toward the target. Each stream does 20-40 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "207", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "129": { - "id": 129, - "name": "Acid Volley V", - "description": "Shoots three streams of acid toward the target. Each stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "207", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "130": { - "id": 130, - "name": "Acid Volley VI", - "description": "Shoots three streams of acid toward the target. Each stream does 34-69 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "207", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "131": { - "id": 131, - "name": "Bludgeoning Volley III", - "description": "Shoots three shock waves toward the target. Each wave does 15-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "208", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "132": { - "id": 132, - "name": "Bludgeoning Volley IV", - "description": "Shoots three shock waves toward the target. Each wave does 20-40 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "208", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "133": { - "id": 133, - "name": "Bludgeoning Volley V", - "description": "Shoots three shock waves toward the target. Each wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "208", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "134": { - "id": 134, - "name": "Bludgeoning Volley VI", - "description": "Shoots three shock waves toward the target. Each wave does 34-69 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "208", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "135": { - "id": 135, - "name": "Frost Volley III", - "description": "Shoots three bolts of frost toward the target. Each bolt does 15-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "209", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "136": { - "id": 136, - "name": "Frost Volley IV", - "description": "Shoots three bolts of frost toward the target. Each bolt does 20-40 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "209", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "137": { - "id": 137, - "name": "Frost Volley V", - "description": "Shoots three bolts of frost toward the target. Each bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "209", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "138": { - "id": 138, - "name": "Frost Volley VI", - "description": "Shoots three bolts of frost toward the target. Each bolt does 34-69 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "209", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "139": { - "id": 139, - "name": "Lightning Volley III", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 15-31 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "210", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "140": { - "id": 140, - "name": "Lightning Volley IV", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 20-40 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "210", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "141": { - "id": 141, - "name": "Lightning Volley V", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 26-52 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "210", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "142": { - "id": 142, - "name": "Lightning Volley VI", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 34-69 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "210", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "143": { - "id": 143, - "name": "Flame Volley III", - "description": "Shoots three bolts of flame toward the target. Each bolt does 15-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "211", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "144": { - "id": 144, - "name": "Flame Volley IV", - "description": "Shoots three bolts of flame toward the target. Each bolt does 20-40 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "211", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "145": { - "id": 145, - "name": "Flame Volley V", - "description": "Shoots three bolts of flame toward the target. Each bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "211", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "146": { - "id": 146, - "name": "Flame Volley VI", - "description": "Shoots three bolts of flame toward the target. Each bolt does 34-69 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "211", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "147": { - "id": 147, - "name": "Force Volley III", - "description": "Shoots three bolts of force toward the target. Each bolt does 15-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "212", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "148": { - "id": 148, - "name": "Force Volley IV", - "description": "Shoots three bolts of force toward the target. Each bolt does 20-40 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "212", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "149": { - "id": 149, - "name": "Force Volley V", - "description": "Shoots three bolts of force toward the target. Each bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "212", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "150": { - "id": 150, - "name": "Force Volley VI", - "description": "Shoots three bolts of force toward the target. Each bolt does 34-69 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "212", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "151": { - "id": 151, - "name": "Blade Volley III", - "description": "Shoots three whirling blades toward the target. Each blade does 15-31 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "213", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "152": { - "id": 152, - "name": "Blade Volley IV", - "description": "Shoots three whirling blades toward the target. Each blade does 20-40 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "213", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "153": { - "id": 153, - "name": "Blade Volley V", - "description": "Shoots three whirling blades toward the target. Each blade does 26-52 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "213", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "154": { - "id": 154, - "name": "Blade Volley VI", - "description": "Shoots three whirling blades toward the target. Each blade does 34-69 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "213", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "157": { - "id": 157, - "name": "Summon Primary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "158": { - "id": 158, - "name": "Summon Primary Portal II", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "90", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "159": { - "id": 159, - "name": "Regeneration Other I", - "description": "Increase target's natural healing rate by 10%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "93", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "160": { - "id": 160, - "name": "Regeneration Other II", - "description": "Increase target's natural healing rate by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "93", - "speed": "0.05", - "target_effect": "37", - "target_mask": "16" - }, - "161": { - "id": 161, - "name": "Regeneration Other III", - "description": "Increase target's natural healing rate by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "93", - "speed": "0.1", - "target_effect": "37", - "target_mask": "16" - }, - "162": { - "id": 162, - "name": "Regeneration Other IV", - "description": "Increase target's natural healing rate by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "163": { - "id": 163, - "name": "Regeneration Other V", - "description": "Increase target's natural healing rate by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "93", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "164": { - "id": 164, - "name": "Regeneration Other VI", - "description": "Increase target's natural healing rate by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "93", - "speed": "0.3", - "target_effect": "37", - "target_mask": "16" - }, - "165": { - "id": 165, - "name": "Regeneration Self I", - "description": "Increase caster's natural healing rate by 10%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "20", - "family": "93", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "166": { - "id": 166, - "name": "Regeneration Self II", - "description": "Increase caster's natural healing rate by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "93", - "speed": "0.05", - "target_effect": "37", - "target_mask": "16" - }, - "167": { - "id": 167, - "name": "Regeneration Self III", - "description": "Increase caster's natural healing rate by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "93", - "speed": "0.1", - "target_effect": "37", - "target_mask": "16" - }, - "168": { - "id": 168, - "name": "Regeneration Self IV", - "description": "Increase caster's natural healing rate by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "169": { - "id": 169, - "name": "Regeneration Self V", - "description": "Increase caster's natural healing rate by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "93", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "170": { - "id": 170, - "name": "Regeneration Self VI", - "description": "Increase caster's natural healing rate by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "93", - "speed": "0.3", - "target_effect": "37", - "target_mask": "16" - }, - "171": { - "id": 171, - "name": "Fester Other I", - "description": "Decrease target's natural healing rate by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "94", - "speed": "0.01", - "target_effect": "38", - "target_mask": "16" - }, - "172": { - "id": 172, - "name": "Fester Other II", - "description": "Decrease target's natural healing rate by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "94", - "speed": "0.05", - "target_effect": "38", - "target_mask": "16" - }, - "173": { - "id": 173, - "name": "Fester Other III", - "description": "Decrease target's natural healing rate by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "94", - "speed": "0.1", - "target_effect": "38", - "target_mask": "16" - }, - "174": { - "id": 174, - "name": "Fester Other IV", - "description": "Decrease target's natural healing rate by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "175": { - "id": 175, - "name": "Fester Other V", - "description": "Decrease target's natural healing rate by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "94", - "speed": "0.2", - "target_effect": "38", - "target_mask": "16" - }, - "176": { - "id": 176, - "name": "Fester Other VI", - "description": "Decrease target's natural healing rate by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "94", - "speed": "0.3", - "target_effect": "38", - "target_mask": "16" - }, - "178": { - "id": 178, - "name": "Fester Self I", - "description": "Decrease caster's natural healing rate by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "20", - "family": "94", - "speed": "0.01", - "target_effect": "38", - "target_mask": "16" - }, - "179": { - "id": 179, - "name": "Fester Self II", - "description": "Decrease caster's natural healing rate by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "94", - "speed": "0.05", - "target_effect": "38", - "target_mask": "16" - }, - "180": { - "id": 180, - "name": "Fester Self III", - "description": "Decrease caster's natural healing rate by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "94", - "speed": "0.1", - "target_effect": "38", - "target_mask": "16" - }, - "181": { - "id": 181, - "name": "Fester Self IV", - "description": "Decrease caster's natural healing rate by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "182": { - "id": 182, - "name": "Fester Self V", - "description": "Decrease caster's natural healing rate by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "94", - "speed": "0.2", - "target_effect": "38", - "target_mask": "16" - }, - "183": { - "id": 183, - "name": "Fester Self VI", - "description": "Decrease caster's natural healing rate by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "94", - "speed": "0.3", - "target_effect": "38", - "target_mask": "16" - }, - "184": { - "id": 184, - "name": "Rejuvenation Other II", - "description": "Increases the rate at which the target regains Stamina by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "95", - "speed": "0.05", - "target_effect": "41", - "target_mask": "16" - }, - "185": { - "id": 185, - "name": "Rejuvenation Other III", - "description": "Increases the rate at which the target regains Stamina by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "95", - "speed": "0.1", - "target_effect": "41", - "target_mask": "16" - }, - "186": { - "id": 186, - "name": "Rejuvenation Other IV", - "description": "Increases the rate at which the target regains Stamina by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "187": { - "id": 187, - "name": "Rejuvenation Other V", - "description": "Increases the rate at which the target regains Stamina by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "95", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "188": { - "id": 188, - "name": "Rejuvenation Other VI", - "description": "Increases the rate at which the target regains Stamina by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "95", - "speed": "0.3", - "target_effect": "41", - "target_mask": "16" - }, - "189": { - "id": 189, - "name": "Rejuvenation Self II", - "description": "Increases the rate at which the caster regains Stamina by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "95", - "speed": "0.05", - "target_effect": "41", - "target_mask": "16" - }, - "190": { - "id": 190, - "name": "Rejuvenation Self III", - "description": "Increases the rate at which the caster regains Stamina by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "95", - "speed": "0.1", - "target_effect": "41", - "target_mask": "16" - }, - "191": { - "id": 191, - "name": "Rejuvenation Self IV", - "description": "Increases the rate at which the caster regains Stamina by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "192": { - "id": 192, - "name": "Rejuvenation Self V", - "description": "Increases the rate at which the caster regains Stamina by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "95", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "193": { - "id": 193, - "name": "Rejuvenation Self VI", - "description": "Increases the rate at which the caster regains Stamina by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "95", - "speed": "0.3", - "target_effect": "41", - "target_mask": "16" - }, - "194": { - "id": 194, - "name": "Exhaustion Other I", - "description": "Decreases the rate at which the target regains Stamina by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "96", - "speed": "0.01", - "target_effect": "42", - "target_mask": "16" - }, - "195": { - "id": 195, - "name": "Exhaustion Other II", - "description": "Decreases the rate at which the target regains Stamina by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "96", - "speed": "0.05", - "target_effect": "42", - "target_mask": "16" - }, - "196": { - "id": 196, - "name": "Exhaustion Other III", - "description": "Decreases the rate at which the target regains Stamina by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "96", - "speed": "0.1", - "target_effect": "42", - "target_mask": "16" - }, - "197": { - "id": 197, - "name": "Exhaustion Other IV", - "description": "Decreases the rate at which the target regains Stamina by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "198": { - "id": 198, - "name": "Exhaustion Other V", - "description": "Decreases the rate at which the target regains Stamina by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "96", - "speed": "0.2", - "target_effect": "42", - "target_mask": "16" - }, - "199": { - "id": 199, - "name": "Exhaustion Other VI", - "description": "Decreases the rate at which the target regains Stamina by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "96", - "speed": "0.3", - "target_effect": "42", - "target_mask": "16" - }, - "200": { - "id": 200, - "name": "Exhaustion Self I", - "description": "Decreases the rate at which the caster regains Stamina by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "20", - "family": "96", - "speed": "0.01", - "target_effect": "42", - "target_mask": "16" - }, - "201": { - "id": 201, - "name": "Exhaustion Self II", - "description": "Decreases the rate at which the caster regains Stamina by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "96", - "speed": "0.05", - "target_effect": "42", - "target_mask": "16" - }, - "202": { - "id": 202, - "name": "Exhaustion Self III", - "description": "Decreases the rate at which the caster regains Stamina by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "96", - "speed": "0.1", - "target_effect": "42", - "target_mask": "16" - }, - "203": { - "id": 203, - "name": "Exhaustion Self IV", - "description": "Decreases the rate at which the caster regains Stamina by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "204": { - "id": 204, - "name": "Exhaustion Self V", - "description": "Decreases the rate at which the caster regains Stamina by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "96", - "speed": "0.2", - "target_effect": "42", - "target_mask": "16" - }, - "205": { - "id": 205, - "name": "Exhaustion Self VI", - "description": "Decreases the rate at which the caster regains Stamina by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "96", - "speed": "0.3", - "target_effect": "42", - "target_mask": "16" - }, - "206": { - "id": 206, - "name": "Mana Renewal Other I", - "description": "Increases the target's natural mana rate by 10%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "97", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "207": { - "id": 207, - "name": "Mana Renewal Other II", - "description": "Increases the target's natural mana rate by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "97", - "speed": "0.05", - "target_effect": "39", - "target_mask": "16" - }, - "208": { - "id": 208, - "name": "Mana Renewal Other III", - "description": "Increases the target's natural mana rate by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "97", - "speed": "0.1", - "target_effect": "39", - "target_mask": "16" - }, - "209": { - "id": 209, - "name": "Mana Renewal Other IV", - "description": "Increases the target's natural mana rate by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "210": { - "id": 210, - "name": "Mana Renewal Other V", - "description": "Increases the target's natural mana rate by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "97", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "211": { - "id": 211, - "name": "Mana Renewal Other VI", - "description": "Increases the target's natural mana rate by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "97", - "speed": "0.3", - "target_effect": "39", - "target_mask": "16" - }, - "212": { - "id": 212, - "name": "Mana Renewal Self I", - "description": "Increases the caster's natural mana rate by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "1800", - "mana": "20", - "family": "97", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "213": { - "id": 213, - "name": "Mana Renewal Self II", - "description": "Increases the caster's natural mana rate by 25%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "97", - "speed": "0.05", - "target_effect": "39", - "target_mask": "16" - }, - "214": { - "id": 214, - "name": "Mana Renewal Self III", - "description": "Increases the caster's natural mana rate by 40%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "97", - "speed": "0.1", - "target_effect": "39", - "target_mask": "16" - }, - "215": { - "id": 215, - "name": "Mana Renewal Self IV", - "description": "Increases the caster's natural mana rate by 55%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "216": { - "id": 216, - "name": "Mana Renewal Self V", - "description": "Increases the caster's natural mana rate by 70%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "97", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "217": { - "id": 217, - "name": "Mana Renewal Self VI", - "description": "Increases the caster's natural mana rate by 85%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "97", - "speed": "0.3", - "target_effect": "39", - "target_mask": "16" - }, - "218": { - "id": 218, - "name": "Mana Depletion Other I", - "description": "Decreases target's natural mana rate by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "98", - "speed": "0.01", - "target_effect": "40", - "target_mask": "16" - }, - "219": { - "id": 219, - "name": "Mana Depletion Other II", - "description": "Decreases target's natural mana rate by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "98", - "speed": "0.05", - "target_effect": "40", - "target_mask": "16" - }, - "220": { - "id": 220, - "name": "Mana Depletion Other III", - "description": "Decreases target's natural mana rate by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "98", - "speed": "0.1", - "target_effect": "40", - "target_mask": "16" - }, - "221": { - "id": 221, - "name": "Mana Depletion Other IV", - "description": "Decreases target's natural mana rate by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "222": { - "id": 222, - "name": "Mana Depletion Other V", - "description": "Decreases target's natural mana rate by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "98", - "speed": "0.2", - "target_effect": "40", - "target_mask": "16" - }, - "223": { - "id": 223, - "name": "Mana Depletion Other VI", - "description": "Decreases target's natural mana rate by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "98", - "speed": "0.3", - "target_effect": "40", - "target_mask": "16" - }, - "224": { - "id": 224, - "name": "Mana Depletion Self I", - "description": "Decreases caster's natural mana rate by 9%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "20", - "family": "98", - "speed": "0.01", - "target_effect": "40", - "target_mask": "16" - }, - "225": { - "id": 225, - "name": "Mana Depletion Self II", - "description": "Decreases caster's natural mana rate by 20%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "98", - "speed": "0.05", - "target_effect": "40", - "target_mask": "16" - }, - "226": { - "id": 226, - "name": "Mana Depletion Self III", - "description": "Decreases caster's natural mana rate by 29%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "98", - "speed": "0.1", - "target_effect": "40", - "target_mask": "16" - }, - "227": { - "id": 227, - "name": "Mana Depletion Self IV", - "description": "Decreases caster's natural mana rate by 35%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "228": { - "id": 228, - "name": "Mana Depletion Self V", - "description": "Decreases caster's natural mana rate by 41%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "98", - "speed": "0.2", - "target_effect": "40", - "target_mask": "16" - }, - "229": { - "id": 229, - "name": "Mana Depletion Self VI", - "description": "Decreases caster's natural mana rate by 46%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "98", - "speed": "0.3", - "target_effect": "40", - "target_mask": "16" - }, - "230": { - "id": 230, - "name": "Vulnerability Other II", - "description": "Decrease the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "38", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "231": { - "id": 231, - "name": "Vulnerability Other III", - "description": "Decrease the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "38", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "232": { - "id": 232, - "name": "Vulnerability Other IV", - "description": "Decrease the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "233": { - "id": 233, - "name": "Vulnerability Other V", - "description": "Decrease the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "38", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "234": { - "id": 234, - "name": "Vulnerability Other VI", - "description": "Decrease the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "38", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "235": { - "id": 235, - "name": "Vulnerability Self II", - "description": "Decrease the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "38", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "236": { - "id": 236, - "name": "Vulnerability Self III", - "description": "Decrease the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "38", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "237": { - "id": 237, - "name": "Vulnerability Self IV", - "description": "Decrease the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "238": { - "id": 238, - "name": "Vulnerability Self V", - "description": "Decrease the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "38", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "239": { - "id": 239, - "name": "Vulnerability Self VI", - "description": "Decrease the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "38", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "240": { - "id": 240, - "name": "Invulnerability Other II", - "description": "Increases the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "37", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "241": { - "id": 241, - "name": "Invulnerability Other III", - "description": "Increases the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "37", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "242": { - "id": 242, - "name": "Invulnerability Other IV", - "description": "Increases the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "243": { - "id": 243, - "name": "Invulnerability Other V", - "description": "Increases the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "37", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "244": { - "id": 244, - "name": "Invulnerability Other VI", - "description": "Increases the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "37", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "245": { - "id": 245, - "name": "Invulnerability Self II", - "description": "Increases the caster's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "37", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "246": { - "id": 246, - "name": "Invulnerability Self III", - "description": "Increases the caster's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "37", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "247": { - "id": 247, - "name": "Invulnerability Self IV", - "description": "Increases the caster's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "248": { - "id": 248, - "name": "Invulnerability Self V", - "description": "Increases the caster's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "37", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "249": { - "id": 249, - "name": "Invulnerability Self VI", - "description": "Increases the caster's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "37", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "250": { - "id": 250, - "name": "Impregnability Other I", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "39", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "251": { - "id": 251, - "name": "Impregnability Other II", - "description": "Increases the target's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "39", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "252": { - "id": 252, - "name": "Impregnability Other III", - "description": "Increases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "39", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "253": { - "id": 253, - "name": "Impregnability Other IV", - "description": "Increases the target's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "254": { - "id": 254, - "name": "Impregnability Other V", - "description": "Increases the target's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "39", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "255": { - "id": 255, - "name": "Impregnability Other VI", - "description": "Increases the target's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "39", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "256": { - "id": 256, - "name": "Impregnability Self I", - "description": "Increases the caster's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "39", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "257": { - "id": 257, - "name": "Impregnability Self II", - "description": "Increases the caster's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "39", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "258": { - "id": 258, - "name": "Impregnability Self III", - "description": "Increases the caster's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "39", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "259": { - "id": 259, - "name": "Impregnability Self IV", - "description": "Increases the caster's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "260": { - "id": 260, - "name": "Impregnability Self V", - "description": "Increases the caster's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "39", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "261": { - "id": 261, - "name": "Impregnability Self VI", - "description": "Increases the caster's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "39", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "262": { - "id": 262, - "name": "Defenselessness Other I", - "description": "Decreases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "40", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "263": { - "id": 263, - "name": "Defenselessness Other II", - "description": "Decreases the target's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "40", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "264": { - "id": 264, - "name": "Defenselessness Other III", - "description": "Decreases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "40", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "265": { - "id": 265, - "name": "Defenselessness Other IV", - "description": "Decreases the target's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "266": { - "id": 266, - "name": "Defenselessness Other V", - "description": "Decreases the target's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "40", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "267": { - "id": 267, - "name": "Defenselessness Other VI", - "description": "Decreases the target's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "40", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "268": { - "id": 268, - "name": "Magic Resistance Other I", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "41", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "269": { - "id": 269, - "name": "Magic Resistance Other II", - "description": "Increases the target's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "41", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "270": { - "id": 270, - "name": "Magic Resistance Other III", - "description": "Increases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "41", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "271": { - "id": 271, - "name": "Magic Resistance Other IV", - "description": "Increases the target's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "272": { - "id": 272, - "name": "Magic Resistance Other V", - "description": "Increases the target's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "41", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "273": { - "id": 273, - "name": "Magic Resistance Other VI", - "description": "Increases the target's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "41", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "274": { - "id": 274, - "name": "Magic Resistance Self I", - "description": "Increases the caster's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "41", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "275": { - "id": 275, - "name": "Magic Resistance Self II", - "description": "Increases the caster's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "41", - "speed": "0.05", - "target_effect": "22", - "target_mask": "16" - }, - "276": { - "id": 276, - "name": "Magic Resistance Self III", - "description": "Increases the caster's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "41", - "speed": "0.1", - "target_effect": "22", - "target_mask": "16" - }, - "277": { - "id": 277, - "name": "Magic Resistance Self IV", - "description": "Increases the caster's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "278": { - "id": 278, - "name": "Magic Resistance Self V", - "description": "Increases the caster's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "41", - "speed": "0.2", - "target_effect": "22", - "target_mask": "16" - }, - "279": { - "id": 279, - "name": "Magic Resistance Self VI", - "description": "Increases the caster's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "41", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "280": { - "id": 280, - "name": "Magic Yield Other I", - "description": "Decreases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "42", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "281": { - "id": 281, - "name": "Magic Yield Other II", - "description": "Decreases the target's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "42", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "282": { - "id": 282, - "name": "Magic Yield Other III", - "description": "Decreases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "42", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "283": { - "id": 283, - "name": "Magic Yield Other IV", - "description": "Decreases the target's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "284": { - "id": 284, - "name": "Magic Yield Other V", - "description": "Decreases the target's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "42", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "285": { - "id": 285, - "name": "Magic Yield Other VI", - "description": "Decreases the target's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "42", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "286": { - "id": 286, - "name": "Magic Yield Self I", - "description": "Decreases the caster's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "42", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "287": { - "id": 287, - "name": "Magic Yield Self II", - "description": "Decreases the caster's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "42", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "288": { - "id": 288, - "name": "Magic Yield Self III", - "description": "Decreases the caster's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "42", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "289": { - "id": 289, - "name": "Magic Yield Self IV", - "description": "Decreases the caster's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "290": { - "id": 290, - "name": "Magic Yield Self V", - "description": "Decreases the caster's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "42", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "291": { - "id": 291, - "name": "Magic Yield Self VI", - "description": "Decreases the caster's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "42", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "292": { - "id": 292, - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "293": { - "id": 293, - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "294": { - "id": 294, - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "295": { - "id": 295, - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "296": { - "id": 296, - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "297": { - "id": 297, - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "298": { - "id": 298, - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "299": { - "id": 299, - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "300": { - "id": 300, - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "301": { - "id": 301, - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "302": { - "id": 302, - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "303": { - "id": 303, - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "304": { - "id": 304, - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "305": { - "id": 305, - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "306": { - "id": 306, - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "307": { - "id": 307, - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "308": { - "id": 308, - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "309": { - "id": 309, - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "310": { - "id": 310, - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "311": { - "id": 311, - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "312": { - "id": 312, - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "313": { - "id": 313, - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "314": { - "id": 314, - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "315": { - "id": 315, - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "316": { - "id": 316, - "name": "Finesse Weapon Mastery Other I", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "23", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "317": { - "id": 317, - "name": "Finesse Weapon Mastery Other II", - "description": "Increases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "23", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "318": { - "id": 318, - "name": "Finesse Weapon Mastery Other III", - "description": "Increases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "23", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "319": { - "id": 319, - "name": "Finesse Weapon Mastery Other IV", - "description": "Increases the target's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "320": { - "id": 320, - "name": "Finesse Weapon Mastery Other V", - "description": "Increases the target's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "23", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "321": { - "id": 321, - "name": "Finesse Weapon Mastery Other VI", - "description": "Increases the target's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "23", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "322": { - "id": 322, - "name": "Finesse Weapon Mastery Self I", - "description": "Increases the caster's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "23", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "323": { - "id": 323, - "name": "Finesse Weapon Mastery Self II", - "description": "Increases the caster's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "23", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "324": { - "id": 324, - "name": "Finesse Weapon Mastery Self III", - "description": "Increases the caster's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "23", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "325": { - "id": 325, - "name": "Finesse Weapon Mastery Self IV", - "description": "Increases the caster's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "326": { - "id": 326, - "name": "Finesse Weapon Mastery Self V", - "description": "Increases the caster's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "23", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "327": { - "id": 327, - "name": "Finesse Weapon Mastery Self VI", - "description": "Increases the caster's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "23", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "328": { - "id": 328, - "name": "Finesse Weapon Ineptitude Other I", - "description": "Decreases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "24", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "329": { - "id": 329, - "name": "Finesse Weapon Ineptitude Other II", - "description": "Decreases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "24", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "330": { - "id": 330, - "name": "Finesse Weapon Ineptitude Other III", - "description": "Decreases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "24", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "331": { - "id": 331, - "name": "Finesse Weapon Ineptitude Other IV", - "description": "Decreases the target's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "332": { - "id": 332, - "name": "Finesse Weapon Ineptitude Other V", - "description": "Decreases the target's Finesse Weapon skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "24", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "333": { - "id": 333, - "name": "Finesse Weapon Ineptitude Other VI", - "description": "Decreases the target's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "24", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "334": { - "id": 334, - "name": "Finesse Weapon Ineptitude Self I", - "description": "Decreases the caster's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "24", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "335": { - "id": 335, - "name": "Finesse Weapon Ineptitude Self II", - "description": "Decreases the caster's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "24", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "336": { - "id": 336, - "name": "Finesse Weapon Ineptitude Self III", - "description": "Decreases the caster's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "24", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "337": { - "id": 337, - "name": "Finesse Weapon Ineptitude Self IV", - "description": "Decreases the caster's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "338": { - "id": 338, - "name": "Finesse Weapon Ineptitude Self V", - "description": "Decreases the caster's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "24", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "339": { - "id": 339, - "name": "Finesse Weapon Ineptitude Self VI", - "description": "Decreases the caster's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "24", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "340": { - "id": 340, - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "341": { - "id": 341, - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "342": { - "id": 342, - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "343": { - "id": 343, - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "344": { - "id": 344, - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "345": { - "id": 345, - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "346": { - "id": 346, - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "347": { - "id": 347, - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "348": { - "id": 348, - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "349": { - "id": 349, - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "350": { - "id": 350, - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "351": { - "id": 351, - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "352": { - "id": 352, - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "353": { - "id": 353, - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "354": { - "id": 354, - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "355": { - "id": 355, - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "356": { - "id": 356, - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "357": { - "id": 357, - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "358": { - "id": 358, - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "359": { - "id": 359, - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "360": { - "id": 360, - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "361": { - "id": 361, - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "362": { - "id": 362, - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "363": { - "id": 363, - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "364": { - "id": 364, - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "365": { - "id": 365, - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "366": { - "id": 366, - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "367": { - "id": 367, - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "368": { - "id": 368, - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "369": { - "id": 369, - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "370": { - "id": 370, - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "371": { - "id": 371, - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "372": { - "id": 372, - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "373": { - "id": 373, - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "374": { - "id": 374, - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "375": { - "id": 375, - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "376": { - "id": 376, - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "377": { - "id": 377, - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "378": { - "id": 378, - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "379": { - "id": 379, - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "380": { - "id": 380, - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "381": { - "id": 381, - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "382": { - "id": 382, - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "383": { - "id": 383, - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "384": { - "id": 384, - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "385": { - "id": 385, - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "386": { - "id": 386, - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "387": { - "id": 387, - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "388": { - "id": 388, - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "389": { - "id": 389, - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "390": { - "id": 390, - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "391": { - "id": 391, - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "392": { - "id": 392, - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "393": { - "id": 393, - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "394": { - "id": 394, - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "395": { - "id": 395, - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "396": { - "id": 396, - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "397": { - "id": 397, - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "398": { - "id": 398, - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "399": { - "id": 399, - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "400": { - "id": 400, - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "401": { - "id": 401, - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "402": { - "id": 402, - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "403": { - "id": 403, - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "404": { - "id": 404, - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "405": { - "id": 405, - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "406": { - "id": 406, - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "407": { - "id": 407, - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "408": { - "id": 408, - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "409": { - "id": 409, - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "410": { - "id": 410, - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "411": { - "id": 411, - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "412": { - "id": 412, - "name": "Heavy Weapon Mastery Other I", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "31", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "413": { - "id": 413, - "name": "Heavy Weapon Mastery Other II", - "description": "Increases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "31", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "414": { - "id": 414, - "name": "Heavy Weapon Mastery Other III", - "description": "Increases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "31", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "415": { - "id": 415, - "name": "Heavy Weapon Mastery Other IV", - "description": "Increases the target's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "416": { - "id": 416, - "name": "Heavy Weapon Mastery Other V", - "description": "Increases the target's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "31", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "417": { - "id": 417, - "name": "Heavy Weapon Mastery Other VI", - "description": "Increases the target's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "31", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "418": { - "id": 418, - "name": "Heavy Weapon Mastery Self I", - "description": "Increases the caster's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "31", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "419": { - "id": 419, - "name": "Heavy Weapon Mastery Self II", - "description": "Increases the caster's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "31", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "420": { - "id": 420, - "name": "Heavy Weapon Mastery Self III", - "description": "Increases the caster's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "31", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "421": { - "id": 421, - "name": "Heavy Weapon Mastery Self IV", - "description": "Increases the caster's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "422": { - "id": 422, - "name": "Heavy Weapon Mastery Self V", - "description": "Increases the caster's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "31", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "423": { - "id": 423, - "name": "Heavy Weapon Mastery Self VI", - "description": "Increases the caster's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "31", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "424": { - "id": 424, - "name": "Heavy Weapon Ineptitude Other I", - "description": "Decreases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "32", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "425": { - "id": 425, - "name": "Heavy Weapon Ineptitude Other II", - "description": "Decreases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "32", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "426": { - "id": 426, - "name": "Heavy Weapon Ineptitude Other III", - "description": "Decreases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "32", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "427": { - "id": 427, - "name": "Heavy Weapon Ineptitude Other IV", - "description": "Decreases the target's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "428": { - "id": 428, - "name": "Heavy Weapon Ineptitude Other V", - "description": "Decreases the target's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "32", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "429": { - "id": 429, - "name": "Heavy Weapon Ineptitude Other VI", - "description": "Decreases the target's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "32", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "430": { - "id": 430, - "name": "Heavy Weapon Ineptitude Self I", - "description": "Decreases the caster's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "32", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "431": { - "id": 431, - "name": "Heavy Weapon Ineptitude Self II", - "description": "Decreases the caster's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "32", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "432": { - "id": 432, - "name": "Heavy Weapon Ineptitude Self III", - "description": "Decreases the caster's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "32", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "433": { - "id": 433, - "name": "Heavy Weapon Ineptitude Self IV", - "description": "Decreases the caster's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "435": { - "id": 435, - "name": "Heavy Weapon Ineptitude Self V", - "description": "Decreases the caster's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "32", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "436": { - "id": 436, - "name": "Heavy Weapon Ineptitude Self VI", - "description": "Decreases the caster's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "32", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "437": { - "id": 437, - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "438": { - "id": 438, - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "439": { - "id": 439, - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "440": { - "id": 440, - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "441": { - "id": 441, - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "442": { - "id": 442, - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "443": { - "id": 443, - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "17", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "444": { - "id": 444, - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "17", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "445": { - "id": 445, - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "17", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "446": { - "id": 446, - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "447": { - "id": 447, - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "17", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "448": { - "id": 448, - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "17", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "449": { - "id": 449, - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "450": { - "id": 450, - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "451": { - "id": 451, - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "452": { - "id": 452, - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "453": { - "id": 453, - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "454": { - "id": 454, - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "455": { - "id": 455, - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "18", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "456": { - "id": 456, - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "18", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "457": { - "id": 457, - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "18", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "458": { - "id": 458, - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "459": { - "id": 459, - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "18", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "460": { - "id": 460, - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "18", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "461": { - "id": 461, - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "462": { - "id": 462, - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "463": { - "id": 463, - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "464": { - "id": 464, - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "465": { - "id": 465, - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "466": { - "id": 466, - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "467": { - "id": 467, - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "468": { - "id": 468, - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "469": { - "id": 469, - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "470": { - "id": 470, - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "471": { - "id": 471, - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "472": { - "id": 472, - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "473": { - "id": 473, - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "474": { - "id": 474, - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "475": { - "id": 475, - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "476": { - "id": 476, - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "477": { - "id": 477, - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "478": { - "id": 478, - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "479": { - "id": 479, - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "480": { - "id": 480, - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "481": { - "id": 481, - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "482": { - "id": 482, - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "483": { - "id": 483, - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "484": { - "id": 484, - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "485": { - "id": 485, - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "486": { - "id": 486, - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "487": { - "id": 487, - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "488": { - "id": 488, - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "489": { - "id": 489, - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "490": { - "id": 490, - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "491": { - "id": 491, - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "492": { - "id": 492, - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "493": { - "id": 493, - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "494": { - "id": 494, - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "495": { - "id": 495, - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "496": { - "id": 496, - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "497": { - "id": 497, - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "498": { - "id": 498, - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "499": { - "id": 499, - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "500": { - "id": 500, - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "501": { - "id": 501, - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "502": { - "id": 502, - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "503": { - "id": 503, - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "504": { - "id": 504, - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "505": { - "id": 505, - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "506": { - "id": 506, - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "507": { - "id": 507, - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "508": { - "id": 508, - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "509": { - "id": 509, - "name": "Acid Protection Other I", - "description": "Reduces damage the target takes from acid by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "101", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "510": { - "id": 510, - "name": "Acid Protection Other II", - "description": "Reduces damage the target takes from acid by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "101", - "speed": "0.05", - "target_effect": "49", - "target_mask": "16" - }, - "511": { - "id": 511, - "name": "Acid Protection Other III", - "description": "Reduces damage the target takes from acid by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "101", - "speed": "0.1", - "target_effect": "49", - "target_mask": "16" - }, - "512": { - "id": 512, - "name": "Acid Protection Other IV", - "description": "Reduces damage the target takes from acid by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "513": { - "id": 513, - "name": "Acid Protection Other V", - "description": "Reduces damage the target takes from acid by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "101", - "speed": "0.2", - "target_effect": "49", - "target_mask": "16" - }, - "514": { - "id": 514, - "name": "Acid Protection Other VI", - "description": "Reduces damage the target takes from acid by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "101", - "speed": "0.3", - "target_effect": "49", - "target_mask": "16" - }, - "515": { - "id": 515, - "name": "Acid Protection Self I", - "description": "Reduces damage the caster takes from acid by 9%", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "101", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "516": { - "id": 516, - "name": "Acid Protection Self II", - "description": "Reduces damage the caster takes from acid by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "101", - "speed": "0.05", - "target_effect": "49", - "target_mask": "16" - }, - "517": { - "id": 517, - "name": "Acid Protection Self III", - "description": "Reduces damage the caster takes from acid by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "101", - "speed": "0.1", - "target_effect": "49", - "target_mask": "16" - }, - "518": { - "id": 518, - "name": "Acid Protection Self IV", - "description": "Reduces damage the caster takes from acid by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "519": { - "id": 519, - "name": "Acid Protection Self V", - "description": "Reduces damage the caster takes from acid by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "101", - "speed": "0.2", - "target_effect": "49", - "target_mask": "16" - }, - "520": { - "id": 520, - "name": "Acid Protection Self VI", - "description": "Reduces damage the caster takes from acid by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "101", - "speed": "0.3", - "target_effect": "49", - "target_mask": "16" - }, - "521": { - "id": 521, - "name": "Acid Vulnerability Other I", - "description": "Increases damage the target takes from acid by 10%", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "102", - "speed": "0.01", - "target_effect": "50", - "target_mask": "16" - }, - "522": { - "id": 522, - "name": "Acid Vulnerability Other II", - "description": "Increases damage the target takes from acid by 25%", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "102", - "speed": "0.05", - "target_effect": "50", - "target_mask": "16" - }, - "523": { - "id": 523, - "name": "Acid Vulnerability Other III", - "description": "Increases damage the target takes from acid by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "102", - "speed": "0.1", - "target_effect": "50", - "target_mask": "16" - }, - "524": { - "id": 524, - "name": "Acid Vulnerability Other IV", - "description": "Increases damage the target takes from acid by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "525": { - "id": 525, - "name": "Acid Vulnerability Other V", - "description": "Increases damage the target takes from acid by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "102", - "speed": "0.2", - "target_effect": "50", - "target_mask": "16" - }, - "526": { - "id": 526, - "name": "Acid Vulnerability Other VI", - "description": "Increases damage the target takes from acid by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "102", - "speed": "0.3", - "target_effect": "50", - "target_mask": "16" - }, - "527": { - "id": 527, - "name": "Acid Vulnerability Self I", - "description": "Increases damage the caster takes from acid by 10%", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "102", - "speed": "0.01", - "target_effect": "50", - "target_mask": "16" - }, - "528": { - "id": 528, - "name": "Acid Vulnerability Self II", - "description": "Increases damage the caster takes from acid by 25%", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "102", - "speed": "0.05", - "target_effect": "50", - "target_mask": "16" - }, - "529": { - "id": 529, - "name": "Acid Vulnerability Self III", - "description": "Increases damage the caster takes from acid by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "102", - "speed": "0.1", - "target_effect": "50", - "target_mask": "16" - }, - "530": { - "id": 530, - "name": "Acid Vulnerability Self IV", - "description": "Increases damage the caster takes from acid by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "531": { - "id": 531, - "name": "Acid Vulnerability Self V", - "description": "Increases damage the caster takes from acid by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "102", - "speed": "0.2", - "target_effect": "50", - "target_mask": "16" - }, - "532": { - "id": 532, - "name": "Acid Vulnerability Self VI", - "description": "Increases damage the caster takes from acid by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "102", - "speed": "0.3", - "target_effect": "50", - "target_mask": "16" - }, - "533": { - "id": 533, - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "534": { - "id": 534, - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "535": { - "id": 535, - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "536": { - "id": 536, - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "537": { - "id": 537, - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "538": { - "id": 538, - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "539": { - "id": 539, - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "19", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "540": { - "id": 540, - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "19", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "541": { - "id": 541, - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "19", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "542": { - "id": 542, - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "543": { - "id": 543, - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "19", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "544": { - "id": 544, - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "545": { - "id": 545, - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "546": { - "id": 546, - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "547": { - "id": 547, - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "548": { - "id": 548, - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "549": { - "id": 549, - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "550": { - "id": 550, - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "551": { - "id": 551, - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "20", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "552": { - "id": 552, - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "20", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "553": { - "id": 553, - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "20", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "554": { - "id": 554, - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "555": { - "id": 555, - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "20", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "556": { - "id": 556, - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "20", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "557": { - "id": 557, - "name": "Creature Enchantment Mastery Self I", - "description": "Increases the caster's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "558": { - "id": 558, - "name": "Creature Enchantment Mastery Self II", - "description": "Increases the caster's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "43", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "559": { - "id": 559, - "name": "Creature Enchantment Mastery Self III", - "description": "Increases the caster's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "43", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "560": { - "id": 560, - "name": "Creature Enchantment Mastery Self IV", - "description": "Increases the caster's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "561": { - "id": 561, - "name": "Creature Enchantment Mastery Self V", - "description": "Increases the caster's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "43", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "562": { - "id": 562, - "name": "Creature Enchantment Mastery Self VI", - "description": "Increases the caster's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "43", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "563": { - "id": 563, - "name": "Creature Enchantment Mastery Other I", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "564": { - "id": 564, - "name": "Creature Enchantment Mastery Other II", - "description": "Increases the target's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "43", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "565": { - "id": 565, - "name": "Creature Enchantment Mastery Other III", - "description": "Increases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "43", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "566": { - "id": 566, - "name": "Creature Enchantment Mastery Other IV", - "description": "Increases the target's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "567": { - "id": 567, - "name": "Creature Enchantment Mastery Other V", - "description": "Increases the target's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "43", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "568": { - "id": 568, - "name": "Creature Enchantment Mastery Other VI", - "description": "Increases the target's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "43", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "569": { - "id": 569, - "name": "Creature Enchantment Ineptitude Other I", - "description": "Decreases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "44", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "570": { - "id": 570, - "name": "Creature Enchantment Ineptitude Other II", - "description": "Decreases the target's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "44", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "571": { - "id": 571, - "name": "Creature Enchantment Ineptitude Other III", - "description": "Decreases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "44", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "572": { - "id": 572, - "name": "Creature Enchantment Ineptitude Other IV", - "description": "Decreases the target's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "573": { - "id": 573, - "name": "Creature Enchantment Ineptitude Other V", - "description": "Decreases the target's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "44", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "574": { - "id": 574, - "name": "Creature Enchantment Ineptitude Other VI", - "description": "Decreases the target's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "44", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "575": { - "id": 575, - "name": "Creature Enchantment Ineptitude Self I", - "description": "Decreases the caster's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "44", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "576": { - "id": 576, - "name": "Creature Enchantment Ineptitude Self II", - "description": "Decreases the caster's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "44", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "577": { - "id": 577, - "name": "Creature Enchantment Ineptitude Self III", - "description": "Decreases the caster's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "44", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "578": { - "id": 578, - "name": "Creature Enchantment Ineptitude Self IV", - "description": "Decreases the caster's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "579": { - "id": 579, - "name": "Creature Enchantment Ineptitude Self V", - "description": "Decreases the caster's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "44", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "580": { - "id": 580, - "name": "Creature Enchantment Ineptitude Self VI", - "description": "Decreases the caster's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "44", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "581": { - "id": 581, - "name": "Item Enchantment Mastery Self I", - "description": "Increases the caster's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "582": { - "id": 582, - "name": "Item Enchantment Mastery Self II", - "description": "Increases the caster's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "45", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "583": { - "id": 583, - "name": "Item Enchantment Mastery Self III", - "description": "Increases the caster's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "45", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "584": { - "id": 584, - "name": "Item Enchantment Mastery Self IV", - "description": "Increases the caster's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "585": { - "id": 585, - "name": "Item Enchantment Mastery Self V", - "description": "Increases the caster's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "45", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "586": { - "id": 586, - "name": "Item Enchantment Mastery Self VI", - "description": "Increases the caster's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "45", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "587": { - "id": 587, - "name": "Item Enchantment Mastery Other I", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "588": { - "id": 588, - "name": "Item Enchantment Mastery Other II", - "description": "Increases the target's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "45", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "589": { - "id": 589, - "name": "Item Enchantment Mastery Other III", - "description": "Increases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "45", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "590": { - "id": 590, - "name": "Item Enchantment Mastery Other IV", - "description": "Increases the target's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "591": { - "id": 591, - "name": "Item Enchantment Mastery Other V", - "description": "Increases the target's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "45", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "592": { - "id": 592, - "name": "Item Enchantment Mastery Other VI", - "description": "Increases the target's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "45", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "593": { - "id": 593, - "name": "Item Enchantment Ineptitude Other I", - "description": "Decreases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "46", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "594": { - "id": 594, - "name": "Item Enchantment Ineptitude Other II", - "description": "Decreases the target's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "46", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "595": { - "id": 595, - "name": "Item Enchantment Ineptitude Other III", - "description": "Decreases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "46", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "596": { - "id": 596, - "name": "Item Enchantment Ineptitude Other IV", - "description": "Decreases the target's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "597": { - "id": 597, - "name": "Item Enchantment Ineptitude Other V", - "description": "Decreases the target's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "46", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "598": { - "id": 598, - "name": "Item Enchantment Ineptitude Other VI", - "description": "Decreases the target's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "46", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "599": { - "id": 599, - "name": "Item Enchantment Ineptitude Self I", - "description": "Decreases the caster's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "46", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "600": { - "id": 600, - "name": "Item Enchantment Ineptitude Self II", - "description": "Decreases the caster's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "46", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "601": { - "id": 601, - "name": "Item Enchantment Ineptitude Self III", - "description": "Decreases the caster's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "46", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "602": { - "id": 602, - "name": "Item Enchantment Ineptitude Self IV", - "description": "Decreases the caster's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "603": { - "id": 603, - "name": "Item Enchantment Ineptitude Self V", - "description": "Decreases the caster's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "46", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "604": { - "id": 604, - "name": "Item Enchantment Ineptitude Self VI", - "description": "Decreases the caster's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "46", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "605": { - "id": 605, - "name": "Life Magic Mastery Self I", - "description": "Increases the caster's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "606": { - "id": 606, - "name": "Life Magic Mastery Self II", - "description": "Increases the caster's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "47", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "607": { - "id": 607, - "name": "Life Magic Mastery Self III", - "description": "Increases the caster's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "47", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "608": { - "id": 608, - "name": "Life Magic Mastery Self IV", - "description": "Increases the caster's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "609": { - "id": 609, - "name": "Life Magic Mastery Self V", - "description": "Increases the caster's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "47", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "610": { - "id": 610, - "name": "Life Magic Mastery Self VI", - "description": "Increases the caster's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "47", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "611": { - "id": 611, - "name": "Life Magic Mastery Other I", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "612": { - "id": 612, - "name": "Life Magic Mastery Other II", - "description": "Increases the target's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "47", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "613": { - "id": 613, - "name": "Life Magic Mastery Other III", - "description": "Increases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "47", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "614": { - "id": 614, - "name": "Life Magic Mastery Other IV", - "description": "Increases the target's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "615": { - "id": 615, - "name": "Life Magic Mastery Other V", - "description": "Increases the target's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "47", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "616": { - "id": 616, - "name": "Life Magic Mastery Other VI", - "description": "Increases the target's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "47", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "617": { - "id": 617, - "name": "Life Magic Ineptitude Self I", - "description": "Decreases the caster's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "48", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "618": { - "id": 618, - "name": "Life Magic Ineptitude Self II", - "description": "Decreases the caster's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "48", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "619": { - "id": 619, - "name": "Life Magic Ineptitude Self III", - "description": "Decreases the caster's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "48", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "620": { - "id": 620, - "name": "Life Magic Ineptitude Self IV", - "description": "Decreases the caster's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "621": { - "id": 621, - "name": "Life Magic Ineptitude Self V", - "description": "Decreases the caster's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "48", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "622": { - "id": 622, - "name": "Life Magic Ineptitude Self VI", - "description": "Decreases the caster's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "48", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "623": { - "id": 623, - "name": "Life Magic Ineptitude Other I", - "description": "Decreases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "48", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "624": { - "id": 624, - "name": "Life Magic Ineptitude Other II", - "description": "Decreases the target's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "10", - "family": "48", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "625": { - "id": 625, - "name": "Life Magic Ineptitude Other III", - "description": "Decreases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "48", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "626": { - "id": 626, - "name": "Life Magic Ineptitude Other IV", - "description": "Decreases the target's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "627": { - "id": 627, - "name": "Life Magic Ineptitude Other V", - "description": "Decreases the target's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "48", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "628": { - "id": 628, - "name": "Life Magic Ineptitude Other VI", - "description": "Decreases the target's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "48", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "629": { - "id": 629, - "name": "War Magic Mastery Self I", - "description": "Increases the caster's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "630": { - "id": 630, - "name": "War Magic Mastery Self II", - "description": "Increases the caster's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "49", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "631": { - "id": 631, - "name": "War Magic Mastery Self III", - "description": "Increases the caster's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "49", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "632": { - "id": 632, - "name": "War Magic Mastery Self IV", - "description": "Increases the caster's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "633": { - "id": 633, - "name": "War Magic Mastery Self V", - "description": "Increases the caster's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "49", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "634": { - "id": 634, - "name": "War Magic Mastery Self VI", - "description": "Increases the caster's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "49", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "635": { - "id": 635, - "name": "War Magic Mastery Other I", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "636": { - "id": 636, - "name": "War Magic Mastery Other II", - "description": "Increases the target's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "49", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "637": { - "id": 637, - "name": "War Magic Mastery Other III", - "description": "Increases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "49", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "638": { - "id": 638, - "name": "War Magic Mastery Other IV", - "description": "Increases the target's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "639": { - "id": 639, - "name": "War Magic Mastery Other V", - "description": "Increases the target's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "49", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "640": { - "id": 640, - "name": "War Magic Mastery Other VI", - "description": "Increases the target's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "49", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "641": { - "id": 641, - "name": "War Magic Ineptitude Self I", - "description": "Decreases the caster's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "50", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "642": { - "id": 642, - "name": "War Magic Ineptitude Self II", - "description": "Decreases the caster's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "50", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "643": { - "id": 643, - "name": "War Magic Ineptitude Self III", - "description": "Decreases the caster's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "50", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "644": { - "id": 644, - "name": "War Magic Ineptitude Self IV", - "description": "Decreases the caster's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "645": { - "id": 645, - "name": "War Magic Ineptitude Self V", - "description": "Decreases the caster's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "50", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "646": { - "id": 646, - "name": "War Magic Ineptitude Self VI", - "description": "Decreases the caster's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "50", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "647": { - "id": 647, - "name": "War Magic Ineptitude Other I", - "description": "Decreases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "50", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "648": { - "id": 648, - "name": "War Magic Ineptitude Other II", - "description": "Decreases the target's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "50", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "649": { - "id": 649, - "name": "War Magic Ineptitude Other III", - "description": "Decreases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "50", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "650": { - "id": 650, - "name": "War Magic Ineptitude Other IV", - "description": "Decreases the target's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "651": { - "id": 651, - "name": "War Magic Ineptitude Other V", - "description": "Decreases the target's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "50", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "652": { - "id": 652, - "name": "War Magic Ineptitude Other VI", - "description": "Decreases the target's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "50", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "653": { - "id": 653, - "name": "Mana Conversion Mastery Self I", - "description": "Increases the caster's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "654": { - "id": 654, - "name": "Mana Conversion Mastery Self II", - "description": "Increases the caster's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "51", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "655": { - "id": 655, - "name": "Mana Conversion Mastery Self III", - "description": "Increases the caster's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "51", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "656": { - "id": 656, - "name": "Mana Conversion Mastery Self IV", - "description": "Increases the caster's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "657": { - "id": 657, - "name": "Mana Conversion Mastery Self V", - "description": "Increases the caster's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "51", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "658": { - "id": 658, - "name": "Mana Conversion Mastery Self VI", - "description": "Increases the caster's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "51", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "659": { - "id": 659, - "name": "Mana Conversion Mastery Other I", - "description": "Increases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "660": { - "id": 660, - "name": "Mana Conversion Mastery Other II", - "description": "Increases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "51", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "661": { - "id": 661, - "name": "Mana Conversion Mastery Other III", - "description": "Increases the target's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "51", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "662": { - "id": 662, - "name": "Mana Conversion Mastery Other IV", - "description": "Increases the target's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "663": { - "id": 663, - "name": "Mana Conversion Mastery Other V", - "description": "Increases the target's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "51", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "664": { - "id": 664, - "name": "Mana Conversion Mastery Other VI", - "description": "Increases the target's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "51", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "665": { - "id": 665, - "name": "Mana Conversion Ineptitude Self I", - "description": "Decreases the caster's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "52", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "666": { - "id": 666, - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "-1", - "mana": "3", - "family": "204", - "speed": "0.6", - "target_effect": "0", - "target_mask": "16" - }, - "667": { - "id": 667, - "name": "Mana Conversion Ineptitude Self II", - "description": "Decreases the caster's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "52", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "668": { - "id": 668, - "name": "Mana Conversion Ineptitude Self III", - "description": "Decreases the caster's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "52", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "669": { - "id": 669, - "name": "Mana Conversion Ineptitude Self IV", - "description": "Decreases the caster's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "670": { - "id": 670, - "name": "Mana Conversion Ineptitude Self V", - "description": "Decreases the caster's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "52", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "671": { - "id": 671, - "name": "Mana Conversion Ineptitude Self VI", - "description": "Decreases the caster's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "52", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "672": { - "id": 672, - "name": "Mana Conversion Ineptitude Other I", - "description": "Decreases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "52", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "673": { - "id": 673, - "name": "Mana Conversion Ineptitude Other II", - "description": "Decreases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "52", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "674": { - "id": 674, - "name": "Mana Conversion Ineptitude Other III", - "description": "Decreases the target's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "52", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "675": { - "id": 675, - "name": "Mana Conversion Ineptitude Other IV", - "description": "Decreases the target's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "676": { - "id": 676, - "name": "Mana Conversion Ineptitude Other V", - "description": "Decreases the target's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "52", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "677": { - "id": 677, - "name": "Mana Conversion Ineptitude Other VI", - "description": "Decreases the target's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "52", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "678": { - "id": 678, - "name": "Arcane Enlightenment Self I", - "description": "Increases the caster's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "53", - "speed": "0", - "target_effect": "26", - "target_mask": "16" - }, - "679": { - "id": 679, - "name": "Arcane Enlightenment Self II", - "description": "Increases the caster's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "53", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "680": { - "id": 680, - "name": "Arcane Enlightenment Self III", - "description": "Increases the caster's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "53", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "681": { - "id": 681, - "name": "Arcane Enlightenment Self IV", - "description": "Increases the caster's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "682": { - "id": 682, - "name": "Arcane Enlightenment Self V", - "description": "Increases the caster's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "53", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "683": { - "id": 683, - "name": "Arcane Enlightenment Self VI", - "description": "Increases the caster's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "53", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "684": { - "id": 684, - "name": "Arcane Enlightenment Other I", - "description": "Increases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "53", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "685": { - "id": 685, - "name": "Arcane Enlightenment Other II", - "description": "Increases the target's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "53", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "686": { - "id": 686, - "name": "Arcane Enlightenment Other III", - "description": "Increases the target's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "53", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "687": { - "id": 687, - "name": "Arcane Enlightenment Other IV", - "description": "Increases the target's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "688": { - "id": 688, - "name": "Arcane Enlightenment Other V", - "description": "Increases the target's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "53", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "689": { - "id": 689, - "name": "Arcane Enlightenment Other VI", - "description": "Increases the target's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "53", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "690": { - "id": 690, - "name": "Arcane Benightedness Self I", - "description": "Decreases the caster's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "54", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "691": { - "id": 691, - "name": "Arcane Benightedness Self II", - "description": "Decreases the caster's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "54", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "692": { - "id": 692, - "name": "Arcane Benightedness Self III", - "description": "Decreases the caster's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "54", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "693": { - "id": 693, - "name": "Arcane Benightedness Self IV", - "description": "Decreases the caster's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "694": { - "id": 694, - "name": "Arcane Benightedness Self V", - "description": "Decreases the caster's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "54", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "695": { - "id": 695, - "name": "Arcane Benightedness Self VI", - "description": "Decreases the caster's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "54", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "696": { - "id": 696, - "name": "Arcane Benightedness Other I", - "description": "Decreases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "54", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "697": { - "id": 697, - "name": "Arcane Benightedness Other II", - "description": "Decreases the target's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "54", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "698": { - "id": 698, - "name": "Arcane Benightedness Other III", - "description": "Decreases the target's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "54", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "699": { - "id": 699, - "name": "Arcane Benightedness Other IV", - "description": "Decreases the target's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "700": { - "id": 700, - "name": "Arcane Benightedness Other V", - "description": "Decreases the target's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "54", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "701": { - "id": 701, - "name": "Arcane Benightedness Other VI", - "description": "Decreases the target's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "54", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "702": { - "id": 702, - "name": "Armor Tinkering Expertise Self I", - "description": "Increases the caster's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "55", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "703": { - "id": 703, - "name": "Armor Tinkering Expertise Self II", - "description": "Increases the caster's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "55", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "704": { - "id": 704, - "name": "Armor Tinkering Expertise Self III", - "description": "Increases the caster's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "55", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "705": { - "id": 705, - "name": "Armor Tinkering Expertise Self IV", - "description": "Increases the caster's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "706": { - "id": 706, - "name": "Armor Tinkering Expertise Self V", - "description": "Increases the caster's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "55", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "707": { - "id": 707, - "name": "Armor Tinkering Expertise Self VI", - "description": "Increases the caster's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "55", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "708": { - "id": 708, - "name": "Armor Tinkering Expertise Other I", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "55", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "709": { - "id": 709, - "name": "Armor Tinkering Expertise Other II", - "description": "Increases the target's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "55", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "710": { - "id": 710, - "name": "Armor Tinkering Expertise Other III", - "description": "Increases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "55", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "711": { - "id": 711, - "name": "Armor Tinkering Expertise Other IV", - "description": "Increases the target's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "712": { - "id": 712, - "name": "Armor Tinkering Expertise Other V", - "description": "Increases the target's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "55", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "713": { - "id": 713, - "name": "Armor Tinkering Expertise Other VI", - "description": "Increases the target's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "55", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "714": { - "id": 714, - "name": "Armor Tinkering Ignorance Self I", - "description": "Decreases the caster's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "56", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "715": { - "id": 715, - "name": "Armor Tinkering Ignorance Self II", - "description": "Decreases the caster's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "56", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "716": { - "id": 716, - "name": "Armor Tinkering Ignorance Self III", - "description": "Decreases the caster's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "56", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "717": { - "id": 717, - "name": "Armor Tinkering Ignorance Self IV", - "description": "Decreases the caster's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "718": { - "id": 718, - "name": "Armor Tinkering Ignorance Self V", - "description": "Decreases the caster's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "56", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "719": { - "id": 719, - "name": "Armor Tinkering Ignorance Self VI", - "description": "Decreases the caster's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "56", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "720": { - "id": 720, - "name": "Armor Tinkering Ignorance Other I", - "description": "Decreases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "56", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "721": { - "id": 721, - "name": "Armor Tinkering Ignorance Other II", - "description": "Decreases the target's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "56", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "722": { - "id": 722, - "name": "Armor Tinkering Ignorance Other III", - "description": "Decreases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "56", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "723": { - "id": 723, - "name": "Armor Tinkering Ignorance Other IV", - "description": "Decreases the target's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "724": { - "id": 724, - "name": "Armor Tinkering Ignorance Other V", - "description": "Decreases the target's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "56", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "725": { - "id": 725, - "name": "Armor Tinkering Ignorance Other VI", - "description": "Decreases the target's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "56", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "726": { - "id": 726, - "name": "Item Tinkering Expertise Self I", - "description": "Increases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "57", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "727": { - "id": 727, - "name": "Item Tinkering Expertise Self II", - "description": "Increases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "57", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "728": { - "id": 728, - "name": "Item Tinkering Expertise Self III", - "description": "Increases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "57", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "729": { - "id": 729, - "name": "Item Tinkering Expertise Self IV", - "description": "Increases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "730": { - "id": 730, - "name": "Item Tinkering Expertise Self V", - "description": "Increases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "57", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "731": { - "id": 731, - "name": "Item Tinkering Expertise Self VI", - "description": "Increases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "57", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "732": { - "id": 732, - "name": "Item Tinkering Expertise Other I", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "57", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "733": { - "id": 733, - "name": "Item Tinkering Expertise Other II", - "description": "Increases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "57", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "734": { - "id": 734, - "name": "Item Tinkering Expertise Other III", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "57", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "735": { - "id": 735, - "name": "Item Tinkering Expertise Other IV", - "description": "Increases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "736": { - "id": 736, - "name": "Item Tinkering Expertise Other V", - "description": "Increases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "57", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "737": { - "id": 737, - "name": "Item Tinkering Expertise Other VI", - "description": "Increases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "57", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "738": { - "id": 738, - "name": "Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "58", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "739": { - "id": 739, - "name": "Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "58", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "740": { - "id": 740, - "name": "Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "58", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "741": { - "id": 741, - "name": "Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "742": { - "id": 742, - "name": "Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "58", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "743": { - "id": 743, - "name": "Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "58", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "744": { - "id": 744, - "name": "Item Tinkering Ignorance Other I", - "description": "Decreases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "58", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "745": { - "id": 745, - "name": "Item Tinkering Ignorance Other II", - "description": "Decreases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "58", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "746": { - "id": 746, - "name": "Item Tinkering Ignorance Other III", - "description": "Decreases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "58", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "747": { - "id": 747, - "name": "Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "748": { - "id": 748, - "name": "Item Tinkering Ignorance Other V", - "description": "Decreases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "58", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "749": { - "id": 749, - "name": "Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "58", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "750": { - "id": 750, - "name": "Magic Item Tinkering Expertise Self I", - "description": "Increases the caster's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "59", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "751": { - "id": 751, - "name": "Magic Item Tinkering Expertise Self II", - "description": "Increases the caster's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "59", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "752": { - "id": 752, - "name": "Magic Item Tinkering Expertise Self III", - "description": "Increases the caster's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "59", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "753": { - "id": 753, - "name": "Magic Item Tinkering Expertise Self IV", - "description": "Increases the caster's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "754": { - "id": 754, - "name": "Magic Item Tinkering Expertise Self V", - "description": "Increases the caster's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "59", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "755": { - "id": 755, - "name": "Magic Item Tinkering Expertise Self VI", - "description": "Increases the caster's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "59", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "756": { - "id": 756, - "name": "Magic Item Tinkering Expertise Other I", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "59", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "757": { - "id": 757, - "name": "Magic Item Tinkering Expertise Other II", - "description": "Increases the target's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "59", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "758": { - "id": 758, - "name": "Magic Item Tinkering Expertise Other III", - "description": "Increases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "1800", - "mana": "30", - "family": "59", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "759": { - "id": 759, - "name": "Magic Item Tinkering Expertise Other IV", - "description": "Increases the target's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "1800", - "mana": "40", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "760": { - "id": 760, - "name": "Magic Item Tinkering Expertise Other V", - "description": "Increases the target's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "59", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "761": { - "id": 761, - "name": "Magic Item Tinkering Expertise Other VI", - "description": "Increases the target's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "59", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "762": { - "id": 762, - "name": "Magic Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "60", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "763": { - "id": 763, - "name": "Magic Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "60", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "764": { - "id": 764, - "name": "Magic Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "60", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "765": { - "id": 765, - "name": "Magic Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "766": { - "id": 766, - "name": "Magic Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "60", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "767": { - "id": 767, - "name": "Magic Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "60", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "768": { - "id": 768, - "name": "Magic Item Tinkering Ignorance Other I", - "description": "Decreases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "60", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "769": { - "id": 769, - "name": "Magic Item Tinkering Ignorance Other II", - "description": "Decreases the target's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "60", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "770": { - "id": 770, - "name": "Magic Item Tinkering Ignorance Other III", - "description": "Decreases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "60", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "771": { - "id": 771, - "name": "Magic Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "772": { - "id": 772, - "name": "Magic Item Tinkering Ignorance Other V", - "description": "Decreases the target's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "60", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "773": { - "id": 773, - "name": "Magic Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "60", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "774": { - "id": 774, - "name": "Weapon Tinkering Expertise Self I", - "description": "Increases the caster's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "61", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "775": { - "id": 775, - "name": "Weapon Tinkering Expertise Self II", - "description": "Increases the caster's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "61", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "776": { - "id": 776, - "name": "Weapon Tinkering Expertise Self III", - "description": "Increases the caster's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "61", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "777": { - "id": 777, - "name": "Weapon Tinkering Expertise Self IV", - "description": "Increases the caster's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "778": { - "id": 778, - "name": "Weapon Tinkering Expertise Self V", - "description": "Increases the caster's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "61", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "779": { - "id": 779, - "name": "Weapon Tinkering Expertise Self VI", - "description": "Increases the caster's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "61", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "780": { - "id": 780, - "name": "Weapon Tinkering Expertise Other I", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "61", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "781": { - "id": 781, - "name": "Weapon Tinkering Expertise Other II", - "description": "Increases the target's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "61", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "782": { - "id": 782, - "name": "Weapon Tinkering Expertise Other III", - "description": "Increases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "61", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "783": { - "id": 783, - "name": "Weapon Tinkering Expertise Other IV", - "description": "Increases the target's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "784": { - "id": 784, - "name": "Weapon Tinkering Expertise Other V", - "description": "Increases the target's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "61", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "785": { - "id": 785, - "name": "Weapon Tinkering Expertise Other VI", - "description": "Increases the target's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "61", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "786": { - "id": 786, - "name": "Weapon Tinkering Ignorance Self I", - "description": "Decreases the caster's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "62", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "787": { - "id": 787, - "name": "Weapon Tinkering Ignorance Self II", - "description": "Decreases the caster's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "62", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "788": { - "id": 788, - "name": "Weapon Tinkering Ignorance Self III", - "description": "Decreases the caster's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "62", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "789": { - "id": 789, - "name": "Weapon Tinkering Ignorance Self IV", - "description": "Decreases the caster's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "790": { - "id": 790, - "name": "Weapon Tinkering Ignorance Self V", - "description": "Decreases the caster's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "62", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "791": { - "id": 791, - "name": "Weapon Tinkering Ignorance Self VI", - "description": "Decreases the caster's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "62", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "792": { - "id": 792, - "name": "Weapon Tinkering Ignorance Other I", - "description": "Decreases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "62", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "793": { - "id": 793, - "name": "Weapon Tinkering Ignorance Other II", - "description": "Decreases the target's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "62", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "794": { - "id": 794, - "name": "Weapon Tinkering Ignorance Other III", - "description": "Decreases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "62", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "795": { - "id": 795, - "name": "Weapon Tinkering Ignorance Other IV", - "description": "Decreases the target's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "796": { - "id": 796, - "name": "Weapon Tinkering Ignorance Other V", - "description": "Decreases the target's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "62", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "797": { - "id": 797, - "name": "Weapon Tinkering Ignorance Other VI", - "description": "Decreases the target's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "62", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "798": { - "id": 798, - "name": "Monster Attunement Self I", - "description": "Increases the caster's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "63", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "799": { - "id": 799, - "name": "Monster Attunement Self II", - "description": "Increases the caster's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "63", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "800": { - "id": 800, - "name": "Monster Attunement Self III", - "description": "Increases the caster's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "63", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "801": { - "id": 801, - "name": "Monster Attunement Self IV", - "description": "Increases the caster's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "802": { - "id": 802, - "name": "Monster Attunement Self V", - "description": "Increases the caster's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "63", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "803": { - "id": 803, - "name": "Monster Attunement Self VI", - "description": "Increases the caster's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "63", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "804": { - "id": 804, - "name": "Monster Attunement Other I", - "description": "Increases the target's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "63", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "805": { - "id": 805, - "name": "Monster Attunement Other II", - "description": "Increases the target's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "63", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "806": { - "id": 806, - "name": "Monster Attunement Other III", - "description": "Increases the target's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "63", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "807": { - "id": 807, - "name": "Monster Attunement Other IV", - "description": "Increases the target's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "808": { - "id": 808, - "name": "Monster Attunement Other V", - "description": "Increases the target's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "63", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "809": { - "id": 809, - "name": "Monster Attunement Other VI", - "description": "Increases the target's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "63", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "810": { - "id": 810, - "name": "Fire Protection Other II", - "description": "Reduces damage the target takes from fire by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "109", - "speed": "0.05", - "target_effect": "43", - "target_mask": "16" - }, - "811": { - "id": 811, - "name": "Monster Unfamiliarity Self I", - "description": "Decreases the caster's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "64", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "812": { - "id": 812, - "name": "Monster Unfamiliarity Self II", - "description": "Decreases the caster's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "64", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "813": { - "id": 813, - "name": "Monster Unfamiliarity Self III", - "description": "Decreases the caster's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "64", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "814": { - "id": 814, - "name": "Monster Unfamiliarity Self IV", - "description": "Decreases the caster's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "815": { - "id": 815, - "name": "Monster Unfamiliarity Self V", - "description": "Decreases the caster's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "64", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "816": { - "id": 816, - "name": "Monster Unfamiliarity Self VI", - "description": "Decreases the caster's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "64", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "817": { - "id": 817, - "name": "Monster Unfamiliarity Other I", - "description": "Decreases the target's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "64", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "818": { - "id": 818, - "name": "Monster Unfamiliarity Other II", - "description": "Decreases the target's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "64", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "819": { - "id": 819, - "name": "Monster Unfamiliarity Other III", - "description": "Decreases the target's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "64", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "820": { - "id": 820, - "name": "Monster Unfamiliarity Other IV", - "description": "Decreases the target's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "821": { - "id": 821, - "name": "Monster Unfamiliarity Other V", - "description": "Decreases the target's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "64", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "822": { - "id": 822, - "name": "Monster Unfamiliarity Other VI", - "description": "Decreases the target's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "64", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "824": { - "id": 824, - "name": "Person Attunement Self I", - "description": "Increases the caster's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "205", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "825": { - "id": 825, - "name": "Person Attunement Self II", - "description": "Increases the caster's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "205", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "826": { - "id": 826, - "name": "Person Attunement Self III", - "description": "Increases the caster's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "205", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "827": { - "id": 827, - "name": "Person Attunement Self IV", - "description": "Increases the caster's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "828": { - "id": 828, - "name": "Person Attunement Self V", - "description": "Increases the caster's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "205", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "829": { - "id": 829, - "name": "Person Attunement Self VI", - "description": "Increases the caster's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "205", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "830": { - "id": 830, - "name": "Person Attunement Other I", - "description": "Increases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "205", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "831": { - "id": 831, - "name": "Person Attunement Other II", - "description": "Increases the target's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "205", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "832": { - "id": 832, - "name": "Person Attunement Other III", - "description": "Increases the target's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "205", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "833": { - "id": 833, - "name": "Person Attunement Other IV", - "description": "Increases the target's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "834": { - "id": 834, - "name": "Person Attunement Other V", - "description": "Increases the target's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "205", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "835": { - "id": 835, - "name": "Person Attunement Other VI", - "description": "Increases the target's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "205", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "836": { - "id": 836, - "name": "Fire Protection Other III", - "description": "Reduces damage the target takes from fire by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "109", - "speed": "0.1", - "target_effect": "43", - "target_mask": "16" - }, - "837": { - "id": 837, - "name": "Person Unfamiliarity Self I", - "description": "Decreases the caster's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "206", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "838": { - "id": 838, - "name": "Person Unfamiliarity Self II", - "description": "Decreases the caster's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "206", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "839": { - "id": 839, - "name": "Person Unfamiliarity Self III", - "description": "Decreases the caster's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "206", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "840": { - "id": 840, - "name": "Person Unfamiliarity Self IV", - "description": "Decreases the caster's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "841": { - "id": 841, - "name": "Person Unfamiliarity Self V", - "description": "Decreases the caster's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "206", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "842": { - "id": 842, - "name": "Person Unfamiliarity Self VI", - "description": "Decreases the caster's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "206", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "843": { - "id": 843, - "name": "Person Unfamiliarity Other I", - "description": "Decreases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "206", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "844": { - "id": 844, - "name": "Person Unfamiliarity Other II", - "description": "Decreases the target's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "206", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "845": { - "id": 845, - "name": "Person Unfamiliarity Other III", - "description": "Decreases the target's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "206", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "846": { - "id": 846, - "name": "Person Unfamiliarity Other IV", - "description": "Decreases the target's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "847": { - "id": 847, - "name": "Person Unfamiliarity Other V", - "description": "Decreases the target's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "206", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "848": { - "id": 848, - "name": "Person Unfamiliarity Other VI", - "description": "Decreases the target's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "206", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "849": { - "id": 849, - "name": "Fire Protection Other IV", - "description": "Reduces damage the target takes from fire by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "850": { - "id": 850, - "name": "Deception Mastery Self I", - "description": "Increases the caster's Deception skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "65", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "851": { - "id": 851, - "name": "Deception Mastery Self II", - "description": "Increases the caster's Deception skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "65", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "852": { - "id": 852, - "name": "Deception Mastery Self III", - "description": "Increases the caster's Deception skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "65", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "853": { - "id": 853, - "name": "Deception Mastery Self IV", - "description": "Increases the caster's Deception skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "854": { - "id": 854, - "name": "Deception Mastery Self V", - "description": "Increases the caster's Deception skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "65", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "855": { - "id": 855, - "name": "Deception Mastery Self VI", - "description": "Increases the caster's Deception skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "65", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "856": { - "id": 856, - "name": "Deception Mastery Other I", - "description": "Increases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "65", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "857": { - "id": 857, - "name": "Deception Mastery Other II", - "description": "Increases the target's Deception skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "65", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "858": { - "id": 858, - "name": "Deception Mastery Other III", - "description": "Increases the target's Deception skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "65", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "859": { - "id": 859, - "name": "Deception Mastery Other IV", - "description": "Increases the target's Deception skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "860": { - "id": 860, - "name": "Deception Mastery Other V", - "description": "Increases the target's Deception skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "65", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "861": { - "id": 861, - "name": "Deception Mastery Other VI", - "description": "Increases the target's Deception skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "65", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "862": { - "id": 862, - "name": "Deception Ineptitude Self I", - "description": "Decreases the caster's Deception skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "66", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "863": { - "id": 863, - "name": "Deception Ineptitude Self II", - "description": "Decreases the caster's Deception skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "66", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "864": { - "id": 864, - "name": "Deception Ineptitude Self III", - "description": "Decreases the caster's Deception skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "66", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "865": { - "id": 865, - "name": "Deception Ineptitude Self IV", - "description": "Decreases the caster's Deception skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "866": { - "id": 866, - "name": "Deception Ineptitude Self V", - "description": "Decreases the caster's Deception skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "66", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "867": { - "id": 867, - "name": "Deception Ineptitude Self VI", - "description": "Decreases the caster's Deception skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "66", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "868": { - "id": 868, - "name": "Deception Ineptitude Other I", - "description": "Decreases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "66", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "869": { - "id": 869, - "name": "Deception Ineptitude Other II", - "description": "Decreases the target's Deception skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "66", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "870": { - "id": 870, - "name": "Deception Ineptitude Other III", - "description": "Decreases the target's Deception skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "66", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "871": { - "id": 871, - "name": "Deception Ineptitude Other IV", - "description": "Decreases the target's Deception skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "872": { - "id": 872, - "name": "Deception Ineptitude Other V", - "description": "Decreases the target's Deception skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "66", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "873": { - "id": 873, - "name": "Deception Ineptitude Other VI", - "description": "Decreases the target's Deception skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "66", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "874": { - "id": 874, - "name": "Healing Mastery Self I", - "description": "Increases the caster's Healing skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "67", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "875": { - "id": 875, - "name": "Healing Mastery Self II", - "description": "Increases the caster's Healing skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "67", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "876": { - "id": 876, - "name": "Healing Mastery Self III", - "description": "Increases the caster's Healing skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "67", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "877": { - "id": 877, - "name": "Healing Mastery Self IV", - "description": "Increases the caster's Healing skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "878": { - "id": 878, - "name": "Healing Mastery Self V", - "description": "Increases the caster's Healing skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "67", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "879": { - "id": 879, - "name": "Healing Mastery Self VI", - "description": "Increases the caster's Healing skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "67", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "880": { - "id": 880, - "name": "Healing Mastery Other I", - "description": "Increases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "67", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "881": { - "id": 881, - "name": "Healing Mastery Other II", - "description": "Increases the target's Healing skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "67", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "882": { - "id": 882, - "name": "Healing Mastery Other III", - "description": "Increases the target's Healing skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "67", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "883": { - "id": 883, - "name": "Healing Mastery Other IV", - "description": "Increases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "884": { - "id": 884, - "name": "Healing Mastery Other V", - "description": "Increases the target's Healing skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "67", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "885": { - "id": 885, - "name": "Healing Mastery Other VI", - "description": "Increases the target's Healing skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "67", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "886": { - "id": 886, - "name": "Healing Ineptitude Self I", - "description": "Decreases the caster's Healing skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "68", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "887": { - "id": 887, - "name": "Healing Ineptitude Self II", - "description": "Decreases the caster's Healing skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "68", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "888": { - "id": 888, - "name": "Healing Ineptitude Self III", - "description": "Decreases the caster's Healing skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "68", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "889": { - "id": 889, - "name": "Healing Ineptitude Self IV", - "description": "Decreases the caster's Healing skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "890": { - "id": 890, - "name": "Healing Ineptitude Self V", - "description": "Decreases the caster's Healing skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "68", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "891": { - "id": 891, - "name": "Healing Ineptitude Self VI", - "description": "Decreases the caster's Healing skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "68", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "892": { - "id": 892, - "name": "Healing Ineptitude Other I", - "description": "Decreases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "68", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "893": { - "id": 893, - "name": "Healing Ineptitude Other II", - "description": "Decreases the target's Healing skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "68", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "894": { - "id": 894, - "name": "Healing Ineptitude Other III", - "description": "Decreases the target's Healing skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "68", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "895": { - "id": 895, - "name": "Healing Ineptitude Other IV", - "description": "Decreases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "896": { - "id": 896, - "name": "Healing Ineptitude Other V", - "description": "Decreases the target's Healing skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "68", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "897": { - "id": 897, - "name": "Healing Ineptitude Other VI", - "description": "Decreases the target's Healing skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "68", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "898": { - "id": 898, - "name": "Leadership Mastery Self I", - "description": "Increases the caster's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "71", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "899": { - "id": 899, - "name": "Leadership Mastery Self II", - "description": "Increases the caster's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "1800", - "mana": "20", - "family": "71", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "900": { - "id": 900, - "name": "Leadership Mastery Self III", - "description": "Increases the caster's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "1800", - "mana": "30", - "family": "71", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "901": { - "id": 901, - "name": "Leadership Mastery Self IV", - "description": "Increases the caster's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "1800", - "mana": "40", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "902": { - "id": 902, - "name": "Leadership Mastery Self V", - "description": "Increases the caster's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "71", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "903": { - "id": 903, - "name": "Leadership Mastery Self VI", - "description": "Increases the caster's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "71", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "904": { - "id": 904, - "name": "Leadership Mastery Other I", - "description": "Increases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "71", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "905": { - "id": 905, - "name": "Leadership Mastery Other II", - "description": "Increases the target's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "71", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "906": { - "id": 906, - "name": "Leadership Mastery Other III", - "description": "Increases the target's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "71", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "907": { - "id": 907, - "name": "Leadership Mastery Other IV", - "description": "Increases the target's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "908": { - "id": 908, - "name": "Leadership Mastery Other V", - "description": "Increases the target's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "71", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "909": { - "id": 909, - "name": "Leadership Mastery Other VI", - "description": "Increases the target's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "71", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "910": { - "id": 910, - "name": "Leadership Ineptitude Self I", - "description": "Decreases the caster's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "72", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "911": { - "id": 911, - "name": "Leadership Ineptitude Self II", - "description": "Decreases the caster's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "72", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "912": { - "id": 912, - "name": "Leadership Ineptitude Self III", - "description": "Decreases the caster's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "72", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "913": { - "id": 913, - "name": "Leadership Ineptitude Self IV", - "description": "Decreases the caster's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "914": { - "id": 914, - "name": "Leadership Ineptitude Self V", - "description": "Decreases the caster's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "72", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "915": { - "id": 915, - "name": "Leadership Ineptitude Self VI", - "description": "Decreases the caster's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "72", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "916": { - "id": 916, - "name": "Leadership Ineptitude Other I", - "description": "Decreases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "72", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "917": { - "id": 917, - "name": "Leadership Ineptitude Other II", - "description": "Decreases the target's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "72", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "918": { - "id": 918, - "name": "Leadership Ineptitude Other III", - "description": "Decreases the target's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "72", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "919": { - "id": 919, - "name": "Leadership Ineptitude Other IV", - "description": "Decreases the target's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "920": { - "id": 920, - "name": "Leadership Ineptitude Other V", - "description": "Decreases the target's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "72", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "921": { - "id": 921, - "name": "Leadership Ineptitude Other VI", - "description": "Decreases the target's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "72", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "922": { - "id": 922, - "name": "Lockpick Mastery Self I", - "description": "Increases the caster's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "73", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "923": { - "id": 923, - "name": "Lockpick Mastery Self II", - "description": "Increases the caster's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "73", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "924": { - "id": 924, - "name": "Lockpick Mastery Self III", - "description": "Increases the caster's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "73", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "925": { - "id": 925, - "name": "Lockpick Mastery Self IV", - "description": "Increases the caster's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "926": { - "id": 926, - "name": "Lockpick Mastery Self V", - "description": "Increases the caster's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "73", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "927": { - "id": 927, - "name": "Lockpick Mastery Self VI", - "description": "Increases the caster's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "73", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "928": { - "id": 928, - "name": "Lockpick Mastery Other I", - "description": "Increases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "73", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "929": { - "id": 929, - "name": "Lockpick Mastery Other II", - "description": "Increases the target's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "73", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "930": { - "id": 930, - "name": "Lockpick Mastery Other III", - "description": "Increases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "73", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "931": { - "id": 931, - "name": "Lockpick Mastery Other IV", - "description": "Increases the target's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "932": { - "id": 932, - "name": "Lockpick Mastery Other V", - "description": "Increases the target's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "73", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "933": { - "id": 933, - "name": "Lockpick Mastery Other VI", - "description": "Increases the target's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "73", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "934": { - "id": 934, - "name": "Lockpick Ineptitude Self I", - "description": "Decreases the caster's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "74", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "935": { - "id": 935, - "name": "Lockpick Ineptitude Self II", - "description": "Decreases the caster's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "74", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "936": { - "id": 936, - "name": "Lockpick Ineptitude Self III", - "description": "Decreases the caster's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "74", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "937": { - "id": 937, - "name": "Lockpick Ineptitude Self IV", - "description": "Decreases the caster's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "938": { - "id": 938, - "name": "Lockpick Ineptitude Self V", - "description": "Decreases the caster's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "74", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "939": { - "id": 939, - "name": "Lockpick Ineptitude Self VI", - "description": "Decreases the caster's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "74", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "940": { - "id": 940, - "name": "Lockpick Ineptitude Other I", - "description": "Decreases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "74", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "941": { - "id": 941, - "name": "Lockpick Ineptitude Other II", - "description": "Decreases the target's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "74", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "942": { - "id": 942, - "name": "Lockpick Ineptitude Other III", - "description": "Decreases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "74", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "943": { - "id": 943, - "name": "Lockpick Ineptitude Other IV", - "description": "Decreases the target's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "944": { - "id": 944, - "name": "Lockpick Ineptitude Other V", - "description": "Decreases the target's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "74", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "945": { - "id": 945, - "name": "Lockpick Ineptitude Other VI", - "description": "Decreases the target's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "74", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "946": { - "id": 946, - "name": "Fealty Self I", - "description": "Increases the caster's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "75", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "947": { - "id": 947, - "name": "Fealty Self II", - "description": "Increases the caster's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "75", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "948": { - "id": 948, - "name": "Fealty Self III", - "description": "Increases the caster's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "75", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "949": { - "id": 949, - "name": "Fealty Self IV", - "description": "Increases the caster's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "950": { - "id": 950, - "name": "Fealty Self V", - "description": "Increases the caster's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "75", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "951": { - "id": 951, - "name": "Fealty Self VI", - "description": "Increases the caster's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "75", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "952": { - "id": 952, - "name": "Fealty Other I", - "description": "Increases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "75", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "953": { - "id": 953, - "name": "Fealty Other II", - "description": "Increases the target's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "75", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "954": { - "id": 954, - "name": "Fealty Other III", - "description": "Increases the target's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "75", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "955": { - "id": 955, - "name": "Fealty Other IV", - "description": "Increases the target's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "956": { - "id": 956, - "name": "Fealty Other V", - "description": "Increases the target's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "75", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "957": { - "id": 957, - "name": "Fealty Other VI", - "description": "Increases the target's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "75", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "958": { - "id": 958, - "name": "Faithlessness Self I", - "description": "Decreases the caster's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "76", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "959": { - "id": 959, - "name": "Faithlessness Self II", - "description": "Decreases the caster's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "76", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "960": { - "id": 960, - "name": "Faithlessness Self III", - "description": "Decreases the caster's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "76", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "961": { - "id": 961, - "name": "Faithlessness Self IV", - "description": "Decreases the caster's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "962": { - "id": 962, - "name": "Faithlessness Self V", - "description": "Decreases the caster's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "76", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "963": { - "id": 963, - "name": "Faithlessness Self VI", - "description": "Decreases the caster's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "76", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "964": { - "id": 964, - "name": "Faithlessness Other I", - "description": "Decreases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "76", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "965": { - "id": 965, - "name": "Faithlessness Other II", - "description": "Decreases the target's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "76", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "966": { - "id": 966, - "name": "Faithlessness Other III", - "description": "Decreases the target's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "76", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "967": { - "id": 967, - "name": "Faithlessness Other IV", - "description": "Decreases the target's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "968": { - "id": 968, - "name": "Faithlessness Other V", - "description": "Decreases the target's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "76", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "969": { - "id": 969, - "name": "Faithlessness Other VI", - "description": "Decreases the target's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "76", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "970": { - "id": 970, - "name": "Jumping Mastery Self I", - "description": "Increases the caster's Jump skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "69", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "971": { - "id": 971, - "name": "Jumping Mastery Self II", - "description": "Increases the caster's Jump skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "69", - "speed": "0.05", - "target_effect": "24", - "target_mask": "16" - }, - "972": { - "id": 972, - "name": "Jumping Mastery Self III", - "description": "Increases the caster's Jump skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "69", - "speed": "0.1", - "target_effect": "24", - "target_mask": "16" - }, - "973": { - "id": 973, - "name": "Jumping Mastery Self IV", - "description": "Increases the caster's Jump skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "974": { - "id": 974, - "name": "Jumping Mastery Self V", - "description": "Increases the caster's Jump skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "69", - "speed": "0.2", - "target_effect": "24", - "target_mask": "16" - }, - "975": { - "id": 975, - "name": "Jumping Mastery Self VI", - "description": "Increases the caster's Jump skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "69", - "speed": "0.3", - "target_effect": "24", - "target_mask": "16" - }, - "976": { - "id": 976, - "name": "Jumping Mastery Other I", - "description": "Increases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "69", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "977": { - "id": 977, - "name": "Jumping Mastery Other II", - "description": "Increases the target's Jump skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "69", - "speed": "0.05", - "target_effect": "24", - "target_mask": "16" - }, - "978": { - "id": 978, - "name": "Jumping Mastery Other III", - "description": "Increases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "69", - "speed": "0.1", - "target_effect": "24", - "target_mask": "16" - }, - "979": { - "id": 979, - "name": "Jumping Mastery Other IV", - "description": "Increases the target's Jump skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "980": { - "id": 980, - "name": "Jumping Mastery Other V", - "description": "Increases the target's Jump skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "69", - "speed": "0.2", - "target_effect": "24", - "target_mask": "16" - }, - "981": { - "id": 981, - "name": "Jumping Mastery Other VI", - "description": "Increases the target's Jump skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "69", - "speed": "0.3", - "target_effect": "24", - "target_mask": "16" - }, - "982": { - "id": 982, - "name": "Sprint Self I", - "description": "Increases the caster's Run skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "77", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "983": { - "id": 983, - "name": "Sprint Self II", - "description": "Increases the caster's Run skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "77", - "speed": "0.05", - "target_effect": "24", - "target_mask": "16" - }, - "984": { - "id": 984, - "name": "Sprint Self III", - "description": "Increases the caster's Run skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "77", - "speed": "0.1", - "target_effect": "24", - "target_mask": "16" - }, - "985": { - "id": 985, - "name": "Sprint Self IV", - "description": "Increases the caster's Run skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "986": { - "id": 986, - "name": "Sprint Self V", - "description": "Increases the caster's Run skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "77", - "speed": "0.2", - "target_effect": "24", - "target_mask": "16" - }, - "987": { - "id": 987, - "name": "Sprint Self VI", - "description": "Increases the caster's Run skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "77", - "speed": "0.3", - "target_effect": "24", - "target_mask": "16" - }, - "988": { - "id": 988, - "name": "Sprint Other I", - "description": "Increases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "77", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "989": { - "id": 989, - "name": "Sprint Other II", - "description": "Increases the target's Run skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "77", - "speed": "0.05", - "target_effect": "24", - "target_mask": "16" - }, - "990": { - "id": 990, - "name": "Sprint Other III", - "description": "Increases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "77", - "speed": "0.1", - "target_effect": "24", - "target_mask": "16" - }, - "991": { - "id": 991, - "name": "Sprint Other IV", - "description": "Increases the target's Run skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "992": { - "id": 992, - "name": "Sprint Other V", - "description": "Increases the target's Run skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "77", - "speed": "0.2", - "target_effect": "24", - "target_mask": "16" - }, - "993": { - "id": 993, - "name": "Sprint Other VI", - "description": "Increases the target's Run skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "77", - "speed": "0.3", - "target_effect": "24", - "target_mask": "16" - }, - "994": { - "id": 994, - "name": "Leaden Feet Self I", - "description": "Decreases the caster's Run skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "78", - "speed": "0.01", - "target_effect": "25", - "target_mask": "16" - }, - "995": { - "id": 995, - "name": "Leaden Feet Self II", - "description": "Decreases the caster's Run skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "78", - "speed": "0.05", - "target_effect": "25", - "target_mask": "16" - }, - "996": { - "id": 996, - "name": "Leaden Feet Self III", - "description": "Decreases the caster's Run skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "78", - "speed": "0.1", - "target_effect": "25", - "target_mask": "16" - }, - "997": { - "id": 997, - "name": "Leaden Feet Self IV", - "description": "Decreases the caster's Run skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "998": { - "id": 998, - "name": "Leaden Feet Self V", - "description": "Decreases the caster's Run skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "78", - "speed": "0.2", - "target_effect": "25", - "target_mask": "16" - }, - "999": { - "id": 999, - "name": "Leaden Feet Self VI", - "description": "Decreases the caster's Run skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "78", - "speed": "0.3", - "target_effect": "25", - "target_mask": "16" - }, - "1000": { - "id": 1000, - "name": "Leaden Feet Other I", - "description": "Decreases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "78", - "speed": "0.01", - "target_effect": "25", - "target_mask": "16" - }, - "1001": { - "id": 1001, - "name": "Leaden Feet Other II", - "description": "Decreases the target's Run skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "78", - "speed": "0.05", - "target_effect": "25", - "target_mask": "16" - }, - "1002": { - "id": 1002, - "name": "Leaden Feet Other III", - "description": "Decreases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "78", - "speed": "0.1", - "target_effect": "25", - "target_mask": "16" - }, - "1003": { - "id": 1003, - "name": "Leaden Feet Other IV", - "description": "Decreases the target's Run skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "1004": { - "id": 1004, - "name": "Leaden Feet Other V", - "description": "Decreases the target's Run skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "78", - "speed": "0.2", - "target_effect": "25", - "target_mask": "16" - }, - "1005": { - "id": 1005, - "name": "Leaden Feet Other VI", - "description": "Decreases the target's Run skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "78", - "speed": "0.3", - "target_effect": "25", - "target_mask": "16" - }, - "1006": { - "id": 1006, - "name": "Jumping Ineptitude Self I", - "description": "Decreases the caster's Jump skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "70", - "speed": "0.01", - "target_effect": "25", - "target_mask": "16" - }, - "1007": { - "id": 1007, - "name": "Jumping Ineptitude Self II", - "description": "Decreases the caster's Jump skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "70", - "speed": "0.05", - "target_effect": "25", - "target_mask": "16" - }, - "1008": { - "id": 1008, - "name": "Jumping Ineptitude Self III", - "description": "Decreases the caster's Jump skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "70", - "speed": "0.1", - "target_effect": "25", - "target_mask": "16" - }, - "1009": { - "id": 1009, - "name": "Jumping Ineptitude Self IV", - "description": "Decreases the caster's Jump skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "1010": { - "id": 1010, - "name": "Jumping Ineptitude Self V", - "description": "Decreases the caster's Jump skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "70", - "speed": "0.2", - "target_effect": "25", - "target_mask": "16" - }, - "1011": { - "id": 1011, - "name": "Jumping Ineptitude Self VI", - "description": "Decreases the caster's Jump skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "70", - "speed": "0.3", - "target_effect": "25", - "target_mask": "16" - }, - "1012": { - "id": 1012, - "name": "Jumping Ineptitude Other I", - "description": "Decreases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "70", - "speed": "0.01", - "target_effect": "25", - "target_mask": "16" - }, - "1013": { - "id": 1013, - "name": "Jumping Ineptitude Other II", - "description": "Decreases the target's Jump skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "70", - "speed": "0.05", - "target_effect": "25", - "target_mask": "16" - }, - "1014": { - "id": 1014, - "name": "Jumping Ineptitude Other III", - "description": "Decreases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "70", - "speed": "0.1", - "target_effect": "25", - "target_mask": "16" - }, - "1015": { - "id": 1015, - "name": "Jumping Ineptitude Other IV", - "description": "Decreases the target's Jump skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "70", - "speed": "0.1", - "target_effect": "25", - "target_mask": "16" - }, - "1016": { - "id": 1016, - "name": "Jumping Ineptitude Other V", - "description": "Decreases the target's Jump skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "1017": { - "id": 1017, - "name": "Jumping Ineptitude Other VI", - "description": "Decreases the target's Jump skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "70", - "speed": "0.3", - "target_effect": "25", - "target_mask": "16" - }, - "1018": { - "id": 1018, - "name": "Bludgeoning Protection Self I", - "description": "Reduces damage the caster takes from Bludgeoning by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "103", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "1019": { - "id": 1019, - "name": "Bludgeoning Protection Self II", - "description": "Reduces damage the caster takes from Bludgeoning by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "103", - "speed": "0.05", - "target_effect": "55", - "target_mask": "16" - }, - "1020": { - "id": 1020, - "name": "Bludgeoning Protection Self III", - "description": "Reduces damage the caster takes from Bludgeoning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "103", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "1021": { - "id": 1021, - "name": "Bludgeoning Protection Self IV", - "description": "Reduces damage the caster takes from Bludgeoning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "1022": { - "id": 1022, - "name": "Bludgeoning Protection Self V", - "description": "Reduces damage the caster takes from Bludgeoning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "103", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "1023": { - "id": 1023, - "name": "Bludgeoning Protection Self VI", - "description": "Reduces damage the caster takes from Bludgeoning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "103", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "1024": { - "id": 1024, - "name": "Bludgeoning Protection Other I", - "description": "Reduces damage the target takes from Bludgeoning by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "103", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "1025": { - "id": 1025, - "name": "Bludgeoning Protection Other II", - "description": "Reduces damage the target takes from Bludgeoning by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "103", - "speed": "0.05", - "target_effect": "55", - "target_mask": "16" - }, - "1026": { - "id": 1026, - "name": "Bludgeoning Protection Other III", - "description": "Reduces damage the target takes from Bludgeoning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "103", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "1027": { - "id": 1027, - "name": "Bludgeoning Protection Other IV", - "description": "Reduces damage the target takes from Bludgeoning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "1028": { - "id": 1028, - "name": "Bludgeoning Protection Other V", - "description": "Reduces damage the target takes from Bludgeoning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "103", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "1029": { - "id": 1029, - "name": "Bludgeoning Protection Other VI", - "description": "Reduces damage the target takes from Bludgeoning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "103", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "1030": { - "id": 1030, - "name": "Cold Protection Self I", - "description": "Reduces damage the caster takes from Cold by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "105", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "1031": { - "id": 1031, - "name": "Cold Protection Self II", - "description": "Reduces damage the caster takes from Cold by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "105", - "speed": "0.05", - "target_effect": "51", - "target_mask": "16" - }, - "1032": { - "id": 1032, - "name": "Cold Protection Self III", - "description": "Reduces damage the caster takes from Cold by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "105", - "speed": "0.1", - "target_effect": "51", - "target_mask": "16" - }, - "1033": { - "id": 1033, - "name": "Cold Protection Self IV", - "description": "Reduces damage the caster takes from Cold by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "1034": { - "id": 1034, - "name": "Cold Protection Self V", - "description": "Reduces damage the caster takes from Cold by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "105", - "speed": "0.2", - "target_effect": "51", - "target_mask": "16" - }, - "1035": { - "id": 1035, - "name": "Cold Protection Self VI", - "description": "Reduces damage the caster takes from Cold by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "105", - "speed": "0.3", - "target_effect": "51", - "target_mask": "16" - }, - "1036": { - "id": 1036, - "name": "Cold Protection Other I", - "description": "Reduces damage the target takes from Cold by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "105", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "1037": { - "id": 1037, - "name": "Cold Protection Other II", - "description": "Reduces damage the target takes from Cold by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "105", - "speed": "0.05", - "target_effect": "51", - "target_mask": "16" - }, - "1038": { - "id": 1038, - "name": "Cold Protection Other III", - "description": "Reduces damage the target takes from Cold by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "105", - "speed": "0.1", - "target_effect": "51", - "target_mask": "16" - }, - "1039": { - "id": 1039, - "name": "Cold Protection Other IV", - "description": "Reduces damage the target takes from Cold by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "1040": { - "id": 1040, - "name": "Cold Protection Other V", - "description": "Reduces damage the target takes from Cold by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "105", - "speed": "0.2", - "target_effect": "51", - "target_mask": "16" - }, - "1041": { - "id": 1041, - "name": "Cold Protection Other VI", - "description": "Reduces damage the target takes from Cold by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "105", - "speed": "0.3", - "target_effect": "51", - "target_mask": "16" - }, - "1042": { - "id": 1042, - "name": "Bludgeoning Vulnerability Self I", - "description": "Increases damage the caster takes from Bludgeoning by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "104", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "1043": { - "id": 1043, - "name": "Bludgeoning Vulnerability Self II", - "description": "Increases damage the caster takes from Bludgeoning by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "104", - "speed": "0.05", - "target_effect": "56", - "target_mask": "16" - }, - "1044": { - "id": 1044, - "name": "Bludgeoning Vulnerability Self III", - "description": "Increases damage the caster takes from Bludgeoning by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "104", - "speed": "0.1", - "target_effect": "56", - "target_mask": "16" - }, - "1045": { - "id": 1045, - "name": "Bludgeoning Vulnerability Self IV", - "description": "Increases damage the caster takes from Bludgeoning by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "1046": { - "id": 1046, - "name": "Bludgeoning Vulnerability Self V", - "description": "Increases damage the caster takes from Bludgeoning by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "104", - "speed": "0.2", - "target_effect": "56", - "target_mask": "16" - }, - "1047": { - "id": 1047, - "name": "Bludgeoning Vulnerability Self VI", - "description": "Increases damage the caster takes from Bludgeoning by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "104", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "1048": { - "id": 1048, - "name": "Bludgeoning Vulnerability Other I", - "description": "Increases damage the target takes from Bludgeoning by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "104", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "1049": { - "id": 1049, - "name": "Bludgeoning Vulnerability Other II", - "description": "Increases damage the target takes from Bludgeoning by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "104", - "speed": "0.05", - "target_effect": "56", - "target_mask": "16" - }, - "1050": { - "id": 1050, - "name": "Bludgeoning Vulnerability Other III", - "description": "Increases damage the target takes from Bludgeoning by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "104", - "speed": "0.1", - "target_effect": "56", - "target_mask": "16" - }, - "1051": { - "id": 1051, - "name": "Bludgeoning Vulnerability Other IV", - "description": "Increases damage the target takes from Bludgeoning by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "1052": { - "id": 1052, - "name": "Bludgeoning Vulnerability Other V", - "description": "Increases damage the target takes from Bludgeoning by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "104", - "speed": "0.2", - "target_effect": "56", - "target_mask": "16" - }, - "1053": { - "id": 1053, - "name": "Bludgeoning Vulnerability Other VI", - "description": "Increases damage the target takes from Bludgeoning by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "104", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "1054": { - "id": 1054, - "name": "Cold Vulnerability Self I", - "description": "Increases damage the caster takes from Cold by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "106", - "speed": "0.01", - "target_effect": "52", - "target_mask": "16" - }, - "1055": { - "id": 1055, - "name": "Cold Vulnerability Self II", - "description": "Increases damage the caster takes from Cold by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "106", - "speed": "0.05", - "target_effect": "52", - "target_mask": "16" - }, - "1056": { - "id": 1056, - "name": "Cold Vulnerability Self III", - "description": "Increases damage the caster takes from Cold by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "106", - "speed": "0.1", - "target_effect": "52", - "target_mask": "16" - }, - "1057": { - "id": 1057, - "name": "Cold Vulnerability Self IV", - "description": "Increases damage the caster takes from Cold by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "1058": { - "id": 1058, - "name": "Cold Vulnerability Self V", - "description": "Increases damage the caster takes from Cold by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "106", - "speed": "0.2", - "target_effect": "52", - "target_mask": "16" - }, - "1059": { - "id": 1059, - "name": "Cold Vulnerability Self VI", - "description": "Increases damage the caster takes from Cold by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "106", - "speed": "0.3", - "target_effect": "52", - "target_mask": "16" - }, - "1060": { - "id": 1060, - "name": "Cold Vulnerability Other I", - "description": "Increases damage the target takes from Cold by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "106", - "speed": "0.01", - "target_effect": "52", - "target_mask": "16" - }, - "1061": { - "id": 1061, - "name": "Cold Vulnerability Other II", - "description": "Increases damage the target takes from Cold by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "106", - "speed": "0.05", - "target_effect": "52", - "target_mask": "16" - }, - "1062": { - "id": 1062, - "name": "Cold Vulnerability Other III", - "description": "Increases damage the target takes from Cold by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "106", - "speed": "0.1", - "target_effect": "52", - "target_mask": "16" - }, - "1063": { - "id": 1063, - "name": "Cold Vulnerability Other IV", - "description": "Increases damage the target takes from Cold by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "1064": { - "id": 1064, - "name": "Cold Vulnerability Other V", - "description": "Increases damage the target takes from Cold by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "106", - "speed": "0.2", - "target_effect": "52", - "target_mask": "16" - }, - "1065": { - "id": 1065, - "name": "Cold Vulnerability Other VI", - "description": "Increases damage the target takes from Cold by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "106", - "speed": "0.3", - "target_effect": "52", - "target_mask": "16" - }, - "1066": { - "id": 1066, - "name": "Lightning Protection Self I", - "description": "Reduces damage the caster takes from Lightning by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "107", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "1067": { - "id": 1067, - "name": "Lightning Protection Self II", - "description": "Reduces damage the caster takes from Lightning by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "107", - "speed": "0.05", - "target_effect": "53", - "target_mask": "16" - }, - "1068": { - "id": 1068, - "name": "Lightning Protection Self III", - "description": "Reduces damage the caster takes from Lightning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "107", - "speed": "0.1", - "target_effect": "53", - "target_mask": "16" - }, - "1069": { - "id": 1069, - "name": "Lightning Protection Self IV", - "description": "Reduces damage the caster takes from Lightning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "1070": { - "id": 1070, - "name": "Lightning Protection Self V", - "description": "Reduces damage the caster takes from Lightning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "107", - "speed": "0.2", - "target_effect": "53", - "target_mask": "16" - }, - "1071": { - "id": 1071, - "name": "Lightning Protection Self VI", - "description": "Reduces damage the caster takes from Lightning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "107", - "speed": "0.3", - "target_effect": "53", - "target_mask": "16" - }, - "1072": { - "id": 1072, - "name": "Lightning Protection Other I", - "description": "Reduces damage the target takes from Lightning by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "107", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "1073": { - "id": 1073, - "name": "Lightning Protection Other II", - "description": "Reduces damage the target takes from Lightning by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "107", - "speed": "0.05", - "target_effect": "53", - "target_mask": "16" - }, - "1074": { - "id": 1074, - "name": "Lightning Protection Other III", - "description": "Reduces damage the target takes from Lightning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "107", - "speed": "0.1", - "target_effect": "53", - "target_mask": "16" - }, - "1075": { - "id": 1075, - "name": "Lightning Protection Other IV", - "description": "Reduces damage the target takes from Lightning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "1076": { - "id": 1076, - "name": "Lightning Protection Other V", - "description": "Reduces damage the target takes from Lightning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "107", - "speed": "0.2", - "target_effect": "53", - "target_mask": "16" - }, - "1077": { - "id": 1077, - "name": "Lightning Protection Other VI", - "description": "Reduces damage the target takes from Lightning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "107", - "speed": "0.3", - "target_effect": "53", - "target_mask": "16" - }, - "1078": { - "id": 1078, - "name": "Lightning Vulnerability Self I", - "description": "Increases damage the caster takes from Lightning by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "108", - "speed": "0.01", - "target_effect": "54", - "target_mask": "16" - }, - "1079": { - "id": 1079, - "name": "Lightning Vulnerability Self II", - "description": "Increases damage the caster takes from Lightning by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "108", - "speed": "0.05", - "target_effect": "54", - "target_mask": "16" - }, - "1080": { - "id": 1080, - "name": "Lightning Vulnerability Self III", - "description": "Increases damage the caster takes from Lightning by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "108", - "speed": "0.1", - "target_effect": "54", - "target_mask": "16" - }, - "1081": { - "id": 1081, - "name": "Lightning Vulnerability Self IV", - "description": "Increases damage the caster takes from Lightning by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "1082": { - "id": 1082, - "name": "Lightning Vulnerability Self V", - "description": "Increases damage the caster takes from Lightning by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "108", - "speed": "0.2", - "target_effect": "54", - "target_mask": "16" - }, - "1083": { - "id": 1083, - "name": "Lightning Vulnerability Self VI", - "description": "Increases damage the caster takes from Lightning by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "108", - "speed": "0.3", - "target_effect": "54", - "target_mask": "16" - }, - "1084": { - "id": 1084, - "name": "Lightning Vulnerability Other I", - "description": "Increases damage the target takes from Lightning by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "108", - "speed": "0.01", - "target_effect": "54", - "target_mask": "16" - }, - "1085": { - "id": 1085, - "name": "Lightning Vulnerability Other II", - "description": "Increases damage the target takes from Lightning by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "108", - "speed": "0.05", - "target_effect": "54", - "target_mask": "16" - }, - "1086": { - "id": 1086, - "name": "Lightning Vulnerability Other III", - "description": "Increases damage the target takes from Lightning by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "108", - "speed": "0.1", - "target_effect": "54", - "target_mask": "16" - }, - "1087": { - "id": 1087, - "name": "Lightning Vulnerability Other IV", - "description": "Increases damage the target takes from Lightning by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "1088": { - "id": 1088, - "name": "Lightning Vulnerability Other V", - "description": "Increases damage the target takes from Lightning by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "108", - "speed": "0.2", - "target_effect": "54", - "target_mask": "16" - }, - "1089": { - "id": 1089, - "name": "Lightning Vulnerability Other VI", - "description": "Increases damage the target takes from Lightning by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "108", - "speed": "0.3", - "target_effect": "54", - "target_mask": "16" - }, - "1090": { - "id": 1090, - "name": "Fire Protection Self II", - "description": "Reduces damage the caster takes from Fire by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "109", - "speed": "0.05", - "target_effect": "43", - "target_mask": "16" - }, - "1091": { - "id": 1091, - "name": "Fire Protection Self III", - "description": "Reduces damage the caster takes from Fire by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "109", - "speed": "0.1", - "target_effect": "43", - "target_mask": "16" - }, - "1092": { - "id": 1092, - "name": "Fire Protection Self IV", - "description": "Reduces damage the caster takes from Fire by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "1093": { - "id": 1093, - "name": "Fire Protection Self V", - "description": "Reduces damage the caster takes from Fire by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "109", - "speed": "0.2", - "target_effect": "43", - "target_mask": "16" - }, - "1094": { - "id": 1094, - "name": "Fire Protection Self VI", - "description": "Reduces damage the caster takes from Fire by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "109", - "speed": "0.3", - "target_effect": "43", - "target_mask": "16" - }, - "1095": { - "id": 1095, - "name": "Fire Protection Other V", - "description": "Reduces damage the target takes from fire by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "109", - "speed": "0.2", - "target_effect": "43", - "target_mask": "16" - }, - "1096": { - "id": 1096, - "name": "Fire Protection Other VI", - "description": "Reduces damage the target takes from fire by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "109", - "speed": "0.3", - "target_effect": "43", - "target_mask": "16" - }, - "1097": { - "id": 1097, - "name": "Flaming Missile", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "1098": { - "id": 1098, - "name": "Fire Vulnerability Self II", - "description": "Increases damage the caster takes from Fire by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "110", - "speed": "0.05", - "target_effect": "44", - "target_mask": "16" - }, - "1099": { - "id": 1099, - "name": "Fire Vulnerability Self III", - "description": "Increases damage the caster takes from Fire by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "110", - "speed": "0.1", - "target_effect": "44", - "target_mask": "16" - }, - "1100": { - "id": 1100, - "name": "Fire Vulnerability Self IV", - "description": "Increases damage the caster takes from Fire by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "1101": { - "id": 1101, - "name": "Fire Vulnerability Self V", - "description": "Increases damage the caster takes from Fire by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "110", - "speed": "0.2", - "target_effect": "44", - "target_mask": "16" - }, - "1102": { - "id": 1102, - "name": "Fire Vulnerability Self VI", - "description": "Increases damage the caster takes from Fire by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "110", - "speed": "0.3", - "target_effect": "44", - "target_mask": "16" - }, - "1104": { - "id": 1104, - "name": "Fire Vulnerability Other II", - "description": "Increases damage the target takes from Fire by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "110", - "speed": "0.05", - "target_effect": "44", - "target_mask": "16" - }, - "1105": { - "id": 1105, - "name": "Fire Vulnerability Other III", - "description": "Increases damage the target takes from Fire by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "110", - "speed": "0.1", - "target_effect": "44", - "target_mask": "16" - }, - "1106": { - "id": 1106, - "name": "Fire Vulnerability Other IV", - "description": "Increases damage the target takes from Fire by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "1107": { - "id": 1107, - "name": "Fire Vulnerability Other V", - "description": "Increases damage the target takes from Fire by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "110", - "speed": "0.2", - "target_effect": "44", - "target_mask": "16" - }, - "1108": { - "id": 1108, - "name": "Fire Vulnerability Other VI", - "description": "Increases damage the target takes from Fire by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "110", - "speed": "0.3", - "target_effect": "44", - "target_mask": "16" - }, - "1109": { - "id": 1109, - "name": "Blade Protection Self I", - "description": "Reduces damage the caster takes from Slashing by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "113", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "1110": { - "id": 1110, - "name": "Blade Protection Self II", - "description": "Reduces damage the caster takes from Slashing by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "113", - "speed": "0.05", - "target_effect": "47", - "target_mask": "16" - }, - "1111": { - "id": 1111, - "name": "Blade Protection Self III", - "description": "Reduces damage the caster takes from Slashing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "113", - "speed": "0.1", - "target_effect": "47", - "target_mask": "16" - }, - "1112": { - "id": 1112, - "name": "Blade Protection Self IV", - "description": "Reduces damage the caster takes from Slashing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "1113": { - "id": 1113, - "name": "Blade Protection Self V", - "description": "Reduces damage the caster takes from Slashing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "113", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "1114": { - "id": 1114, - "name": "Blade Protection Self VI", - "description": "Reduces damage the caster takes from Slashing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "113", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "1115": { - "id": 1115, - "name": "Blade Protection Other I", - "description": "Reduces damage the target takes from Slashing by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "113", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "1116": { - "id": 1116, - "name": "Blade Protection Other II", - "description": "Reduces damage the target takes from Slashing by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "113", - "speed": "0.05", - "target_effect": "47", - "target_mask": "16" - }, - "1117": { - "id": 1117, - "name": "Blade Protection Other III", - "description": "Reduces damage the target takes from Slashing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "113", - "speed": "0.1", - "target_effect": "47", - "target_mask": "16" - }, - "1118": { - "id": 1118, - "name": "Blade Protection Other IV", - "description": "Reduces damage the target takes from Slashing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "1119": { - "id": 1119, - "name": "Blade Protection Other V", - "description": "Reduces damage the target takes from Slashing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "113", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "1120": { - "id": 1120, - "name": "Blade Protection Other VI", - "description": "Reduces damage the target takes from Slashing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "113", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "1121": { - "id": 1121, - "name": "Blade Vulnerability Self I", - "description": "Increases damage the caster takes from Slashing by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "114", - "speed": "0.01", - "target_effect": "48", - "target_mask": "16" - }, - "1122": { - "id": 1122, - "name": "Blade Vulnerability Self II", - "description": "Increases damage the caster takes from Slashing by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "114", - "speed": "0.05", - "target_effect": "48", - "target_mask": "16" - }, - "1123": { - "id": 1123, - "name": "Blade Vulnerability Self III", - "description": "Increases damage the caster takes from Slashing by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "114", - "speed": "0.1", - "target_effect": "48", - "target_mask": "16" - }, - "1124": { - "id": 1124, - "name": "Blade Vulnerability Self IV", - "description": "Increases damage the caster takes from Slashing by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "1125": { - "id": 1125, - "name": "Blade Vulnerability Self V", - "description": "Increases damage the caster takes from Slashing by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "114", - "speed": "0.2", - "target_effect": "48", - "target_mask": "16" - }, - "1126": { - "id": 1126, - "name": "Blade Vulnerability Self VI", - "description": "Increases damage the caster takes from Slashing by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "114", - "speed": "0.3", - "target_effect": "48", - "target_mask": "16" - }, - "1127": { - "id": 1127, - "name": "Blade Vulnerability Other I", - "description": "Increases damage the target takes from Slashing by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "114", - "speed": "0.01", - "target_effect": "48", - "target_mask": "16" - }, - "1128": { - "id": 1128, - "name": "Blade Vulnerability Other II", - "description": "Increases damage the target takes from Slashing by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "114", - "speed": "0.05", - "target_effect": "48", - "target_mask": "16" - }, - "1129": { - "id": 1129, - "name": "Blade Vulnerability Other III", - "description": "Increases damage the target takes from Slashing by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "114", - "speed": "0.1", - "target_effect": "48", - "target_mask": "16" - }, - "1130": { - "id": 1130, - "name": "Blade Vulnerability Other IV", - "description": "Increases damage the target takes from Slashing by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "1131": { - "id": 1131, - "name": "Blade Vulnerability Other V", - "description": "Increases damage the target takes from Slashing by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "114", - "speed": "0.2", - "target_effect": "48", - "target_mask": "16" - }, - "1132": { - "id": 1132, - "name": "Blade Vulnerability Other VI", - "description": "Increases damage the target takes from Slashing by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "114", - "speed": "0.3", - "target_effect": "48", - "target_mask": "16" - }, - "1133": { - "id": 1133, - "name": "Piercing Protection Self I", - "description": "Reduces damage the caster takes from Piercing by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "111", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "1134": { - "id": 1134, - "name": "Piercing Protection Self II", - "description": "Reduces damage the caster takes from Piercing by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "111", - "speed": "0.05", - "target_effect": "45", - "target_mask": "16" - }, - "1135": { - "id": 1135, - "name": "Piercing Protection Self III", - "description": "Reduces damage the caster takes from Piercing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "111", - "speed": "0.1", - "target_effect": "45", - "target_mask": "16" - }, - "1136": { - "id": 1136, - "name": "Piercing Protection Self IV", - "description": "Reduces damage the caster takes from Piercing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "1137": { - "id": 1137, - "name": "Piercing Protection Self V", - "description": "Reduces damage the caster takes from Piercing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "111", - "speed": "0.2", - "target_effect": "45", - "target_mask": "16" - }, - "1138": { - "id": 1138, - "name": "Piercing Protection Self VI", - "description": "Reduces damage the caster takes from Piercing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "111", - "speed": "0.3", - "target_effect": "45", - "target_mask": "16" - }, - "1139": { - "id": 1139, - "name": "Piercing Protection Other I", - "description": "Reduces damage the target takes from Piercing by 9%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "111", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "1140": { - "id": 1140, - "name": "Piercing Protection Other II", - "description": "Reduces damage the target takes from Piercing by 20%.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "111", - "speed": "0.05", - "target_effect": "45", - "target_mask": "16" - }, - "1141": { - "id": 1141, - "name": "Piercing Protection Other III", - "description": "Reduces damage the target takes from Piercing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "111", - "speed": "0.1", - "target_effect": "45", - "target_mask": "16" - }, - "1142": { - "id": 1142, - "name": "Piercing Protection Other IV", - "description": "Reduces damage the target takes from Piercing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "1143": { - "id": 1143, - "name": "Piercing Protection Other V", - "description": "Reduces damage the target takes from Piercing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "111", - "speed": "0.2", - "target_effect": "45", - "target_mask": "16" - }, - "1144": { - "id": 1144, - "name": "Piercing Protection Other VI", - "description": "Reduces damage the target takes from Piercing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "111", - "speed": "0.3", - "target_effect": "45", - "target_mask": "16" - }, - "1145": { - "id": 1145, - "name": "Piercing Vulnerability Self I", - "description": "Increases damage the caster takes from Piercing by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "15", - "family": "112", - "speed": "0.01", - "target_effect": "46", - "target_mask": "16" - }, - "1146": { - "id": 1146, - "name": "Piercing Vulnerability Self II", - "description": "Increases damage the caster takes from Piercing by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "112", - "speed": "0.05", - "target_effect": "46", - "target_mask": "16" - }, - "1147": { - "id": 1147, - "name": "Piercing Vulnerability Self III", - "description": "Increases damage the caster takes from Piercing by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "112", - "speed": "0.1", - "target_effect": "46", - "target_mask": "16" - }, - "1148": { - "id": 1148, - "name": "Piercing Vulnerability Self IV", - "description": "Increases damage the caster takes from Piercing by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "1149": { - "id": 1149, - "name": "Piercing Vulnerability Self V", - "description": "Increases damage the caster takes from Piercing by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "112", - "speed": "0.2", - "target_effect": "46", - "target_mask": "16" - }, - "1150": { - "id": 1150, - "name": "Piercing Vulnerability Self VI", - "description": "Increases damage the caster takes from Piercing by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "112", - "speed": "0.3", - "target_effect": "46", - "target_mask": "16" - }, - "1151": { - "id": 1151, - "name": "Piercing Vulnerability Other I", - "description": "Increases damage the target takes from Piercing by 10%.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "112", - "speed": "0.01", - "target_effect": "46", - "target_mask": "16" - }, - "1152": { - "id": 1152, - "name": "Piercing Vulnerability Other II", - "description": "Increases damage the target takes from Piercing by 25%.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "112", - "speed": "0.05", - "target_effect": "46", - "target_mask": "16" - }, - "1153": { - "id": 1153, - "name": "Piercing Vulnerability Other III", - "description": "Increases damage the target takes from Piercing by 50%.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "112", - "speed": "0.1", - "target_effect": "46", - "target_mask": "16" - }, - "1154": { - "id": 1154, - "name": "Piercing Vulnerability Other IV", - "description": "Increases damage the target takes from Piercing by 75%.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "1155": { - "id": 1155, - "name": "Piercing Vulnerability Other V", - "description": "Increases damage the target takes from Piercing by 100%.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "112", - "speed": "0.2", - "target_effect": "46", - "target_mask": "16" - }, - "1156": { - "id": 1156, - "name": "Piercing Vulnerability Other VI", - "description": "Increases damage the target takes from Piercing by 150%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "112", - "speed": "0.3", - "target_effect": "46", - "target_mask": "16" - }, - "1157": { - "id": 1157, - "name": "Heal Self II", - "description": "Restores 15-35 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "30", - "family": "67", - "speed": "0.05", - "target_effect": "31", - "target_mask": "16" - }, - "1158": { - "id": 1158, - "name": "Heal Self III", - "description": "Restores 20-45 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "40", - "family": "67", - "speed": "0.1", - "target_effect": "31", - "target_mask": "16" - }, - "1159": { - "id": 1159, - "name": "Heal Self IV", - "description": "Restores 30-60 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "67", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "1160": { - "id": 1160, - "name": "Heal Self V", - "description": "Restores 45-90 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "60", - "family": "67", - "speed": "0.2", - "target_effect": "31", - "target_mask": "16" - }, - "1161": { - "id": 1161, - "name": "Heal Self VI", - "description": "Restores 55-120 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "70", - "family": "67", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "1162": { - "id": 1162, - "name": "Heal Other II", - "description": "Restores 15-35 points of the target's Health.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "79", - "speed": "0.05", - "target_effect": "31", - "target_mask": "16" - }, - "1163": { - "id": 1163, - "name": "Heal Other III", - "description": "Restores 20-45 points of the target's Health.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "79", - "speed": "0.1", - "target_effect": "31", - "target_mask": "16" - }, - "1164": { - "id": 1164, - "name": "Heal Other IV", - "description": "Restores 30-60 points of the target's Health.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "79", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "1165": { - "id": 1165, - "name": "Heal Other V", - "description": "Restores 45-90 points of the target's Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "79", - "speed": "0.2", - "target_effect": "31", - "target_mask": "16" - }, - "1166": { - "id": 1166, - "name": "Heal Other VI", - "description": "Restores 55-120 points of the target's Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "79", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "1167": { - "id": 1167, - "name": "Harm Self II", - "description": "Drains 7-12 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "30", - "family": "80", - "speed": "0.05", - "target_effect": "32", - "target_mask": "16" - }, - "1168": { - "id": 1168, - "name": "Harm Self III", - "description": "Drains 10-18 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "40", - "family": "80", - "speed": "0.1", - "target_effect": "32", - "target_mask": "16" - }, - "1169": { - "id": 1169, - "name": "Harm Self IV", - "description": "Drains 16-30 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "50", - "family": "80", - "speed": "0.1", - "target_effect": "32", - "target_mask": "16" - }, - "1170": { - "id": 1170, - "name": "Harm Self V", - "description": "Drains 23-45 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.2", - "target_effect": "32", - "target_mask": "16" - }, - "1171": { - "id": 1171, - "name": "Harm Self VI", - "description": "Drains 31-60 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "1172": { - "id": 1172, - "name": "Harm Other II", - "description": "Drains 7-12 points of the target's Health.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "20", - "family": "80", - "speed": "0.05", - "target_effect": "32", - "target_mask": "16" - }, - "1173": { - "id": 1173, - "name": "Harm Other III", - "description": "Drains 10-19 points of the target's Health.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "30", - "family": "80", - "speed": "0.1", - "target_effect": "32", - "target_mask": "16" - }, - "1174": { - "id": 1174, - "name": "Harm Other IV", - "description": "Drains 16-33 points of the target's Health.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "40", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "1175": { - "id": 1175, - "name": "Harm Other V", - "description": "Drains 24-47 points of the target's Health.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "50", - "family": "80", - "speed": "0.2", - "target_effect": "32", - "target_mask": "16" - }, - "1176": { - "id": 1176, - "name": "Harm Other VI", - "description": "Drains 33-63 points of the target's Health.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "1177": { - "id": 1177, - "name": "Revitalize Self I", - "description": "Restores 15-35 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "81", - "speed": "0.01", - "target_effect": "35", - "target_mask": "16" - }, - "1178": { - "id": 1178, - "name": "Revitalize Self II", - "description": "Restores 20-45 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "30", - "family": "81", - "speed": "0.05", - "target_effect": "35", - "target_mask": "16" - }, - "1179": { - "id": 1179, - "name": "Revitalize Self III", - "description": "Restores 30-60 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "40", - "family": "81", - "speed": "0.1", - "target_effect": "35", - "target_mask": "16" - }, - "1180": { - "id": 1180, - "name": "Revitalize Self IV", - "description": "Restores 40-80 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "81", - "speed": "0.15", - "target_effect": "35", - "target_mask": "16" - }, - "1181": { - "id": 1181, - "name": "Revitalize Self V", - "description": "Restores 60-120 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "60", - "family": "81", - "speed": "0.2", - "target_effect": "35", - "target_mask": "16" - }, - "1182": { - "id": 1182, - "name": "Revitalize Self VI", - "description": "Restores 80-160 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "70", - "family": "81", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "1183": { - "id": 1183, - "name": "Revitalize Other I", - "description": "Restores 15-35 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "81", - "speed": "0.01", - "target_effect": "35", - "target_mask": "16" - }, - "1184": { - "id": 1184, - "name": "Revitalize Other II", - "description": "Restores 20-45 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "81", - "speed": "0.05", - "target_effect": "35", - "target_mask": "16" - }, - "1185": { - "id": 1185, - "name": "Revitalize Other III", - "description": "Restores 30-60 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "81", - "speed": "0.1", - "target_effect": "35", - "target_mask": "16" - }, - "1186": { - "id": 1186, - "name": "Revitalize Other IV", - "description": "Restores 40-80 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "81", - "speed": "0.15", - "target_effect": "35", - "target_mask": "16" - }, - "1187": { - "id": 1187, - "name": "Revitalize Other V", - "description": "Restores 60-120 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "81", - "speed": "0.2", - "target_effect": "35", - "target_mask": "16" - }, - "1188": { - "id": 1188, - "name": "Revitalize Other VI", - "description": "Restores 80-160 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "81", - "speed": "0.05", - "target_effect": "35", - "target_mask": "16" - }, - "1189": { - "id": 1189, - "name": "Enfeeble Self I", - "description": "Drains 7-12 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "15", - "duration": "-1", - "mana": "15", - "family": "82", - "speed": "0.01", - "target_effect": "36", - "target_mask": "16" - }, - "1190": { - "id": 1190, - "name": "Enfeeble Self II", - "description": "Drains 7-12 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "20", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1191": { - "id": 1191, - "name": "Enfeeble Self III", - "description": "Drains 16-30 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "40", - "family": "82", - "speed": "0.1", - "target_effect": "36", - "target_mask": "16" - }, - "1192": { - "id": 1192, - "name": "Enfeeble Self IV", - "description": "Drains 23-45 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "50", - "family": "82", - "speed": "0.15", - "target_effect": "36", - "target_mask": "16" - }, - "1193": { - "id": 1193, - "name": "Enfeeble Self V", - "description": "Drains 31-60 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.2", - "target_effect": "36", - "target_mask": "16" - }, - "1194": { - "id": 1194, - "name": "Enfeeble Self VI", - "description": "Drains 38-75 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "70", - "family": "82", - "speed": "0.3", - "target_effect": "36", - "target_mask": "16" - }, - "1195": { - "id": 1195, - "name": "Enfeeble Other I", - "description": "Drains 7-12 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "82", - "speed": "0.01", - "target_effect": "36", - "target_mask": "16" - }, - "1196": { - "id": 1196, - "name": "Enfeeble Other II", - "description": "Drains 10-19 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "20", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1197": { - "id": 1197, - "name": "Enfeeble Other III", - "description": "Drains 16-31 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "30", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1198": { - "id": 1198, - "name": "Enfeeble Other IV", - "description": "Drains 24-47 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "40", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1199": { - "id": 1199, - "name": "Enfeeble Other V", - "description": "Drains 32-63 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "50", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1200": { - "id": 1200, - "name": "Enfeeble Other VI", - "description": "Drains 39-79 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "1201": { - "id": 1201, - "name": "Mana Boost Self I", - "description": "Restores 6-10 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "83", - "speed": "0.01", - "target_effect": "33", - "target_mask": "16" - }, - "1202": { - "id": 1202, - "name": "Mana Boost Self II", - "description": "Restores 11-20 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "30", - "family": "83", - "speed": "0.05", - "target_effect": "33", - "target_mask": "16" - }, - "1203": { - "id": 1203, - "name": "Mana Boost Self III", - "description": "Restores 16-30 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "40", - "family": "83", - "speed": "0.1", - "target_effect": "33", - "target_mask": "16" - }, - "1204": { - "id": 1204, - "name": "Mana Boost Self IV", - "description": "Restores 26-50 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "1205": { - "id": 1205, - "name": "Mana Boost Self V", - "description": "Restores 38-75 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "60", - "family": "83", - "speed": "0.2", - "target_effect": "33", - "target_mask": "16" - }, - "1206": { - "id": 1206, - "name": "Mana Boost Self VI", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "70", - "family": "83", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "1207": { - "id": 1207, - "name": "Mana Boost Other I", - "description": "Restores 6-10 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "83", - "speed": "0.01", - "target_effect": "33", - "target_mask": "16" - }, - "1208": { - "id": 1208, - "name": "Mana Boost Other II", - "description": "Restores 11-20 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "83", - "speed": "0.05", - "target_effect": "33", - "target_mask": "16" - }, - "1209": { - "id": 1209, - "name": "Mana Boost Other III", - "description": "Restores 16-30 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "83", - "speed": "0.1", - "target_effect": "33", - "target_mask": "16" - }, - "1210": { - "id": 1210, - "name": "Mana Boost Other IV", - "description": "Restores 26-50 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "1211": { - "id": 1211, - "name": "Mana Boost Other V", - "description": "Restores 38-75 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "83", - "speed": "0.2", - "target_effect": "33", - "target_mask": "16" - }, - "1212": { - "id": 1212, - "name": "Mana Boost Other VI", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "83", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "1213": { - "id": 1213, - "name": "Mana Drain Self I", - "description": "Drains 4-6 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "15", - "duration": "-1", - "mana": "15", - "family": "84", - "speed": "0.01", - "target_effect": "34", - "target_mask": "16" - }, - "1214": { - "id": 1214, - "name": "Mana Drain Self II", - "description": "Drains 7-12 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "30", - "family": "84", - "speed": "0.05", - "target_effect": "34", - "target_mask": "16" - }, - "1215": { - "id": 1215, - "name": "Mana Drain Self III", - "description": "Drains 10-18 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "40", - "family": "84", - "speed": "0.1", - "target_effect": "34", - "target_mask": "16" - }, - "1216": { - "id": 1216, - "name": "Mana Drain Self IV", - "description": "Drains 16-30 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "50", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "1217": { - "id": 1217, - "name": "Mana Drain Self V", - "description": "Drains 23-45 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.2", - "target_effect": "34", - "target_mask": "16" - }, - "1218": { - "id": 1218, - "name": "Mana Drain Self VI", - "description": "Drains 31-60 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "70", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "1219": { - "id": 1219, - "name": "Mana Drain Other I", - "description": "Drains 4-6 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "84", - "speed": "0.01", - "target_effect": "34", - "target_mask": "16" - }, - "1220": { - "id": 1220, - "name": "Mana Drain Other II", - "description": "Drains 7-12 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "20", - "family": "84", - "speed": "0.05", - "target_effect": "34", - "target_mask": "16" - }, - "1221": { - "id": 1221, - "name": "Mana Drain Other III", - "description": "Drains 10-19 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "125", - "duration": "-1", - "mana": "30", - "family": "84", - "speed": "0.1", - "target_effect": "34", - "target_mask": "16" - }, - "1222": { - "id": 1222, - "name": "Mana Drain Other IV", - "description": "Drains 16-31 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "175", - "duration": "-1", - "mana": "40", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "1223": { - "id": 1223, - "name": "Mana Drain Other V", - "description": "Drains 24-47 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "225", - "duration": "-1", - "mana": "50", - "family": "84", - "speed": "0.2", - "target_effect": "34", - "target_mask": "16" - }, - "1224": { - "id": 1224, - "name": "Mana Drain Other VI", - "description": "Drains 32-63 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "1225": { - "id": 1225, - "name": "Infuse Health Other I", - "description": "Drains one-quarter of the caster's Health and gives 75% of that to the target.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "88", - "speed": "0.1", - "target_effect": "31", - "target_mask": "16" - }, - "1226": { - "id": 1226, - "name": "Infuse Health Other II", - "description": "Drains one-quarter of the caster's Health and gives 90% of that to the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "88", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "1227": { - "id": 1227, - "name": "Infuse Health Other III", - "description": "Drains one-quarter of the caster's Health and gives 105% of that to the target.", - "school": "Life Magic", - "difficulty": "75", - "duration": "-1", - "mana": "30", - "family": "88", - "speed": "0.2", - "target_effect": "31", - "target_mask": "16" - }, - "1228": { - "id": 1228, - "name": "Infuse Health Other IV", - "description": "Drains one-quarter of the caster's Health and gives 120% of that to the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "88", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "1229": { - "id": 1229, - "name": "Infuse Health Other V", - "description": "Drains one-quarter of the caster's Health and gives 135% of that to the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "88", - "speed": "0.5", - "target_effect": "31", - "target_mask": "16" - }, - "1230": { - "id": 1230, - "name": "Infuse Health Other VI", - "description": "Drains one-quarter of the caster's Health and gives 150% of that to the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "88", - "speed": "0.75", - "target_effect": "31", - "target_mask": "16" - }, - "1237": { - "id": 1237, - "name": "Drain Health Other I", - "description": "Drains 25% of the target's Health and gives 200% of it to the caster.", - "school": "Life Magic", - "difficulty": "38", - "duration": "-1", - "mana": "10", - "family": "87", - "speed": "0.1", - "target_effect": "32", - "target_mask": "16" - }, - "1238": { - "id": 1238, - "name": "Drain Health Other II", - "description": "Drains 25% of the target's Health and gives 160% of it to the caster.", - "school": "Life Magic", - "difficulty": "88", - "duration": "-1", - "mana": "20", - "family": "87", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "1239": { - "id": 1239, - "name": "Drain Health Other III", - "description": "Drains 25% of the target's Health and gives 133% of it to the caster.", - "school": "Life Magic", - "difficulty": "138", - "duration": "-1", - "mana": "30", - "family": "87", - "speed": "0.2", - "target_effect": "32", - "target_mask": "16" - }, - "1240": { - "id": 1240, - "name": "Drain Health Other IV", - "description": "Drains one-quarter of the target's Health and gives 100% of it to the caster.", - "school": "Life Magic", - "difficulty": "188", - "duration": "-1", - "mana": "40", - "family": "87", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "1241": { - "id": 1241, - "name": "Drain Health Other V", - "description": "Drains 30% of the target's Health and gives 100% of it to the caster.", - "school": "Life Magic", - "difficulty": "238", - "duration": "-1", - "mana": "50", - "family": "87", - "speed": "0.5", - "target_effect": "32", - "target_mask": "16" - }, - "1242": { - "id": 1242, - "name": "Drain Health Other VI", - "description": "Drains 40% of the target's Health and gives 75% of it to the caster.", - "school": "Life Magic", - "difficulty": "288", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.75", - "target_effect": "32", - "target_mask": "16" - }, - "1243": { - "id": 1243, - "name": "Infuse Stamina Other I", - "description": "Drains one-quarter of the caster's Stamina and gives 75% of that to the target.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "90", - "speed": "0.1", - "target_effect": "35", - "target_mask": "16" - }, - "1244": { - "id": 1244, - "name": "Infuse Stamina Other II", - "description": "Drains one-quarter of the caster's Stamina and gives 90% of that to the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "90", - "speed": "0.15", - "target_effect": "35", - "target_mask": "16" - }, - "1245": { - "id": 1245, - "name": "Infuse Stamina Other III", - "description": "Drains one-quarter of the caster's Stamina and gives 105% of that to the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "90", - "speed": "0.2", - "target_effect": "35", - "target_mask": "16" - }, - "1246": { - "id": 1246, - "name": "Infuse Stamina Other IV", - "description": "Drains one-quarter of the caster's Stamina and gives 120% of that to the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "90", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "1247": { - "id": 1247, - "name": "Infuse Stamina Other V", - "description": "Drains one-quarter of the caster's Stamina and gives 135% of that to the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "90", - "speed": "0.5", - "target_effect": "35", - "target_mask": "16" - }, - "1248": { - "id": 1248, - "name": "Infuse Stamina Other VI", - "description": "Drains one-quarter of the caster's Stamina and gives 150% of that to the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "90", - "speed": "0.75", - "target_effect": "35", - "target_mask": "16" - }, - "1249": { - "id": 1249, - "name": "Drain Stamina Other I", - "description": "Drains 10% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "38", - "duration": "-1", - "mana": "10", - "family": "89", - "speed": "0.1", - "target_effect": "36", - "target_mask": "16" - }, - "1250": { - "id": 1250, - "name": "Drain Stamina Other II", - "description": "Drains 15% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "88", - "duration": "-1", - "mana": "20", - "family": "89", - "speed": "0.15", - "target_effect": "36", - "target_mask": "16" - }, - "1251": { - "id": 1251, - "name": "Drain Stamina Other III", - "description": "Drains 20% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "138", - "duration": "-1", - "mana": "30", - "family": "89", - "speed": "0.2", - "target_effect": "36", - "target_mask": "16" - }, - "1252": { - "id": 1252, - "name": "Drain Stamina Other IV", - "description": "Drains one-quarter of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "188", - "duration": "-1", - "mana": "40", - "family": "89", - "speed": "0.3", - "target_effect": "36", - "target_mask": "16" - }, - "1253": { - "id": 1253, - "name": "Drain Stamina Other V", - "description": "Drains 30% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "238", - "duration": "-1", - "mana": "50", - "family": "89", - "speed": "0.5", - "target_effect": "36", - "target_mask": "16" - }, - "1254": { - "id": 1254, - "name": "Drain Stamina Other VI", - "description": "Drains 40% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "288", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.75", - "target_effect": "36", - "target_mask": "16" - }, - "1255": { - "id": 1255, - "name": "Infuse Mana Other II", - "description": "Drains one-quarter of the caster's Mana and gives 90% of that to the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "92", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "1256": { - "id": 1256, - "name": "Infuse Mana Other III", - "description": "Drains one-quarter of the caster's Mana and gives 105% of that to the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "92", - "speed": "0.2", - "target_effect": "33", - "target_mask": "16" - }, - "1257": { - "id": 1257, - "name": "Infuse Mana Other IV", - "description": "Drains one-quarter of the caster's Mana and gives 120% of that to the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "92", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "1258": { - "id": 1258, - "name": "Infuse Mana Other V", - "description": "Drains one-quarter of the caster's Mana and gives 135% of that to the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "92", - "speed": "0.5", - "target_effect": "33", - "target_mask": "16" - }, - "1259": { - "id": 1259, - "name": "Infuse Mana Other VI", - "description": "Drains one-quarter of the caster's Mana and gives 150% of that to the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "92", - "speed": "0.75", - "target_effect": "33", - "target_mask": "16" - }, - "1260": { - "id": 1260, - "name": "Drain Mana Other I", - "description": "Drains 10% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "38", - "duration": "-1", - "mana": "10", - "family": "91", - "speed": "0.1", - "target_effect": "34", - "target_mask": "16" - }, - "1261": { - "id": 1261, - "name": "Drain Mana Other II", - "description": "Drains 15% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "88", - "duration": "-1", - "mana": "20", - "family": "91", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "1262": { - "id": 1262, - "name": "Drain Mana Other III", - "description": "Drains 20% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "138", - "duration": "-1", - "mana": "30", - "family": "91", - "speed": "0.2", - "target_effect": "34", - "target_mask": "16" - }, - "1263": { - "id": 1263, - "name": "Drain Mana Other IV", - "description": "Drains one-quarter of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "188", - "duration": "-1", - "mana": "40", - "family": "91", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "1264": { - "id": 1264, - "name": "Drain Mana Other V", - "description": "Drains 30% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "238", - "duration": "-1", - "mana": "50", - "family": "91", - "speed": "0.5", - "target_effect": "34", - "target_mask": "16" - }, - "1265": { - "id": 1265, - "name": "Drain Mana Other VI", - "description": "Drains 40% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "288", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.75", - "target_effect": "34", - "target_mask": "16" - }, - "1266": { - "id": 1266, - "name": "Health to Stamina Other I", - "description": "Drains one-half of the target's Health and gives 75% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "87", - "speed": "0.01", - "target_effect": "73", - "target_mask": "16" - }, - "1267": { - "id": 1267, - "name": "Health to Stamina Other II", - "description": "Drains one-half of the target's Health and gives 90% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "87", - "speed": "0.05", - "target_effect": "73", - "target_mask": "16" - }, - "1268": { - "id": 1268, - "name": "Health to Stamina Other III", - "description": "Drains one-half of the target's Health and gives 105% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "87", - "speed": "0.1", - "target_effect": "73", - "target_mask": "16" - }, - "1269": { - "id": 1269, - "name": "Health to Stamina Other IV", - "description": "Drains one-half of the target's Health and gives 120% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "1270": { - "id": 1270, - "name": "Health to Stamina Other V", - "description": "Drains one-half of the target's Health and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "87", - "speed": "0.2", - "target_effect": "73", - "target_mask": "16" - }, - "1271": { - "id": 1271, - "name": "Health to Stamina Other VI", - "description": "Drains one-half of the target's Health and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.3", - "target_effect": "73", - "target_mask": "16" - }, - "1272": { - "id": 1272, - "name": "Health to Stamina Self I", - "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Stamina (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "87", - "speed": "0.01", - "target_effect": "73", - "target_mask": "16" - }, - "1273": { - "id": 1273, - "name": "Health to Stamina Self II", - "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Stamina (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "87", - "speed": "0.05", - "target_effect": "73", - "target_mask": "16" - }, - "1274": { - "id": 1274, - "name": "Health to Stamina Self III", - "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Stamina (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "87", - "speed": "0.1", - "target_effect": "73", - "target_mask": "16" - }, - "1275": { - "id": 1275, - "name": "Health to Stamina Self IV", - "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Stamina (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "1276": { - "id": 1276, - "name": "Health to Stamina Self V", - "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "87", - "speed": "0.2", - "target_effect": "73", - "target_mask": "16" - }, - "1277": { - "id": 1277, - "name": "Health to Stamina Self VI", - "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.3", - "target_effect": "73", - "target_mask": "16" - }, - "1278": { - "id": 1278, - "name": "Health to Mana Self I", - "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Mana (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "87", - "speed": "0.01", - "target_effect": "74", - "target_mask": "16" - }, - "1279": { - "id": 1279, - "name": "Health to Mana Self II", - "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Mana (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "87", - "speed": "0.05", - "target_effect": "74", - "target_mask": "16" - }, - "1280": { - "id": 1280, - "name": "Health to Mana Self III", - "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Mana (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "87", - "speed": "0.1", - "target_effect": "74", - "target_mask": "16" - }, - "1281": { - "id": 1281, - "name": "Health to Mana Other IV", - "description": "Drains one-half of the target's Health and gives 120% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "1282": { - "id": 1282, - "name": "Health to Mana Other V", - "description": "Drains one-half of the target's Health and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "87", - "speed": "0.2", - "target_effect": "74", - "target_mask": "16" - }, - "1283": { - "id": 1283, - "name": "Health to Mana Other VI", - "description": "Drains one-half of the target's Health and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.3", - "target_effect": "74", - "target_mask": "16" - }, - "1284": { - "id": 1284, - "name": "Mana to Health Other I", - "description": "Drains one-half of the target's Mana and gives 75% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "91", - "speed": "0.01", - "target_effect": "77", - "target_mask": "16" - }, - "1285": { - "id": 1285, - "name": "Mana to Health Other II", - "description": "Drains one-half of the target's Mana and gives 90% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "91", - "speed": "0.05", - "target_effect": "77", - "target_mask": "16" - }, - "1286": { - "id": 1286, - "name": "Mana to Health Other III", - "description": "Drains one-half of the target's Mana and gives 105% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "91", - "speed": "0.1", - "target_effect": "77", - "target_mask": "16" - }, - "1287": { - "id": 1287, - "name": "Mana to Health Other IV", - "description": "Drains one-half of the target's Mana and gives 120% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "1288": { - "id": 1288, - "name": "Mana to Health Other V", - "description": "Drains one-half of the target's Mana and gives 135% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "91", - "speed": "0.2", - "target_effect": "77", - "target_mask": "16" - }, - "1289": { - "id": 1289, - "name": "Mana to Health Other VI", - "description": "Drains one-half of the target's Mana and gives 150% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.3", - "target_effect": "77", - "target_mask": "16" - }, - "1290": { - "id": 1290, - "name": "Mana to Health Self I", - "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Health (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "91", - "speed": "0.01", - "target_effect": "77", - "target_mask": "16" - }, - "1291": { - "id": 1291, - "name": "Mana to Health Self II", - "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Health (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "91", - "speed": "0.05", - "target_effect": "77", - "target_mask": "16" - }, - "1292": { - "id": 1292, - "name": "Mana to Health Self III", - "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Health (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "91", - "speed": "0.1", - "target_effect": "77", - "target_mask": "16" - }, - "1293": { - "id": 1293, - "name": "Mana to Health Self IV", - "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Health (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "1294": { - "id": 1294, - "name": "Mana to Health Self V", - "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "91", - "speed": "0.2", - "target_effect": "77", - "target_mask": "16" - }, - "1295": { - "id": 1295, - "name": "Mana to Health Self VI", - "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.3", - "target_effect": "77", - "target_mask": "16" - }, - "1296": { - "id": 1296, - "name": "Mana to Stamina Self I", - "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Stamina (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "91", - "speed": "0.01", - "target_effect": "78", - "target_mask": "16" - }, - "1297": { - "id": 1297, - "name": "Mana to Stamina Self II", - "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Stamina (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "91", - "speed": "0.05", - "target_effect": "78", - "target_mask": "16" - }, - "1298": { - "id": 1298, - "name": "Mana to Stamina Self III", - "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Stamina (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "91", - "speed": "0.1", - "target_effect": "78", - "target_mask": "16" - }, - "1299": { - "id": 1299, - "name": "Mana to Stamina Self IV", - "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Stamina (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "1300": { - "id": 1300, - "name": "Mana to Stamina Self V", - "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "91", - "speed": "0.2", - "target_effect": "78", - "target_mask": "16" - }, - "1301": { - "id": 1301, - "name": "Mana to Stamina Self VI", - "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.3", - "target_effect": "78", - "target_mask": "16" - }, - "1302": { - "id": 1302, - "name": "Mana to Stamina Other I", - "description": "Drains one-half of the target's Mana and gives 75% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "91", - "speed": "0.01", - "target_effect": "78", - "target_mask": "16" - }, - "1303": { - "id": 1303, - "name": "Mana to Stamina Other II", - "description": "Drains one-half of the target's Mana and gives 90% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "91", - "speed": "0.05", - "target_effect": "78", - "target_mask": "16" - }, - "1304": { - "id": 1304, - "name": "Mana to Stamina Other III", - "description": "Drains one-half of the target's Mana and gives 105% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "91", - "speed": "0.1", - "target_effect": "78", - "target_mask": "16" - }, - "1305": { - "id": 1305, - "name": "Mana to Stamina Other IV", - "description": "Drains one-half of the target's Mana and gives 120% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "1306": { - "id": 1306, - "name": "Mana to Stamina Other V", - "description": "Drains one-half of the target's Mana and gives 135% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "91", - "speed": "0.2", - "target_effect": "78", - "target_mask": "16" - }, - "1307": { - "id": 1307, - "name": "Mana to Stamina Other VI", - "description": "Drains one-half of the target's Mana and gives 150% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.3", - "target_effect": "78", - "target_mask": "16" - }, - "1308": { - "id": 1308, - "name": "Armor Self II", - "description": "Increases the caster's natural armor by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "115", - "speed": "0.05", - "target_effect": "55", - "target_mask": "16" - }, - "1309": { - "id": 1309, - "name": "Armor Self III", - "description": "Increases the caster's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "115", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "1310": { - "id": 1310, - "name": "Armor Self IV", - "description": "Increases the caster's natural armor by 100 points.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "1311": { - "id": 1311, - "name": "Armor Self V", - "description": "Increases the caster's natural armor by 150 points.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "115", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "1312": { - "id": 1312, - "name": "Armor Self VI", - "description": "Increases the caster's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "115", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "1313": { - "id": 1313, - "name": "Armor Other II", - "description": "Increases the target's natural armor by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "115", - "speed": "0.05", - "target_effect": "55", - "target_mask": "16" - }, - "1314": { - "id": 1314, - "name": "Armor Other III", - "description": "Increases the target's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "115", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "1315": { - "id": 1315, - "name": "Armor Other IV", - "description": "Increases the target's natural armor by 100 points.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "1316": { - "id": 1316, - "name": "Armor Other V", - "description": "Increases the target's natural armor by 150 points.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "115", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "1317": { - "id": 1317, - "name": "Armor Other VI", - "description": "Increases the target's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "115", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "1318": { - "id": 1318, - "name": "Imperil Self II", - "description": "Decreases the caster's natural armor by 50 points.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "116", - "speed": "0.05", - "target_effect": "56", - "target_mask": "16" - }, - "1319": { - "id": 1319, - "name": "Imperil Self III", - "description": "Decreases the caster's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "116", - "speed": "0.1", - "target_effect": "56", - "target_mask": "16" - }, - "1320": { - "id": 1320, - "name": "Imperil Self IV", - "description": "Decreases the caster's natural armor by 100 points.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "1321": { - "id": 1321, - "name": "Imperil Self V", - "description": "Decreases the caster's natural armor by 150 points.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "116", - "speed": "0.2", - "target_effect": "56", - "target_mask": "16" - }, - "1322": { - "id": 1322, - "name": "Imperil Self VI", - "description": "Decreases the caster's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "116", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "1323": { - "id": 1323, - "name": "Imperil Other II", - "description": "Decreases the target's natural armor by 50 points.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "116", - "speed": "0.05", - "target_effect": "56", - "target_mask": "16" - }, - "1324": { - "id": 1324, - "name": "Imperil Other III", - "description": "Decreases the target's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "116", - "speed": "0.1", - "target_effect": "56", - "target_mask": "16" - }, - "1325": { - "id": 1325, - "name": "Imperil Other IV", - "description": "Decreases the target's natural armor by 100 points.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "1326": { - "id": 1326, - "name": "Imperil Other V", - "description": "Decreases the target's natural armor by 150 points.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "116", - "speed": "0.2", - "target_effect": "56", - "target_mask": "16" - }, - "1327": { - "id": 1327, - "name": "Imperil Other VI", - "description": "Decreases the target's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "116", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "1328": { - "id": 1328, - "name": "Strength Self II", - "description": "Increases the caster's Strength by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "1", - "speed": "0.05", - "target_effect": "6", - "target_mask": "16" - }, - "1329": { - "id": 1329, - "name": "Strength Self III", - "description": "Increases the caster's Strength by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "1", - "speed": "0.1", - "target_effect": "6", - "target_mask": "16" - }, - "1330": { - "id": 1330, - "name": "Strength Self IV", - "description": "Increases the caster's Strength by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "1331": { - "id": 1331, - "name": "Strength Self V", - "description": "Increases the caster's Strength by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "1", - "speed": "0.2", - "target_effect": "6", - "target_mask": "16" - }, - "1332": { - "id": 1332, - "name": "Strength Self VI", - "description": "Increases the caster's Strength by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "1", - "speed": "0.3", - "target_effect": "6", - "target_mask": "16" - }, - "1333": { - "id": 1333, - "name": "Strength Other II", - "description": "Increases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "1", - "speed": "0.05", - "target_effect": "6", - "target_mask": "16" - }, - "1334": { - "id": 1334, - "name": "Strength Other III", - "description": "Increases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "1", - "speed": "0.1", - "target_effect": "6", - "target_mask": "16" - }, - "1335": { - "id": 1335, - "name": "Strength Other IV", - "description": "Increases the target's Strength by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "1336": { - "id": 1336, - "name": "Strength Other V", - "description": "Increases the target's Strength by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "1", - "speed": "0.2", - "target_effect": "6", - "target_mask": "16" - }, - "1337": { - "id": 1337, - "name": "Strength Other VI", - "description": "Increases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "1", - "speed": "0.3", - "target_effect": "6", - "target_mask": "16" - }, - "1339": { - "id": 1339, - "name": "Weakness Other II", - "description": "Decreases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "2", - "speed": "0.05", - "target_effect": "7", - "target_mask": "16" - }, - "1340": { - "id": 1340, - "name": "Weakness Other III", - "description": "Decreases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "2", - "speed": "0.1", - "target_effect": "7", - "target_mask": "16" - }, - "1341": { - "id": 1341, - "name": "Weakness Other IV", - "description": "Decreases the target's Strength by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "2", - "speed": "0.15", - "target_effect": "7", - "target_mask": "16" - }, - "1342": { - "id": 1342, - "name": "Weakness Other V", - "description": "Decreases the target's Strength by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "2", - "speed": "0.2", - "target_effect": "7", - "target_mask": "16" - }, - "1343": { - "id": 1343, - "name": "Weakness Other VI", - "description": "Decreases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "2", - "speed": "0.3", - "target_effect": "7", - "target_mask": "16" - }, - "1344": { - "id": 1344, - "name": "Weakness Self II", - "description": "Decrease the caster's Strength by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "2", - "speed": "0.05", - "target_effect": "7", - "target_mask": "16" - }, - "1345": { - "id": 1345, - "name": "Weakness Self III", - "description": "Decrease the caster's Strength by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "2", - "speed": "0.1", - "target_effect": "7", - "target_mask": "16" - }, - "1346": { - "id": 1346, - "name": "Weakness Self IV", - "description": "Decrease the caster's Strength by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "2", - "speed": "0.15", - "target_effect": "7", - "target_mask": "16" - }, - "1347": { - "id": 1347, - "name": "Weakness Self V", - "description": "Decrease the caster's Strength by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "2", - "speed": "0.2", - "target_effect": "7", - "target_mask": "16" - }, - "1348": { - "id": 1348, - "name": "Weakness Self VI", - "description": "Decrease the caster's Strength by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "2", - "speed": "0.2", - "target_effect": "7", - "target_mask": "16" - }, - "1349": { - "id": 1349, - "name": "Endurance Self I", - "description": "Increases the caster's Endurance by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "1350": { - "id": 1350, - "name": "Endurance Self II", - "description": "Increases the caster's Endurance by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "3", - "speed": "0.05", - "target_effect": "10", - "target_mask": "16" - }, - "1351": { - "id": 1351, - "name": "Endurance Self III", - "description": "Increases the caster's Endurance by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "3", - "speed": "0.1", - "target_effect": "10", - "target_mask": "16" - }, - "1352": { - "id": 1352, - "name": "Endurance Self IV", - "description": "Increases the caster's Endurance by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "1353": { - "id": 1353, - "name": "Endurance Self V", - "description": "Increases the caster's Endurance by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "3", - "speed": "0.2", - "target_effect": "10", - "target_mask": "16" - }, - "1354": { - "id": 1354, - "name": "Endurance Self VI", - "description": "Increases the caster's Endurance by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "3", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "1355": { - "id": 1355, - "name": "Endurance Other I", - "description": "Increases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "1356": { - "id": 1356, - "name": "Endurance Other II", - "description": "Increases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "3", - "speed": "0.05", - "target_effect": "10", - "target_mask": "16" - }, - "1357": { - "id": 1357, - "name": "Endurance Other III", - "description": "Increases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "3", - "speed": "0.1", - "target_effect": "10", - "target_mask": "16" - }, - "1358": { - "id": 1358, - "name": "Endurance Other IV", - "description": "Increases the target's Endurance by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "1359": { - "id": 1359, - "name": "Endurance Other V", - "description": "Increases the target's Endurance by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "3", - "speed": "0.2", - "target_effect": "10", - "target_mask": "16" - }, - "1360": { - "id": 1360, - "name": "Endurance Other VI", - "description": "Increases the target's Endurance by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "3", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "1361": { - "id": 1361, - "name": "Frailty Self I", - "description": "Decreases the caster's Endurance by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "4", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "1362": { - "id": 1362, - "name": "Frailty Self II", - "description": "Decreases the caster's Endurance by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "4", - "speed": "0.05", - "target_effect": "11", - "target_mask": "16" - }, - "1363": { - "id": 1363, - "name": "Frailty Self III", - "description": "Decreases the caster's Endurance by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "4", - "speed": "0.1", - "target_effect": "11", - "target_mask": "16" - }, - "1364": { - "id": 1364, - "name": "Frailty Self IV", - "description": "Decreases the caster's Endurance by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "1365": { - "id": 1365, - "name": "Frailty Self V", - "description": "Decreases the caster's Endurance by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "4", - "speed": "0.2", - "target_effect": "11", - "target_mask": "16" - }, - "1366": { - "id": 1366, - "name": "Frailty Self VI", - "description": "Decreases the caster's Endurance by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "4", - "speed": "0.3", - "target_effect": "11", - "target_mask": "16" - }, - "1367": { - "id": 1367, - "name": "Frailty Other I", - "description": "Decreases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "4", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "1368": { - "id": 1368, - "name": "Frailty Other II", - "description": "Decreases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "4", - "speed": "0.05", - "target_effect": "11", - "target_mask": "16" - }, - "1369": { - "id": 1369, - "name": "Frailty Other III", - "description": "Decreases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "4", - "speed": "0.1", - "target_effect": "11", - "target_mask": "16" - }, - "1370": { - "id": 1370, - "name": "Frailty Other IV", - "description": "Decreases the target's Endurance by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "1371": { - "id": 1371, - "name": "Frailty Other V", - "description": "Decreases the target's Endurance by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "4", - "speed": "0.2", - "target_effect": "11", - "target_mask": "16" - }, - "1372": { - "id": 1372, - "name": "Frailty Other VI", - "description": "Decreases the target's Endurance by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "4", - "speed": "0.3", - "target_effect": "11", - "target_mask": "16" - }, - "1373": { - "id": 1373, - "name": "Coordination Self I", - "description": "Increases the caster's Coordination by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "1374": { - "id": 1374, - "name": "Coordination Self II", - "description": "Increases the caster's Coordination by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "7", - "speed": "0.05", - "target_effect": "8", - "target_mask": "16" - }, - "1375": { - "id": 1375, - "name": "Coordination Self III", - "description": "Increases the caster's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "7", - "speed": "0.1", - "target_effect": "8", - "target_mask": "16" - }, - "1376": { - "id": 1376, - "name": "Coordination Self IV", - "description": "Increases the caster's Coordination by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "1377": { - "id": 1377, - "name": "Coordination Self V", - "description": "Increases the caster's Coordination by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "7", - "speed": "0.2", - "target_effect": "8", - "target_mask": "16" - }, - "1378": { - "id": 1378, - "name": "Coordination Self VI", - "description": "Increases the caster's Coordination by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "7", - "speed": "0.3", - "target_effect": "8", - "target_mask": "16" - }, - "1379": { - "id": 1379, - "name": "Coordination Other I", - "description": "Increases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "1380": { - "id": 1380, - "name": "Coordination Other II", - "description": "Increases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "7", - "speed": "0.05", - "target_effect": "8", - "target_mask": "16" - }, - "1381": { - "id": 1381, - "name": "Coordination Other III", - "description": "Increases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "7", - "speed": "0.1", - "target_effect": "8", - "target_mask": "16" - }, - "1382": { - "id": 1382, - "name": "Coordination Other IV", - "description": "Increases the target's Coordination by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "1383": { - "id": 1383, - "name": "Coordination Other V", - "description": "Increases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "7", - "speed": "0.2", - "target_effect": "8", - "target_mask": "16" - }, - "1384": { - "id": 1384, - "name": "Coordination Other VI", - "description": "Increases the target's Coordination by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "7", - "speed": "0.3", - "target_effect": "8", - "target_mask": "16" - }, - "1385": { - "id": 1385, - "name": "Clumsiness Self I", - "description": "Decreases the caster's Coordination by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "8", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "1386": { - "id": 1386, - "name": "Clumsiness Self II", - "description": "Decreases the caster's Coordination by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "8", - "speed": "0.05", - "target_effect": "9", - "target_mask": "16" - }, - "1387": { - "id": 1387, - "name": "Clumsiness Self III", - "description": "Decreases the caster's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "8", - "speed": "0.1", - "target_effect": "9", - "target_mask": "16" - }, - "1388": { - "id": 1388, - "name": "Clumsiness Self IV", - "description": "Decreases the caster's Coordination by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "1389": { - "id": 1389, - "name": "Clumsiness Self V", - "description": "Decreases the caster's Coordination by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "8", - "speed": "0.2", - "target_effect": "9", - "target_mask": "16" - }, - "1390": { - "id": 1390, - "name": "Clumsiness Self VI", - "description": "Decreases the caster's Coordination by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "8", - "speed": "0.3", - "target_effect": "9", - "target_mask": "16" - }, - "1391": { - "id": 1391, - "name": "Clumsiness Other I", - "description": "Decreases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "8", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "1392": { - "id": 1392, - "name": "Clumsiness Other II", - "description": "Decreases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "8", - "speed": "0.05", - "target_effect": "9", - "target_mask": "16" - }, - "1393": { - "id": 1393, - "name": "Clumsiness Other III", - "description": "Decreases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "8", - "speed": "0.1", - "target_effect": "9", - "target_mask": "16" - }, - "1394": { - "id": 1394, - "name": "Clumsiness Other IV", - "description": "Decreases the target's Coordination by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "1395": { - "id": 1395, - "name": "Clumsiness Other V", - "description": "Decreases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "8", - "speed": "0.2", - "target_effect": "9", - "target_mask": "16" - }, - "1396": { - "id": 1396, - "name": "Clumsiness Other VI", - "description": "Decreases the target's Coordination by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "8", - "speed": "0.3", - "target_effect": "9", - "target_mask": "16" - }, - "1397": { - "id": 1397, - "name": "Quickness Self I", - "description": "Increases the caster's Quickness by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "5", - "speed": "0", - "target_effect": "12", - "target_mask": "16" - }, - "1398": { - "id": 1398, - "name": "Quickness Self II", - "description": "Increases the caster's Quickness by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "5", - "speed": "0.05", - "target_effect": "12", - "target_mask": "16" - }, - "1399": { - "id": 1399, - "name": "Quickness Self III", - "description": "Increases the caster's Quickness by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "5", - "speed": "0.1", - "target_effect": "12", - "target_mask": "16" - }, - "1400": { - "id": 1400, - "name": "Quickness Self IV", - "description": "Increases the caster's Quickness by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "1401": { - "id": 1401, - "name": "Quickness Self V", - "description": "Increases the caster's Quickness by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "5", - "speed": "0.2", - "target_effect": "12", - "target_mask": "16" - }, - "1402": { - "id": 1402, - "name": "Quickness Self VI", - "description": "Increases the caster's Quickness by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "5", - "speed": "0.3", - "target_effect": "12", - "target_mask": "16" - }, - "1403": { - "id": 1403, - "name": "Quickness Other I", - "description": "Increases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "1404": { - "id": 1404, - "name": "Quickness Other II", - "description": "Increases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "5", - "speed": "0.05", - "target_effect": "12", - "target_mask": "16" - }, - "1405": { - "id": 1405, - "name": "Quickness Other III", - "description": "Increases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "5", - "speed": "0.1", - "target_effect": "12", - "target_mask": "16" - }, - "1406": { - "id": 1406, - "name": "Quickness Other IV", - "description": "Increases the target's Quickness by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "1407": { - "id": 1407, - "name": "Quickness Other V", - "description": "Increases the target's Quickness by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "5", - "speed": "0.2", - "target_effect": "12", - "target_mask": "16" - }, - "1408": { - "id": 1408, - "name": "Quickness Other VI", - "description": "Increases the target's Quickness by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "5", - "speed": "0.3", - "target_effect": "12", - "target_mask": "16" - }, - "1409": { - "id": 1409, - "name": "Slowness Self I", - "description": "Decreases the caster's Quickness by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "1410": { - "id": 1410, - "name": "Slowness Self II", - "description": "Decreases the caster's Quickness by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "6", - "speed": "0.05", - "target_effect": "13", - "target_mask": "16" - }, - "1411": { - "id": 1411, - "name": "Slowness Self III", - "description": "Decreases the caster's Quickness by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "6", - "speed": "0.1", - "target_effect": "13", - "target_mask": "16" - }, - "1412": { - "id": 1412, - "name": "Slowness Self IV", - "description": "Decreases the caster's Quickness by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "1413": { - "id": 1413, - "name": "Slowness Self V", - "description": "Decreases the caster's Quickness by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "6", - "speed": "0.2", - "target_effect": "13", - "target_mask": "16" - }, - "1414": { - "id": 1414, - "name": "Slowness Self VI", - "description": "Decreases the caster's Quickness by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "6", - "speed": "0.3", - "target_effect": "13", - "target_mask": "16" - }, - "1415": { - "id": 1415, - "name": "Slowness Other I", - "description": "Decreases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "1416": { - "id": 1416, - "name": "Slowness Other II", - "description": "Decreases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "6", - "speed": "0.05", - "target_effect": "13", - "target_mask": "16" - }, - "1417": { - "id": 1417, - "name": "Slowness Other III", - "description": "Decreases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "6", - "speed": "0.1", - "target_effect": "13", - "target_mask": "16" - }, - "1418": { - "id": 1418, - "name": "Slowness Other IV", - "description": "Decreases the target's Quickness by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "1419": { - "id": 1419, - "name": "Slowness Other V", - "description": "Decreases the target's Quickness by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "6", - "speed": "0.2", - "target_effect": "13", - "target_mask": "16" - }, - "1420": { - "id": 1420, - "name": "Slowness Other VI", - "description": "Decreases the target's Quickness by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "6", - "speed": "0.3", - "target_effect": "13", - "target_mask": "16" - }, - "1421": { - "id": 1421, - "name": "Focus Self I", - "description": "Increases the caster's Focus by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "1422": { - "id": 1422, - "name": "Focus Self II", - "description": "Increases the caster's Focus by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "9", - "speed": "0.05", - "target_effect": "16", - "target_mask": "16" - }, - "1423": { - "id": 1423, - "name": "Focus Self III", - "description": "Increases the caster's Focus by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "9", - "speed": "0.1", - "target_effect": "16", - "target_mask": "16" - }, - "1424": { - "id": 1424, - "name": "Focus Self IV", - "description": "Increases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "1425": { - "id": 1425, - "name": "Focus Self V", - "description": "Increases the caster's Focus by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "9", - "speed": "0.2", - "target_effect": "16", - "target_mask": "16" - }, - "1426": { - "id": 1426, - "name": "Focus Self VI", - "description": "Increases the caster's Focus by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "9", - "speed": "0.3", - "target_effect": "16", - "target_mask": "16" - }, - "1427": { - "id": 1427, - "name": "Focus Other I", - "description": "Increases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "1428": { - "id": 1428, - "name": "Focus Other II", - "description": "Increases the target's Focus by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "9", - "speed": "0.05", - "target_effect": "16", - "target_mask": "16" - }, - "1429": { - "id": 1429, - "name": "Focus Other III", - "description": "Increases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "9", - "speed": "0.1", - "target_effect": "16", - "target_mask": "16" - }, - "1430": { - "id": 1430, - "name": "Focus Other IV", - "description": "Increases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "1431": { - "id": 1431, - "name": "Focus Other V", - "description": "Increases the target's Focus by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "9", - "speed": "0.2", - "target_effect": "16", - "target_mask": "16" - }, - "1432": { - "id": 1432, - "name": "Focus Other VI", - "description": "Increases the target's Focus by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "9", - "speed": "0.3", - "target_effect": "16", - "target_mask": "16" - }, - "1433": { - "id": 1433, - "name": "Bafflement Self I", - "description": "Decreases the caster's Focus by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "10", - "speed": "0.01", - "target_effect": "17", - "target_mask": "16" - }, - "1434": { - "id": 1434, - "name": "Bafflement Self II", - "description": "Decreases the caster's Focus by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "10", - "speed": "0.05", - "target_effect": "17", - "target_mask": "16" - }, - "1435": { - "id": 1435, - "name": "Bafflement Self III", - "description": "Decreases the caster's Focus by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "10", - "speed": "0.1", - "target_effect": "17", - "target_mask": "16" - }, - "1436": { - "id": 1436, - "name": "Bafflement Self IV", - "description": "Decreases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "1437": { - "id": 1437, - "name": "Bafflement Self V", - "description": "Decreases the caster's Focus by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "10", - "speed": "0.2", - "target_effect": "17", - "target_mask": "16" - }, - "1438": { - "id": 1438, - "name": "Bafflement Self VI", - "description": "Decreases the caster's Focus by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "10", - "speed": "0.3", - "target_effect": "17", - "target_mask": "16" - }, - "1439": { - "id": 1439, - "name": "Bafflement Other I", - "description": "Decreases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "10", - "speed": "0.01", - "target_effect": "17", - "target_mask": "16" - }, - "1440": { - "id": 1440, - "name": "Bafflement Other II", - "description": "Decreases the target's Focus by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "10", - "speed": "0.05", - "target_effect": "17", - "target_mask": "16" - }, - "1441": { - "id": 1441, - "name": "Bafflement Other III", - "description": "Decreases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "10", - "speed": "0.1", - "target_effect": "17", - "target_mask": "16" - }, - "1442": { - "id": 1442, - "name": "Bafflement Other IV", - "description": "Decreases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "1443": { - "id": 1443, - "name": "Bafflement Other V", - "description": "Decreases the target's Focus by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "10", - "speed": "0.2", - "target_effect": "17", - "target_mask": "16" - }, - "1444": { - "id": 1444, - "name": "Bafflement Other VI", - "description": "Decreases the target's Focus by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "10", - "speed": "0.3", - "target_effect": "17", - "target_mask": "16" - }, - "1445": { - "id": 1445, - "name": "Willpower Self I", - "description": "Increases the caster's Self by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "1446": { - "id": 1446, - "name": "Willpower Self II", - "description": "Increases the caster's Self by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "11", - "speed": "0.05", - "target_effect": "14", - "target_mask": "16" - }, - "1447": { - "id": 1447, - "name": "Willpower Self III", - "description": "Increases the caster's Self by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "11", - "speed": "0.1", - "target_effect": "14", - "target_mask": "16" - }, - "1448": { - "id": 1448, - "name": "Willpower Self IV", - "description": "Increases the caster's Self by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "1449": { - "id": 1449, - "name": "Willpower Self V", - "description": "Increases the caster's Self by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "11", - "speed": "0.2", - "target_effect": "14", - "target_mask": "16" - }, - "1450": { - "id": 1450, - "name": "Willpower Self VI", - "description": "Increases the caster's Self by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "11", - "speed": "0.3", - "target_effect": "14", - "target_mask": "16" - }, - "1451": { - "id": 1451, - "name": "Willpower Other I", - "description": "Increases the target's Self by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "1452": { - "id": 1452, - "name": "Willpower Other II", - "description": "Increases the target's Self by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "11", - "speed": "0.05", - "target_effect": "14", - "target_mask": "16" - }, - "1453": { - "id": 1453, - "name": "Willpower Other III", - "description": "Increases the target's Self by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "11", - "speed": "0.1", - "target_effect": "14", - "target_mask": "16" - }, - "1454": { - "id": 1454, - "name": "Willpower Other IV", - "description": "Increases the target's Self by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "1455": { - "id": 1455, - "name": "Willpower Other V", - "description": "Increases the target's Self by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "11", - "speed": "0.2", - "target_effect": "14", - "target_mask": "16" - }, - "1456": { - "id": 1456, - "name": "Willpower Other VI", - "description": "Increases the target's Self by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "11", - "speed": "0.3", - "target_effect": "14", - "target_mask": "16" - }, - "1457": { - "id": 1457, - "name": "Feeblemind Self I", - "description": "Decreases the caster's Self by 10 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "60", - "mana": "15", - "family": "12", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "1458": { - "id": 1458, - "name": "Feeblemind Self II", - "description": "Decreases the caster's Self by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "12", - "speed": "0.05", - "target_effect": "15", - "target_mask": "16" - }, - "1459": { - "id": 1459, - "name": "Feeblemind Self III", - "description": "Decreases the caster's Self by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "12", - "speed": "0.1", - "target_effect": "15", - "target_mask": "16" - }, - "1460": { - "id": 1460, - "name": "Feeblemind Self IV", - "description": "Decreases the caster's Self by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "1461": { - "id": 1461, - "name": "Feeblemind Self V", - "description": "Decreases the caster's Self by 30 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "60", - "family": "12", - "speed": "0.2", - "target_effect": "15", - "target_mask": "16" - }, - "1462": { - "id": 1462, - "name": "Feeblemind Self VI", - "description": "Decreases the caster's Self by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "12", - "speed": "0.3", - "target_effect": "15", - "target_mask": "16" - }, - "1463": { - "id": 1463, - "name": "Feeblemind Other I", - "description": "Decreases the target's Self by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "12", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "1464": { - "id": 1464, - "name": "Feeblemind Other II", - "description": "Decreases the target's Self by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "12", - "speed": "0.05", - "target_effect": "15", - "target_mask": "16" - }, - "1465": { - "id": 1465, - "name": "Feeblemind Other III", - "description": "Decreases the target's Self by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "12", - "speed": "0.1", - "target_effect": "15", - "target_mask": "16" - }, - "1466": { - "id": 1466, - "name": "Feeblemind Other IV", - "description": "Decreases the target's Self by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "1467": { - "id": 1467, - "name": "Feeblemind Other V", - "description": "Decreases the target's Self by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "12", - "speed": "0.2", - "target_effect": "15", - "target_mask": "16" - }, - "1468": { - "id": 1468, - "name": "Feeblemind Other VI", - "description": "Decreases the target's Self by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "12", - "speed": "0.3", - "target_effect": "15", - "target_mask": "16" - }, - "1469": { - "id": 1469, - "name": "Hermetic Void I", - "description": "Decreases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "194", - "speed": "0.01", - "target_effect": "68", - "target_mask": "32768" - }, - "1470": { - "id": 1470, - "name": "Hermetic Void II", - "description": "Decreases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "194", - "speed": "0.05", - "target_effect": "68", - "target_mask": "32768" - }, - "1471": { - "id": 1471, - "name": "Hermetic Void III", - "description": "Decreases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "194", - "speed": "0.1", - "target_effect": "68", - "target_mask": "32768" - }, - "1472": { - "id": 1472, - "name": "Hermetic Void IV", - "description": "Decreases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "194", - "speed": "0.15", - "target_effect": "68", - "target_mask": "32768" - }, - "1473": { - "id": 1473, - "name": "Hermetic Void V", - "description": "Decreases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "194", - "speed": "0.2", - "target_effect": "68", - "target_mask": "32768" - }, - "1474": { - "id": 1474, - "name": "Hermetic Void VI", - "description": "Decreases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "194", - "speed": "0.3", - "target_effect": "68", - "target_mask": "32768" - }, - "1475": { - "id": 1475, - "name": "Aura of Hermetic Link Self I", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "1800", - "mana": "10", - "family": "195", - "speed": "0.01", - "target_effect": "67", - "target_mask": "16" - }, - "1476": { - "id": 1476, - "name": "Aura of Hermetic Link Self II", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "195", - "speed": "0.05", - "target_effect": "67", - "target_mask": "16" - }, - "1477": { - "id": 1477, - "name": "Aura of Hermetic Link Self III", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "195", - "speed": "0.1", - "target_effect": "67", - "target_mask": "16" - }, - "1478": { - "id": 1478, - "name": "Aura of Hermetic Link Self IV", - "description": "Increases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "1479": { - "id": 1479, - "name": "Aura of Hermetic Link Self V", - "description": "Increases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "195", - "speed": "0.2", - "target_effect": "67", - "target_mask": "16" - }, - "1480": { - "id": 1480, - "name": "Aura of Hermetic Link Self VI", - "description": "Increases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "195", - "speed": "0.3", - "target_effect": "67", - "target_mask": "16" - }, - "1481": { - "id": 1481, - "name": "Flaming Missile Volley", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "1482": { - "id": 1482, - "name": "Impenetrability II", - "description": "Improves a shield or piece of armor's armor value by 50 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "160", - "speed": "0.05", - "target_effect": "142", - "target_mask": "6" - }, - "1483": { - "id": 1483, - "name": "Impenetrability III", - "description": "Improves a shield or piece of armor's armor value by 75 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "160", - "speed": "0.1", - "target_effect": "142", - "target_mask": "6" - }, - "1484": { - "id": 1484, - "name": "Impenetrability IV", - "description": "Improves a shield or piece of armor's armor value by 100 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "1485": { - "id": 1485, - "name": "Impenetrability V", - "description": "Improves a shield or piece of armor's armor value by 150 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "160", - "speed": "0.2", - "target_effect": "142", - "target_mask": "6" - }, - "1486": { - "id": 1486, - "name": "Impenetrability VI", - "description": "Improves a shield or piece of armor's armor value by 200 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "160", - "speed": "0.3", - "target_effect": "142", - "target_mask": "6" - }, - "1487": { - "id": 1487, - "name": "Brittlemail I", - "description": "Worsens a shield or piece of armor's armor value by 20 points.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "161", - "speed": "0.01", - "target_effect": "143", - "target_mask": "6" - }, - "1488": { - "id": 1488, - "name": "Brittlemail II", - "description": "Worsens a shield or piece of armor's armor value by 50 points.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "161", - "speed": "0.05", - "target_effect": "143", - "target_mask": "6" - }, - "1489": { - "id": 1489, - "name": "Brittlemail III", - "description": "Worsens a shield or piece of armor's armor value by 75 points.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "161", - "speed": "0.1", - "target_effect": "143", - "target_mask": "6" - }, - "1490": { - "id": 1490, - "name": "Brittlemail IV", - "description": "Worsens a shield or piece of armor's armor value by 100 points.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "161", - "speed": "0.15", - "target_effect": "143", - "target_mask": "6" - }, - "1491": { - "id": 1491, - "name": "Brittlemail V", - "description": "Worsens a shield or piece of armor's armor value by 150 points.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "161", - "speed": "0.2", - "target_effect": "143", - "target_mask": "6" - }, - "1492": { - "id": 1492, - "name": "Brittlemail VI", - "description": "Worsens a shield or piece of armor's armor value by 200 points.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "161", - "speed": "0.3", - "target_effect": "143", - "target_mask": "6" - }, - "1493": { - "id": 1493, - "name": "Acid Bane I", - "description": "Increases a shield or piece of armor's resistance to acid damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "162", - "speed": "0.01", - "target_effect": "63", - "target_mask": "6" - }, - "1494": { - "id": 1494, - "name": "Acid Bane II", - "description": "Increases a shield or piece of armor's resistance to acid damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "162", - "speed": "0.05", - "target_effect": "63", - "target_mask": "6" - }, - "1495": { - "id": 1495, - "name": "Acid Bane III", - "description": "Increases a shield or piece of armor's resistance to acid damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "162", - "speed": "0.1", - "target_effect": "63", - "target_mask": "6" - }, - "1496": { - "id": 1496, - "name": "Acid Bane IV", - "description": "Increases a shield or piece of armor's resistance to acid damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "162", - "speed": "0.15", - "target_effect": "63", - "target_mask": "6" - }, - "1497": { - "id": 1497, - "name": "Acid Bane V", - "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "162", - "speed": "0.2", - "target_effect": "63", - "target_mask": "6" - }, - "1498": { - "id": 1498, - "name": "Acid Bane VI", - "description": "Increases a shield or piece of armor's resistance to acid damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "162", - "speed": "0.3", - "target_effect": "63", - "target_mask": "6" - }, - "1499": { - "id": 1499, - "name": "Acid Lure I", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "163", - "speed": "0.01", - "target_effect": "64", - "target_mask": "6" - }, - "1500": { - "id": 1500, - "name": "Acid Lure II", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "163", - "speed": "0.05", - "target_effect": "64", - "target_mask": "6" - }, - "1501": { - "id": 1501, - "name": "Acid Lure III", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "163", - "speed": "0.1", - "target_effect": "64", - "target_mask": "6" - }, - "1502": { - "id": 1502, - "name": "Acid Lure IV", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "163", - "speed": "0.15", - "target_effect": "64", - "target_mask": "6" - }, - "1503": { - "id": 1503, - "name": "Acid Lure V", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "163", - "speed": "0.2", - "target_effect": "64", - "target_mask": "6" - }, - "1504": { - "id": 1504, - "name": "Acid Lure VI", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "163", - "speed": "0.3", - "target_effect": "64", - "target_mask": "6" - }, - "1505": { - "id": 1505, - "name": "Bludgeon Lure I", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "165", - "speed": "0.01", - "target_effect": "68", - "target_mask": "6" - }, - "1506": { - "id": 1506, - "name": "Bludgeon Lure II", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "165", - "speed": "0.05", - "target_effect": "68", - "target_mask": "6" - }, - "1507": { - "id": 1507, - "name": "Bludgeon Lure III", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "165", - "speed": "0.1", - "target_effect": "68", - "target_mask": "6" - }, - "1508": { - "id": 1508, - "name": "Bludgeon Lure IV", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "165", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "1509": { - "id": 1509, - "name": "Bludgeon Lure V", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "165", - "speed": "0.2", - "target_effect": "68", - "target_mask": "6" - }, - "1510": { - "id": 1510, - "name": "Bludgeon Lure VI", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "165", - "speed": "0.3", - "target_effect": "68", - "target_mask": "6" - }, - "1511": { - "id": 1511, - "name": "Bludgeon Bane I", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "164", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "1512": { - "id": 1512, - "name": "Bludgeon Bane II", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "164", - "speed": "0.05", - "target_effect": "67", - "target_mask": "6" - }, - "1513": { - "id": 1513, - "name": "Bludgeon Bane III", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "164", - "speed": "0.1", - "target_effect": "67", - "target_mask": "6" - }, - "1514": { - "id": 1514, - "name": "Bludgeon Bane IV", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "164", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "1515": { - "id": 1515, - "name": "Bludgeon Bane V", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "164", - "speed": "0.2", - "target_effect": "67", - "target_mask": "6" - }, - "1516": { - "id": 1516, - "name": "Bludgeon Bane VI", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "164", - "speed": "0.3", - "target_effect": "67", - "target_mask": "6" - }, - "1517": { - "id": 1517, - "name": "Frost Lure I", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "167", - "speed": "0.01", - "target_effect": "66", - "target_mask": "6" - }, - "1518": { - "id": 1518, - "name": "Frost Lure II", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "167", - "speed": "0.05", - "target_effect": "66", - "target_mask": "6" - }, - "1519": { - "id": 1519, - "name": "Frost Lure III", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "167", - "speed": "0.1", - "target_effect": "66", - "target_mask": "6" - }, - "1520": { - "id": 1520, - "name": "Frost Lure IV", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "167", - "speed": "0.15", - "target_effect": "66", - "target_mask": "6" - }, - "1521": { - "id": 1521, - "name": "Frost Lure V", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "167", - "speed": "0.2", - "target_effect": "66", - "target_mask": "6" - }, - "1522": { - "id": 1522, - "name": "Frost Lure VI", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "167", - "speed": "0.3", - "target_effect": "66", - "target_mask": "6" - }, - "1523": { - "id": 1523, - "name": "Frost Bane I", - "description": "Increases a shield or piece of armor's resistance to cold damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "166", - "speed": "0.01", - "target_effect": "65", - "target_mask": "6" - }, - "1524": { - "id": 1524, - "name": "Frost Bane II", - "description": "Increases a shield or piece of armor's resistance to cold damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "166", - "speed": "0.05", - "target_effect": "65", - "target_mask": "6" - }, - "1525": { - "id": 1525, - "name": "Frost Bane III", - "description": "Increases a shield or piece of armor's resistance to cold damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "166", - "speed": "0.1", - "target_effect": "65", - "target_mask": "6" - }, - "1526": { - "id": 1526, - "name": "Frost Bane IV", - "description": "Increases a shield or piece of armor's resistance to cold damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "166", - "speed": "0.15", - "target_effect": "65", - "target_mask": "6" - }, - "1527": { - "id": 1527, - "name": "Frost Bane V", - "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "166", - "speed": "0.2", - "target_effect": "65", - "target_mask": "6" - }, - "1528": { - "id": 1528, - "name": "Frost Bane VI", - "description": "Increases a shield or piece of armor's resistance to cold damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "166", - "speed": "0.3", - "target_effect": "65", - "target_mask": "6" - }, - "1529": { - "id": 1529, - "name": "Lightning Lure I", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "169", - "speed": "0.01", - "target_effect": "68", - "target_mask": "6" - }, - "1530": { - "id": 1530, - "name": "Lightning Lure II", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "169", - "speed": "0.05", - "target_effect": "68", - "target_mask": "6" - }, - "1531": { - "id": 1531, - "name": "Lightning Lure III", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "169", - "speed": "0.1", - "target_effect": "68", - "target_mask": "6" - }, - "1532": { - "id": 1532, - "name": "Lightning Lure IV", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "169", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "1533": { - "id": 1533, - "name": "Lightning Lure V", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "169", - "speed": "0.2", - "target_effect": "68", - "target_mask": "6" - }, - "1534": { - "id": 1534, - "name": "Lightning Lure VI", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "169", - "speed": "0.3", - "target_effect": "68", - "target_mask": "6" - }, - "1535": { - "id": 1535, - "name": "Lightning Bane I", - "description": "Increases a shield or piece of armor's resistance to electric damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "168", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "1536": { - "id": 1536, - "name": "Lightning Bane II", - "description": "Increases a shield or piece of armor's resistance to electric damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "168", - "speed": "0.05", - "target_effect": "67", - "target_mask": "6" - }, - "1537": { - "id": 1537, - "name": "Lightning Bane III", - "description": "Increases a shield or piece of armor's resistance to electric damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "168", - "speed": "0.1", - "target_effect": "67", - "target_mask": "6" - }, - "1538": { - "id": 1538, - "name": "Lightning Bane IV", - "description": "Increases a shield or piece of armor's resistance to electric damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "168", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "1539": { - "id": 1539, - "name": "Lightning Bane V", - "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "168", - "speed": "0.2", - "target_effect": "67", - "target_mask": "6" - }, - "1540": { - "id": 1540, - "name": "Lightning Bane VI", - "description": "Increases a shield or piece of armor's resistance to electric damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "168", - "speed": "0.3", - "target_effect": "67", - "target_mask": "6" - }, - "1541": { - "id": 1541, - "name": "Flame Lure I", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "171", - "speed": "0.01", - "target_effect": "58", - "target_mask": "6" - }, - "1542": { - "id": 1542, - "name": "Flame Lure II", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "171", - "speed": "0.05", - "target_effect": "58", - "target_mask": "6" - }, - "1543": { - "id": 1543, - "name": "Flame Lure III", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "171", - "speed": "0.1", - "target_effect": "58", - "target_mask": "6" - }, - "1544": { - "id": 1544, - "name": "Flame Lure IV", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "171", - "speed": "0.15", - "target_effect": "58", - "target_mask": "6" - }, - "1545": { - "id": 1545, - "name": "Flame Lure V", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "171", - "speed": "0.2", - "target_effect": "58", - "target_mask": "6" - }, - "1546": { - "id": 1546, - "name": "Flame Lure VI", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "171", - "speed": "0.3", - "target_effect": "58", - "target_mask": "6" - }, - "1547": { - "id": 1547, - "name": "Flame Bane I", - "description": "Increases a shield or piece of armor's resistance to fire damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "170", - "speed": "0.01", - "target_effect": "57", - "target_mask": "6" - }, - "1548": { - "id": 1548, - "name": "Flame Bane II", - "description": "Increases a shield or piece of armor's resistance to fire damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "170", - "speed": "0.05", - "target_effect": "57", - "target_mask": "6" - }, - "1549": { - "id": 1549, - "name": "Flame Bane III", - "description": "Increases a shield or piece of armor's resistance to fire damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "170", - "speed": "0.1", - "target_effect": "57", - "target_mask": "6" - }, - "1550": { - "id": 1550, - "name": "Flame Bane IV", - "description": "Increases a shield or piece of armor's resistance to fire damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "170", - "speed": "0.15", - "target_effect": "57", - "target_mask": "6" - }, - "1551": { - "id": 1551, - "name": "Flame Bane V", - "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "170", - "speed": "0.2", - "target_effect": "57", - "target_mask": "6" - }, - "1552": { - "id": 1552, - "name": "Flame Bane VI", - "description": "Increases a shield or piece of armor's resistance to fire damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "170", - "speed": "0.3", - "target_effect": "57", - "target_mask": "6" - }, - "1553": { - "id": 1553, - "name": "Blade Lure II", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "175", - "speed": "0.05", - "target_effect": "62", - "target_mask": "6" - }, - "1554": { - "id": 1554, - "name": "Blade Lure III", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "175", - "speed": "0.1", - "target_effect": "62", - "target_mask": "6" - }, - "1555": { - "id": 1555, - "name": "Blade Lure IV", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "175", - "speed": "0.15", - "target_effect": "62", - "target_mask": "6" - }, - "1556": { - "id": 1556, - "name": "Blade Lure V", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "175", - "speed": "0.2", - "target_effect": "62", - "target_mask": "6" - }, - "1557": { - "id": 1557, - "name": "Blade Lure VI", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "175", - "speed": "0.3", - "target_effect": "62", - "target_mask": "6" - }, - "1558": { - "id": 1558, - "name": "Blade Bane II", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "174", - "speed": "0.05", - "target_effect": "61", - "target_mask": "6" - }, - "1559": { - "id": 1559, - "name": "Blade Bane III", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "174", - "speed": "0.1", - "target_effect": "61", - "target_mask": "6" - }, - "1560": { - "id": 1560, - "name": "Blade Bane IV", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "174", - "speed": "0.15", - "target_effect": "61", - "target_mask": "6" - }, - "1561": { - "id": 1561, - "name": "Blade Bane V", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "174", - "speed": "0.2", - "target_effect": "61", - "target_mask": "6" - }, - "1562": { - "id": 1562, - "name": "Blade Bane VI", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "174", - "speed": "0.3", - "target_effect": "61", - "target_mask": "6" - }, - "1563": { - "id": 1563, - "name": "Piercing Lure I", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "173", - "speed": "0.01", - "target_effect": "60", - "target_mask": "6" - }, - "1564": { - "id": 1564, - "name": "Piercing Lure II", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 25%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "173", - "speed": "0.05", - "target_effect": "60", - "target_mask": "6" - }, - "1565": { - "id": 1565, - "name": "Piercing Lure III", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 50%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "173", - "speed": "0.1", - "target_effect": "60", - "target_mask": "6" - }, - "1566": { - "id": 1566, - "name": "Piercing Lure IV", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 75%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "173", - "speed": "0.15", - "target_effect": "60", - "target_mask": "6" - }, - "1567": { - "id": 1567, - "name": "Piercing Lure V", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 100%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "173", - "speed": "0.2", - "target_effect": "60", - "target_mask": "6" - }, - "1568": { - "id": 1568, - "name": "Piercing Lure VI", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 150%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "173", - "speed": "0.3", - "target_effect": "60", - "target_mask": "6" - }, - "1569": { - "id": 1569, - "name": "Piercing Bane I", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "172", - "speed": "0.01", - "target_effect": "59", - "target_mask": "6" - }, - "1570": { - "id": 1570, - "name": "Piercing Bane II", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "172", - "speed": "0.05", - "target_effect": "59", - "target_mask": "6" - }, - "1571": { - "id": 1571, - "name": "Piercing Bane III", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "172", - "speed": "0.1", - "target_effect": "59", - "target_mask": "6" - }, - "1572": { - "id": 1572, - "name": "Piercing Bane IV", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "172", - "speed": "0.15", - "target_effect": "59", - "target_mask": "6" - }, - "1573": { - "id": 1573, - "name": "Piercing Bane V", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "172", - "speed": "0.2", - "target_effect": "59", - "target_mask": "6" - }, - "1574": { - "id": 1574, - "name": "Piercing Bane VI", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "172", - "speed": "0.3", - "target_effect": "59", - "target_mask": "6" - }, - "1575": { - "id": 1575, - "name": "Strengthen Lock I", - "description": "Increases a lock's resistance to picking by 10 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "192", - "speed": "0.01", - "target_effect": "59", - "target_mask": "640" - }, - "1576": { - "id": 1576, - "name": "Strengthen Lock II", - "description": "Increases a lock's resistance to picking by 25 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "780", - "mana": "20", - "family": "192", - "speed": "0.05", - "target_effect": "59", - "target_mask": "640" - }, - "1577": { - "id": 1577, - "name": "Strengthen Lock III", - "description": "Increases a lock's resistance to picking by 50 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "780", - "mana": "30", - "family": "192", - "speed": "0.1", - "target_effect": "59", - "target_mask": "640" - }, - "1578": { - "id": 1578, - "name": "Strengthen Lock IV", - "description": "Increases a lock's resistance to picking by 75 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "780", - "mana": "40", - "family": "192", - "speed": "0.15", - "target_effect": "59", - "target_mask": "640" - }, - "1579": { - "id": 1579, - "name": "Strengthen Lock V", - "description": "Increases a lock's resistance to picking by 100 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1020", - "mana": "50", - "family": "192", - "speed": "0.2", - "target_effect": "59", - "target_mask": "640" - }, - "1580": { - "id": 1580, - "name": "Strengthen Lock VI", - "description": "Increases a lock's resistance to picking by 150 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "1020", - "mana": "60", - "family": "192", - "speed": "0.3", - "target_effect": "59", - "target_mask": "640" - }, - "1581": { - "id": 1581, - "name": "Weaken Lock I", - "description": "Decreases a lock's resistance to picking by 10 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "193", - "speed": "0.01", - "target_effect": "60", - "target_mask": "640" - }, - "1582": { - "id": 1582, - "name": "Weaken Lock II", - "description": "Decreases a lock's resistance to picking by 25 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "90", - "mana": "20", - "family": "193", - "speed": "0.05", - "target_effect": "60", - "target_mask": "640" - }, - "1583": { - "id": 1583, - "name": "Weaken Lock III", - "description": "Decreases a lock's resistance to picking by 50 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "120", - "mana": "30", - "family": "193", - "speed": "0.1", - "target_effect": "60", - "target_mask": "640" - }, - "1584": { - "id": 1584, - "name": "Weaken Lock IV", - "description": "Decreases a lock's resistance to picking by 75 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "150", - "mana": "40", - "family": "193", - "speed": "0.15", - "target_effect": "60", - "target_mask": "640" - }, - "1585": { - "id": 1585, - "name": "Weaken Lock V", - "description": "Decreases a lock's resistance to picking by 100 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "180", - "mana": "50", - "family": "193", - "speed": "0.2", - "target_effect": "60", - "target_mask": "640" - }, - "1586": { - "id": 1586, - "name": "Weaken Lock VI", - "description": "Decreases a lock's resistance to picking by 150 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "210", - "mana": "60", - "family": "193", - "speed": "0.3", - "target_effect": "60", - "target_mask": "640" - }, - "1587": { - "id": 1587, - "name": "Aura of Heart Seeker Self I", - "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "152", - "speed": "0.01", - "target_effect": "59", - "target_mask": "16" - }, - "1588": { - "id": 1588, - "name": "Aura of Heart Seeker Self II", - "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "152", - "speed": "0.05", - "target_effect": "59", - "target_mask": "16" - }, - "1589": { - "id": 1589, - "name": "Aura of Heart Seeker Self III", - "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "152", - "speed": "0.1", - "target_effect": "59", - "target_mask": "16" - }, - "1590": { - "id": 1590, - "name": "Aura of Heart Seeker Self IV", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "1591": { - "id": 1591, - "name": "Aura of Heart Seeker Self V", - "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "152", - "speed": "0.2", - "target_effect": "59", - "target_mask": "16" - }, - "1592": { - "id": 1592, - "name": "Aura of Heart Seeker Self VI", - "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "152", - "speed": "0.3", - "target_effect": "59", - "target_mask": "16" - }, - "1593": { - "id": 1593, - "name": "Turn Blade I", - "description": "Decreases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "153", - "speed": "0.01", - "target_effect": "60", - "target_mask": "257" - }, - "1594": { - "id": 1594, - "name": "Turn Blade II", - "description": "Decreases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "153", - "speed": "0.05", - "target_effect": "60", - "target_mask": "257" - }, - "1595": { - "id": 1595, - "name": "Turn Blade III", - "description": "Decreases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "153", - "speed": "0.1", - "target_effect": "60", - "target_mask": "257" - }, - "1596": { - "id": 1596, - "name": "Turn Blade IV", - "description": "Decreases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "153", - "speed": "0.15", - "target_effect": "60", - "target_mask": "257" - }, - "1597": { - "id": 1597, - "name": "Turn Blade V", - "description": "Decreases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "153", - "speed": "0.2", - "target_effect": "60", - "target_mask": "257" - }, - "1598": { - "id": 1598, - "name": "Turn Blade VI", - "description": "Decreases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "153", - "speed": "0.3", - "target_effect": "60", - "target_mask": "257" - }, - "1599": { - "id": 1599, - "name": "Aura of Defender Self I", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "156", - "speed": "0.01", - "target_effect": "61", - "target_mask": "16" - }, - "1601": { - "id": 1601, - "name": "Aura of Defender Self II", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "156", - "speed": "0.05", - "target_effect": "61", - "target_mask": "16" - }, - "1602": { - "id": 1602, - "name": "Aura of Defender Self III", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "156", - "speed": "0.1", - "target_effect": "61", - "target_mask": "16" - }, - "1603": { - "id": 1603, - "name": "Aura of Defender Self IV", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "1604": { - "id": 1604, - "name": "Aura of Defender Self V", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "156", - "speed": "0.2", - "target_effect": "61", - "target_mask": "16" - }, - "1605": { - "id": 1605, - "name": "Aura of Defender Self VI", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "156", - "speed": "0.3", - "target_effect": "61", - "target_mask": "16" - }, - "1606": { - "id": 1606, - "name": "Lure Blade I", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "157", - "speed": "0.01", - "target_effect": "62", - "target_mask": "33025" - }, - "1607": { - "id": 1607, - "name": "Lure Blade II", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "157", - "speed": "0.05", - "target_effect": "62", - "target_mask": "33025" - }, - "1608": { - "id": 1608, - "name": "Lure Blade III", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "157", - "speed": "0.1", - "target_effect": "62", - "target_mask": "33025" - }, - "1609": { - "id": 1609, - "name": "Lure Blade IV", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "157", - "speed": "0.15", - "target_effect": "62", - "target_mask": "33025" - }, - "1610": { - "id": 1610, - "name": "Lure Blade V", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "157", - "speed": "0.2", - "target_effect": "62", - "target_mask": "33025" - }, - "1611": { - "id": 1611, - "name": "Lure Blade VI", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "157", - "speed": "0.3", - "target_effect": "62", - "target_mask": "33025" - }, - "1612": { - "id": 1612, - "name": "Aura of Blood Drinker Self II", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "154", - "speed": "0.05", - "target_effect": "57", - "target_mask": "16" - }, - "1613": { - "id": 1613, - "name": "Aura of Blood Drinker Self III", - "description": "Increases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "154", - "speed": "0.1", - "target_effect": "57", - "target_mask": "16" - }, - "1614": { - "id": 1614, - "name": "Aura of Blood Drinker Self IV", - "description": "Increases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "1615": { - "id": 1615, - "name": "Aura of Blood Drinker Self V", - "description": "Increases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "154", - "speed": "0.2", - "target_effect": "57", - "target_mask": "16" - }, - "1616": { - "id": 1616, - "name": "Aura of Blood Drinker Self VI", - "description": "Increases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "1617": { - "id": 1617, - "name": "Blood Loather II", - "description": "Decreases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "155", - "speed": "0.05", - "target_effect": "58", - "target_mask": "257" - }, - "1618": { - "id": 1618, - "name": "Blood Loather III", - "description": "Decreases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "155", - "speed": "0.1", - "target_effect": "58", - "target_mask": "257" - }, - "1619": { - "id": 1619, - "name": "Blood Loather IV", - "description": "Decreases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "257" - }, - "1620": { - "id": 1620, - "name": "Blood Loather V", - "description": "Decreases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "155", - "speed": "0.2", - "target_effect": "58", - "target_mask": "257" - }, - "1621": { - "id": 1621, - "name": "Blood Loather VI", - "description": "Decreases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "155", - "speed": "0.3", - "target_effect": "58", - "target_mask": "257" - }, - "1623": { - "id": 1623, - "name": "Aura of Swift Killer Self II", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "158", - "speed": "0.05", - "target_effect": "63", - "target_mask": "16" - }, - "1624": { - "id": 1624, - "name": "Aura of Swift Killer Self III", - "description": "Improves a weapon's speed by 30 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "158", - "speed": "0.1", - "target_effect": "63", - "target_mask": "16" - }, - "1625": { - "id": 1625, - "name": "Aura of Swift Killer Self IV", - "description": "Improves a weapon's speed by 40 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "1626": { - "id": 1626, - "name": "Aura of Swift Killer Self V", - "description": "Improves a weapon's speed by 50 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "158", - "speed": "0.2", - "target_effect": "63", - "target_mask": "16" - }, - "1627": { - "id": 1627, - "name": "Aura of Swift Killer Self VI", - "description": "Improves a weapon's speed by 60 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "158", - "speed": "0.3", - "target_effect": "63", - "target_mask": "16" - }, - "1629": { - "id": 1629, - "name": "Leaden Weapon II", - "description": "Worsens a weapon's speed by 20 points.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "159", - "speed": "0.05", - "target_effect": "64", - "target_mask": "257" - }, - "1630": { - "id": 1630, - "name": "Leaden Weapon III", - "description": "Worsens a weapon's speed by 30 points.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "159", - "speed": "0.1", - "target_effect": "64", - "target_mask": "257" - }, - "1631": { - "id": 1631, - "name": "Leaden Weapon IV", - "description": "Worsens a weapon's speed by 40 points.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "159", - "speed": "0.15", - "target_effect": "64", - "target_mask": "257" - }, - "1632": { - "id": 1632, - "name": "Leaden Weapon V", - "description": "Worsens a weapon's speed by 50 points.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "159", - "speed": "0.2", - "target_effect": "64", - "target_mask": "257" - }, - "1633": { - "id": 1633, - "name": "Leaden Weapon VI", - "description": "Worsens a weapon's speed by 60 points.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "159", - "speed": "0.3", - "target_effect": "64", - "target_mask": "257" - }, - "1634": { - "id": 1634, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "1635": { - "id": 1635, - "name": "Lifestone Recall", - "description": "Transports the caster to the Lifestone to which they have previously linked.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "50", - "family": "201", - "speed": "0.25", - "target_effect": "0", - "target_mask": "65536" - }, - "1636": { - "id": 1636, - "name": "Lifestone Sending", - "description": "Transports the target to the last Lifestone he or she used.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "215", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1637": { - "id": 1637, - "name": "Summon Primary Portal III", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "300", - "mana": "110", - "family": "203", - "speed": "1", - "target_effect": "0", - "target_mask": "65536" - }, - "1638": { - "id": 1638, - "name": "Defenselessness Self I", - "description": "Decreases the caster's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "40", - "speed": "0.01", - "target_effect": "23", - "target_mask": "16" - }, - "1639": { - "id": 1639, - "name": "Defenselessness Self II", - "description": "Decreases the caster's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "40", - "speed": "0.05", - "target_effect": "23", - "target_mask": "16" - }, - "1640": { - "id": 1640, - "name": "Defenselessness Self III", - "description": "Decreases the caster's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "40", - "speed": "0.1", - "target_effect": "23", - "target_mask": "16" - }, - "1641": { - "id": 1641, - "name": "Defenselessness Self IV", - "description": "Decreases the caster's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "1642": { - "id": 1642, - "name": "Defenselessness Self V", - "description": "Decreases the caster's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "40", - "speed": "0.2", - "target_effect": "23", - "target_mask": "16" - }, - "1643": { - "id": 1643, - "name": "Defenselessness Self VI", - "description": "Decreases the caster's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "40", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "1644": { - "id": 1644, - "name": "The Gift of Sarneho", - "description": "Makes you superfast to catch all the bad people.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "600", - "mana": "70", - "family": "77", - "speed": "0", - "target_effect": "24", - "target_mask": "16" - }, - "1658": { - "id": 1658, - "name": "Stamina to Health Other I", - "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "89", - "speed": "0.01", - "target_effect": "75", - "target_mask": "16" - }, - "1659": { - "id": 1659, - "name": "Stamina to Health Other II", - "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "89", - "speed": "0.05", - "target_effect": "75", - "target_mask": "16" - }, - "1660": { - "id": 1660, - "name": "Stamina to Health Other III", - "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "89", - "speed": "0.1", - "target_effect": "75", - "target_mask": "16" - }, - "1661": { - "id": 1661, - "name": "Stamina to Health Other IV", - "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "1662": { - "id": 1662, - "name": "Stamina to Health Other V", - "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "89", - "speed": "0.2", - "target_effect": "75", - "target_mask": "16" - }, - "1663": { - "id": 1663, - "name": "Stamina to Health Other VI", - "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.3", - "target_effect": "75", - "target_mask": "16" - }, - "1664": { - "id": 1664, - "name": "Stamina to Health Self I", - "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Health (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "89", - "speed": "0.01", - "target_effect": "75", - "target_mask": "16" - }, - "1665": { - "id": 1665, - "name": "Stamina to Health Self II", - "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Health (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "89", - "speed": "0.05", - "target_effect": "75", - "target_mask": "16" - }, - "1666": { - "id": 1666, - "name": "Stamina to Health Self III", - "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Health (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "89", - "speed": "0.1", - "target_effect": "75", - "target_mask": "16" - }, - "1667": { - "id": 1667, - "name": "Stamina to Health Self IV", - "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Health (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "1668": { - "id": 1668, - "name": "Stamina to Health Self V", - "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "89", - "speed": "0.2", - "target_effect": "75", - "target_mask": "16" - }, - "1669": { - "id": 1669, - "name": "Stamina to Health Self VI", - "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.3", - "target_effect": "75", - "target_mask": "16" - }, - "1670": { - "id": 1670, - "name": "Stamina to Mana Other I", - "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "89", - "speed": "0.01", - "target_effect": "76", - "target_mask": "16" - }, - "1671": { - "id": 1671, - "name": "Stamina to Mana Other II", - "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "89", - "speed": "0.05", - "target_effect": "76", - "target_mask": "16" - }, - "1672": { - "id": 1672, - "name": "Stamina to Mana Other III", - "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "89", - "speed": "0.1", - "target_effect": "76", - "target_mask": "16" - }, - "1673": { - "id": 1673, - "name": "Stamina to Mana Other IV", - "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "1674": { - "id": 1674, - "name": "Stamina to Mana Other V", - "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "89", - "speed": "0.2", - "target_effect": "76", - "target_mask": "16" - }, - "1675": { - "id": 1675, - "name": "Stamina to Mana Other VI", - "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.3", - "target_effect": "76", - "target_mask": "16" - }, - "1676": { - "id": 1676, - "name": "Stamina to Mana Self I", - "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Mana (maximum of 50).", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "89", - "speed": "0.01", - "target_effect": "76", - "target_mask": "16" - }, - "1677": { - "id": 1677, - "name": "Stamina to Mana Self II", - "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Mana (maximum of 100).", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "89", - "speed": "0.05", - "target_effect": "76", - "target_mask": "16" - }, - "1678": { - "id": 1678, - "name": "Stamina to Mana Self III", - "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Mana (maximum of 150).", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "89", - "speed": "0.1", - "target_effect": "76", - "target_mask": "16" - }, - "1679": { - "id": 1679, - "name": "Stamina to Mana Self IV", - "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Mana (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "1680": { - "id": 1680, - "name": "Stamina to Mana Self V", - "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "89", - "speed": "0.2", - "target_effect": "76", - "target_mask": "16" - }, - "1681": { - "id": 1681, - "name": "Stamina to Mana Self VI", - "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.3", - "target_effect": "76", - "target_mask": "16" - }, - "1702": { - "id": 1702, - "name": "Health to Mana Self IV", - "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Mana (maximum of 200).", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "1703": { - "id": 1703, - "name": "Health to Mana Self V", - "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "87", - "speed": "0.2", - "target_effect": "74", - "target_mask": "16" - }, - "1704": { - "id": 1704, - "name": "Health to Mana Self VI", - "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.3", - "target_effect": "74", - "target_mask": "16" - }, - "1705": { - "id": 1705, - "name": "Health to Mana Other I", - "description": "Drains one-half of the target's Health and gives 75% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "87", - "speed": "0.01", - "target_effect": "74", - "target_mask": "16" - }, - "1706": { - "id": 1706, - "name": "Health to Mana Other II", - "description": "Drains one-half of the target's Health and gives 90% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "87", - "speed": "0.05", - "target_effect": "74", - "target_mask": "16" - }, - "1707": { - "id": 1707, - "name": "Health to Mana Other III", - "description": "Drains one-half of the target's Health and gives 105% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "87", - "speed": "0.1", - "target_effect": "74", - "target_mask": "16" - }, - "1708": { - "id": 1708, - "name": "Wedding Bliss", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "67", - "speed": "0.01", - "target_effect": "141", - "target_mask": "16" - }, - "1709": { - "id": 1709, - "name": "Cooking Mastery Other I", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "216", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "1710": { - "id": 1710, - "name": "Cooking Mastery Other II", - "description": "Increases the target's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "216", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "1711": { - "id": 1711, - "name": "Cooking Mastery Other III", - "description": "Increases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "216", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "1712": { - "id": 1712, - "name": "Cooking Mastery Other IV", - "description": "Increases the target's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "1713": { - "id": 1713, - "name": "Cooking Mastery Other V", - "description": "Increases the target's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "216", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "1714": { - "id": 1714, - "name": "Cooking Mastery Other VI", - "description": "Increases the target's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "216", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "1715": { - "id": 1715, - "name": "Cooking Mastery Self I", - "description": "Increases the caster's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "216", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "1716": { - "id": 1716, - "name": "Cooking Mastery Self II", - "description": "Increases the caster's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "216", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "1717": { - "id": 1717, - "name": "Cooking Mastery Self III", - "description": "Increases the caster's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "216", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "1718": { - "id": 1718, - "name": "Cooking Mastery Self IV", - "description": "Increases the caster's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "1719": { - "id": 1719, - "name": "Cooking Mastery Self V", - "description": "Increases the caster's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "216", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "1720": { - "id": 1720, - "name": "Cooking Mastery Self VI", - "description": "Increases the caster's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "216", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "1721": { - "id": 1721, - "name": "Cooking Ineptitude Other I", - "description": "Decreases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "217", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "1722": { - "id": 1722, - "name": "Cooking Ineptitude Other II", - "description": "Decreases the target's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "217", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "1723": { - "id": 1723, - "name": "Cooking Ineptitude Other III", - "description": "Decreases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "217", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "1724": { - "id": 1724, - "name": "Cooking Ineptitude Other IV", - "description": "Decreases the target's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "1725": { - "id": 1725, - "name": "Cooking Ineptitude Other V", - "description": "Decreases the target's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "217", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "1726": { - "id": 1726, - "name": "Cooking Ineptitude Other VI", - "description": "Decreases the target's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "217", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "1727": { - "id": 1727, - "name": "Cooking Ineptitude Self I", - "description": "Decreases the caster's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "217", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "1728": { - "id": 1728, - "name": "Cooking Ineptitude Self II", - "description": "Decreases the caster's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "217", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "1729": { - "id": 1729, - "name": "Cooking Ineptitude Self III", - "description": "Decreases the caster's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "217", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "1730": { - "id": 1730, - "name": "Cooking Ineptitude Self IV", - "description": "Decreases the caster's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "1731": { - "id": 1731, - "name": "Cooking Ineptitude Self V", - "description": "Decreases the caster's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "217", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "1732": { - "id": 1732, - "name": "Cooking Ineptitude Self VI", - "description": "Decreases the caster's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "217", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "1733": { - "id": 1733, - "name": "Fletching Mastery Other I", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "218", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "1734": { - "id": 1734, - "name": "Fletching Mastery Other II", - "description": "Increases the target's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "218", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "1735": { - "id": 1735, - "name": "Fletching Mastery Other III", - "description": "Increases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "218", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "1736": { - "id": 1736, - "name": "Fletching Mastery Other IV", - "description": "Increases the target's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "1737": { - "id": 1737, - "name": "Fletching Mastery Other V", - "description": "Increases the target's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "218", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "1738": { - "id": 1738, - "name": "Fletching Mastery Other VI", - "description": "Increases the target's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "218", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "1739": { - "id": 1739, - "name": "Fletching Mastery Self I", - "description": "Increases the caster's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "218", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "1740": { - "id": 1740, - "name": "Fletching Mastery Self II", - "description": "Increases the caster's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "218", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "1741": { - "id": 1741, - "name": "Fletching Mastery Self III", - "description": "Increases the caster's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "218", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "1742": { - "id": 1742, - "name": "Fletching Mastery Self IV", - "description": "Increases the caster's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "1743": { - "id": 1743, - "name": "Fletching Mastery Self V", - "description": "Increases the caster's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "218", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "1744": { - "id": 1744, - "name": "Fletching Mastery Self VI", - "description": "Increases the caster's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "218", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "1745": { - "id": 1745, - "name": "Fletching Ineptitude Other I", - "description": "Decreases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "219", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "1746": { - "id": 1746, - "name": "Fletching Ineptitude Other II", - "description": "Decreases the target's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "219", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "1747": { - "id": 1747, - "name": "Fletching Ineptitude Other III", - "description": "Decreases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "219", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "1748": { - "id": 1748, - "name": "Fletching Ineptitude Other IV", - "description": "Decreases the target's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "1749": { - "id": 1749, - "name": "Fletching Ineptitude Other V", - "description": "Decreases the target's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "219", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "1750": { - "id": 1750, - "name": "Fletching Ineptitude Other VI", - "description": "Decreases the target's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "219", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "1751": { - "id": 1751, - "name": "Fletching Ineptitude Self I", - "description": "Decreases the caster's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "219", - "speed": "0.01", - "target_effect": "21", - "target_mask": "16" - }, - "1752": { - "id": 1752, - "name": "Fletching Ineptitude Self II", - "description": "Decreases the caster's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "219", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "1753": { - "id": 1753, - "name": "Fletching Ineptitude Self III", - "description": "Decreases the caster's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "219", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "1754": { - "id": 1754, - "name": "Fletching Ineptitude Self IV", - "description": "Decreases the caster's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "1755": { - "id": 1755, - "name": "Fletching Ineptitude Self V", - "description": "Decreases the caster's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "219", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "1756": { - "id": 1756, - "name": "Fletching Ineptitude Self VI", - "description": "Decreases the caster's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "219", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "1757": { - "id": 1757, - "name": "Alchemy Mastery Other I", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "221", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "1758": { - "id": 1758, - "name": "Alchemy Mastery Other II", - "description": "Increases the target's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "221", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "1759": { - "id": 1759, - "name": "Alchemy Mastery Other III", - "description": "Increases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "221", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "1760": { - "id": 1760, - "name": "Alchemy Mastery Other IV", - "description": "Increases the target's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "1761": { - "id": 1761, - "name": "Alchemy Mastery Other V", - "description": "Increases the target's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "221", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "1762": { - "id": 1762, - "name": "Alchemy Mastery Other VI", - "description": "Increases the target's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "221", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "1763": { - "id": 1763, - "name": "Alchemy Mastery Self I", - "description": "Increases the caster's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "221", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "1764": { - "id": 1764, - "name": "Alchemy Mastery Self II", - "description": "Increases the caster's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "221", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "1765": { - "id": 1765, - "name": "Alchemy Mastery Self III", - "description": "Increases the caster's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "221", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "1766": { - "id": 1766, - "name": "Alchemy Mastery Self IV", - "description": "Increases the caster's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "1767": { - "id": 1767, - "name": "Alchemy Mastery Self V", - "description": "Increases the caster's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "221", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "1768": { - "id": 1768, - "name": "Alchemy Mastery Self VI", - "description": "Increases the caster's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "221", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "1769": { - "id": 1769, - "name": "Alchemy Ineptitude Other I", - "description": "Decreases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "220", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "1770": { - "id": 1770, - "name": "Alchemy Ineptitude Other II", - "description": "Decreases the target's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "220", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "1771": { - "id": 1771, - "name": "Alchemy Ineptitude Other III", - "description": "Decreases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "220", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "1772": { - "id": 1772, - "name": "Alchemy Ineptitude Other IV", - "description": "Decreases the target's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "1773": { - "id": 1773, - "name": "Alchemy Ineptitude Other V", - "description": "Decreases the target's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "220", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "1774": { - "id": 1774, - "name": "Alchemy Ineptitude Other VI", - "description": "Decreases the target's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "220", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "1775": { - "id": 1775, - "name": "Alchemy Ineptitude Self I", - "description": "Decreases the caster's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "220", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "1776": { - "id": 1776, - "name": "Alchemy Ineptitude Self II", - "description": "Decreases the caster's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "220", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "1777": { - "id": 1777, - "name": "Alchemy Ineptitude Self III", - "description": "Decreases the caster's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "220", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "1778": { - "id": 1778, - "name": "Alchemy Ineptitude Self IV", - "description": "Decreases the caster's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "1779": { - "id": 1779, - "name": "Alchemy Ineptitude Self V", - "description": "Decreases the caster's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "220", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "1780": { - "id": 1780, - "name": "Alchemy Ineptitude Self VI", - "description": "Decreases the caster's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "220", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "1781": { - "id": 1781, - "name": "Exploding Magma", - "description": "Exploding magma from unstable golems!", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "135", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "1782": { - "id": 1782, - "name": "Gertarh's Curse", - "description": "Decreases your Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "780", - "mana": "50", - "family": "76", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "1783": { - "id": 1783, - "name": "Searing Disc", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1784": { - "id": 1784, - "name": "Horizon's Blades", - "description": "Shoots eight blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1785": { - "id": 1785, - "name": "Cassius' Ring of Fire", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1786": { - "id": 1786, - "name": "Nuhmudira's Spines", - "description": "Shoots eight waves of force outward from the caster. Each wave does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1787": { - "id": 1787, - "name": "Halo of Frost", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1788": { - "id": 1788, - "name": "Eye of the Storm", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1789": { - "id": 1789, - "name": "Tectonic Rifts", - "description": "Shoots eight shock waves outward from the caster. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1790": { - "id": 1790, - "name": "Acid Streak I", - "description": "Sends a stream of acid streaking towards the target. The stream does 16-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "243", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "1791": { - "id": 1791, - "name": "Acid Streak II", - "description": "Sends a stream of acid streaking towards the target. The stream does 18-35 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "243", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1792": { - "id": 1792, - "name": "Acid Streak III", - "description": "Sends a stream of acid streaking towards the target. The stream does 21-42 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "243", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1793": { - "id": 1793, - "name": "Acid Streak IV", - "description": "Sends a stream of acid streaking towards the target. The stream does 25-50 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1794": { - "id": 1794, - "name": "Acid Streak V", - "description": "Sends a stream of acid streaking towards the target. The stream does 29-59 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "243", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1795": { - "id": 1795, - "name": "Acid Streak VI", - "description": "Sends a stream of acid streaking towards the target. The stream does 36-71 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "243", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1796": { - "id": 1796, - "name": "Flame Streak I", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 16-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "247", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "1797": { - "id": 1797, - "name": "Flame Streak II", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 18-35 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "247", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1798": { - "id": 1798, - "name": "Flame Streak III", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 21-42 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "247", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1799": { - "id": 1799, - "name": "Flame Streak IV", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 25-50 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "247", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1800": { - "id": 1800, - "name": "Flame Streak V", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 29-59 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "247", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1801": { - "id": 1801, - "name": "Flame Streak VI", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 36-71 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "247", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1802": { - "id": 1802, - "name": "Force Streak I", - "description": "Sends a bolt of force streaking towards the target. The bolt does 16-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "248", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "1803": { - "id": 1803, - "name": "Force Streak II", - "description": "Sends a bolt of force streaking towards the target. The bolt does 18-35 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "248", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1804": { - "id": 1804, - "name": "Force Streak III", - "description": "Sends a bolt of force streaking towards the target. The bolt does 21-42 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "248", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1805": { - "id": 1805, - "name": "Force Streak IV", - "description": "Sends a bolt of force streaking towards the target. The bolt does 25-50 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "248", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1806": { - "id": 1806, - "name": "Force Streak V", - "description": "Sends a bolt of force streaking towards the target. The bolt does 29-59 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "248", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1807": { - "id": 1807, - "name": "Force Streak VI", - "description": "Sends a bolt of force streaking towards the target. The bolt does 36-71 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "248", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1808": { - "id": 1808, - "name": "Frost Streak I", - "description": "Sends a bolt of frost streaking towards the target. The bolt does 16-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "245", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "1809": { - "id": 1809, - "name": "Frost Streak II", - "description": "Sends a bolt of frost streaking towards the target. The bolt does 18-35 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "245", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1810": { - "id": 1810, - "name": "Frost Streak III", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 21-42 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "245", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1811": { - "id": 1811, - "name": "Frost Streak IV", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 25-50 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "245", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1812": { - "id": 1812, - "name": "Frost Streak V", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 29-59 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "245", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1813": { - "id": 1813, - "name": "Frost Streak VI", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 36-71 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "245", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1814": { - "id": 1814, - "name": "Lightning Streak I", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 16-31 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "246", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "1815": { - "id": 1815, - "name": "Lightning Streak II", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 18-35 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "246", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1816": { - "id": 1816, - "name": "Lightning Streak III", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 21-42 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "246", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1817": { - "id": 1817, - "name": "Lightning Streak IV", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 25-50 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1818": { - "id": 1818, - "name": "Lightning Streak V", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 29-59 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "246", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1819": { - "id": 1819, - "name": "Lightning Streak VI", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 36-71 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "246", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1820": { - "id": 1820, - "name": "Shock Wave Streak I", - "description": "Sends a shock wave streaking towards the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "244", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "1821": { - "id": 1821, - "name": "Shock Wave Streak II", - "description": "Sends a shock wave streaking towards the target. The wave does 18-35 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "244", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1822": { - "id": 1822, - "name": "Shock Wave Streak III", - "description": "Sends a shock wave streaking towards the target. The wave does 21-42 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "244", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1823": { - "id": 1823, - "name": "Shock Wave Streak IV", - "description": "Sends a shock wave streaking towards the target. The wave does 25-50 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "244", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1824": { - "id": 1824, - "name": "Shock Wave Streak V", - "description": "Sends a shock wave streaking towards the target. The wave does 29-59 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "244", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1825": { - "id": 1825, - "name": "Shock Wave Streak VI", - "description": "Sends a shock wave streaking towards the target. The wave does 36-71 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "244", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1826": { - "id": 1826, - "name": "Whirling Blade Streak I", - "description": "Sends a magical blade streaking towards the target. The bolt does 16-31 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "249", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "1827": { - "id": 1827, - "name": "Whirling Blade Streak II", - "description": "Sends a magical blade streaking towards the target. The bolt does 18-35 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "249", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "1828": { - "id": 1828, - "name": "Whirling Blade Streak III", - "description": "Sends a magical blade streaking towards the target. The bolt does 21-42 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "249", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "1829": { - "id": 1829, - "name": "Whirling Blade Streak IV", - "description": "Sends a magical blade streaking towards the target. The bolt does 25-50 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "249", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "1830": { - "id": 1830, - "name": "Whirling Blade Streak V", - "description": "Sends a magical blade streaking towards the target. The bolt does 29-59 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "249", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "1831": { - "id": 1831, - "name": "Whirling Blade Streak VI", - "description": "Sends a magical blade streaking towards the target. The bolt does 36-71 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "249", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "1832": { - "id": 1832, - "name": "Torrential Acid", - "description": "Rains nine streams of acid down at the area around the target. Each stream does 60-120 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "236", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1833": { - "id": 1833, - "name": "Squall of Swords", - "description": "Rains nine whirling blades down at the area around the target. Each blade does 60-120 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "242", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1834": { - "id": 1834, - "name": "Firestorm", - "description": "Rains nine balls of flame down at the area around the target. Each ball does 60-120 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "240", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1835": { - "id": 1835, - "name": "Splinterfall", - "description": "Rains nine bolts of force down at the area around the target. Each bolt does 60-120 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "241", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1836": { - "id": 1836, - "name": "Avalanche", - "description": "Rains up to twelve balls of frost down at the area around the target. Each ball does 60-120 points of cold damage to the first thing it hits. This spell is not very accurate. and cannot be used indoors.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "238", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1837": { - "id": 1837, - "name": "Lightning Barrage", - "description": "Rains nine bolts of lightning down at the area around the target. Each bolt does 60-120 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "239", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1838": { - "id": 1838, - "name": "Stone Fists", - "description": "Rains nine boulders down at the area around the target. Each boulder does 60-120 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "1839": { - "id": 1839, - "name": "Blistering Creeper", - "description": "Sends a wall of five balls of acid. two high. slowly towards the target. Each ball does 35-70 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "229", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1840": { - "id": 1840, - "name": "Bed of Blades", - "description": "Sends a wall of five whirling blades. two high. slowly towards the target. Each blade does 35-70 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "235", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1841": { - "id": 1841, - "name": "Slithering Flames", - "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 35-70 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1842": { - "id": 1842, - "name": "Spike Strafe", - "description": "Sends a wall of five bolts of force. two high. slowly towards the target. Each bolt does 35-70 points of piercing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "234", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1843": { - "id": 1843, - "name": "Foon-Ki's Glacial Floe", - "description": "Sends a wall of five balls of frost. two high. slowly towards the target. Each ball does 35-70 points of cold damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "231", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1844": { - "id": 1844, - "name": "Os' Wall", - "description": "Sends a wall of five bolts of lightning. two high. slowly towards the target. Each ball does 35-70 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "232", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1845": { - "id": 1845, - "name": "Hammering Crawler", - "description": "Sends a wall of five shockwaves. two high. slowly towards the target. Each wave does 35-70 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "230", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "1846": { - "id": 1846, - "name": "Curse of Black Fire", - "description": "Decreases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1020", - "mana": "60", - "family": "42", - "speed": "0.3", - "target_effect": "23", - "target_mask": "16" - }, - "1847": { - "id": 1847, - "name": "Evaporate All Magic Other", - "description": "Dispels all enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1848": { - "id": 1848, - "name": "Evaporate All Magic Other", - "description": "Dispels 1-3 positive enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1849": { - "id": 1849, - "name": "Evaporate All Magic Other", - "description": "Dispels all negative enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1850": { - "id": 1850, - "name": "Evaporate All Magic Self", - "description": "Dispels all enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1851": { - "id": 1851, - "name": "Evaporate All Magic Self", - "description": "Dispels 1-3 positive enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1852": { - "id": 1852, - "name": "Evaporate All Magic Self", - "description": "Dispels all negative enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "148", - "target_mask": "16" - }, - "1853": { - "id": 1853, - "name": "Extinguish All Magic Other", - "description": "Dispels all enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1854": { - "id": 1854, - "name": "Extinguish All Magic Other", - "description": "Dispels 1-3 positive enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1855": { - "id": 1855, - "name": "Extinguish All Magic Other", - "description": "Dispels all negative enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1856": { - "id": 1856, - "name": "Extinguish All Magic Self", - "description": "Dispels all enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1857": { - "id": 1857, - "name": "Extinguish All Magic Self", - "description": "Dispels 1-3 positive enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1858": { - "id": 1858, - "name": "Extinguish All Magic Self", - "description": "Dispels all negative enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "148", - "target_mask": "16" - }, - "1859": { - "id": 1859, - "name": "Cleanse All Magic Other", - "description": "Dispels all enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1860": { - "id": 1860, - "name": "Cleanse All Magic Other", - "description": "Dispels 2-4 positive enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1861": { - "id": 1861, - "name": "Cleanse All Magic Other", - "description": "Dispels all negative enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1862": { - "id": 1862, - "name": "Cleanse All Magic Self", - "description": "Dispels all enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1863": { - "id": 1863, - "name": "Cleanse All Magic Self", - "description": "Dispels 2-4 positive enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1864": { - "id": 1864, - "name": "Cleanse All Magic Self", - "description": "Dispels all negative enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "148", - "target_mask": "16" - }, - "1865": { - "id": 1865, - "name": "Devour All Magic Other", - "description": "Dispels all enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1866": { - "id": 1866, - "name": "Devour All Magic Other", - "description": "Dispels 2-4 positive enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1867": { - "id": 1867, - "name": "Devour All Magic Other", - "description": "Dispels all negative enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1868": { - "id": 1868, - "name": "Devour All Magic Self", - "description": "Dispels all enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1869": { - "id": 1869, - "name": "Devour All Magic Self", - "description": "Dispels 2-4 positive enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1870": { - "id": 1870, - "name": "Devour All Magic Self", - "description": "Dispels all negative enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "148", - "target_mask": "16" - }, - "1871": { - "id": 1871, - "name": "Purge All Magic Other", - "description": "Dispels all enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1872": { - "id": 1872, - "name": "Purge All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1873": { - "id": 1873, - "name": "Purge All Magic Other", - "description": "Dispels all negative enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1874": { - "id": 1874, - "name": "Purge All Magic Self", - "description": "Dispels all enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1875": { - "id": 1875, - "name": "Purge All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1876": { - "id": 1876, - "name": "Purge All Magic Self", - "description": "Dispels all negative enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "148", - "target_mask": "16" - }, - "1877": { - "id": 1877, - "name": "Nullify All Magic Other", - "description": "Dispels all enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1878": { - "id": 1878, - "name": "Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1879": { - "id": 1879, - "name": "Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1880": { - "id": 1880, - "name": "Nullify All Magic Self", - "description": "Dispels all enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1881": { - "id": 1881, - "name": "Nullify All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1882": { - "id": 1882, - "name": "Nullify All Magic Self", - "description": "Dispels all negative enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "1883": { - "id": 1883, - "name": "Evaporate Creature Magic Other", - "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1884": { - "id": 1884, - "name": "Evaporate Creature Magic Other", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1885": { - "id": 1885, - "name": "Evaporate Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1886": { - "id": 1886, - "name": "Evaporate Creature Magic Self", - "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1887": { - "id": 1887, - "name": "Evaporate Creature Magic Self", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1888": { - "id": 1888, - "name": "Evaporate Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "147", - "target_mask": "16" - }, - "1889": { - "id": 1889, - "name": "Extinguish Creature Magic Other", - "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1890": { - "id": 1890, - "name": "Extinguish Creature Magic Other", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1891": { - "id": 1891, - "name": "Extinguish Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1892": { - "id": 1892, - "name": "Extinguish Creature Magic Self", - "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1893": { - "id": 1893, - "name": "Extinguish Creature Magic Self", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1894": { - "id": 1894, - "name": "Extinguish Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "147", - "target_mask": "16" - }, - "1895": { - "id": 1895, - "name": "Cleanse Creature Magic Other", - "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1896": { - "id": 1896, - "name": "Cleanse Creature Magic Other", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1897": { - "id": 1897, - "name": "Cleanse Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1898": { - "id": 1898, - "name": "Cleanse Creature Magic Self", - "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1899": { - "id": 1899, - "name": "Cleanse Creature Magic Self", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1900": { - "id": 1900, - "name": "Cleanse Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "147", - "target_mask": "16" - }, - "1901": { - "id": 1901, - "name": "Devour Creature Magic Other", - "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1902": { - "id": 1902, - "name": "Devour Creature Magic Other", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1903": { - "id": 1903, - "name": "Devour Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1904": { - "id": 1904, - "name": "Devour Creature Magic Self", - "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1905": { - "id": 1905, - "name": "Devour Creature Magic Self", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1906": { - "id": 1906, - "name": "Devour Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "147", - "target_mask": "16" - }, - "1907": { - "id": 1907, - "name": "Purge Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1908": { - "id": 1908, - "name": "Purge Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1909": { - "id": 1909, - "name": "Purge Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1910": { - "id": 1910, - "name": "Purge Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1911": { - "id": 1911, - "name": "Purge Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1912": { - "id": 1912, - "name": "Purge Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "147", - "target_mask": "16" - }, - "1913": { - "id": 1913, - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1914": { - "id": 1914, - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1915": { - "id": 1915, - "name": "Nullify Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1916": { - "id": 1916, - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1917": { - "id": 1917, - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1918": { - "id": 1918, - "name": "Nullify Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "1919": { - "id": 1919, - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1920": { - "id": 1920, - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1921": { - "id": 1921, - "name": "Evaporate Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1922": { - "id": 1922, - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1923": { - "id": 1923, - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1924": { - "id": 1924, - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 negative Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "68", - "target_mask": "16" - }, - "1925": { - "id": 1925, - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1926": { - "id": 1926, - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1927": { - "id": 1927, - "name": "Extinguish Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1928": { - "id": 1928, - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1929": { - "id": 1929, - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1930": { - "id": 1930, - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 negative Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "68", - "target_mask": "16" - }, - "1931": { - "id": 1931, - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1932": { - "id": 1932, - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1933": { - "id": 1933, - "name": "Cleanse Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1934": { - "id": 1934, - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1935": { - "id": 1935, - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1936": { - "id": 1936, - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 negative Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "68", - "target_mask": "16" - }, - "1937": { - "id": 1937, - "name": "Devour Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1938": { - "id": 1938, - "name": "Devour Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1939": { - "id": 1939, - "name": "Devour Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1940": { - "id": 1940, - "name": "Devour Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1941": { - "id": 1941, - "name": "Devour Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1942": { - "id": 1942, - "name": "Devour Item Magic", - "description": "Dispels 2-4 negative Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "68", - "target_mask": "16" - }, - "1943": { - "id": 1943, - "name": "Purge Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1944": { - "id": 1944, - "name": "Purge Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1945": { - "id": 1945, - "name": "Purge Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1946": { - "id": 1946, - "name": "Purge Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1947": { - "id": 1947, - "name": "Purge Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1948": { - "id": 1948, - "name": "Purge Item Magic", - "description": "Dispels 2-6 negative Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "68", - "target_mask": "16" - }, - "1949": { - "id": 1949, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1950": { - "id": 1950, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1951": { - "id": 1951, - "name": "Nullify Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1952": { - "id": 1952, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1953": { - "id": 1953, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1954": { - "id": 1954, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 negative Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "1955": { - "id": 1955, - "name": "Evaporate Life Magic Other", - "description": "Dispels 1-3 Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1956": { - "id": 1956, - "name": "Evaporate Life Magic Other", - "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1957": { - "id": 1957, - "name": "Evaporate Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1958": { - "id": 1958, - "name": "Evaporate Life Magic Self", - "description": "Dispels 1-3 Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1959": { - "id": 1959, - "name": "Evaporate Life Magic Self", - "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1960": { - "id": 1960, - "name": "Evaporate Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "40", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "1961": { - "id": 1961, - "name": "Extinguish Life Magic Other", - "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1962": { - "id": 1962, - "name": "Extinguish Life Magic Other", - "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1963": { - "id": 1963, - "name": "Extinguish Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1964": { - "id": 1964, - "name": "Extinguish Life Magic Self", - "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1965": { - "id": 1965, - "name": "Extinguish Life Magic Self", - "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "100", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1966": { - "id": 1966, - "name": "Extinguish Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "80", - "family": "250", - "speed": "0.1", - "target_effect": "146", - "target_mask": "16" - }, - "1967": { - "id": 1967, - "name": "Cleanse Life Magic Other", - "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1968": { - "id": 1968, - "name": "Cleanse Life Magic Other", - "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1969": { - "id": 1969, - "name": "Cleanse Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1970": { - "id": 1970, - "name": "Cleanse Life Magic Self", - "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1971": { - "id": 1971, - "name": "Cleanse Life Magic Self", - "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1972": { - "id": 1972, - "name": "Cleanse Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "120", - "family": "250", - "speed": "0.15", - "target_effect": "146", - "target_mask": "16" - }, - "1973": { - "id": 1973, - "name": "Devour Life Magic Other", - "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1974": { - "id": 1974, - "name": "Devour Life Magic Other", - "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1975": { - "id": 1975, - "name": "Devour Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1976": { - "id": 1976, - "name": "Devour Life Magic Self", - "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1977": { - "id": 1977, - "name": "Devour Life Magic Self", - "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1978": { - "id": 1978, - "name": "Devour Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "160", - "family": "250", - "speed": "0.2", - "target_effect": "146", - "target_mask": "16" - }, - "1979": { - "id": 1979, - "name": "Purge Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1980": { - "id": 1980, - "name": "Purge Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1981": { - "id": 1981, - "name": "Purge Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1982": { - "id": 1982, - "name": "Purge Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1983": { - "id": 1983, - "name": "Purge Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "250", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1984": { - "id": 1984, - "name": "Purge Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "200", - "family": "250", - "speed": "0.25", - "target_effect": "146", - "target_mask": "16" - }, - "1985": { - "id": 1985, - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1986": { - "id": 1986, - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1987": { - "id": 1987, - "name": "Nullify Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1988": { - "id": 1988, - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1989": { - "id": 1989, - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1990": { - "id": 1990, - "name": "Nullify Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "1991": { - "id": 1991, - "name": "Mana Blight", - "description": "Drains 5000 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "1992": { - "id": 1992, - "name": "Camping Mastery", - "description": "Increases the target's chance of finding phat loot.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "300", - "mana": "10", - "family": "221", - "speed": "0.01", - "target_effect": "144", - "target_mask": "16" - }, - "1993": { - "id": 1993, - "name": "Camping Ineptitude", - "description": "Decreases the target's chance of finding phat loot.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "300", - "mana": "1", - "family": "220", - "speed": "0.01", - "target_effect": "145", - "target_mask": "16" - }, - "1994": { - "id": 1994, - "name": "Aura of Wound Twister", - "description": "Increases a weapon's damage value by 25 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "1020", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "1995": { - "id": 1995, - "name": "Aura of Alacrity", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "158", - "speed": "0.05", - "target_effect": "63", - "target_mask": "16" - }, - "1996": { - "id": 1996, - "name": "Aura of Soul Hunter", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "600", - "mana": "40", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "1997": { - "id": 1997, - "name": "Life Giver", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "1998": { - "id": 1998, - "name": "Stamina Giver", - "description": "Increases maximum stamina by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "281", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "1999": { - "id": 1999, - "name": "Mana Giver", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2000": { - "id": 2000, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2001": { - "id": 2001, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2002": { - "id": 2002, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2003": { - "id": 2003, - "name": "Warrior's Lesser Vitality", - "description": "Increases maximum health by 5 points.", - "school": "Life Magic", - "difficulty": "240", - "duration": "510", - "mana": "70", - "family": "273", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2004": { - "id": 2004, - "name": "Warrior's Vitality", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "difficulty": "245", - "duration": "510", - "mana": "70", - "family": "273", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2005": { - "id": 2005, - "name": "Warrior's Greater Vitality", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "510", - "mana": "70", - "family": "273", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2006": { - "id": 2006, - "name": "Warrior's Ultimate Vitality", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "difficulty": "260", - "duration": "510", - "mana": "70", - "family": "273", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2007": { - "id": 2007, - "name": "Warrior's Lesser Vigor", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "difficulty": "240", - "duration": "510", - "mana": "70", - "family": "275", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2008": { - "id": 2008, - "name": "Warrior's Vigor", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "difficulty": "245", - "duration": "510", - "mana": "70", - "family": "275", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2009": { - "id": 2009, - "name": "Warrior's Greater Vigor", - "description": "Increases maximum stamina by 30 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "510", - "mana": "70", - "family": "275", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2010": { - "id": 2010, - "name": "Warrior's Ultimate Vigor", - "description": "Increases maximum stamina by 40 points.", - "school": "Life Magic", - "difficulty": "260", - "duration": "510", - "mana": "70", - "family": "275", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2011": { - "id": 2011, - "name": "Wizard's Lesser Intellect", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "difficulty": "240", - "duration": "510", - "mana": "70", - "family": "277", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2012": { - "id": 2012, - "name": "Wizard's Intellect", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "difficulty": "245", - "duration": "510", - "mana": "70", - "family": "277", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2013": { - "id": 2013, - "name": "Wizard's Greater Intellect", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "510", - "mana": "70", - "family": "277", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2014": { - "id": 2014, - "name": "Wizard's Ultimate Intellect", - "description": "Increases maximum mana by 30 points.", - "school": "Life Magic", - "difficulty": "260", - "duration": "510", - "mana": "70", - "family": "277", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2015": { - "id": 2015, - "name": "Aerfalle's Ward", - "description": "Improves a shield or piece of armor's armor value by 220 points.", - "school": "Item Enchantment", - "difficulty": "295", - "duration": "1020", - "mana": "60", - "family": "160", - "speed": "0.3", - "target_effect": "142", - "target_mask": "6" - }, - "2016": { - "id": 2016, - "name": "Impulse", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "10800", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2017": { - "id": 2017, - "name": "Bunny Smite", - "description": "Drains 1000-6000 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "149", - "target_mask": "16" - }, - "2018": { - "id": 2018, - "name": "Tormenter of Flesh", - "description": "Drains 1000-6000 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "150", - "target_mask": "16" - }, - "2019": { - "id": 2019, - "name": "The sundering of the crystal", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2020": { - "id": 2020, - "name": "Recall Asmolum 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2021": { - "id": 2021, - "name": "Thaumaturgic Shroud", - "description": "Drains one-half of the target's Mana and gives 200% of that to the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "70", - "family": "91", - "speed": "0.75", - "target_effect": "34", - "target_mask": "16" - }, - "2022": { - "id": 2022, - "name": "Soul Shroud", - "description": "Drains one-half of the target's Health and gives 200% of that to the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "70", - "family": "87", - "speed": "0.75", - "target_effect": "32", - "target_mask": "16" - }, - "2023": { - "id": 2023, - "name": "Recall the Sanctuary", - "description": "Transports the caster to the Ithaenc Cathedral.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "70", - "family": "214", - "speed": "0.5", - "target_effect": "16", - "target_mask": "16" - }, - "2024": { - "id": 2024, - "name": "Recall Asmolum 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2025": { - "id": 2025, - "name": "RecallAsmolum 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2026": { - "id": 2026, - "name": "Nerve Burn", - "description": "Drains one-half of the target's Stamina and gives 200% of that to the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "70", - "family": "89", - "speed": "0.75", - "target_effect": "36", - "target_mask": "16" - }, - "2027": { - "id": 2027, - "name": "Martyr", - "description": "Drains all of the caster's Health and gives 1000% of that to the target.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "88", - "speed": "0.75", - "target_effect": "31", - "target_mask": "16" - }, - "2028": { - "id": 2028, - "name": "The Path to Kelderam's Ward", - "description": "Summons a PK-limited portal to the Catacombs beneath the Ithaenc Cathedral.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2029": { - "id": 2029, - "name": "Stamina Blight", - "description": "Drains 5000 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.3", - "target_effect": "36", - "target_mask": "16" - }, - "2030": { - "id": 2030, - "name": "Flaming Blaze", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2031": { - "id": 2031, - "name": "Steel Thorns", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2032": { - "id": 2032, - "name": "Electric Blaze", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2033": { - "id": 2033, - "name": "Acidic Spray", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2034": { - "id": 2034, - "name": "Exploding Fury", - "description": "Exploding fury for baelzharon", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "135", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "2035": { - "id": 2035, - "name": "Electric Discharge", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "120", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2036": { - "id": 2036, - "name": "Fuming Acid", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "117", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2037": { - "id": 2037, - "name": "Flaming Irruption", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "121", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2038": { - "id": 2038, - "name": "Exploding Ice", - "description": "Exploding fury for baelzharon", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "135", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "2039": { - "id": 2039, - "name": "Sparking Fury", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "134", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "2040": { - "id": 2040, - "name": "The Path to Kelderam's Ward", - "description": "Will create a portal to the Sepulcher of the Hopeslayer.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2041": { - "id": 2041, - "name": "Aerlinthe Recall", - "description": "Transports the caster to Aerlinthe Island.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "2042": { - "id": 2042, - "name": "Demon's Tongues", - "description": "Sends a wall of lag towards the opponents. burning them to a tasty crisp.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "1", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2043": { - "id": 2043, - "name": "Weight of Eternity", - "description": "Afflicts the target with the weight of thousands of years.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "60", - "mana": "1", - "family": "2", - "speed": "0.3", - "target_effect": "7", - "target_mask": "16" - }, - "2044": { - "id": 2044, - "name": "Item Befoulment", - "description": "The target becomes totally ineffectual with Item magic.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "400", - "mana": "60", - "family": "46", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "2045": { - "id": 2045, - "name": "Demon Fists", - "description": "Rains LOTS of boulders down. smooshing any that oppose.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "2046": { - "id": 2046, - "name": "Portal to Teth", - "description": "Transports the target to the Fort Tethana.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2047": { - "id": 2047, - "name": "Demonskin", - "description": "The target's skin becomes hardened against physical damage.", - "school": "Life Magic", - "difficulty": "900", - "duration": "1020", - "mana": "60", - "family": "115", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "2048": { - "id": 2048, - "name": "Boon of the Demon", - "description": "Gives the target a huge boost to their magic defense.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "1020", - "mana": "60", - "family": "41", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "2049": { - "id": 2049, - "name": "Bile of the Hopeslayer", - "description": "Coats a weapon in the bile of Bael'zharon. greatly increasing its damage.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "1020", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "257" - }, - "2050": { - "id": 2050, - "name": "Young Love", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "67", - "speed": "0.01", - "target_effect": "141", - "target_mask": "16" - }, - "2051": { - "id": 2051, - "name": "Young Love", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "67", - "speed": "0.01", - "target_effect": "141", - "target_mask": "16" - }, - "2052": { - "id": 2052, - "name": "Executor's Boon", - "description": "Increases the target's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2053": { - "id": 2053, - "name": "Executor's Blessing", - "description": "Increases the caster's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2054": { - "id": 2054, - "name": "Synaptic Misfire", - "description": "Decreases the target's Focus by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "2055": { - "id": 2055, - "name": "Bafflement Self VII", - "description": "Decreases the caster's Focus by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "2056": { - "id": 2056, - "name": "Ataxia", - "description": "Decreases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "2057": { - "id": 2057, - "name": "Clumsiness Self VII", - "description": "Decreases the caster's Coordination by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "2058": { - "id": 2058, - "name": "Boon of Refinement", - "description": "Increases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "2059": { - "id": 2059, - "name": "Honed Control", - "description": "Increases the caster's Coordination by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "2060": { - "id": 2060, - "name": "Temeritous Touch", - "description": "Increases the target's Endurance by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "2061": { - "id": 2061, - "name": "Perseverance", - "description": "Increases the caster's Endurance by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "2062": { - "id": 2062, - "name": "Anemia", - "description": "Drains 52-105 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "2063": { - "id": 2063, - "name": "Enfeeble Self VII", - "description": "Drains 50-100 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "82", - "speed": "0.15", - "target_effect": "36", - "target_mask": "16" - }, - "2064": { - "id": 2064, - "name": "Self Loathing", - "description": "Decreases the target's Self by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "2065": { - "id": 2065, - "name": "Feeblemind Self VII", - "description": "Decreases the caster's Self by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "2066": { - "id": 2066, - "name": "Calming Gaze", - "description": "Increases the target's Focus by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "2067": { - "id": 2067, - "name": "Inner Calm", - "description": "Increases the caster's Focus by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "2068": { - "id": 2068, - "name": "Brittle Bones", - "description": "Decreases the target's Endurance by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "2069": { - "id": 2069, - "name": "Frailty Self VII", - "description": "Decreases the caster's Endurance by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "2070": { - "id": 2070, - "name": "Heart Rend", - "description": "Drains 42-79 points of the target's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "2071": { - "id": 2071, - "name": "Harm Self VII", - "description": "Drains 40-75 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "2072": { - "id": 2072, - "name": "Adja's Gift", - "description": "Restores 80-150 points of the target's Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "79", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "2073": { - "id": 2073, - "name": "Adja's Intervention", - "description": "Restores 80-150 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "67", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "2074": { - "id": 2074, - "name": "Gossamer Flesh", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "2075": { - "id": 2075, - "name": "Imperil Self VII", - "description": "Decreases the caster's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "2076": { - "id": 2076, - "name": "Mana Boost Other VII", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "2077": { - "id": 2077, - "name": "Mana Boost Self VII", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "2078": { - "id": 2078, - "name": "Void's Call", - "description": "Drains 42-79 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "2079": { - "id": 2079, - "name": "Mana Drain Self VII", - "description": "Drains 40-75 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "2080": { - "id": 2080, - "name": "Ogfoot", - "description": "Increases the target's Quickness by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2081": { - "id": 2081, - "name": "Hastening", - "description": "Increases the caster's Quickness by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2082": { - "id": 2082, - "name": "Replenish", - "description": "Restores 100-200 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "81", - "speed": "0.05", - "target_effect": "35", - "target_mask": "16" - }, - "2083": { - "id": 2083, - "name": "Robustification", - "description": "Restores 100-200 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "81", - "speed": "0.15", - "target_effect": "35", - "target_mask": "16" - }, - "2084": { - "id": 2084, - "name": "Belly of Lead", - "description": "Decreases the target's Quickness by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "2085": { - "id": 2085, - "name": "Slowness Self VII", - "description": "Decreases the caster's Quickness by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "2086": { - "id": 2086, - "name": "Might of the 5 Mules", - "description": "Increases the target's Strength by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2087": { - "id": 2087, - "name": "Might of the Lugians", - "description": "Increases the caster's Strength by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2088": { - "id": 2088, - "name": "Senescence", - "description": "Decreases the target's Strength by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "2", - "speed": "0.15", - "target_effect": "7", - "target_mask": "16" - }, - "2089": { - "id": 2089, - "name": "Weakness Self VII", - "description": "Decrease the caster's Strength by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "2", - "speed": "0.2", - "target_effect": "7", - "target_mask": "16" - }, - "2090": { - "id": 2090, - "name": "Bolstered Will", - "description": "Increases the target's Self by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "2091": { - "id": 2091, - "name": "Mind Blossom", - "description": "Increases the caster's Self by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "2092": { - "id": 2092, - "name": "Olthoi's Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "162", - "speed": "0.15", - "target_effect": "63", - "target_mask": "6" - }, - "2093": { - "id": 2093, - "name": "Olthoi Bait", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "163", - "speed": "0.15", - "target_effect": "64", - "target_mask": "6" - }, - "2094": { - "id": 2094, - "name": "Swordsman's Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "174", - "speed": "0.15", - "target_effect": "61", - "target_mask": "6" - }, - "2095": { - "id": 2095, - "name": "Swordsman Bait", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "175", - "speed": "0.15", - "target_effect": "62", - "target_mask": "6" - }, - "2096": { - "id": 2096, - "name": "Aura of Infected Caress", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "2097": { - "id": 2097, - "name": "Pacification", - "description": "Decreases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "257" - }, - "2098": { - "id": 2098, - "name": "Tusker's Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "164", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "2099": { - "id": 2099, - "name": "Tusker Bait", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "165", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "2100": { - "id": 2100, - "name": "Tattercoat", - "description": "Worsens a shield or piece of armor's armor value by 220 points.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "161", - "speed": "0.15", - "target_effect": "143", - "target_mask": "6" - }, - "2101": { - "id": 2101, - "name": "Aura of Cragstone's Will", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "2102": { - "id": 2102, - "name": "Inferno's Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "170", - "speed": "0.15", - "target_effect": "57", - "target_mask": "6" - }, - "2103": { - "id": 2103, - "name": "Inferno Bait", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "171", - "speed": "0.15", - "target_effect": "58", - "target_mask": "6" - }, - "2104": { - "id": 2104, - "name": "Gelidite's Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "166", - "speed": "0.15", - "target_effect": "65", - "target_mask": "6" - }, - "2105": { - "id": 2105, - "name": "Gelidite Bait", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "167", - "speed": "0.15", - "target_effect": "66", - "target_mask": "6" - }, - "2106": { - "id": 2106, - "name": "Aura of Elysa's Sight", - "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "2107": { - "id": 2107, - "name": "Cabalistic Ostracism", - "description": "Decreases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "194", - "speed": "0.15", - "target_effect": "68", - "target_mask": "32768" - }, - "2108": { - "id": 2108, - "name": "Brogard's Defiance", - "description": "Improves a shield or piece of armor's armor value by 220 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "2109": { - "id": 2109, - "name": "Lugian's Speed", - "description": "Worsens a weapon's speed by 70 points.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "159", - "speed": "0.15", - "target_effect": "64", - "target_mask": "257" - }, - "2110": { - "id": 2110, - "name": "Astyrrian's Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "168", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "2111": { - "id": 2111, - "name": "Astyrrian Bait", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "169", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "2112": { - "id": 2112, - "name": "Wi's Folly", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "157", - "speed": "0.15", - "target_effect": "62", - "target_mask": "33025" - }, - "2113": { - "id": 2113, - "name": "Archer's Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "172", - "speed": "0.15", - "target_effect": "59", - "target_mask": "6" - }, - "2114": { - "id": 2114, - "name": "Archer Bait", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 170%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "173", - "speed": "0.15", - "target_effect": "60", - "target_mask": "6" - }, - "2115": { - "id": 2115, - "name": "Fortified Lock", - "description": "Increases a lock's resistance to picking by 200 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "240", - "mana": "70", - "family": "192", - "speed": "0.15", - "target_effect": "59", - "target_mask": "640" - }, - "2116": { - "id": 2116, - "name": "Aura of Atlan's Alacrity", - "description": "Improves a weapon's speed by 70 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "2117": { - "id": 2117, - "name": "Aura of Mystic's Blessing", - "description": "Increases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "2118": { - "id": 2118, - "name": "Clouded Motives", - "description": "Decreases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "153", - "speed": "0.15", - "target_effect": "60", - "target_mask": "257" - }, - "2119": { - "id": 2119, - "name": "Vagabond's Gift", - "description": "Decreases a lock's resistance to picking by 200 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "240", - "mana": "70", - "family": "193", - "speed": "0.15", - "target_effect": "60", - "target_mask": "640" - }, - "2120": { - "id": 2120, - "name": "Dissolving Vortex", - "description": "Shoots five streams of acid outward from the caster. Each stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2121": { - "id": 2121, - "name": "Corrosive Flash", - "description": "Sends a stream of acid streaking towards the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2122": { - "id": 2122, - "name": "Disintegration", - "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2123": { - "id": 2123, - "name": "Celdiseth's Searing", - "description": "Shoots five streams of acid toward the target. Each stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2124": { - "id": 2124, - "name": "Sau Kolin's Sword", - "description": "Shoots five whirling blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2125": { - "id": 2125, - "name": "Flensing Wings", - "description": "Shoots five whirling blades toward the target. Each blade does 42-84 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "213", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2126": { - "id": 2126, - "name": "Thousand Fists", - "description": "Shoots five shock waves toward the target. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "208", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2127": { - "id": 2127, - "name": "Silencia's Scorn", - "description": "Shoots five bolts of flame outward from the caster. Each bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2128": { - "id": 2128, - "name": "Ilservian's Flame", - "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2129": { - "id": 2129, - "name": "Sizzling Fury", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "247", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2130": { - "id": 2130, - "name": "Infernae", - "description": "Shoots five bolts of flame toward the target. Each bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "211", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2131": { - "id": 2131, - "name": "Stinging Needles", - "description": "Shoots five force bolts outward from the caster. Each bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2132": { - "id": 2132, - "name": "The Spike", - "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2133": { - "id": 2133, - "name": "Outlander's Insolence", - "description": "Sends a bolt of force streaking towards the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "248", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2134": { - "id": 2134, - "name": "Fusillade", - "description": "Shoots five bolts of force toward the target. Each bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "212", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2135": { - "id": 2135, - "name": "Winter's Embrace", - "description": "Shoots five bolts of frost outward from the caster. Each bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "133", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2136": { - "id": 2136, - "name": "Icy Torment", - "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2137": { - "id": 2137, - "name": "Sudden Frost", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "245", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2138": { - "id": 2138, - "name": "Blizzard", - "description": "Shoots five bolts of frost toward the target. Each bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "209", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2139": { - "id": 2139, - "name": "Luminous Wrath", - "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2140": { - "id": 2140, - "name": "Alset's Coil", - "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2141": { - "id": 2141, - "name": "Lhen's Flare", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2142": { - "id": 2142, - "name": "Tempest", - "description": "Shoots five bolts of lightning toward the target. Each bolt does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "210", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2143": { - "id": 2143, - "name": "Pummeling Storm", - "description": "Shoots five shock waves outward from the caster. Each wave does 42-84 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "132", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2144": { - "id": 2144, - "name": "Crushing Shame", - "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2145": { - "id": 2145, - "name": "Cameron's Curse", - "description": "Sends a shock wave streaking towards the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "244", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2146": { - "id": 2146, - "name": "Evisceration", - "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2147": { - "id": 2147, - "name": "Rending Wind", - "description": "Sends a magical blade streaking towards the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "249", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2148": { - "id": 2148, - "name": "Caustic Boon", - "description": "Reduces damage the target takes from acid by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "2149": { - "id": 2149, - "name": "Caustic Blessing", - "description": "Reduces damage the caster takes from acid by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "2150": { - "id": 2150, - "name": "Boon of the Blade Turner", - "description": "Reduces damage the target takes from Slashing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "2151": { - "id": 2151, - "name": "Blessing of the Blade Turner", - "description": "Reduces damage the caster takes from Slashing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "2152": { - "id": 2152, - "name": "Boon of the Mace Turner", - "description": "Reduces damage the target takes from Bludgeoning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2153": { - "id": 2153, - "name": "Blessing of the Mace Turner", - "description": "Reduces damage the caster takes from Bludgeoning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2154": { - "id": 2154, - "name": "Icy Boon", - "description": "Reduces damage the target takes from Cold by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "2155": { - "id": 2155, - "name": "Icy Blessing", - "description": "Reduces damage the caster takes from Cold by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "2156": { - "id": 2156, - "name": "Fiery Boon", - "description": "Reduces damage the target takes from fire by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "2157": { - "id": 2157, - "name": "Fiery Blessing", - "description": "Reduces damage the caster takes from Fire by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "2158": { - "id": 2158, - "name": "Storm's Boon", - "description": "Reduces damage the target takes from Lightning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "2159": { - "id": 2159, - "name": "Storm's Blessing", - "description": "Reduces damage the caster takes from Lightning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "2160": { - "id": 2160, - "name": "Boon of the Arrow Turner", - "description": "Reduces damage the target takes from Piercing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "2161": { - "id": 2161, - "name": "Blessing of the Arrow Turner", - "description": "Reduces damage the caster takes from Piercing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "2162": { - "id": 2162, - "name": "Olthoi's Gift", - "description": "Increases damage the target takes from acid by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "2163": { - "id": 2163, - "name": "Acid Vulnerability Self VII", - "description": "Increases damage the caster takes from acid by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "2164": { - "id": 2164, - "name": "Swordsman's Gift", - "description": "Increases damage the target takes from Slashing by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "2165": { - "id": 2165, - "name": "Blade Vulnerability Self VII", - "description": "Increases damage the caster takes from Slashing by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "2166": { - "id": 2166, - "name": "Tusker's Gift", - "description": "Increases damage the target takes from Bludgeoning by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "2167": { - "id": 2167, - "name": "Bludgeoning Vulnerability Self VII", - "description": "Increases damage the caster takes from Bludgeoning by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "2168": { - "id": 2168, - "name": "Gelidite's Gift", - "description": "Increases damage the target takes from Cold by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "2169": { - "id": 2169, - "name": "Cold Vulnerability Self VII", - "description": "Increases damage the caster takes from Cold by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "2170": { - "id": 2170, - "name": "Inferno's Gift", - "description": "Increases damage the target takes from Fire by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "2171": { - "id": 2171, - "name": "Fire Vulnerability Self VII", - "description": "Increases damage the caster takes from Fire by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "2172": { - "id": 2172, - "name": "Astyrrian's Gift", - "description": "Increases damage the target takes from Lightning by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "2173": { - "id": 2173, - "name": "Lightning Vulnerability Self VII", - "description": "Increases damage the caster takes from Lightning by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "2174": { - "id": 2174, - "name": "Archer's Gift", - "description": "Increases damage the target takes from Piercing by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "2175": { - "id": 2175, - "name": "Piercing Vulnerability Self VII", - "description": "Increases damage the caster takes from Piercing by 185%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "2176": { - "id": 2176, - "name": "Enervation", - "description": "Decreases the rate at which the target regains Stamina by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "2177": { - "id": 2177, - "name": "Exhaustion Self VII", - "description": "Decreases the rate at which the caster regains Stamina by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "2178": { - "id": 2178, - "name": "Decrepitude's Grasp", - "description": "Decrease target's natural healing rate by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "2179": { - "id": 2179, - "name": "Fester Self VII", - "description": "Decrease caster's natural healing rate by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "2180": { - "id": 2180, - "name": "Energy Flux", - "description": "Decreases target's natural mana rate by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "2181": { - "id": 2181, - "name": "Mana Depletion Self VII", - "description": "Decreases caster's natural mana rate by 60%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "2182": { - "id": 2182, - "name": "Battlemage's Boon", - "description": "Increases the target's natural mana rate by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "2183": { - "id": 2183, - "name": "Battlemage's Blessing", - "description": "Increases the caster's natural mana rate by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "2184": { - "id": 2184, - "name": "Hydra's Head", - "description": "Increase target's natural healing rate by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "2185": { - "id": 2185, - "name": "Robustify", - "description": "Increase caster's natural healing rate by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "2186": { - "id": 2186, - "name": "Tenaciousness", - "description": "Increases the rate at which the target regains Stamina by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "2187": { - "id": 2187, - "name": "Unflinching Persistence", - "description": "Increases the rate at which the caster regains Stamina by 115%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "2188": { - "id": 2188, - "name": "Bottle Breaker", - "description": "Decreases the target's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2189": { - "id": 2189, - "name": "Alchemy Ineptitude Self VII", - "description": "Decreases the caster's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2190": { - "id": 2190, - "name": "Silencia's Boon", - "description": "Increases the target's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2191": { - "id": 2191, - "name": "Silencia's Blessing", - "description": "Increases the caster's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2192": { - "id": 2192, - "name": "Hands of Chorizite", - "description": "Decreases the target's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2193": { - "id": 2193, - "name": "Arcane Benightedness Self VII", - "description": "Decreases the caster's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2194": { - "id": 2194, - "name": "Aliester's Boon", - "description": "Increases the target's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2195": { - "id": 2195, - "name": "Aliester's Blessing", - "description": "Increases the caster's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2196": { - "id": 2196, - "name": "Jibril's Boon", - "description": "Increases the target's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2197": { - "id": 2197, - "name": "Jibril's Blessing", - "description": "Increases the caster's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2198": { - "id": 2198, - "name": "Jibril's Vitae", - "description": "Decreases the target's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2199": { - "id": 2199, - "name": "Armor Tinkering Ignorance Self VII", - "description": "Decreases the caster's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2200": { - "id": 2200, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2201": { - "id": 2201, - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2202": { - "id": 2202, - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2203": { - "id": 2203, - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2204": { - "id": 2204, - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2205": { - "id": 2205, - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2206": { - "id": 2206, - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2207": { - "id": 2207, - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2208": { - "id": 2208, - "name": "Challenger's Legacy", - "description": "Decreases the target's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2209": { - "id": 2209, - "name": "Cooking Ineptitude Self VII", - "description": "Decreases the caster's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2210": { - "id": 2210, - "name": "Morimoto's Boon", - "description": "Increases the target's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2211": { - "id": 2211, - "name": "Morimoto's Blessing", - "description": "Increases the caster's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2212": { - "id": 2212, - "name": "Wrath of Adja", - "description": "Decreases the target's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2213": { - "id": 2213, - "name": "Creature Enchantment Ineptitude Self VII", - "description": "Decreases the caster's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2214": { - "id": 2214, - "name": "Adja's Boon", - "description": "Increases the target's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2215": { - "id": 2215, - "name": "Adja's Blessing", - "description": "Increases the caster's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2216": { - "id": 2216, - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2217": { - "id": 2217, - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2218": { - "id": 2218, - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2219": { - "id": 2219, - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2220": { - "id": 2220, - "name": "Finesse Weapon Ineptitude Other VII", - "description": "Decreases the target's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2221": { - "id": 2221, - "name": "Finesse Weapon Ineptitude Self VII", - "description": "Decreases the caster's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2222": { - "id": 2222, - "name": "Finesse Weapon Mastery Other VII", - "description": "Increases the target's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2223": { - "id": 2223, - "name": "Finesse Weapon Mastery Self VII", - "description": "Increases the caster's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2224": { - "id": 2224, - "name": "Hearts on Sleeves", - "description": "Decreases the target's Deception skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2225": { - "id": 2225, - "name": "Deception Ineptitude Self VII", - "description": "Decreases the caster's Deception skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2226": { - "id": 2226, - "name": "Ketnan's Boon", - "description": "Increases the target's Deception skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2227": { - "id": 2227, - "name": "Ketnan's Blessing", - "description": "Increases the caster's Deception skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2228": { - "id": 2228, - "name": "Broadside of a Barn", - "description": "Decreases the target's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2229": { - "id": 2229, - "name": "Defenselessness Self VII", - "description": "Decreases the caster's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2230": { - "id": 2230, - "name": "Sashi Mu's Kiss", - "description": "Decreases the target's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2231": { - "id": 2231, - "name": "Faithlessness Self VII", - "description": "Decreases the caster's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2232": { - "id": 2232, - "name": "Odif's Boon", - "description": "Increases the target's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2233": { - "id": 2233, - "name": "Odif's Blessing", - "description": "Increases the caster's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2234": { - "id": 2234, - "name": "Twisted Digits", - "description": "Decreases the target's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2235": { - "id": 2235, - "name": "Fletching Ineptitude Self VII", - "description": "Decreases the caster's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2236": { - "id": 2236, - "name": "Lilitha's Boon", - "description": "Increases the target's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2237": { - "id": 2237, - "name": "Lilitha's Blessing", - "description": "Increases the caster's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2238": { - "id": 2238, - "name": "Unsteady Hands", - "description": "Decreases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2239": { - "id": 2239, - "name": "Healing Ineptitude Self VII", - "description": "Decreases the caster's Healing skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2240": { - "id": 2240, - "name": "Avalenne's Boon", - "description": "Increases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2241": { - "id": 2241, - "name": "Avalenne's Blessing", - "description": "Increases the caster's Healing skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2242": { - "id": 2242, - "name": "Web of Deflection", - "description": "Increases the target's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2243": { - "id": 2243, - "name": "Aura of Deflection", - "description": "Increases the caster's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2244": { - "id": 2244, - "name": "Web of Defense", - "description": "Increases the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2245": { - "id": 2245, - "name": "Aura of Defense", - "description": "Increases the caster's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2246": { - "id": 2246, - "name": "Wrath of Celcynd", - "description": "Decreases the target's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2247": { - "id": 2247, - "name": "Item Enchantment Ineptitude Self VII", - "description": "Decreases the caster's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2248": { - "id": 2248, - "name": "Celcynd's Boon", - "description": "Increases the target's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2249": { - "id": 2249, - "name": "Celcynd's Blessing", - "description": "Increases the caster's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2250": { - "id": 2250, - "name": "Yoshi's Boon", - "description": "Increases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2251": { - "id": 2251, - "name": "Yoshi's Blessing", - "description": "Increases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2252": { - "id": 2252, - "name": "Unfortunate Appraisal", - "description": "Decreases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2253": { - "id": 2253, - "name": "Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2254": { - "id": 2254, - "name": "Feat of Radaz", - "description": "Decreases the target's Jump skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "2255": { - "id": 2255, - "name": "Jumping Ineptitude Self VII", - "description": "Decreases the caster's Jump skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "2256": { - "id": 2256, - "name": "Jahannan's Boon", - "description": "Increases the target's Jump skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2257": { - "id": 2257, - "name": "Jahannan's Blessing", - "description": "Increases the caster's Jump skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2258": { - "id": 2258, - "name": "Gears Unwound", - "description": "Decreases the target's Run skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "2259": { - "id": 2259, - "name": "Leaden Feet Self VII", - "description": "Decreases the caster's Run skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "2260": { - "id": 2260, - "name": "Kwipetian Vision", - "description": "Decreases the target's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2261": { - "id": 2261, - "name": "Leadership Ineptitude Self VII", - "description": "Decreases the caster's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2262": { - "id": 2262, - "name": "Ar-Pei's Boon", - "description": "Increases the target's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2263": { - "id": 2263, - "name": "Ar-Pei's Blessing", - "description": "Increases the caster's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2264": { - "id": 2264, - "name": "Wrath of Harlune", - "description": "Decreases the target's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2265": { - "id": 2265, - "name": "Life Magic Ineptitude Self VII", - "description": "Decreases the caster's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2266": { - "id": 2266, - "name": "Harlune's Boon", - "description": "Increases the target's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2267": { - "id": 2267, - "name": "Harlune's Blessing", - "description": "Increases the caster's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2268": { - "id": 2268, - "name": "Fat Fingers", - "description": "Decreases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2269": { - "id": 2269, - "name": "Lockpick Ineptitude Self VII", - "description": "Decreases the caster's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2270": { - "id": 2270, - "name": "Oswald's Boon", - "description": "Increases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2271": { - "id": 2271, - "name": "Oswald's Blessing", - "description": "Increases the caster's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2272": { - "id": 2272, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2273": { - "id": 2273, - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2274": { - "id": 2274, - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2275": { - "id": 2275, - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2276": { - "id": 2276, - "name": "Celdiseth's Boon", - "description": "Increases the target's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2277": { - "id": 2277, - "name": "Celdiseth's Blessing", - "description": "Increases the caster's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2278": { - "id": 2278, - "name": "Eyes Clouded", - "description": "Decreases the target's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2279": { - "id": 2279, - "name": "Magic Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2280": { - "id": 2280, - "name": "Web of Resistance", - "description": "Increases the target's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2281": { - "id": 2281, - "name": "Aura of Resistance", - "description": "Increases the caster's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2282": { - "id": 2282, - "name": "Futility", - "description": "Decreases the target's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2283": { - "id": 2283, - "name": "Magic Yield Self VII", - "description": "Decreases the caster's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2284": { - "id": 2284, - "name": "Inefficient Investment", - "description": "Decreases the target's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2285": { - "id": 2285, - "name": "Mana Conversion Ineptitude Self VII", - "description": "Decreases the caster's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2286": { - "id": 2286, - "name": "Nuhmudira's Boon", - "description": "Increases the target's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2287": { - "id": 2287, - "name": "Nuhmudira's Blessing", - "description": "Increases the caster's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2288": { - "id": 2288, - "name": "Topheron's Boon", - "description": "Increases the target's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2289": { - "id": 2289, - "name": "Topheron's Blessing", - "description": "Increases the caster's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2290": { - "id": 2290, - "name": "Ignorance's Bliss", - "description": "Decreases the target's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2291": { - "id": 2291, - "name": "Monster Unfamiliarity Self VII", - "description": "Decreases the caster's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2292": { - "id": 2292, - "name": "Kaluhc's Boon", - "description": "Increases the target's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2293": { - "id": 2293, - "name": "Kaluhc's Blessing", - "description": "Increases the caster's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2294": { - "id": 2294, - "name": "Introversion", - "description": "Decreases the target's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2295": { - "id": 2295, - "name": "Person Unfamiliarity Self VII", - "description": "Decreases the caster's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2296": { - "id": 2296, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2297": { - "id": 2297, - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2298": { - "id": 2298, - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2299": { - "id": 2299, - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2300": { - "id": 2300, - "name": "Saladur's Boon", - "description": "Increases the target's Run skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2301": { - "id": 2301, - "name": "Saladur's Blessing", - "description": "Increases the caster's Run skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2302": { - "id": 2302, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2303": { - "id": 2303, - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2304": { - "id": 2304, - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2305": { - "id": 2305, - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2306": { - "id": 2306, - "name": "Heavy Weapon Ineptitude Other VII", - "description": "Decreases the target's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2307": { - "id": 2307, - "name": "Heavy Weapon Ineptitude Self VII", - "description": "Decreases the caster's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2308": { - "id": 2308, - "name": "Heavy Weapon Mastery Other VII", - "description": "Increases the target's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2309": { - "id": 2309, - "name": "Heavy Weapon Mastery Self VII", - "description": "Increases the caster's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2310": { - "id": 2310, - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2311": { - "id": 2311, - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2312": { - "id": 2312, - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2313": { - "id": 2313, - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2314": { - "id": 2314, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2315": { - "id": 2315, - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2316": { - "id": 2316, - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "2317": { - "id": 2317, - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "2318": { - "id": 2318, - "name": "Gravity Well", - "description": "Decrease the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2319": { - "id": 2319, - "name": "Vulnerability Self VII", - "description": "Decrease the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "2320": { - "id": 2320, - "name": "Wrath of the Hieromancer", - "description": "Decreases the target's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2321": { - "id": 2321, - "name": "War Magic Ineptitude Self VII", - "description": "Decreases the caster's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "2322": { - "id": 2322, - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2323": { - "id": 2323, - "name": "Hieromancer's Blessing", - "description": "Increases the caster's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "2324": { - "id": 2324, - "name": "Koga's Boon", - "description": "Increases the target's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2325": { - "id": 2325, - "name": "Koga's Blessing", - "description": "Increases the caster's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "2326": { - "id": 2326, - "name": "Eye of the Grunt", - "description": "Decreases the target's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2327": { - "id": 2327, - "name": "Weapon Tinkering Ignorance Self VII", - "description": "Decreases the caster's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "2328": { - "id": 2328, - "name": "Vitality Siphon", - "description": "Drains 50% of the target's Health and gives 50% of it to the caster.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "60", - "family": "87", - "speed": "0.75", - "target_effect": "32", - "target_mask": "16" - }, - "2329": { - "id": 2329, - "name": "Essence Void", - "description": "Drains 50% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "60", - "family": "91", - "speed": "0.75", - "target_effect": "34", - "target_mask": "16" - }, - "2330": { - "id": 2330, - "name": "Vigor Siphon", - "description": "Drains 50% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "60", - "family": "89", - "speed": "0.75", - "target_effect": "36", - "target_mask": "16" - }, - "2331": { - "id": 2331, - "name": "Health to Mana Other VII", - "description": "Drains one-half of the target's Health and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "2332": { - "id": 2332, - "name": "Cannibalize", - "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "2333": { - "id": 2333, - "name": "Health to Stamina Other VII", - "description": "Drains one-half of the target's Health and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "2334": { - "id": 2334, - "name": "Self Sacrifice", - "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "2335": { - "id": 2335, - "name": "Gift of Vitality", - "description": "Drains one-quarter of the caster's Health and gives 175% of that to the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "88", - "speed": "0.75", - "target_effect": "31", - "target_mask": "16" - }, - "2336": { - "id": 2336, - "name": "Gift of Essence", - "description": "Drains one-quarter of the caster's Mana and gives 175% of that to the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "92", - "speed": "0.75", - "target_effect": "33", - "target_mask": "16" - }, - "2337": { - "id": 2337, - "name": "Gift of Vigor", - "description": "Drains one-quarter of the caster's Stamina and gives 175% of that to the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "90", - "speed": "0.75", - "target_effect": "35", - "target_mask": "16" - }, - "2338": { - "id": 2338, - "name": "Mana to Health Other VII", - "description": "Drains one-half of the target's Mana and gives 175% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "2339": { - "id": 2339, - "name": "Energize Vitality", - "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "2340": { - "id": 2340, - "name": "Mana to Stamina Other VII", - "description": "Drains one-half of the target's Mana and gives 175% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "2341": { - "id": 2341, - "name": "Energize Vigor", - "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "2342": { - "id": 2342, - "name": "Stamina to Health Other VII", - "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "2343": { - "id": 2343, - "name": "Rushed Recovery", - "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "2344": { - "id": 2344, - "name": "Stamina to Mana Other VII", - "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "2345": { - "id": 2345, - "name": "Meditative Trance", - "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "2346": { - "id": 2346, - "name": "Malediction", - "description": "Decreases maximum mana by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "510", - "mana": "70", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2347": { - "id": 2347, - "name": "Concentration", - "description": "Increases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1000", - "mana": "40", - "family": "13", - "speed": "0.1", - "target_effect": "16", - "target_mask": "16" - }, - "2348": { - "id": 2348, - "name": "Brilliance", - "description": "Increases the target's Focus by 50 points for a short period of time.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "30", - "mana": "60", - "family": "15", - "speed": "0.3", - "target_effect": "16", - "target_mask": "16" - }, - "2349": { - "id": 2349, - "name": "Hieromancer's Ward", - "description": "Improves a shield or piece of armor's armor value by 170 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "190", - "speed": "0.2", - "target_effect": "142", - "target_mask": "6" - }, - "2350": { - "id": 2350, - "name": "Greater Decay Durance", - "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "188", - "speed": "0.2", - "target_effect": "63", - "target_mask": "6" - }, - "2351": { - "id": 2351, - "name": "Greater Consumption Durance", - "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "186", - "speed": "0.2", - "target_effect": "57", - "target_mask": "6" - }, - "2352": { - "id": 2352, - "name": "Greater Stasis Durance", - "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "184", - "speed": "0.2", - "target_effect": "65", - "target_mask": "6" - }, - "2353": { - "id": 2353, - "name": "Greater Stimulation Durance", - "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "182", - "speed": "0.2", - "target_effect": "67", - "target_mask": "6" - }, - "2354": { - "id": 2354, - "name": "Lesser Piercing Durance", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "180", - "speed": "0.05", - "target_effect": "59", - "target_mask": "6" - }, - "2355": { - "id": 2355, - "name": "Lesser Slashing Durance", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "178", - "speed": "0.05", - "target_effect": "61", - "target_mask": "6" - }, - "2356": { - "id": 2356, - "name": "Lesser Bludgeoning Durance", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "176", - "speed": "0.05", - "target_effect": "67", - "target_mask": "6" - }, - "2357": { - "id": 2357, - "name": "Fauna Perlustration", - "description": "Increases the target's Assess Monster skill by 60 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "1020", - "mana": "60", - "family": "63", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "2358": { - "id": 2358, - "name": "Lyceum Recall", - "description": "Transports the caster to the Ishilai Lyceum.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2359": { - "id": 2359, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2360": { - "id": 2360, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2361": { - "id": 2361, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2362": { - "id": 2362, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2363": { - "id": 2363, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2364": { - "id": 2364, - "name": "Egress", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2365": { - "id": 2365, - "name": "something you're gonna fear for a long time", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2366": { - "id": 2366, - "name": "Bovine Intervention", - "description": "When Cow gods intervene.....", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "300", - "family": "237", - "speed": "0.001", - "target_effect": "0", - "target_mask": "16" - }, - "2367": { - "id": 2367, - "name": "Groovy Portal Sending", - "description": "Sends you on a magical. groove-filled trip....", - "school": "Item Enchantment", - "difficulty": "2000", - "duration": "-1", - "mana": "50000", - "family": "214", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2368": { - "id": 2368, - "name": "a powerful force", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2369": { - "id": 2369, - "name": "Expulsion", - "description": "Transports the target out of Lady Aerfalle's presence.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2370": { - "id": 2370, - "name": "Gift of Rotting Flesh", - "description": "Increases damage the target takes from Acid by 300%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "2371": { - "id": 2371, - "name": "Curse of Mortal Flesh", - "description": "Increases damage the target takes from Fire by 300%.", - "school": "Life Magic", - "difficulty": "325", - "duration": "120", - "mana": "50", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "2372": { - "id": 2372, - "name": "Price of Immortality", - "description": "Prevents all natural healing by the target.", - "school": "Life Magic", - "difficulty": "275", - "duration": "300", - "mana": "60", - "family": "94", - "speed": "0.3", - "target_effect": "38", - "target_mask": "16" - }, - "2373": { - "id": 2373, - "name": "Enervation of the Heart", - "description": "Decreases maximum health by 50 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "60", - "mana": "30", - "family": "68", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2374": { - "id": 2374, - "name": "Enervation of the Limb", - "description": "Decreases maximum stamina by 50 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "60", - "mana": "30", - "family": "82", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2375": { - "id": 2375, - "name": "Enervation of the Mind", - "description": "Decreases maximum mana by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2376": { - "id": 2376, - "name": "Glimpse of Annihilation", - "description": "Increases the target's War Magic skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "300", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2377": { - "id": 2377, - "name": "Vision of Annihilation", - "description": "Increases the target's War Magic skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "300", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2378": { - "id": 2378, - "name": "Beast Murmur", - "description": "Increases the target's Creature Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "300", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2379": { - "id": 2379, - "name": "Beast Whisper", - "description": "Increases the target's Creature Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "300", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2380": { - "id": 2380, - "name": "Grip of Instrumentality", - "description": "Increases the target's Item Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "300", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2381": { - "id": 2381, - "name": "Touch of Instrumentality", - "description": "Increases the target's Item Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "300", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2382": { - "id": 2382, - "name": "Unnatural Persistence", - "description": "Increase caster's natural healing rate by 100%.", - "school": "Life Magic", - "difficulty": "285", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "2383": { - "id": 2383, - "name": "Dark Flame", - "description": "Shoots a dark flame at the target. The flame does 68-136 points of righteous fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "121", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2384": { - "id": 2384, - "name": "Arcane Restoration", - "description": "Increases the caster's natural mana rate by 100%.", - "school": "Life Magic", - "difficulty": "285", - "duration": "3600", - "mana": "60", - "family": "97", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "2385": { - "id": 2385, - "name": "Vigilance", - "description": "Increases the rate at which the target regains Stamina by 100%.", - "school": "Life Magic", - "difficulty": "275", - "duration": "1020", - "mana": "60", - "family": "95", - "speed": "0.3", - "target_effect": "41", - "target_mask": "16" - }, - "2386": { - "id": 2386, - "name": "Indomitability", - "description": "Increase target's natural healing rate by 200%.", - "school": "Life Magic", - "difficulty": "550", - "duration": "1020", - "mana": "60", - "family": "93", - "speed": "0.3", - "target_effect": "37", - "target_mask": "16" - }, - "2387": { - "id": 2387, - "name": "Determination", - "description": "Increases the target's Focus by 10 points. can be layered with other Focus spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "2388": { - "id": 2388, - "name": "Caution", - "description": "Increases the target's Coordination by 10 points. can be layered with other Coordination spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2389": { - "id": 2389, - "name": "Vigor", - "description": "Increases the target's Endurance by 10 points. can be layered with other Endurance spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "2390": { - "id": 2390, - "name": "Haste", - "description": "Increases the target's Quickness by 10 points. can be layered with other Quickness spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "2391": { - "id": 2391, - "name": "Prowess", - "description": "Increases the target's Strength by 10 points. can be layered with other Strength spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "261", - "speed": "0", - "target_effect": "6", - "target_mask": "16" - }, - "2392": { - "id": 2392, - "name": "Serenity", - "description": "Increases the target's Self by 10 points. can be layered with other Self spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "150", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2393": { - "id": 2393, - "name": "Force Armor", - "description": "Increases the caster's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "115", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "2394": { - "id": 2394, - "name": "Acid Shield", - "description": "Reduces damage the caster takes from acid by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "101", - "speed": "0.1", - "target_effect": "49", - "target_mask": "16" - }, - "2395": { - "id": 2395, - "name": "Electric Shield", - "description": "Reduces damage the caster takes from Lightning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "107", - "speed": "0.1", - "target_effect": "53", - "target_mask": "16" - }, - "2396": { - "id": 2396, - "name": "Flame Shield", - "description": "Reduces damage the caster takes from fire by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "109", - "speed": "0.1", - "target_effect": "43", - "target_mask": "16" - }, - "2397": { - "id": 2397, - "name": "Ice Shield", - "description": "Reduces damage the caster takes from Cold by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "105", - "speed": "0.1", - "target_effect": "51", - "target_mask": "16" - }, - "2398": { - "id": 2398, - "name": "Bludgeon Shield", - "description": "Reduces damage the caster takes from Bludgeoning by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "103", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "2399": { - "id": 2399, - "name": "Piercing Shield", - "description": "Reduces damage the caster takes from Piercing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "111", - "speed": "0.1", - "target_effect": "45", - "target_mask": "16" - }, - "2400": { - "id": 2400, - "name": "Slashing Shield", - "description": "Reduces damage the caster takes from Slashing by 33%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "113", - "speed": "0.1", - "target_effect": "47", - "target_mask": "16" - }, - "2401": { - "id": 2401, - "name": "Into the Garden", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2402": { - "id": 2402, - "name": "Essence Lull", - "description": "Reduces the rate at which mana is consumed.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "240", - "mana": "30", - "family": "83", - "speed": "0.1", - "target_effect": "66", - "target_mask": "3013615" - }, - "2403": { - "id": 2403, - "name": "Balanced Breakfast", - "description": "Increases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "difficulty": "277", - "duration": "10800", - "mana": "60", - "family": "1", - "speed": "0.3", - "target_effect": "6", - "target_mask": "16" - }, - "2404": { - "id": 2404, - "name": "Collector Acid Protection", - "description": "Reduces damage the caster takes from acid by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "2405": { - "id": 2405, - "name": "Collector Blade Protection", - "description": "Reduces damage the caster takes from slashing by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "2406": { - "id": 2406, - "name": "Collector Bludgeoning Protection", - "description": "Reduces damage the caster takes from bludgeoning by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2407": { - "id": 2407, - "name": "Collector Cold Protection", - "description": "Reduces damage the caster takes from cold by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "2408": { - "id": 2408, - "name": "Collector Fire Protection", - "description": "Reduces damage the caster takes from fire by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "2409": { - "id": 2409, - "name": "Collector Lightning Protection", - "description": "Reduces damage the caster takes from lightning by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "2410": { - "id": 2410, - "name": "Collector Piercing Protection", - "description": "Reduces damage the caster takes from piercing by 90%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "1800", - "mana": "70", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "2411": { - "id": 2411, - "name": "Discipline", - "description": "Increases a weapon's damage value by 30 points.", - "school": "Item Enchantment", - "difficulty": "450", - "duration": "1020", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "2412": { - "id": 2412, - "name": "Enduring Coordination", - "description": "Increases the target's Coordination by 35 points for three hours.", - "school": "Creature Enchantment", - "difficulty": "310", - "duration": "10800", - "mana": "70", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "2413": { - "id": 2413, - "name": "Enduring Focus", - "description": "Increases the target's Focus by 35 points for three hours.", - "school": "Creature Enchantment", - "difficulty": "310", - "duration": "10800", - "mana": "70", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "2414": { - "id": 2414, - "name": "Enduring Stoicism", - "description": "Increases the caster's Endurance by 35 points for three hours.", - "school": "Creature Enchantment", - "difficulty": "310", - "duration": "10800", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "2415": { - "id": 2415, - "name": "Eye of the Hunter", - "description": "Enhances the penetration of arrow shots. adding 25% to the bow's damage modifier.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "1020", - "mana": "50", - "family": "325", - "speed": "0.2", - "target_effect": "57", - "target_mask": "257" - }, - "2416": { - "id": 2416, - "name": "High Tension String", - "description": "Enhances the penetration of arrow shots. adding 20% to the bow's damage modifier.", - "school": "Item Enchantment", - "difficulty": "20", - "duration": "1020", - "mana": "50", - "family": "325", - "speed": "0.2", - "target_effect": "57", - "target_mask": "257" - }, - "2417": { - "id": 2417, - "name": "Obedience", - "description": "Increases the target's Leadership skill by 10 points. This can be combined with other Leadership-enhancing spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "293", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2418": { - "id": 2418, - "name": "Occult Potence", - "description": "Doubles the target's natural mana renewal rate for three hours.", - "school": "Life Magic", - "difficulty": "310", - "duration": "10800", - "mana": "70", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "2419": { - "id": 2419, - "name": "Panic Attack", - "description": "Causes the target to quake and shiver uncontrollably.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "30", - "mana": "300", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "2420": { - "id": 2420, - "name": "Panoply of the Queenslayer", - "description": "Increases the target's natural armor by 200 points for three hours.", - "school": "Life Magic", - "difficulty": "250", - "duration": "10800", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2421": { - "id": 2421, - "name": "Paralyzing Fear", - "description": "Causes the target to freeze in horror.", - "school": "Creature Enchantment", - "difficulty": "410", - "duration": "30", - "mana": "300", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "2422": { - "id": 2422, - "name": "Send to Dryreach", - "description": "Transports the target to the town of Dryreach.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2423": { - "id": 2423, - "name": "Precise", - "description": "This weapon is highly accurate in the hands of a skilled bowman. enchancing skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2424": { - "id": 2424, - "name": "Rabbit's Eye", - "description": "Increases the target's Focus by 50 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "1020", - "mana": "70", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "2425": { - "id": 2425, - "name": "Stone Wall", - "description": "Increases the caster's Endurance by 50 points.", - "school": "Creature Enchantment", - "difficulty": "310", - "duration": "1020", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "2426": { - "id": 2426, - "name": "Strong Pull", - "description": "The tension of the bowstring gives this weapon enhanced range when wielded by a skilled bowman.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1020", - "mana": "50", - "family": "327", - "speed": "0.2", - "target_effect": "57", - "target_mask": "257" - }, - "2427": { - "id": 2427, - "name": "Sugar Rush", - "description": "Increases the target's Coordination by 50 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "1020", - "mana": "70", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "2428": { - "id": 2428, - "name": "Timaru's Shelter", - "description": "Increases the target's Magic Defense skill by 10 points. Additional protection can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "1800", - "mana": "70", - "family": "299", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "2429": { - "id": 2429, - "name": "Timaru's Shelter", - "description": "Increases the target's natural armor by 30 points. Additional protection can be layered over this.", - "school": "Life Magic", - "difficulty": "280", - "duration": "1800", - "mana": "70", - "family": "295", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2430": { - "id": 2430, - "name": "Timaru's Shelter", - "description": "Increases the target's Quickness by 10 points. Additional protection can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "280", - "duration": "1800", - "mana": "70", - "family": "297", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2431": { - "id": 2431, - "name": "Vivification", - "description": "Doubles the target's natural healing rate for three hours.", - "school": "Life Magic", - "difficulty": "290", - "duration": "10800", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "2432": { - "id": 2432, - "name": "Acid Ward", - "description": "Reduces damage the target takes from acid by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "50", - "duration": "10800", - "mana": "20", - "family": "285", - "speed": "0.05", - "target_effect": "49", - "target_mask": "16" - }, - "2433": { - "id": 2433, - "name": "Flame Ward", - "description": "Reduces damage the target takes from fire by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "20", - "family": "287", - "speed": "0.05", - "target_effect": "43", - "target_mask": "16" - }, - "2434": { - "id": 2434, - "name": "Frost Ward", - "description": "Reduces damage the target takes from cold by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "20", - "family": "289", - "speed": "0.05", - "target_effect": "51", - "target_mask": "16" - }, - "2435": { - "id": 2435, - "name": "Lightning Ward", - "description": "Reduces damage the target takes from lightning by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "50", - "duration": "10800", - "mana": "20", - "family": "291", - "speed": "0.05", - "target_effect": "53", - "target_mask": "16" - }, - "2436": { - "id": 2436, - "name": "Laying on of Hands", - "description": "Increases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "780", - "mana": "30", - "family": "67", - "speed": "0.1", - "target_effect": "155", - "target_mask": "16" - }, - "2437": { - "id": 2437, - "name": "Greater Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "30", - "duration": "780", - "mana": "60", - "family": "389", - "speed": "0.3", - "target_effect": "63", - "target_mask": "257" - }, - "2438": { - "id": 2438, - "name": "Lesser Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "60", - "family": "389", - "speed": "0.3", - "target_effect": "63", - "target_mask": "257" - }, - "2439": { - "id": 2439, - "name": "Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "60", - "family": "389", - "speed": "0.3", - "target_effect": "63", - "target_mask": "257" - }, - "2440": { - "id": 2440, - "name": "Greater Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "321", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2441": { - "id": 2441, - "name": "Lesser Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "321", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2442": { - "id": 2442, - "name": "Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "321", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2443": { - "id": 2443, - "name": "Greater Strength of Earth", - "description": "Increases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "40", - "family": "261", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2444": { - "id": 2444, - "name": "Lesser Strength of Earth", - "description": "Increases the target's Strength by 8 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "40", - "family": "261", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2445": { - "id": 2445, - "name": "Strength of Earth", - "description": "Increases the target's Strength by 12 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "40", - "family": "261", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2446": { - "id": 2446, - "name": "Greater Growth", - "description": "Increase the target's natural healing rate by 75%.", - "school": "Life Magic", - "difficulty": "30", - "duration": "780", - "mana": "30", - "family": "309", - "speed": "0.05", - "target_effect": "37", - "target_mask": "16" - }, - "2447": { - "id": 2447, - "name": "Lesser Growth", - "description": "Increase caster's natural healing rate by 25%.", - "school": "Life Magic", - "difficulty": "10", - "duration": "780", - "mana": "30", - "family": "309", - "speed": "0.05", - "target_effect": "37", - "target_mask": "16" - }, - "2448": { - "id": 2448, - "name": "Growth", - "description": "Increase the target's natural healing rate by 50%.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "30", - "family": "309", - "speed": "0.05", - "target_effect": "37", - "target_mask": "16" - }, - "2449": { - "id": 2449, - "name": "Greater Hunter's Acumen", - "description": "Increases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2450": { - "id": 2450, - "name": "Lesser Hunter's Acumen", - "description": "Increases the target's Coordination by 8 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2451": { - "id": 2451, - "name": "Hunter's Acumen", - "description": "Increases the target's Coordination by 12 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2452": { - "id": 2452, - "name": "Greater Thorns", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "difficulty": "51", - "duration": "780", - "mana": "40", - "family": "323", - "speed": "0.15", - "target_effect": "57", - "target_mask": "257" - }, - "2453": { - "id": 2453, - "name": "Lesser Thorns", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "40", - "family": "323", - "speed": "0.15", - "target_effect": "57", - "target_mask": "257" - }, - "2454": { - "id": 2454, - "name": "Thorns", - "description": "Increases a weapon's damage value by 3 points.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "40", - "family": "323", - "speed": "0.15", - "target_effect": "57", - "target_mask": "257" - }, - "2455": { - "id": 2455, - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2456": { - "id": 2456, - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2457": { - "id": 2457, - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2458": { - "id": 2458, - "name": "Greater Cascade", - "description": "Increases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2459": { - "id": 2459, - "name": "Lesser Cascade", - "description": "Increases the target's Finesse Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2460": { - "id": 2460, - "name": "Cascade", - "description": "Increases the target's Finesse Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2461": { - "id": 2461, - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2462": { - "id": 2462, - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2463": { - "id": 2463, - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2464": { - "id": 2464, - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2465": { - "id": 2465, - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2466": { - "id": 2466, - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2467": { - "id": 2467, - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2468": { - "id": 2468, - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2469": { - "id": 2469, - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2470": { - "id": 2470, - "name": "Greater Still Water", - "description": "Increases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "263", - "speed": "0.1", - "target_effect": "10", - "target_mask": "16" - }, - "2471": { - "id": 2471, - "name": "Lesser Still Water", - "description": "Increases the target's Endurance by 8 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "30", - "family": "263", - "speed": "0.1", - "target_effect": "10", - "target_mask": "16" - }, - "2472": { - "id": 2472, - "name": "Still Water", - "description": "Increases the target's Endurance by 12 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "263", - "speed": "0.1", - "target_effect": "10", - "target_mask": "16" - }, - "2473": { - "id": 2473, - "name": "Greater Torrent", - "description": "Increases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "1800", - "mana": "70", - "family": "265", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2474": { - "id": 2474, - "name": "Lesser Torrent", - "description": "Increases the target's Quickness by 8 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "70", - "family": "265", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2475": { - "id": 2475, - "name": "Torrent", - "description": "Increases the target's Quickness by 12 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "1800", - "mana": "70", - "family": "265", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "2476": { - "id": 2476, - "name": "Safe Harbor", - "description": "Transports the target to the town of Timaru.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2477": { - "id": 2477, - "name": "Free Trip to the Aluvian Casino", - "description": "Transports the target to Monty's Den of Iniquity.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2478": { - "id": 2478, - "name": "Cragstone Reinforcements camp recall", - "description": "Transports the target to the Cragstone Reinforcements Camp portal.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2479": { - "id": 2479, - "name": "Advance Camp Recall", - "description": "Transports the target to the Cragstone advance camp.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2480": { - "id": 2480, - "name": "Free Trip to the Gharun'dim Casino", - "description": "Transports the target to Arshid's Den of Iniquity.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2481": { - "id": 2481, - "name": "Zaikhal Reinforcement Camp Recall", - "description": "Transports the target to the Zaikhal Reinforcement Camp.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2482": { - "id": 2482, - "name": "Zaikhal Advance Camp Recall", - "description": "Transports the target to the Zaikhal Advance Camp.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2483": { - "id": 2483, - "name": "Free Trip to the Sho Casino", - "description": "Transports the target to Gan-Zo's Den of Iniquity.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2484": { - "id": 2484, - "name": "Hebian-to Reinforcements Camp Portal", - "description": "Transports the target to the Hebian-to Reinforcements Camp.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2485": { - "id": 2485, - "name": "Hebian-to Advance Camp Recall", - "description": "Transports the target to the Hebian-to Advance Camp.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2486": { - "id": 2486, - "name": "Blood Thirst", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "2487": { - "id": 2487, - "name": "Spirit Strike", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "2488": { - "id": 2488, - "name": "Weapon Familiarity", - "description": "The crafter of this weapon is intimately familiar with its handling and suffers no defense penalty while wielding it. Additional magical enhancements can be layered over this.", - "school": "Item Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "329", - "speed": "0.1", - "target_effect": "61", - "target_mask": "33025" - }, - "2489": { - "id": 2489, - "name": "Free Ride to the Shoushi Southeast Outpost Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2490": { - "id": 2490, - "name": "Free Ride to the Holtburg South Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2491": { - "id": 2491, - "name": "Free Ride to the Holtburg West Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2492": { - "id": 2492, - "name": "Free Ride to the Shoushi West Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2493": { - "id": 2493, - "name": "Free Ride to the Yaraq East Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2494": { - "id": 2494, - "name": "Free Ride to the Yaraq North Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2495": { - "id": 2495, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2496": { - "id": 2496, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2497": { - "id": 2497, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2498": { - "id": 2498, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2499": { - "id": 2499, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2500": { - "id": 2500, - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2501": { - "id": 2501, - "name": "Major Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "333", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2502": { - "id": 2502, - "name": "Major Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "335", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2503": { - "id": 2503, - "name": "Major Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "337", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2504": { - "id": 2504, - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2505": { - "id": 2505, - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2506": { - "id": 2506, - "name": "Major Cooking Prowess", - "description": "Increases the target's Cooking skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "339", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2507": { - "id": 2507, - "name": "Major Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2508": { - "id": 2508, - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2509": { - "id": 2509, - "name": "Major Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2510": { - "id": 2510, - "name": "Major Deception Prowess", - "description": "Increases the target's Deception skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "343", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2511": { - "id": 2511, - "name": "Major Fealty", - "description": "Increases the target's Loyalty skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2512": { - "id": 2512, - "name": "Major Fletching Prowess", - "description": "Increases the target's Fletching skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "347", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2513": { - "id": 2513, - "name": "Major Healing Prowess", - "description": "Increases the target's Healing skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "349", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2514": { - "id": 2514, - "name": "Major Impregnability", - "description": "Increases the target's Missile Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "654", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2515": { - "id": 2515, - "name": "Major Invulnerability", - "description": "Increases the target's Melee Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2516": { - "id": 2516, - "name": "Major Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2517": { - "id": 2517, - "name": "Major Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2518": { - "id": 2518, - "name": "Major Jumping Prowess", - "description": "Increases the target's Jump skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "355", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "2519": { - "id": 2519, - "name": "Major Leadership", - "description": "Increases the target's Leadership skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "293", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2520": { - "id": 2520, - "name": "Major Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2521": { - "id": 2521, - "name": "Major Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "359", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2522": { - "id": 2522, - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2523": { - "id": 2523, - "name": "Major Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "361", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2524": { - "id": 2524, - "name": "Major Magic Resistance", - "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2525": { - "id": 2525, - "name": "Major Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2526": { - "id": 2526, - "name": "Major Monster Attunement", - "description": "Increases the target's Assess Creature skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "365", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2527": { - "id": 2527, - "name": "Major Person Attunement", - "description": "Increases the target's Assess Person skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "367", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2528": { - "id": 2528, - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2529": { - "id": 2529, - "name": "Major Sprint", - "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "2530": { - "id": 2530, - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2531": { - "id": 2531, - "name": "Major Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2532": { - "id": 2532, - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2533": { - "id": 2533, - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2534": { - "id": 2534, - "name": "Major War Magic Aptitude", - "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2535": { - "id": 2535, - "name": "Major Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "377", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2536": { - "id": 2536, - "name": "Minor Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "333", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2537": { - "id": 2537, - "name": "Minor Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "335", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2538": { - "id": 2538, - "name": "Minor Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "337", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2539": { - "id": 2539, - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2540": { - "id": 2540, - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2541": { - "id": 2541, - "name": "Minor Cooking Prowess", - "description": "Increases the target's Cooking skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "339", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2542": { - "id": 2542, - "name": "Minor Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2543": { - "id": 2543, - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2544": { - "id": 2544, - "name": "Minor Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2545": { - "id": 2545, - "name": "Minor Deception Prowess", - "description": "Increases the target's Deception skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "343", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2546": { - "id": 2546, - "name": "Minor Fealty", - "description": "Increases the target's Loyalty skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2547": { - "id": 2547, - "name": "Minor Fletching Prowess", - "description": "Increases the target's Fletching skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "347", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2548": { - "id": 2548, - "name": "Minor Healing Prowess", - "description": "Increases the target's Healing skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "349", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2549": { - "id": 2549, - "name": "Minor Impregnability", - "description": "Increases the target's Missile Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "654", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2550": { - "id": 2550, - "name": "Minor Invulnerability", - "description": "Increases the target's Melee Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2551": { - "id": 2551, - "name": "Minor Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2552": { - "id": 2552, - "name": "Minor Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2553": { - "id": 2553, - "name": "Minor Jumping Prowess", - "description": "Increases the target's Jump skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "355", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "2554": { - "id": 2554, - "name": "Minor Leadership", - "description": "Increases the target's Leadership skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "293", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2555": { - "id": 2555, - "name": "Minor Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2556": { - "id": 2556, - "name": "Minor Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "359", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "2557": { - "id": 2557, - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2558": { - "id": 2558, - "name": "Minor Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "361", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2559": { - "id": 2559, - "name": "Minor Magic Resistance", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2560": { - "id": 2560, - "name": "Minor Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2561": { - "id": 2561, - "name": "Minor Monster Attunement", - "description": "Increases the target's Assess Creature skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "365", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2562": { - "id": 2562, - "name": "Minor Person Attunement", - "description": "Increases the target's Assess Person skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "367", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2563": { - "id": 2563, - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2564": { - "id": 2564, - "name": "Minor Sprint", - "description": "Increases the target's Run skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "2565": { - "id": 2565, - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2566": { - "id": 2566, - "name": "Minor Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2567": { - "id": 2567, - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2568": { - "id": 2568, - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2569": { - "id": 2569, - "name": "Minor War Magic Aptitude", - "description": "Increases the target's War Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2570": { - "id": 2570, - "name": "Minor Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "377", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "2571": { - "id": 2571, - "name": "Major Armor", - "description": "Increases the target's natural armor by 40 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "40", - "duration": "780", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "2572": { - "id": 2572, - "name": "Major Coordination", - "description": "Increases the target's Coordination by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2573": { - "id": 2573, - "name": "Major Endurance", - "description": "Increases the target's Endurance by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "2574": { - "id": 2574, - "name": "Major Focus", - "description": "Increases the target's Focus by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "2575": { - "id": 2575, - "name": "Major Quickness", - "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "2576": { - "id": 2576, - "name": "Major Strength", - "description": "Increases the target's Strength by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "2577": { - "id": 2577, - "name": "Major Willpower", - "description": "Increases the target's Self by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2578": { - "id": 2578, - "name": "Minor Armor", - "description": "Increases the target's natural armor by 20 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "2579": { - "id": 2579, - "name": "Minor Coordination", - "description": "Increases the target's Coordination by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2580": { - "id": 2580, - "name": "Minor Endurance", - "description": "Increases the target's Endurance by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "2581": { - "id": 2581, - "name": "Minor Focus", - "description": "Increases the target's Focus by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "2582": { - "id": 2582, - "name": "Minor Quickness", - "description": "Increases the target's Quickness by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "2583": { - "id": 2583, - "name": "Minor Strength", - "description": "Increases the target's Strength by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "2584": { - "id": 2584, - "name": "Minor Willpower", - "description": "Increases the target's Self by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2585": { - "id": 2585, - "name": "Major Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "381", - "speed": "0.01", - "target_effect": "63", - "target_mask": "6" - }, - "2586": { - "id": 2586, - "name": "Major Blood Thirst", - "description": "Increases a weapon's damage value by 4 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "2587": { - "id": 2587, - "name": "Major Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "383", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "2588": { - "id": 2588, - "name": "Major Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "329", - "speed": "0.01", - "target_effect": "61", - "target_mask": "33025" - }, - "2589": { - "id": 2589, - "name": "Major Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "385", - "speed": "0.01", - "target_effect": "57", - "target_mask": "6" - }, - "2590": { - "id": 2590, - "name": "Major Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "387", - "speed": "0.01", - "target_effect": "65", - "target_mask": "6" - }, - "2591": { - "id": 2591, - "name": "Major Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "2592": { - "id": 2592, - "name": "Major Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 40 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "391", - "speed": "0", - "target_effect": "142", - "target_mask": "6" - }, - "2593": { - "id": 2593, - "name": "Major Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "393", - "speed": "0.01", - "target_effect": "59", - "target_mask": "6" - }, - "2594": { - "id": 2594, - "name": "Major Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "395", - "speed": "0.01", - "target_effect": "61", - "target_mask": "6" - }, - "2595": { - "id": 2595, - "name": "Major Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "397", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "2596": { - "id": 2596, - "name": "Major Swift Hunter", - "description": "Improves a weapon's speed by 20 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "399", - "speed": "0", - "target_effect": "63", - "target_mask": "257" - }, - "2597": { - "id": 2597, - "name": "Minor Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "381", - "speed": "0.01", - "target_effect": "63", - "target_mask": "6" - }, - "2598": { - "id": 2598, - "name": "Minor Blood Thirst", - "description": "Increases a weapon's damage value by 2 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "2599": { - "id": 2599, - "name": "Minor Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "383", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "2600": { - "id": 2600, - "name": "Minor Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "329", - "speed": "0.01", - "target_effect": "61", - "target_mask": "33025" - }, - "2601": { - "id": 2601, - "name": "Minor Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "385", - "speed": "0.01", - "target_effect": "57", - "target_mask": "6" - }, - "2602": { - "id": 2602, - "name": "Minor Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "387", - "speed": "0.01", - "target_effect": "65", - "target_mask": "6" - }, - "2603": { - "id": 2603, - "name": "Minor Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "2604": { - "id": 2604, - "name": "Minor Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 20 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "391", - "speed": "0", - "target_effect": "142", - "target_mask": "6" - }, - "2605": { - "id": 2605, - "name": "Minor Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "393", - "speed": "0.01", - "target_effect": "59", - "target_mask": "6" - }, - "2606": { - "id": 2606, - "name": "Minor Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "395", - "speed": "0.01", - "target_effect": "61", - "target_mask": "6" - }, - "2607": { - "id": 2607, - "name": "Minor Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "397", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "2608": { - "id": 2608, - "name": "Minor Swift Hunter", - "description": "Improves a weapon's speed by 10 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "399", - "speed": "0", - "target_effect": "63", - "target_mask": "257" - }, - "2609": { - "id": 2609, - "name": "Major Acid Ward", - "description": "Reduces damage the target takes from Acid by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "285", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "2610": { - "id": 2610, - "name": "Major Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "401", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "2611": { - "id": 2611, - "name": "Major Flame Ward", - "description": "Reduces damage the target takes from Fire by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "287", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "2612": { - "id": 2612, - "name": "Major Frost Ward", - "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "2613": { - "id": 2613, - "name": "Major Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "405", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "2614": { - "id": 2614, - "name": "Major Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "403", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "2615": { - "id": 2615, - "name": "Major Storm Ward", - "description": "Reduces damage the target takes from Lightning by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "291", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "2616": { - "id": 2616, - "name": "Minor Acid Ward", - "description": "Reduces damage the target takes from Acid by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "285", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "2617": { - "id": 2617, - "name": "Minor Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "401", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "2618": { - "id": 2618, - "name": "Minor Flame Ward", - "description": "Reduces damage the target takes from Fire by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "287", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "2619": { - "id": 2619, - "name": "Minor Frost Ward", - "description": "Reduces damage the target takes from Cold by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "2620": { - "id": 2620, - "name": "Minor Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "405", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "2621": { - "id": 2621, - "name": "Minor Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "403", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "2622": { - "id": 2622, - "name": "Minor Storm Ward", - "description": "Reduces damage the target takes from Lightning by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "291", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "2623": { - "id": 2623, - "name": "Major Health Gain", - "description": "Increases the rate at which the target regains Health by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "780", - "mana": "10", - "family": "257", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "2624": { - "id": 2624, - "name": "Major Mana Gain", - "description": "Increases the rate at which the target regains Mana by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "780", - "mana": "10", - "family": "259", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "2625": { - "id": 2625, - "name": "Major Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "780", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "2626": { - "id": 2626, - "name": "Minor Health Gain", - "description": "Increases the rate at which the target regains Health by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "257", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "2627": { - "id": 2627, - "name": "Minor Mana Gain", - "description": "Increases the rate at which the target regains Mana by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "259", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "2628": { - "id": 2628, - "name": "Minor Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "2629": { - "id": 2629, - "name": "Huntress' Boon", - "description": "Increases the bow's base damage value by 5 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "2630": { - "id": 2630, - "name": "Prey's Reflex", - "description": "Allows the wielder to anticipate the movements of the target. adding 6% to the weapon's attack odds. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "6", - "duration": "780", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "2631": { - "id": 2631, - "name": "Secret Descent", - "description": "Portals Target to Halls of Hollows Dungeon", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2632": { - "id": 2632, - "name": "Secret Ascent", - "description": "Portals Target to the exit of Halls of Hollows Dungeon", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2633": { - "id": 2633, - "name": "Breaking and Entering", - "description": "Portals Traget to the Regicide Dungeon", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2634": { - "id": 2634, - "name": "Cautious Egress", - "description": "Portals target to the Regicide Dungeon Exit", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2635": { - "id": 2635, - "name": "Witshire Passage", - "description": "Summons a portal to the Witshire Dungeon", - "school": "Item Enchantment", - "difficulty": "2000", - "duration": "-1", - "mana": "50000", - "family": "214", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2636": { - "id": 2636, - "name": "Karenua's Curse", - "description": "Decreases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "900", - "mana": "70", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "2637": { - "id": 2637, - "name": "Invoking Aun Tanua", - "description": "Summons the Spirit of the Tumerok Warrior Aun Tanua to do 160-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "100", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2638": { - "id": 2638, - "name": "Heart of Oak", - "description": "Increases the target's Self by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "13", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2639": { - "id": 2639, - "name": "Repulsion", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2640": { - "id": 2640, - "name": "Devourer", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2641": { - "id": 2641, - "name": "Force to Arms", - "description": "Decreases maximum mana by 100 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2642": { - "id": 2642, - "name": "Consumption", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2643": { - "id": 2643, - "name": "Stasis", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "60", - "mana": "30", - "family": "284", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2644": { - "id": 2644, - "name": "Lifestone Tie", - "description": "Links the caster to a targeted Lifestone.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "50", - "family": "200", - "speed": "0.25", - "target_effect": "15", - "target_mask": "268435456" - }, - "2645": { - "id": 2645, - "name": "Portal Recall", - "description": "Transports the caster to the destination of the last recallable portal the caster traveled through.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "50", - "family": "201", - "speed": "0.25", - "target_effect": "0", - "target_mask": "65536" - }, - "2646": { - "id": 2646, - "name": "Secondary Portal Tie", - "description": "Links the caster to a targeted portal.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "200", - "speed": "0.25", - "target_effect": "17", - "target_mask": "65536" - }, - "2647": { - "id": 2647, - "name": "Secondary Portal Recall", - "description": "Transports the caster to the destination of the portal last successfully linked to with Secondary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "-1", - "mana": "50", - "family": "201", - "speed": "0.25", - "target_effect": "0", - "target_mask": "65536" - }, - "2648": { - "id": 2648, - "name": "Summon Secondary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2649": { - "id": 2649, - "name": "Summon Secondary Portal II", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "90", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2650": { - "id": 2650, - "name": "Summon Secondary Portal III", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "300", - "mana": "110", - "family": "203", - "speed": "1", - "target_effect": "0", - "target_mask": "65536" - }, - "2651": { - "id": 2651, - "name": "Portal Sending Self Sacrifice", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2652": { - "id": 2652, - "name": "Portal Sending Merciless", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2653": { - "id": 2653, - "name": "Feeble Willpower", - "description": "Increases the target's Self by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2654": { - "id": 2654, - "name": "Feeble Endurance", - "description": "Increases the target's Endurance by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "2655": { - "id": 2655, - "name": "Feeble Focus", - "description": "Increases the target's Focus by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "2656": { - "id": 2656, - "name": "Feeble Quickness", - "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "2657": { - "id": 2657, - "name": "Feeble Strength", - "description": "Increases the target's Strength by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "2658": { - "id": 2658, - "name": "Feeble Coordination", - "description": "Increases the target's Coordination by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2659": { - "id": 2659, - "name": "Moderate Coordination", - "description": "Increases the target's Coordination by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "3600", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "2660": { - "id": 2660, - "name": "Moderate Endurance", - "description": "Increases the target's Endurance by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "2661": { - "id": 2661, - "name": "Moderate Focus", - "description": "Increases the target's Focus by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "2662": { - "id": 2662, - "name": "Moderate Quickness", - "description": "Increases the target's Quickness by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "2663": { - "id": 2663, - "name": "Moderate Strength", - "description": "Increases the target's Strength by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "2664": { - "id": 2664, - "name": "Moderate Willpower", - "description": "Increases the target's Self by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2665": { - "id": 2665, - "name": "Essence Sluice", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2666": { - "id": 2666, - "name": "Essence Glutton", - "description": "Increases maximum health by 30 points.", - "school": "Life Magic", - "difficulty": "30", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2667": { - "id": 2667, - "name": "Essence Spike", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2668": { - "id": 2668, - "name": "Nuhmudiras Benefaction", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2669": { - "id": 2669, - "name": "Nuhmudiras Bestowment", - "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2670": { - "id": 2670, - "name": "Nuhmudiras Endowment", - "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2671": { - "id": 2671, - "name": "Portal to the Callous Heart", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2672": { - "id": 2672, - "name": "Ring of True Pain", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2673": { - "id": 2673, - "name": "Ring of Unspeakable Agony", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2674": { - "id": 2674, - "name": "Vicious Rebuke", - "description": "Kills the target.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2675": { - "id": 2675, - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2676": { - "id": 2676, - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2677": { - "id": 2677, - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2678": { - "id": 2678, - "name": "Feeble Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2679": { - "id": 2679, - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2680": { - "id": 2680, - "name": "Feeble Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2681": { - "id": 2681, - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2682": { - "id": 2682, - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2683": { - "id": 2683, - "name": "Feeble Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2684": { - "id": 2684, - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2685": { - "id": 2685, - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2686": { - "id": 2686, - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2687": { - "id": 2687, - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2688": { - "id": 2688, - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2689": { - "id": 2689, - "name": "Moderate Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2690": { - "id": 2690, - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2691": { - "id": 2691, - "name": "Moderate Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2692": { - "id": 2692, - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2693": { - "id": 2693, - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2694": { - "id": 2694, - "name": "Moderate Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2695": { - "id": 2695, - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2696": { - "id": 2696, - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "2697": { - "id": 2697, - "name": "Aerfalle's Touch", - "description": "Decreases all of the target's attributes by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "300", - "family": "421", - "speed": "0.35", - "target_effect": "38", - "target_mask": "16" - }, - "2698": { - "id": 2698, - "name": "Aerfalle's Embrace", - "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "421", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "2699": { - "id": 2699, - "name": "Auroric Whip", - "description": "Sends a bolt of lightning streaking towards the target. The stream does 150-200 points of lightning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2700": { - "id": 2700, - "name": "Corrosive Cloud", - "description": "Sends a cloud of acid streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2701": { - "id": 2701, - "name": "Elemental Fury", - "description": "Burns the target for 150-200 damage.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2702": { - "id": 2702, - "name": "Elemental Fury", - "description": "Burns the target for 150-200 damage.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2703": { - "id": 2703, - "name": "Elemental Fury", - "description": "Disitegrates the target for 150-200 damage.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2704": { - "id": 2704, - "name": "Elemental Fury", - "description": "Jolts the target for 150-200 damage.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2705": { - "id": 2705, - "name": "Aerfalle's Enforcement", - "description": "Lowers all fellowship members skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "424", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "2706": { - "id": 2706, - "name": "Aerfalle's Gaze", - "description": "Lowers targets skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "424", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "2707": { - "id": 2707, - "name": "Elemental Pit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2708": { - "id": 2708, - "name": "Stasis Field", - "description": "Decreases all of the target's attributes by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "120", - "mana": "300", - "family": "421", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "2709": { - "id": 2709, - "name": "Summon Primary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "2710": { - "id": 2710, - "name": "Volcanic Blast", - "description": "Sends a stream of magma streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "247", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2711": { - "id": 2711, - "name": "Acid Arc I", - "description": "Shoots a stream of acid at the target. The stream does 16-30 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "117", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "2712": { - "id": 2712, - "name": "Acid Arc II", - "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "117", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2713": { - "id": 2713, - "name": "Acid Arc III", - "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "117", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2714": { - "id": 2714, - "name": "Acid Arc IV", - "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2715": { - "id": 2715, - "name": "Acid Arc V", - "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "117", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2716": { - "id": 2716, - "name": "Acid Arc VI", - "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "117", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2717": { - "id": 2717, - "name": "Acid Arc VII", - "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2718": { - "id": 2718, - "name": "Force Arc I", - "description": "Shoots a bolt of force at the target. The bolt does 16-30 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2719": { - "id": 2719, - "name": "Force Arc II", - "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "122", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2720": { - "id": 2720, - "name": "Force Arc III", - "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "122", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2721": { - "id": 2721, - "name": "Force Arc IV", - "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2722": { - "id": 2722, - "name": "Force Arc V", - "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "122", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2723": { - "id": 2723, - "name": "Force Arc VI", - "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2724": { - "id": 2724, - "name": "Force Arc VII", - "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2725": { - "id": 2725, - "name": "Frost Arc I", - "description": "Shoots a bolt of frost at the target. The bolt does 16-30 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "119", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "2726": { - "id": 2726, - "name": "Frost Arc II", - "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "119", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2727": { - "id": 2727, - "name": "Frost Arc III", - "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "119", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2728": { - "id": 2728, - "name": "Frost Arc IV", - "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2729": { - "id": 2729, - "name": "Frost Arc V", - "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "119", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2730": { - "id": 2730, - "name": "Frost Arc VI", - "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "119", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2731": { - "id": 2731, - "name": "Frost Arc VII", - "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2732": { - "id": 2732, - "name": "Lightning Arc I", - "description": "Shoots a bolt of lighting at the target. The bolt does 16-30 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2733": { - "id": 2733, - "name": "Lightning Arc II", - "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "120", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2734": { - "id": 2734, - "name": "Lightning Arc III", - "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "120", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2735": { - "id": 2735, - "name": "Lightning Arc IV", - "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2736": { - "id": 2736, - "name": "Lightning Arc V", - "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "120", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2737": { - "id": 2737, - "name": "Lightning Arc VI", - "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "120", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2738": { - "id": 2738, - "name": "Lightning Arc VII", - "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2739": { - "id": 2739, - "name": "Flame Arc I", - "description": "Shoots a bolt of flame at the target. The bolt does 16-30 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2740": { - "id": 2740, - "name": "Flame Arc II", - "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "121", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2741": { - "id": 2741, - "name": "Flame Arc III", - "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "121", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2742": { - "id": 2742, - "name": "Flame Arc IV", - "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2743": { - "id": 2743, - "name": "Flame Arc V", - "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "121", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2744": { - "id": 2744, - "name": "Flame Arc VI", - "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "121", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2745": { - "id": 2745, - "name": "Flame Arc VII", - "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2746": { - "id": 2746, - "name": "Shock Arc I", - "description": "Shoots a shock wave at the target. The wave does 16-30 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "118", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "2747": { - "id": 2747, - "name": "Shock Arc II", - "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "118", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2748": { - "id": 2748, - "name": "Shock Arc III", - "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "118", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2749": { - "id": 2749, - "name": "Shock Arc IV", - "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2750": { - "id": 2750, - "name": "Shock Arc V", - "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "118", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2751": { - "id": 2751, - "name": "Shock Arc VI", - "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "118", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2752": { - "id": 2752, - "name": "Shock Arc VII", - "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2753": { - "id": 2753, - "name": "Blade Arc I", - "description": "Shoots a magical blade at the target. The bolt does 16-30 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "123", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "2754": { - "id": 2754, - "name": "Blade Arc II", - "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "123", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2755": { - "id": 2755, - "name": "Blade Arc III", - "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "123", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2756": { - "id": 2756, - "name": "Blade Arc IV", - "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2757": { - "id": 2757, - "name": "Blade Arc V", - "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "123", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2758": { - "id": 2758, - "name": "Blade Arc VI", - "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "123", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2759": { - "id": 2759, - "name": "Blade Arc VII", - "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2760": { - "id": 2760, - "name": "Martyr's Hecatomb I", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 75% of the amount drained.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2761": { - "id": 2761, - "name": "Martyr's Hecatomb II", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 90% of the amount drained.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "80", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2762": { - "id": 2762, - "name": "Martyr's Hecatomb III", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 105% of the amount drained.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "80", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2763": { - "id": 2763, - "name": "Martyr's Hecatomb IV", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 125% of the amount drained.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2764": { - "id": 2764, - "name": "Martyr's Hecatomb V", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 150% of the amount drained.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "80", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2765": { - "id": 2765, - "name": "Martyr's Hecatomb VI", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 175% of the amount drained.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2766": { - "id": 2766, - "name": "Martyr's Hecatomb VII", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2767": { - "id": 2767, - "name": "Martyr's Tenacity I", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 75% of the amount drained.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "82", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2768": { - "id": 2768, - "name": "Martyr's Tenacity II", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 90% of the amount drained.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "82", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2769": { - "id": 2769, - "name": "Martyr's Tenacity III", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 105% of the amount drained.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "82", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2770": { - "id": 2770, - "name": "Martyr's Tenacity IV", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 125% of the amount drained.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "82", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2771": { - "id": 2771, - "name": "Martyr's Tenacity V", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 150% of the amount drained.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "82", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2772": { - "id": 2772, - "name": "Martyr's Tenacity VI", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 175% of the amount drained.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2773": { - "id": 2773, - "name": "Martyr's Tenacity VII", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "82", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2774": { - "id": 2774, - "name": "Martyr's Blight I", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 75% of the amount drained.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "84", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2775": { - "id": 2775, - "name": "Martyr's Blight II", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 90% of the amount drained.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "84", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "2776": { - "id": 2776, - "name": "Martyr's Blight III", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 105% of the amount drained.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "84", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "2777": { - "id": 2777, - "name": "Martyr's Blight IV", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 125% of the amount drained.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "84", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2778": { - "id": 2778, - "name": "Martyr's Blight V", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 150% of the amount drained.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "84", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "2779": { - "id": 2779, - "name": "Martyr's Blight VI", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 175% of the amount drained.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2780": { - "id": 2780, - "name": "Martyr's Blight VII", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "84", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2781": { - "id": 2781, - "name": "Lesser Elemental Fury", - "description": "Disitegrates the target for 200 points of acid damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2782": { - "id": 2782, - "name": "Lesser Elemental Fury", - "description": "Burns the target for 200 points of fire damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2783": { - "id": 2783, - "name": "Lesser Elemental Fury", - "description": "Burns the target for 200 points of cold damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2784": { - "id": 2784, - "name": "Lesser Elemental Fury", - "description": "Jolts the target for 200 points of electric damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "2785": { - "id": 2785, - "name": "Lesser Stasis Field", - "description": "Decreases all of the target's attributes by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "120", - "mana": "300", - "family": "421", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "2786": { - "id": 2786, - "name": "Madness", - "description": "Wearing the mask makes you feel strange.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "10", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2787": { - "id": 2787, - "name": "Supremacy", - "description": "Increases the Allegiance Rank by 1.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "60", - "mana": "70", - "family": "529", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "2788": { - "id": 2788, - "name": "Essence Blight", - "description": "Drains 5000 points of the targets Mana.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "2789": { - "id": 2789, - "name": "Elemental Destruction", - "description": "Drains 8000 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "150", - "target_mask": "16" - }, - "2790": { - "id": 2790, - "name": "Weight of the World", - "description": "Afflicts the target with the weight of the world.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "60", - "mana": "1", - "family": "2", - "speed": "0.3", - "target_effect": "7", - "target_mask": "16" - }, - "2791": { - "id": 2791, - "name": "Rolling Death", - "description": "A giant ball of acid.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "117", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2792": { - "id": 2792, - "name": "Rolling Death", - "description": "A giant ball of fire.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2793": { - "id": 2793, - "name": "Rolling Death", - "description": "A giant ball of ice.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "119", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2794": { - "id": 2794, - "name": "Rolling Death", - "description": "A giant ball of lightning.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2795": { - "id": 2795, - "name": "Citadel Library", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2796": { - "id": 2796, - "name": "Citadel Surface", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2797": { - "id": 2797, - "name": "Proving Grounds Rolling Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2798": { - "id": 2798, - "name": "Proving Grounds High", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2799": { - "id": 2799, - "name": "Proving Grounds Low", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2800": { - "id": 2800, - "name": "Proving Grounds Mid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2801": { - "id": 2801, - "name": "Proving Grounds Extreme", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2802": { - "id": 2802, - "name": "Proving Grounds High", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2803": { - "id": 2803, - "name": "Proving Grounds Low", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2804": { - "id": 2804, - "name": "Proving Grounds Mid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2805": { - "id": 2805, - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2806": { - "id": 2806, - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2807": { - "id": 2807, - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2808": { - "id": 2808, - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2809": { - "id": 2809, - "name": "Moderate Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "335", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2810": { - "id": 2810, - "name": "Moderate Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2811": { - "id": 2811, - "name": "Moderate Magic Resistance", - "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2812": { - "id": 2812, - "name": "Moderate War Magic Aptitude", - "description": "Increases the target's War Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2813": { - "id": 2813, - "name": "Mount Lethe Recall", - "description": "Transports the caster to the base of Mount Lethe.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "2814": { - "id": 2814, - "name": "Priest's Curse", - "description": "Casts the Undead Priest's Curse on the target. The bolt does 61-120 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "122", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "2815": { - "id": 2815, - "name": "Boom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2816": { - "id": 2816, - "name": "Big Boom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2817": { - "id": 2817, - "name": "Shockwave Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2818": { - "id": 2818, - "name": "Spiral Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2819": { - "id": 2819, - "name": "Sparkle Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2820": { - "id": 2820, - "name": "Blossom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2821": { - "id": 2821, - "name": "Ring Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2822": { - "id": 2822, - "name": "Boom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2823": { - "id": 2823, - "name": "Big Boom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2824": { - "id": 2824, - "name": "Shockwave Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2825": { - "id": 2825, - "name": "Spiral Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2826": { - "id": 2826, - "name": "Sparkle Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2827": { - "id": 2827, - "name": "Blossom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2828": { - "id": 2828, - "name": "Ring Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2829": { - "id": 2829, - "name": "Boom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2830": { - "id": 2830, - "name": "Big Boom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2831": { - "id": 2831, - "name": "Shockwave Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2832": { - "id": 2832, - "name": "Spiral Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2833": { - "id": 2833, - "name": "Sparkle Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2834": { - "id": 2834, - "name": "Blossom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2835": { - "id": 2835, - "name": "Ring Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2836": { - "id": 2836, - "name": "Boom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2837": { - "id": 2837, - "name": "Big Boom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2838": { - "id": 2838, - "name": "Shockwave Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2839": { - "id": 2839, - "name": "Spiral Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2840": { - "id": 2840, - "name": "Sparkle Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2841": { - "id": 2841, - "name": "Blossom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2842": { - "id": 2842, - "name": "Ring Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2843": { - "id": 2843, - "name": "Boom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2844": { - "id": 2844, - "name": "Big Boom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2845": { - "id": 2845, - "name": "Shockwave Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2846": { - "id": 2846, - "name": "Spiral Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2847": { - "id": 2847, - "name": "Sparkle Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2848": { - "id": 2848, - "name": "Blossom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2849": { - "id": 2849, - "name": "Ring Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2850": { - "id": 2850, - "name": "Boom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2851": { - "id": 2851, - "name": "Big Boom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2852": { - "id": 2852, - "name": "Shockwave Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2853": { - "id": 2853, - "name": "Spiral Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2854": { - "id": 2854, - "name": "Sparkle Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2855": { - "id": 2855, - "name": "Blossom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2856": { - "id": 2856, - "name": "Ring Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2857": { - "id": 2857, - "name": "Boom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2858": { - "id": 2858, - "name": "Big Boom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2859": { - "id": 2859, - "name": "Shockwave White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2860": { - "id": 2860, - "name": "Spiral White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2861": { - "id": 2861, - "name": "Sparkle White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2862": { - "id": 2862, - "name": "Blossom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2863": { - "id": 2863, - "name": "Ring White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2864": { - "id": 2864, - "name": "Boom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2865": { - "id": 2865, - "name": "Big Boom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2866": { - "id": 2866, - "name": "Shockwave Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2867": { - "id": 2867, - "name": "Spiral Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2868": { - "id": 2868, - "name": "Sparkle Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2869": { - "id": 2869, - "name": "Blossom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2870": { - "id": 2870, - "name": "Ring Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2871": { - "id": 2871, - "name": "Boom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2872": { - "id": 2872, - "name": "Big Boom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2873": { - "id": 2873, - "name": "Shockwave Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2874": { - "id": 2874, - "name": "Spiral Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2875": { - "id": 2875, - "name": "Sparkle Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2876": { - "id": 2876, - "name": "Blossom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2877": { - "id": 2877, - "name": "Ring Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2878": { - "id": 2878, - "name": "Boom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2879": { - "id": 2879, - "name": "Big Boom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2880": { - "id": 2880, - "name": "Shockwave Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2881": { - "id": 2881, - "name": "Spiral Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2882": { - "id": 2882, - "name": "Sparkle Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2883": { - "id": 2883, - "name": "Blossom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2884": { - "id": 2884, - "name": "Ring Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2885": { - "id": 2885, - "name": "Boom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2886": { - "id": 2886, - "name": "Big Boom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2887": { - "id": 2887, - "name": "Shockwave Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2888": { - "id": 2888, - "name": "Spiral Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2889": { - "id": 2889, - "name": "Sparkle Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2890": { - "id": 2890, - "name": "Blossom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2891": { - "id": 2891, - "name": "Ring Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2892": { - "id": 2892, - "name": "Boom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2893": { - "id": 2893, - "name": "Big Boom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2894": { - "id": 2894, - "name": "Shockwave Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2895": { - "id": 2895, - "name": "Spiral Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2896": { - "id": 2896, - "name": "Sparkle Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2897": { - "id": 2897, - "name": "Blossom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2898": { - "id": 2898, - "name": "Ring Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2899": { - "id": 2899, - "name": "Boom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2900": { - "id": 2900, - "name": "Big Boom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2901": { - "id": 2901, - "name": "Shockwave Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2902": { - "id": 2902, - "name": "Spiral Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2903": { - "id": 2903, - "name": "Sparkle Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2904": { - "id": 2904, - "name": "Blossom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2905": { - "id": 2905, - "name": "Ring Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2906": { - "id": 2906, - "name": "Boom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2907": { - "id": 2907, - "name": "Big Boom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2908": { - "id": 2908, - "name": "Shockwave Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2909": { - "id": 2909, - "name": "Spiral Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2910": { - "id": 2910, - "name": "Sparkle Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2911": { - "id": 2911, - "name": "Blossom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2912": { - "id": 2912, - "name": "Ring Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2913": { - "id": 2913, - "name": "Boom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2914": { - "id": 2914, - "name": "Big Boom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2915": { - "id": 2915, - "name": "Shockwave White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2916": { - "id": 2916, - "name": "Spiral White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2917": { - "id": 2917, - "name": "Sparkle White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2918": { - "id": 2918, - "name": "Blossom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2919": { - "id": 2919, - "name": "Ring White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2920": { - "id": 2920, - "name": "Boom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "409", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "2921": { - "id": 2921, - "name": "Big Boom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "409", - "speed": "0.05", - "target_effect": "0", - "target_mask": "0" - }, - "2922": { - "id": 2922, - "name": "Shockwave Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "409", - "speed": "0.1", - "target_effect": "0", - "target_mask": "0" - }, - "2923": { - "id": 2923, - "name": "Spiral Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2924": { - "id": 2924, - "name": "Sparkle Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "409", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "2925": { - "id": 2925, - "name": "Blossom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "409", - "speed": "0.3", - "target_effect": "0", - "target_mask": "0" - }, - "2926": { - "id": 2926, - "name": "Ring Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "2927": { - "id": 2927, - "name": "Old School Fireworks", - "description": "Original Anniversary Celebration Effect.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "15", - "family": "409", - "speed": "0.01", - "target_effect": "141", - "target_mask": "16" - }, - "2928": { - "id": 2928, - "name": "Tusker Hide", - "description": "Increases the target's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "5400", - "mana": "100", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "2929": { - "id": 2929, - "name": "Tusker Might", - "description": "Increases the caster's strength by 35.", - "school": "Creature Enchantment", - "difficulty": "276", - "duration": "5400", - "mana": "100", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "2930": { - "id": 2930, - "name": "Tusker Skin", - "description": "Boosts a piece of armor by 200 points.", - "school": "Item Enchantment", - "difficulty": "253", - "duration": "5400", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "2931": { - "id": 2931, - "name": "Recall Aphus Lassel", - "description": "Teleports caster to Aphus Lassel.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2932": { - "id": 2932, - "name": "Tusker Leap", - "description": "Boosts casters jump skill by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "401", - "duration": "10", - "mana": "100", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2933": { - "id": 2933, - "name": "Tusker Sprint", - "description": "Boosts casters run skill by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "401", - "duration": "60", - "mana": "100", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "2934": { - "id": 2934, - "name": "Tusker Fists", - "description": "A hail of tusker fists pummels a clear path ahead of the caster.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "120", - "family": "230", - "speed": "0.25", - "target_effect": "0", - "target_mask": "0" - }, - "2935": { - "id": 2935, - "name": "Trial of the Tusker Hero", - "description": "Transports target to Mowen Udaun.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2936": { - "id": 2936, - "name": "Entrance to Tusker Island", - "description": "Transports target to Tusker Island.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2937": { - "id": 2937, - "name": "Moderate Impregnability", - "description": "Increases the target's Missile Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "297", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2938": { - "id": 2938, - "name": "Moderate Invulnerability", - "description": "Increases the target's Melee Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "2939": { - "id": 2939, - "name": "Entering the Temple", - "description": "Transports the target to the Temple of Enlightenment.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2940": { - "id": 2940, - "name": "Entering the Temple", - "description": "Transports the target to the Temple of Forgetfulness.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2941": { - "id": 2941, - "name": "Ulgrim's Recall", - "description": "A really really good spell.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2942": { - "id": 2942, - "name": "Free Ride to the Abandoned Mine", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2943": { - "id": 2943, - "name": "Recall to the Singularity Caul", - "description": "Teleports caster to the Singularity Caul.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2944": { - "id": 2944, - "name": "Storage Warehouse", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2945": { - "id": 2945, - "name": "Storage Warehouse", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2946": { - "id": 2946, - "name": "Moderate Creature Magic Aptitude", - "description": "Increases the target's Creature Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2947": { - "id": 2947, - "name": "Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 6 or lower from the target. This spell is not affected by mana conversion.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "240", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "2948": { - "id": 2948, - "name": "Hieromancer's Great Ward", - "description": "Improves a shield or piece of armor's armor value by 220 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "780", - "mana": "50", - "family": "190", - "speed": "0.2", - "target_effect": "142", - "target_mask": "6" - }, - "2949": { - "id": 2949, - "name": "Lightbringer's Way", - "description": "Enhances the mettle and conviction of a weapon so that the metal bites deeper. The damage of the weapon is increased by 21 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "2950": { - "id": 2950, - "name": "Maiden's Kiss", - "description": "Enhances the health of the recipient by 30 points.", - "school": "Life Magic", - "difficulty": "30", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2951": { - "id": 2951, - "name": "Gates of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2952": { - "id": 2952, - "name": "Courtyard of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2953": { - "id": 2953, - "name": "Interior Gates of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2954": { - "id": 2954, - "name": "Barracks Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2955": { - "id": 2955, - "name": "Forge Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2956": { - "id": 2956, - "name": "Research Chambers Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2957": { - "id": 2957, - "name": "Seat of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2958": { - "id": 2958, - "name": "Blessing of the Priestess", - "description": "Increases the target's Life Magic skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "300", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2959": { - "id": 2959, - "name": "Mark of the Priestess", - "description": "Increases the target's Life Magic skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "300", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2960": { - "id": 2960, - "name": "Greater Bludgeoning Durance", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "176", - "speed": "0.05", - "target_effect": "67", - "target_mask": "6" - }, - "2961": { - "id": 2961, - "name": "Greater Piercing Durance", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "180", - "speed": "0.05", - "target_effect": "59", - "target_mask": "6" - }, - "2962": { - "id": 2962, - "name": "Greater Slashing Durance", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "360", - "mana": "20", - "family": "178", - "speed": "0.05", - "target_effect": "61", - "target_mask": "6" - }, - "2963": { - "id": 2963, - "name": "Aura of Hunter's Cunning", - "description": "My prey shall know the bite of my steel long before it becomes aware of my presence. Increases the base offense bonus of a weapon by 18%.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "152", - "speed": "0.01", - "target_effect": "59", - "target_mask": "16" - }, - "2964": { - "id": 2964, - "name": "Aura of Hunter's Mark", - "description": "I shall be known by motion and cunning. all shall fear my mark. Increases the Melee Defense skill modifier of a weapon or magic caster by 18%.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "156", - "speed": "0.01", - "target_effect": "61", - "target_mask": "16" - }, - "2965": { - "id": 2965, - "name": "Aura of Murderous Intent", - "description": "I shall know my mindset and my prey will learn to fear. Increases the mana conversion bonus of a casting implement by 80%.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "2966": { - "id": 2966, - "name": "Aura of Murderous Thirst", - "description": "I shall drink the blood of my victims and it shall nourish my fevered desire. Increases the base damage of a weapon by 26.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "154", - "speed": "0", - "target_effect": "57", - "target_mask": "16" - }, - "2967": { - "id": 2967, - "name": "Aura of The Speedy Hunter", - "description": "My movements shall become as the wind. silent and swift. Decrease the base speed of a weapon by 30.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "158", - "speed": "0", - "target_effect": "63", - "target_mask": "16" - }, - "2968": { - "id": 2968, - "name": "Vision of the Hunter", - "description": "I will see with a sight beyond sight. Increases the base damage bonus of a weapon by 18%.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "325", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "2969": { - "id": 2969, - "name": "Mother's Blessing", - "description": "This spell increases the overall health of a character by 25 points. This is not stackable with other effects.", - "school": "Life Magic", - "difficulty": "25", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2970": { - "id": 2970, - "name": "Hunter's Lash", - "description": "...and the blood shall pour down my throat and sate the thirst. Deals 70-180 points of slashing damage to a player/creatures before resistance is applied.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "60", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2971": { - "id": 2971, - "name": "Bullseye", - "description": "Transports the player to the logic test of Oswald's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2972": { - "id": 2972, - "name": "Oswald's Room", - "description": "Transports target to Oswald's Room", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2973": { - "id": 2973, - "name": "Access to the Secret Lair", - "description": "Transports the player to Oswald's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2974": { - "id": 2974, - "name": "Vagabond Passed", - "description": "Transports target to test of fleet feet.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2975": { - "id": 2975, - "name": "Moderate Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2976": { - "id": 2976, - "name": "Acid Spray", - "description": "Sprayed acid from an olthoi egg.", - "school": "War Magic", - "difficulty": "225", - "duration": "-1", - "mana": "30", - "family": "131", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "2977": { - "id": 2977, - "name": "Portal spell to a hidden place", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2978": { - "id": 2978, - "name": "Nullify All Magic Other", - "description": "Dispels all enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "difficulty": "375", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "2979": { - "id": 2979, - "name": "Destiny's Wind", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "5400", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2980": { - "id": 2980, - "name": "Endless Vigor", - "description": "Increases maximum stamina by 100 points.", - "school": "Life Magic", - "difficulty": "350", - "duration": "5400", - "mana": "100", - "family": "81", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2981": { - "id": 2981, - "name": "Fellowship Heal I", - "description": "Restores 8-15 points of each fellow member.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "67", - "speed": "0", - "target_effect": "31", - "target_mask": "16" - }, - "2982": { - "id": 2982, - "name": "Fellowship Alchemy Mastery I", - "description": "Increases each fellow's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "221", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "2983": { - "id": 2983, - "name": "Fellowship Evaporate Life Magic Self", - "description": "Dispels 1-3 negative Life Magic enchantments of level 1 from each person in the fellowship.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "50", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "2984": { - "id": 2984, - "name": "Lyceum of Kivik Lir", - "description": "Transports the fellowship to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2985": { - "id": 2985, - "name": "Ardence", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "2986": { - "id": 2986, - "name": "Vim", - "description": "Increases maximum stamina by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "5400", - "mana": "100", - "family": "81", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "2987": { - "id": 2987, - "name": "Volition", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "5400", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "2988": { - "id": 2988, - "name": "Beaten into Submission", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2989": { - "id": 2989, - "name": "Portal to the Bandit Hideout.", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2990": { - "id": 2990, - "name": "Knocked Out", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "2991": { - "id": 2991, - "name": "Winter's Kiss", - "description": "Reduces damage the target takes from Cold by 13%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "13", - "duration": "7200", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "2992": { - "id": 2992, - "name": "Depletion", - "description": "Reduces the total mana of target by half.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "30", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "17", - "target_mask": "16" - }, - "2993": { - "id": 2993, - "name": "Grace of the Unicorn", - "description": "Increases the target's Coordination by 2 points. Additional spells. including cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "413", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2994": { - "id": 2994, - "name": "Plague", - "description": "Target's total health is reduces by 50%.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "30", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "2995": { - "id": 2995, - "name": "Power of the Dragon", - "description": "Increases the target's Strength by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "414", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2996": { - "id": 2996, - "name": "Scourge", - "description": "Target's total stamina is reduced by 50%.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "30", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "2997": { - "id": 2997, - "name": "Splendor of the Firebird", - "description": "Increases the target's Focus by 2 points. Additional spells. including cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "415", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "2998": { - "id": 2998, - "name": "Wrath of the Puppeteer", - "description": "Shoots three bolts of flame toward the target. Each bolt does 40-60 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "211", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "2999": { - "id": 2999, - "name": "Endurance of the Abyss", - "description": "Increases the target's Endurance by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "416", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3000": { - "id": 3000, - "name": "Ire of the Dark Prince", - "description": "Decreases the target's natural armor by 500 points.", - "school": "Life Magic", - "difficulty": "500", - "duration": "10", - "mana": "60", - "family": "116", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "3001": { - "id": 3001, - "name": "Puppet String", - "description": "Reduces all target's attributes by 25 for one minute.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3002": { - "id": 3002, - "name": "Will of the Quiddity", - "description": "Increases the target's Self by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "417", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3003": { - "id": 3003, - "name": "Dark Wave", - "description": "Lowers the total health of all fellowship member by half for ten seconds.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "10", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3004": { - "id": 3004, - "name": "Puppet Strings", - "description": "Lowers the attributes of a fellowship by 25 points for one minute.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3005": { - "id": 3005, - "name": "Dispersion", - "description": "Enhances the target's base Magic Defense by 1%. this can be layered with other spells.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "420", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3006": { - "id": 3006, - "name": "Foresight", - "description": "Enhances the target's base Missile Defense by 1%. other spells can be layered on top of this spell.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "419", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3007": { - "id": 3007, - "name": "Uncanny Dodge", - "description": "Enhances the target's base Melee Defense by 1%", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "418", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3008": { - "id": 3008, - "name": "Finesse", - "description": "Increases the target's Coordination by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "40", - "family": "267", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "3009": { - "id": 3009, - "name": "Thew", - "description": "Increases the target's Strength by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3010": { - "id": 3010, - "name": "Zeal", - "description": "Increases the target's Endurance by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3011": { - "id": 3011, - "name": "Endless Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "40", - "family": "331", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3012": { - "id": 3012, - "name": "Far Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "40", - "family": "331", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3013": { - "id": 3013, - "name": "Fruit of the Oasis", - "description": "Increases the rate at which the target regains Health by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "257", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "3014": { - "id": 3014, - "name": "Water of the Oasis", - "description": "Increases the rate at which the target regains Mana by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "259", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "3015": { - "id": 3015, - "name": "Shade of the Oasis", - "description": "Increases the rate at which the target regains Stamina by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "3016": { - "id": 3016, - "name": "Raptor's Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "40", - "family": "331", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3017": { - "id": 3017, - "name": "Greater Battle Dungeon Sending from Candeth Keep", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3018": { - "id": 3018, - "name": "Greater Battle Dungeon Sending from Fort Tethana", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3019": { - "id": 3019, - "name": "Greater Battle Dungeon Sending from Nanto", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3020": { - "id": 3020, - "name": "Greater Battle Dungeon Sending from Plateau", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3021": { - "id": 3021, - "name": "Greater Battle Dungeon Sending from Qalabar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3022": { - "id": 3022, - "name": "Greater Battle Dungeon Sending from Tou-Tou", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3023": { - "id": 3023, - "name": "Greater Battle Dungeon Sending from Xarabydun", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3024": { - "id": 3024, - "name": "Greater Battle Dungeon Sending from Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3025": { - "id": 3025, - "name": "Shriek", - "description": "A howling wail. Does 40-80 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "280", - "duration": "-1", - "mana": "30", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3026": { - "id": 3026, - "name": "Lesser Battle Dungeon Sending from Candeth Keep", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3027": { - "id": 3027, - "name": "Lesser Battle Dungeon Sending from Fort Tethana", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3028": { - "id": 3028, - "name": "Lesser Battle Dungeon Sending from Nanto", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3029": { - "id": 3029, - "name": "Lesser Battle Dungeon Sending from Plateau", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3030": { - "id": 3030, - "name": "Lesser Battle Dungeon Sending from Qalabar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3031": { - "id": 3031, - "name": "Lesser Battle Dungeon Sending from Tou-Tou", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3032": { - "id": 3032, - "name": "Lesser Battle Dungeon Sending from Xarabydun", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3033": { - "id": 3033, - "name": "Lesser Battle Dungeon Sending from Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3034": { - "id": 3034, - "name": "Benediction of Immortality", - "description": "Increases the target's Health by 7 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "422", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3035": { - "id": 3035, - "name": "Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 3 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "423", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3036": { - "id": 3036, - "name": "Cold Grip of the Grave", - "description": "Drains 300 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.75", - "target_effect": "36", - "target_mask": "16" - }, - "3037": { - "id": 3037, - "name": "Death's Call", - "description": "Drains 40 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3038": { - "id": 3038, - "name": "Death's Embrace", - "description": "Drains 50 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3039": { - "id": 3039, - "name": "Death's Feast", - "description": "Drains 150 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.75", - "target_effect": "32", - "target_mask": "16" - }, - "3040": { - "id": 3040, - "name": "Places Death's Kiss upon you.", - "description": "Drains 30 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3041": { - "id": 3041, - "name": "Essence Dissolution", - "description": "Drains 175 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "0", - "family": "80", - "speed": "0.75", - "target_effect": "32", - "target_mask": "16" - }, - "3042": { - "id": 3042, - "name": "Grip of Death", - "description": "Lowers all skills by 99%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "60", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3043": { - "id": 3043, - "name": "Kiss of the Grave", - "description": "Lowers total stamina of each fellowship member by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "120", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3044": { - "id": 3044, - "name": "Lesser Benediction of Immortality", - "description": "Increases the target's Health by 3 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "422", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3045": { - "id": 3045, - "name": "Lesser Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 1 point. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "423", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3046": { - "id": 3046, - "name": "Lesser Mists of Bur", - "description": "Increases the target's natural armor by 195 points.", - "school": "Life Magic", - "difficulty": "240", - "duration": "3600", - "mana": "50", - "family": "115", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "3047": { - "id": 3047, - "name": "Matron's Barb", - "description": "Drains 250 point of the target's Mana.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "0", - "family": "84", - "speed": "0.75", - "target_effect": "34", - "target_mask": "16" - }, - "3048": { - "id": 3048, - "name": "Minor Benediction of Immortality", - "description": "Increases the target's Health by 5 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "422", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3049": { - "id": 3049, - "name": "Minor Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "780", - "mana": "10", - "family": "423", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3050": { - "id": 3050, - "name": "Minor Mists of Bur", - "description": "Increases the target's natural armor by 205 points.", - "school": "Life Magic", - "difficulty": "255", - "duration": "1800", - "mana": "50", - "family": "115", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "3051": { - "id": 3051, - "name": "Mire Foot", - "description": "Target's run skill is reduces by 95%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "120", - "mana": "10", - "family": "78", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3052": { - "id": 3052, - "name": "Mists of Bur", - "description": "Increases the target's natural armor by 230 points.", - "school": "Life Magic", - "difficulty": "305", - "duration": "1800", - "mana": "50", - "family": "115", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "3053": { - "id": 3053, - "name": "Paralyzing Touch", - "description": "Lowers all attributes by 99%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "60", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3054": { - "id": 3054, - "name": "Soul Dissolution", - "description": "Drains 750-1000 points of the target's Health.", - "school": "Life Magic", - "difficulty": "500", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3055": { - "id": 3055, - "name": "Asphyxiation", - "description": "Lowers the attributes of a target by 30 points for two minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3056": { - "id": 3056, - "name": "Death's Vice", - "description": "Lowers total health of each fellowship member by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "120", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3057": { - "id": 3057, - "name": "Enervation", - "description": "Lowers the total stamina of a target by 20% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "3058": { - "id": 3058, - "name": "Asphyiaxtion", - "description": "Lowers the attributes of a target by 40 points for two minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3059": { - "id": 3059, - "name": "Enervation", - "description": "Lowers the total stamina of a target by 30% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "3060": { - "id": 3060, - "name": "Poison Blood", - "description": "Lowers the total health of a target by 30% for 45 seconds.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "45", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3061": { - "id": 3061, - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 30% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "3062": { - "id": 3062, - "name": "Asphyxiation", - "description": "Lowers the attributes of a target by 20 points for two minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3063": { - "id": 3063, - "name": "Enervation", - "description": "Lowers the total stamina of a target by 10% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "3064": { - "id": 3064, - "name": "Poison Blood", - "description": "Lowers the total health of a target by 10% for 45 seconds.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "45", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3065": { - "id": 3065, - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 10% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "3066": { - "id": 3066, - "name": "Lesser Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 100%.", - "school": "Life Magic", - "difficulty": "255", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3067": { - "id": 3067, - "name": "Matron's Curse", - "description": "Lowers total mana of each fellowship member by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "120", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3068": { - "id": 3068, - "name": "Minor Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 125%..", - "school": "Life Magic", - "difficulty": "310", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3069": { - "id": 3069, - "name": "Poison Blood", - "description": "Lowers the total health of a target by 20% for 45 seconds.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "45", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3070": { - "id": 3070, - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 20% for 2 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "3071": { - "id": 3071, - "name": "Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 150%.", - "school": "Life Magic", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3072": { - "id": 3072, - "name": "Hall of the Temple Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3073": { - "id": 3073, - "name": "Matron's Outer Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3074": { - "id": 3074, - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 100%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "104", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3075": { - "id": 3075, - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 100%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "114", - "speed": "0", - "target_effect": "48", - "target_mask": "16" - }, - "3076": { - "id": 3076, - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 100%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "102", - "speed": "0", - "target_effect": "50", - "target_mask": "16" - }, - "3077": { - "id": 3077, - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 100%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "110", - "speed": "0", - "target_effect": "44", - "target_mask": "16" - }, - "3078": { - "id": 3078, - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 100%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "112", - "speed": "0", - "target_effect": "46", - "target_mask": "16" - }, - "3079": { - "id": 3079, - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 145.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "116", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3080": { - "id": 3080, - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 190%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "104", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3081": { - "id": 3081, - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 190%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "114", - "speed": "0", - "target_effect": "48", - "target_mask": "16" - }, - "3082": { - "id": 3082, - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 190%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "102", - "speed": "0", - "target_effect": "50", - "target_mask": "16" - }, - "3083": { - "id": 3083, - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 190%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "110", - "speed": "0", - "target_effect": "44", - "target_mask": "16" - }, - "3084": { - "id": 3084, - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 190%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "112", - "speed": "0", - "target_effect": "46", - "target_mask": "16" - }, - "3085": { - "id": 3085, - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 160%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "104", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3086": { - "id": 3086, - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 160%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "114", - "speed": "0", - "target_effect": "48", - "target_mask": "16" - }, - "3087": { - "id": 3087, - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 160%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "102", - "speed": "0", - "target_effect": "50", - "target_mask": "16" - }, - "3088": { - "id": 3088, - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 160%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "110", - "speed": "0", - "target_effect": "44", - "target_mask": "16" - }, - "3089": { - "id": 3089, - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 160%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "112", - "speed": "0", - "target_effect": "46", - "target_mask": "16" - }, - "3090": { - "id": 3090, - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 210.", - "school": "Life Magic", - "difficulty": "300", - "duration": "120", - "mana": "10", - "family": "116", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3091": { - "id": 3091, - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 230.", - "school": "Life Magic", - "difficulty": "332", - "duration": "120", - "mana": "10", - "family": "116", - "speed": "0", - "target_effect": "56", - "target_mask": "16" - }, - "3092": { - "id": 3092, - "name": "Lesser Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 180 points.", - "school": "Item Enchantment", - "difficulty": "180", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "3093": { - "id": 3093, - "name": "Minor Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 205 points.", - "school": "Item Enchantment", - "difficulty": "255", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "3094": { - "id": 3094, - "name": "Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 225 points.", - "school": "Item Enchantment", - "difficulty": "305", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "3095": { - "id": 3095, - "name": "Crypt of Jexki Ki", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3096": { - "id": 3096, - "name": "Crypt of Ibrexi Jekti", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3097": { - "id": 3097, - "name": "Hall of the Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3098": { - "id": 3098, - "name": "Hall of the Greater Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3099": { - "id": 3099, - "name": "Hall of the Lesser Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3100": { - "id": 3100, - "name": "Antechamber of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3101": { - "id": 3101, - "name": "Crypt of Ixir Zi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3102": { - "id": 3102, - "name": "Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3103": { - "id": 3103, - "name": "Crypt of Kixkti Xri", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3104": { - "id": 3104, - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3105": { - "id": 3105, - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3106": { - "id": 3106, - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3107": { - "id": 3107, - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-210 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3108": { - "id": 3108, - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-220 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3109": { - "id": 3109, - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-220 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3110": { - "id": 3110, - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-220 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3111": { - "id": 3111, - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-220 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3112": { - "id": 3112, - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-220 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3113": { - "id": 3113, - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-200 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3114": { - "id": 3114, - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3115": { - "id": 3115, - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3116": { - "id": 3116, - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-200 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3117": { - "id": 3117, - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-200 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3118": { - "id": 3118, - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-210 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3119": { - "id": 3119, - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-210 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3120": { - "id": 3120, - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-210 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3121": { - "id": 3121, - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-210 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3122": { - "id": 3122, - "name": "Sacrificial Edge", - "description": "Shoots a single blade that deals 100-150 points of piercing damage at the target.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "0", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "3123": { - "id": 3123, - "name": "Sacrificial Edges", - "description": "Shoots three blades that deal 100-150 points of piercing damage at the target.", - "school": "War Magic", - "difficulty": "500", - "duration": "-1", - "mana": "0", - "family": "212", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3124": { - "id": 3124, - "name": "Blight Mana", - "description": "Lowers recipient's mana by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "300", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "3125": { - "id": 3125, - "name": "EnervateBeing", - "description": "Lowers recipent's Stamina by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "300", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "3126": { - "id": 3126, - "name": "Poison Health", - "description": "Lowers recipient's health by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "300", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3127": { - "id": 3127, - "name": "Fell Wind", - "description": "Lowers the total stamina of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "300", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "11", - "target_mask": "16" - }, - "3128": { - "id": 3128, - "name": "Infected Blood", - "description": "Lowers the total health of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "300", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3129": { - "id": 3129, - "name": "Infirmed Mana", - "description": "Lowers the total mana of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "300", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "15", - "target_mask": "16" - }, - "3130": { - "id": 3130, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3131": { - "id": 3131, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3132": { - "id": 3132, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3133": { - "id": 3133, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3134": { - "id": 3134, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3135": { - "id": 3135, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3136": { - "id": 3136, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3137": { - "id": 3137, - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3138": { - "id": 3138, - "name": "Antechamber of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3139": { - "id": 3139, - "name": "Liazk Itzi's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3140": { - "id": 3140, - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3141": { - "id": 3141, - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3142": { - "id": 3142, - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3143": { - "id": 3143, - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3144": { - "id": 3144, - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3145": { - "id": 3145, - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3146": { - "id": 3146, - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3147": { - "id": 3147, - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3148": { - "id": 3148, - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3149": { - "id": 3149, - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3150": { - "id": 3150, - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3151": { - "id": 3151, - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3152": { - "id": 3152, - "name": "Inferior Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 52%.", - "school": "Life Magic", - "difficulty": "245", - "duration": "3600", - "mana": "40", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3153": { - "id": 3153, - "name": "Lesser Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 45%.", - "school": "Life Magic", - "difficulty": "195", - "duration": "3600", - "mana": "50", - "family": "113", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "3154": { - "id": 3154, - "name": "Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 62%.", - "school": "Life Magic", - "difficulty": "295", - "duration": "3600", - "mana": "60", - "family": "113", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "3155": { - "id": 3155, - "name": "Lesser Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3156": { - "id": 3156, - "name": "Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3157": { - "id": 3157, - "name": "Greater Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3158": { - "id": 3158, - "name": "Superior Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3159": { - "id": 3159, - "name": "Lesser Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3160": { - "id": 3160, - "name": "Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3161": { - "id": 3161, - "name": "Greater Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3162": { - "id": 3162, - "name": "Superior Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3163": { - "id": 3163, - "name": "Lesser Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3164": { - "id": 3164, - "name": "Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3165": { - "id": 3165, - "name": "Greater Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3166": { - "id": 3166, - "name": "Superior Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3167": { - "id": 3167, - "name": "Lesser Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3168": { - "id": 3168, - "name": "Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3169": { - "id": 3169, - "name": "Greater Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3170": { - "id": 3170, - "name": "Superior Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3171": { - "id": 3171, - "name": "Lesser Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3172": { - "id": 3172, - "name": "Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3173": { - "id": 3173, - "name": "Greater Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3174": { - "id": 3174, - "name": "Superior Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3175": { - "id": 3175, - "name": "Lesser Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3176": { - "id": 3176, - "name": "Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3177": { - "id": 3177, - "name": "Greater Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3178": { - "id": 3178, - "name": "Superior Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3179": { - "id": 3179, - "name": "Eradicate All Magic Other", - "description": "Dispels all negative enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3180": { - "id": 3180, - "name": "Eradicate All Magic Self", - "description": "Dispels all negative enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3181": { - "id": 3181, - "name": "Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3182": { - "id": 3182, - "name": "Nullify All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3183": { - "id": 3183, - "name": "Nullify All Magic Self", - "description": "Dispels all enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3184": { - "id": 3184, - "name": "Eradicate Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3185": { - "id": 3185, - "name": "Eradicate Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3186": { - "id": 3186, - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3187": { - "id": 3187, - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3188": { - "id": 3188, - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3189": { - "id": 3189, - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3190": { - "id": 3190, - "name": "Eradicate Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 7 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "3191": { - "id": 3191, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "3192": { - "id": 3192, - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "3193": { - "id": 3193, - "name": "Eradicate Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3194": { - "id": 3194, - "name": "Eradicate Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3195": { - "id": 3195, - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3196": { - "id": 3196, - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3197": { - "id": 3197, - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3198": { - "id": 3198, - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3199": { - "id": 3199, - "name": "Minor Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "difficulty": "10", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "3200": { - "id": 3200, - "name": "Major Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "difficulty": "20", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "3201": { - "id": 3201, - "name": "Feeble Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 5%.", - "school": "Item Enchantment", - "difficulty": "5", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "3202": { - "id": 3202, - "name": "Moderate Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 15%.", - "school": "Item Enchantment", - "difficulty": "15", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "3203": { - "id": 3203, - "name": "Eradicate All Magic Other", - "description": "Dispels all negative enchantments of level 7 or lower from the target. This spell is not affected by mana conversion.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "3204": { - "id": 3204, - "name": "Blazing Heart", - "description": "Increases maximum health by 50 points for 4 hours.", - "school": "Life Magic", - "difficulty": "50", - "duration": "14400", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "3205": { - "id": 3205, - "name": "Good Eating", - "description": "Increases the target's Melee Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "14400", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3206": { - "id": 3206, - "name": "Enliven", - "description": "Increases maximum mana by 100 points for 4 hours.", - "school": "Life Magic", - "difficulty": "100", - "duration": "14400", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "3207": { - "id": 3207, - "name": "Ore Fire", - "description": "Increases the target's Magic Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "14400", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3208": { - "id": 3208, - "name": "Innervate", - "description": "Increases maximum stamina by 200 points for 4 hours.", - "school": "Life Magic", - "difficulty": "200", - "duration": "14400", - "mana": "70", - "family": "281", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "3209": { - "id": 3209, - "name": "Refreshment", - "description": "Increases the target's Missile Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "14400", - "mana": "10", - "family": "297", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3210": { - "id": 3210, - "name": "Agitate", - "description": "The Shadow Child enrages the target. reducing the target's Strength by 15%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "2", - "speed": "0.15", - "target_effect": "7", - "target_mask": "16" - }, - "3211": { - "id": 3211, - "name": "Annoyance", - "description": "The Shadow Child exasperates the target. reducing the target's Endurance by 15% .", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "3212": { - "id": 3212, - "name": "Guilt Trip", - "description": "The sad tale of the Shadow Child decreases the target's Coordination by 15%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "3213": { - "id": 3213, - "name": "Heart Ache", - "description": "The sad tale of the Shadow Child decreases the target's Self by 15%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "12", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "3214": { - "id": 3214, - "name": "Sorrow", - "description": "The sad tale of the Shadow Child decreases the target's Focus by 15%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "3215": { - "id": 3215, - "name": "Underfoot", - "description": "The Shadow Child gets in the target's way. reducing the target's Quickness by 15%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "45", - "mana": "70", - "family": "6", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "3216": { - "id": 3216, - "name": "Transport to the Forbidden Catacombs", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3217": { - "id": 3217, - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3218": { - "id": 3218, - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3219": { - "id": 3219, - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3220": { - "id": 3220, - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3221": { - "id": 3221, - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3222": { - "id": 3222, - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3223": { - "id": 3223, - "name": "Cascade", - "description": "Increases the target's Mana Conversion skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "363", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3224": { - "id": 3224, - "name": "Greater Cascade", - "description": "Increases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "363", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3225": { - "id": 3225, - "name": "Lesser Cascade", - "description": "Increases the target's Mana Conversion skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "363", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3226": { - "id": 3226, - "name": "Cascade", - "description": "Increases the target's Heavy Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "371", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3227": { - "id": 3227, - "name": "Greater Cascade", - "description": "Increases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "371", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3228": { - "id": 3228, - "name": "Lesser Cascade", - "description": "Increases the target's Heavy Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "371", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3229": { - "id": 3229, - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3230": { - "id": 3230, - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3231": { - "id": 3231, - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3232": { - "id": 3232, - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3233": { - "id": 3233, - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3234": { - "id": 3234, - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "331", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "3235": { - "id": 3235, - "name": "Dark Power", - "description": "A dark power suffuses your being. increasing your Self by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "417", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3236": { - "id": 3236, - "name": "Restorative Draught", - "description": "Restores 60-80 points of the target's Health.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "1000", - "family": "79", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "3237": { - "id": 3237, - "name": "Fanaticism", - "description": "A fervent need for destruction increases your War Magic skill by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "426", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3238": { - "id": 3238, - "name": "Portal to Nanner Island", - "description": "Transports the target to Nanner Island.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3239": { - "id": 3239, - "name": "Insight of the Khe", - "description": "This spell enhances the caster's understanding of the mystical world. Self is raised by 32.", - "school": "Creature Enchantment", - "difficulty": "245", - "duration": "60", - "mana": "60", - "family": "11", - "speed": "0.3", - "target_effect": "14", - "target_mask": "16" - }, - "3240": { - "id": 3240, - "name": "Wisdom of the Khe", - "description": "This spell enhances the caster's knowledge and ability to manipulate the mystical world. Focus is increased by 32.", - "school": "Creature Enchantment", - "difficulty": "245", - "duration": "60", - "mana": "60", - "family": "9", - "speed": "0.3", - "target_effect": "16", - "target_mask": "16" - }, - "3241": { - "id": 3241, - "name": "Flame Burst", - "description": "A burst of superheated air blasts outward from the caster.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3242": { - "id": 3242, - "name": "Weave of Chorizite", - "description": "Veins of chorizite serve to raise your magic defense. Magic Defense is raised by 2 points when this item is wielded. This is in addition to any spells and cantrips.", - "school": "Creature Enchantment", - "difficulty": "265", - "duration": "60", - "mana": "10", - "family": "428", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3243": { - "id": 3243, - "name": "Consecration", - "description": "The innate magic of the Homunculus enhances your Item Enchantment skill by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "431", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3244": { - "id": 3244, - "name": "Divine Manipulation", - "description": "The power to show creatures the way surges through you. Increases your Creature Enchantment skill by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "430", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3245": { - "id": 3245, - "name": "Sacrosanct Touch", - "description": "You feel urged to bless the worthy and punish the unworthy. Increases your Life Magic skill by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "429", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3246": { - "id": 3246, - "name": "Adja's Benefaction", - "description": "Adja bestows her blessing upon you. increasing your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "60", - "mana": "60", - "family": "257", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "3247": { - "id": 3247, - "name": "Adja's Favor", - "description": "Adja bestows her favor upon you. increasing your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "60", - "mana": "60", - "family": "407", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "3248": { - "id": 3248, - "name": "Adja's Grace", - "description": "Adja bestows her grace upon you. increasing your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "60", - "mana": "60", - "family": "259", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "3249": { - "id": 3249, - "name": "Ghostly Chorus", - "description": "A vision of a ghostly chorus sings to you. lifting your spirits and empowering you. Your rate of Mana Renewal increases by 200% for one hour.", - "school": "Life Magic", - "difficulty": "1000", - "duration": "3600", - "mana": "60", - "family": "97", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "3250": { - "id": 3250, - "name": "Major Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "3251": { - "id": 3251, - "name": "Minor Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "3252": { - "id": 3252, - "name": "Spirit Thirst", - "description": "Increases a caster's damage mod by 0.02 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "3253": { - "id": 3253, - "name": "Aura of Spirit Drinker Self I", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "695", - "speed": "0", - "target_effect": "57", - "target_mask": "16" - }, - "3254": { - "id": 3254, - "name": "Aura of Spirit Drinker Self II", - "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "695", - "speed": "0.05", - "target_effect": "57", - "target_mask": "16" - }, - "3255": { - "id": 3255, - "name": "Aura of Spirit Drinker Self III", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "695", - "speed": "0.1", - "target_effect": "57", - "target_mask": "16" - }, - "3256": { - "id": 3256, - "name": "Aura of Spirit Drinker Self IV", - "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "3257": { - "id": 3257, - "name": "Aura of Spirit Drinker Self V", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "695", - "speed": "0.2", - "target_effect": "57", - "target_mask": "16" - }, - "3258": { - "id": 3258, - "name": "Aura of Spirit Drinker Self VI", - "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "695", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "3259": { - "id": 3259, - "name": "Aura of Infected Spirit Caress", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "3260": { - "id": 3260, - "name": "Spirit Loather I", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "155", - "speed": "0.05", - "target_effect": "58", - "target_mask": "32768" - }, - "3261": { - "id": 3261, - "name": "Spirit Loather II", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "155", - "speed": "0.05", - "target_effect": "58", - "target_mask": "32768" - }, - "3262": { - "id": 3262, - "name": "Spirit Loather III", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "155", - "speed": "0.1", - "target_effect": "58", - "target_mask": "32768" - }, - "3263": { - "id": 3263, - "name": "Spirit Loather IV", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "32768" - }, - "3264": { - "id": 3264, - "name": "Spirit Loather V", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "155", - "speed": "0.2", - "target_effect": "58", - "target_mask": "32768" - }, - "3265": { - "id": 3265, - "name": "Spirit Loather VI", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "155", - "speed": "0.3", - "target_effect": "58", - "target_mask": "32768" - }, - "3266": { - "id": 3266, - "name": "Spirit Pacification", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "32768" - }, - "3267": { - "id": 3267, - "name": "Bit Between Teeth", - "description": "This spell decreases the target's Self by 75%.", - "school": "Creature Enchantment", - "difficulty": "285", - "duration": "300", - "mana": "10", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "3268": { - "id": 3268, - "name": "Biting Bonds", - "description": "Lowers recipient's health by 40% for five minutes.", - "school": "Creature Enchantment", - "difficulty": "285", - "duration": "300", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3269": { - "id": 3269, - "name": "Under The Lash", - "description": "Decreases the target's armor by 250 points for five minutes.", - "school": "Life Magic", - "difficulty": "285", - "duration": "300", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "3270": { - "id": 3270, - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3271": { - "id": 3271, - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3272": { - "id": 3272, - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3273": { - "id": 3273, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3274": { - "id": 3274, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3275": { - "id": 3275, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3276": { - "id": 3276, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3277": { - "id": 3277, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3278": { - "id": 3278, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3279": { - "id": 3279, - "name": "Entrance to Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3280": { - "id": 3280, - "name": "Return to the Corridor", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3281": { - "id": 3281, - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3282": { - "id": 3282, - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3283": { - "id": 3283, - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3284": { - "id": 3284, - "name": "Consort Hezhit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3285": { - "id": 3285, - "name": "Attendant Jrvik", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3286": { - "id": 3286, - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3287": { - "id": 3287, - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3288": { - "id": 3288, - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3289": { - "id": 3289, - "name": "Patriarch Zixki", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3290": { - "id": 3290, - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3291": { - "id": 3291, - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3292": { - "id": 3292, - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3293": { - "id": 3293, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3294": { - "id": 3294, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3295": { - "id": 3295, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3296": { - "id": 3296, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3297": { - "id": 3297, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3298": { - "id": 3298, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3299": { - "id": 3299, - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3300": { - "id": 3300, - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3301": { - "id": 3301, - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3302": { - "id": 3302, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3303": { - "id": 3303, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3304": { - "id": 3304, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3305": { - "id": 3305, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3306": { - "id": 3306, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3307": { - "id": 3307, - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3308": { - "id": 3308, - "name": "Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 62%.", - "school": "Life Magic", - "difficulty": "295", - "duration": "3600", - "mana": "60", - "family": "103", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "3309": { - "id": 3309, - "name": "Inferior Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 52%.", - "school": "Life Magic", - "difficulty": "245", - "duration": "3600", - "mana": "40", - "family": "103", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3310": { - "id": 3310, - "name": "Inferior Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 52%.", - "school": "Life Magic", - "difficulty": "245", - "duration": "3600", - "mana": "40", - "family": "111", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3311": { - "id": 3311, - "name": "Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 62%.", - "school": "Life Magic", - "difficulty": "295", - "duration": "3600", - "mana": "60", - "family": "111", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "3312": { - "id": 3312, - "name": "Lesser Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 45%.", - "school": "Life Magic", - "difficulty": "195", - "duration": "3600", - "mana": "50", - "family": "103", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "3313": { - "id": 3313, - "name": "Lesser Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 45%.", - "school": "Life Magic", - "difficulty": "195", - "duration": "3600", - "mana": "50", - "family": "111", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "3314": { - "id": 3314, - "name": "Chained to the Wall", - "description": "Decreases the target's Jump skill by 50% for five minutes.", - "school": "Creature Enchantment", - "difficulty": "285", - "duration": "300", - "mana": "70", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "3315": { - "id": 3315, - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3316": { - "id": 3316, - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3317": { - "id": 3317, - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3318": { - "id": 3318, - "name": "Hizk Ri's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3319": { - "id": 3319, - "name": "Portal to Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3320": { - "id": 3320, - "name": "Lesser Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3321": { - "id": 3321, - "name": "Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "101", - "speed": "0.2", - "target_effect": "49", - "target_mask": "16" - }, - "3322": { - "id": 3322, - "name": "Greater Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "101", - "speed": "0.3", - "target_effect": "49", - "target_mask": "16" - }, - "3323": { - "id": 3323, - "name": "Superior Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3324": { - "id": 3324, - "name": "Lesser Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3325": { - "id": 3325, - "name": "Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "113", - "speed": "0.2", - "target_effect": "47", - "target_mask": "16" - }, - "3326": { - "id": 3326, - "name": "Greater Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "113", - "speed": "0.3", - "target_effect": "47", - "target_mask": "16" - }, - "3327": { - "id": 3327, - "name": "Superior Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3328": { - "id": 3328, - "name": "Lesser Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3329": { - "id": 3329, - "name": "Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "103", - "speed": "0.2", - "target_effect": "55", - "target_mask": "16" - }, - "3330": { - "id": 3330, - "name": "Greater Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "103", - "speed": "0.3", - "target_effect": "55", - "target_mask": "16" - }, - "3331": { - "id": 3331, - "name": "Superior Flange Ward", - "description": "Reduces damage all fellowship members from Bludgeoning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3332": { - "id": 3332, - "name": "Lesser Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "3333": { - "id": 3333, - "name": "Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "105", - "speed": "0.2", - "target_effect": "51", - "target_mask": "16" - }, - "3334": { - "id": 3334, - "name": "Greater Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "105", - "speed": "0.3", - "target_effect": "51", - "target_mask": "16" - }, - "3335": { - "id": 3335, - "name": "Superior Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "3336": { - "id": 3336, - "name": "Lesser Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "109", - "speed": "0.2", - "target_effect": "43", - "target_mask": "16" - }, - "3337": { - "id": 3337, - "name": "Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "109", - "speed": "0.2", - "target_effect": "43", - "target_mask": "16" - }, - "3338": { - "id": 3338, - "name": "Greater Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "109", - "speed": "0.3", - "target_effect": "43", - "target_mask": "16" - }, - "3339": { - "id": 3339, - "name": "Superior Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "3340": { - "id": 3340, - "name": "Lesser Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "3341": { - "id": 3341, - "name": "Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "107", - "speed": "0.2", - "target_effect": "53", - "target_mask": "16" - }, - "3342": { - "id": 3342, - "name": "Greater Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "107", - "speed": "0.3", - "target_effect": "53", - "target_mask": "16" - }, - "3343": { - "id": 3343, - "name": "Superior Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "3344": { - "id": 3344, - "name": "Lesser Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 43%.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "3345": { - "id": 3345, - "name": "Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 50%.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "111", - "speed": "0.2", - "target_effect": "45", - "target_mask": "16" - }, - "3346": { - "id": 3346, - "name": "Greater Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 60%.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "111", - "speed": "0.3", - "target_effect": "45", - "target_mask": "16" - }, - "3347": { - "id": 3347, - "name": "Superior Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 65%.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "3348": { - "id": 3348, - "name": "Lesser Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "39", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3349": { - "id": 3349, - "name": "Inferior Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "39", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3350": { - "id": 3350, - "name": "Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "39", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3351": { - "id": 3351, - "name": "Potent Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "39", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3352": { - "id": 3352, - "name": "Lesser Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "37", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3353": { - "id": 3353, - "name": "Inferior Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "37", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3354": { - "id": 3354, - "name": "Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "37", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3355": { - "id": 3355, - "name": "Potent Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "37", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3356": { - "id": 3356, - "name": "Lesser Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "41", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3357": { - "id": 3357, - "name": "Inferior Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "41", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3358": { - "id": 3358, - "name": "Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "41", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3359": { - "id": 3359, - "name": "Potent Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "41", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3360": { - "id": 3360, - "name": "Entrance to the Burun Shrine", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3361": { - "id": 3361, - "name": "The Art of Destruction", - "description": "Increases the target's War Magic skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3362": { - "id": 3362, - "name": "Blessing of the Horn", - "description": "Increases the target's Magic Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3363": { - "id": 3363, - "name": "Blessing of the Scale", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3364": { - "id": 3364, - "name": "Blessing of the Wing", - "description": "Increases the target's Missile Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "10", - "family": "297", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3365": { - "id": 3365, - "name": "Gift of Enhancement", - "description": "Increases the target's Creature Enchantement by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3366": { - "id": 3366, - "name": "The Heart's Touch", - "description": "Increases the target's Life Magic skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3367": { - "id": 3367, - "name": "Leaping Legs", - "description": "Increases the target's Jump skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "69", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "3368": { - "id": 3368, - "name": "Mage's Understanding", - "description": "Increases the target's Mana Conversion skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3369": { - "id": 3369, - "name": "On the Run", - "description": "Increases the target's Run skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "77", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "3370": { - "id": 3370, - "name": "Power of Enchantment", - "description": "Increases the target's Item Enchantment skill by 11%.", - "school": "Creature Enchantment", - "difficulty": "351", - "duration": "780", - "mana": "10", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3371": { - "id": 3371, - "name": "Greater Life Giver", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "3372": { - "id": 3372, - "name": "Debilitating Spore", - "description": "Drains 5000 points of the target's stamina.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.3", - "target_effect": "36", - "target_mask": "16" - }, - "3373": { - "id": 3373, - "name": "Diseased Air", - "description": "Drains 5000 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "3374": { - "id": 3374, - "name": "Kivik Lir's Scorn", - "description": "Drains the target of 99% of their current health.", - "school": "Life Magic", - "difficulty": "600", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.015", - "target_effect": "32", - "target_mask": "16" - }, - "3375": { - "id": 3375, - "name": "Fungal Bloom", - "description": "Lowers the total health of the target by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3376": { - "id": 3376, - "name": "Lesser Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "3600", - "mana": "10", - "family": "433", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3377": { - "id": 3377, - "name": "Minor Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "3600", - "mana": "10", - "family": "433", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3378": { - "id": 3378, - "name": "Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "3600", - "mana": "10", - "family": "433", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3379": { - "id": 3379, - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "-1", - "mana": "3", - "family": "204", - "speed": "0.6", - "target_effect": "0", - "target_mask": "16" - }, - "3380": { - "id": 3380, - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "-1", - "mana": "3", - "family": "204", - "speed": "0.6", - "target_effect": "0", - "target_mask": "16" - }, - "3381": { - "id": 3381, - "name": "Debilitating Spore", - "description": "Drains 5000 points of stamina from each member of a fellowship.", - "school": "Life Magic", - "difficulty": "375", - "duration": "-1", - "mana": "60", - "family": "82", - "speed": "0.3", - "target_effect": "36", - "target_mask": "16" - }, - "3382": { - "id": 3382, - "name": "Diseased Air", - "description": "Drains 5000 points of mana from each member of a fellowship.", - "school": "Life Magic", - "difficulty": "375", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "3383": { - "id": 3383, - "name": "Fungal Bloom", - "description": "Lowers total health of each fellowship member by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "3384": { - "id": 3384, - "name": "Lesser Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3385": { - "id": 3385, - "name": "Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3386": { - "id": 3386, - "name": "Greater Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3387": { - "id": 3387, - "name": "Superior Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3388": { - "id": 3388, - "name": "Lesser Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3389": { - "id": 3389, - "name": "Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3390": { - "id": 3390, - "name": "Greater Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3391": { - "id": 3391, - "name": "Superior Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3392": { - "id": 3392, - "name": "Lesser Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3393": { - "id": 3393, - "name": "Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3394": { - "id": 3394, - "name": "Greater Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3395": { - "id": 3395, - "name": "Superior Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3396": { - "id": 3396, - "name": "Lesser Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3397": { - "id": 3397, - "name": "Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3398": { - "id": 3398, - "name": "Greater Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3399": { - "id": 3399, - "name": "Superior Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3400": { - "id": 3400, - "name": "Lesser Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3401": { - "id": 3401, - "name": "Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3402": { - "id": 3402, - "name": "Greater Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "2700", - "mana": "60", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3403": { - "id": 3403, - "name": "Superior Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "3600", - "mana": "70", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3404": { - "id": 3404, - "name": "Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "280", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "3405": { - "id": 3405, - "name": "Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "3600", - "mana": "10", - "family": "432", - "speed": "0.01", - "target_effect": "33", - "target_mask": "16" - }, - "3406": { - "id": 3406, - "name": "Kivik Lir's Boon", - "description": "Kivik Lir has granted a boon upon you. student. You have 15 minutes to complete the remaining two trials. Do not fail.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "900", - "mana": "10", - "family": "196", - "speed": "0.25", - "target_effect": "14", - "target_mask": "16" - }, - "3407": { - "id": 3407, - "name": "Lesser Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "280", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "3408": { - "id": 3408, - "name": "Lesser Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "3600", - "mana": "10", - "family": "432", - "speed": "0.01", - "target_effect": "33", - "target_mask": "16" - }, - "3409": { - "id": 3409, - "name": "Minor Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "280", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "3410": { - "id": 3410, - "name": "Minor Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "3600", - "mana": "10", - "family": "432", - "speed": "0.01", - "target_effect": "33", - "target_mask": "16" - }, - "3411": { - "id": 3411, - "name": "Portal spell to a Hidden Chamber", - "description": "Transports the player to Elysa's treasure chamber.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3412": { - "id": 3412, - "name": "Halls of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3413": { - "id": 3413, - "name": "Lesser Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3414": { - "id": 3414, - "name": "Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3415": { - "id": 3415, - "name": "Greater Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3416": { - "id": 3416, - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3417": { - "id": 3417, - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3418": { - "id": 3418, - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3419": { - "id": 3419, - "name": "Crypt of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3420": { - "id": 3420, - "name": "Lesser Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3421": { - "id": 3421, - "name": "Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3422": { - "id": 3422, - "name": "Greater Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3423": { - "id": 3423, - "name": "Trials of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3424": { - "id": 3424, - "name": "Triumph Against the Trials", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3425": { - "id": 3425, - "name": "Lyceum of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3426": { - "id": 3426, - "name": "Greater Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-220 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "550", - "duration": "-1", - "mana": "10", - "family": "222", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3427": { - "id": 3427, - "name": "Lesser Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "10", - "family": "222", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3428": { - "id": 3428, - "name": "Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-210 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "450", - "duration": "-1", - "mana": "10", - "family": "222", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3429": { - "id": 3429, - "name": "Kivik Lir's Venom", - "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. Your natural armor is reduced by 200 points for 1 hour.", - "school": "Life Magic", - "difficulty": "9999", - "duration": "3600", - "mana": "10", - "family": "116", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "3430": { - "id": 3430, - "name": "Inferior Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 52%.", - "school": "Life Magic", - "difficulty": "245", - "duration": "3600", - "mana": "40", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3431": { - "id": 3431, - "name": "Lesser Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 45%.", - "school": "Life Magic", - "difficulty": "195", - "duration": "3600", - "mana": "40", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3432": { - "id": 3432, - "name": "Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 62%.", - "school": "Life Magic", - "difficulty": "295", - "duration": "3600", - "mana": "40", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3433": { - "id": 3433, - "name": "Decay", - "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. You can no longer recover health naturally for 1 hour.", - "school": "Life Magic", - "difficulty": "9999", - "duration": "3600", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3434": { - "id": 3434, - "name": "Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "3600", - "mana": "10", - "family": "434", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3435": { - "id": 3435, - "name": "Greater Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "3436": { - "id": 3436, - "name": "Lesser Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "3600", - "mana": "10", - "family": "434", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3437": { - "id": 3437, - "name": "Lesser Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 10%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "3438": { - "id": 3438, - "name": "Minor Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "3600", - "mana": "10", - "family": "434", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3439": { - "id": 3439, - "name": "Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 20%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "3440": { - "id": 3440, - "name": "Health of the Lugian", - "description": "Increase target's natural healing rate by 125%.", - "school": "Life Magic", - "difficulty": "311", - "duration": "7200", - "mana": "10", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3441": { - "id": 3441, - "name": "Insight of the Lugian", - "description": "Increases the target's natural mana rate by 125%.", - "school": "Life Magic", - "difficulty": "351", - "duration": "7200", - "mana": "10", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "3442": { - "id": 3442, - "name": "Stamina of the Lugian", - "description": "Increases the rate at which the target regains Stamina by 125%.", - "school": "Life Magic", - "difficulty": "351", - "duration": "7200", - "mana": "10", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "3443": { - "id": 3443, - "name": "Blight of the Swamp", - "description": "The vile nature of the swamp swells within your body. you are afflicted with all manner of ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "difficulty": "327", - "duration": "60", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3444": { - "id": 3444, - "name": "Justice of The Sleeping One", - "description": "This spell attempts to rip all positive creature magic from a single target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3445": { - "id": 3445, - "name": "The Sleeping One's Purge", - "description": "This spell attempts to rip all positive creature magic from a single target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "3446": { - "id": 3446, - "name": "Wrath of the Swamp", - "description": "The vile nature of the swamp swells within you and each of your companions. you are all afflicted with ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "difficulty": "327", - "duration": "60", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "3447": { - "id": 3447, - "name": "Asphyxiating Spore Cloud", - "description": "A small cloud of spores surrounds you and your fellowship choking the vigor from your bodies. Causes stamina loss over time.", - "school": "Life Magic", - "difficulty": "326", - "duration": "60", - "mana": "70", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "3448": { - "id": 3448, - "name": "Mass Blood Affliction", - "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes health damage over time.", - "school": "Life Magic", - "difficulty": "326", - "duration": "60", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3449": { - "id": 3449, - "name": "Mass Blood Disease", - "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes a large amount of damage over time.", - "school": "Life Magic", - "difficulty": "325", - "duration": "40", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3450": { - "id": 3450, - "name": "Cloud of Mold Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body. Stamina degenerates over time.", - "school": "Life Magic", - "difficulty": "325", - "duration": "40", - "mana": "70", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "3451": { - "id": 3451, - "name": "Concussive Belch", - "description": "The creature let's out a violent belch that is laden with magical force. It damages a single target for 120-220 of bludgeon Damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "5", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3452": { - "id": 3452, - "name": "Concussive Wail", - "description": "The creature let's out a violent wail that is laden with magical force. It sends a ring of damage around it dealing 80 ?\u00c7\u00f4 200 damage bludgeoning damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "10", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3453": { - "id": 3453, - "name": "Feelun Blight", - "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 -220 of fire damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "10", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3454": { - "id": 3454, - "name": "Wrath of the Feelun", - "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 - 220 of fire damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3455": { - "id": 3455, - "name": "Koruu Cloud", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. The spells deals 80 ?\u00c7\u00f4 200 damage of cold damage with each bolt.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "10", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3456": { - "id": 3456, - "name": "Koruu's Wrath", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. 120 - 220 of cold damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "5", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3457": { - "id": 3457, - "name": "Mana Bolt", - "description": "The creature launch a blast of pure mana at a single target dealing 50 ?\u00c7\u00f4 100 damage.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "5", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3458": { - "id": 3458, - "name": "Mana Purge", - "description": "The creature launch a blast of pure mana in a ring around itself dealing 50 ?\u00c7\u00f4 100 damage with each bolt.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3459": { - "id": 3459, - "name": "Mucor Cloud", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. This speall deals 80 ?\u00c7\u00f4 200 damage acid damage with each bolt.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "10", - "family": "131", - "speed": "0.4", - "target_effect": "0", - "target_mask": "0" - }, - "3460": { - "id": 3460, - "name": "Dissolving Vortex", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to a target. Deals 120 - 220 acid damage to a single target.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "5", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3461": { - "id": 3461, - "name": "Batter Flesh", - "description": "Target's flesh is left open and vulnerable to bludgeoning attacks. Increases damage the target takes from Bludgeoning by 200%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "3462": { - "id": 3462, - "name": "Canker Flesh", - "description": "Target's flesh is left open and vulnerable to acid attacks. Increases damage the target takes from acid by 200%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "3463": { - "id": 3463, - "name": "Char Flesh", - "description": "Target's flesh is left open and vulnerable to fire attacks. Increases damage the target takes from fire by 200%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "3464": { - "id": 3464, - "name": "Numb Flesh", - "description": "Target's flesh is left open and vulnerable to cold attacks. Increases damage the target takes from Cold by 200%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "3465": { - "id": 3465, - "name": "Blood Affliction", - "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.", - "school": "Life Magic", - "difficulty": "326", - "duration": "600", - "mana": "10", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3466": { - "id": 3466, - "name": "Blood Disease", - "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.", - "school": "Life Magic", - "difficulty": "325", - "duration": "40", - "mana": "10", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3467": { - "id": 3467, - "name": "Choking Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body.", - "school": "Life Magic", - "difficulty": "326", - "duration": "600", - "mana": "10", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "3468": { - "id": 3468, - "name": "Mold Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body.", - "school": "Life Magic", - "difficulty": "326", - "duration": "40", - "mana": "10", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "3469": { - "id": 3469, - "name": "Parasitic Affliction", - "description": "A host of parasites burrow into your flesh and begin to devour you from within your own blood. The healthier you are. the more potent these parasites become.", - "school": "Life Magic", - "difficulty": "326", - "duration": "300", - "mana": "10", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3470": { - "id": 3470, - "name": "Lesser Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 55% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "3471": { - "id": 3471, - "name": "The Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 70% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "97", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "3472": { - "id": 3472, - "name": "Greater Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 85% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "97", - "speed": "0.3", - "target_effect": "39", - "target_mask": "16" - }, - "3473": { - "id": 3473, - "name": "Superior Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "3474": { - "id": 3474, - "name": "Lesser Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 55% increase to their natural health recovery rate.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3475": { - "id": 3475, - "name": "The Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 70% increase to their natural health recovery rate.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "93", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "3476": { - "id": 3476, - "name": "Greater Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 85% increase to their natural health recovery rate.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "93", - "speed": "0.3", - "target_effect": "37", - "target_mask": "16" - }, - "3477": { - "id": 3477, - "name": "Superior Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3478": { - "id": 3478, - "name": "Lesser Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 55% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "3479": { - "id": 3479, - "name": "The Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 70% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "95", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "3480": { - "id": 3480, - "name": "Greater Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 85% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "95", - "speed": "0.3", - "target_effect": "41", - "target_mask": "16" - }, - "3481": { - "id": 3481, - "name": "Superior Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "3482": { - "id": 3482, - "name": "Izji Qo's Antechamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3483": { - "id": 3483, - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3484": { - "id": 3484, - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3485": { - "id": 3485, - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3486": { - "id": 3486, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3487": { - "id": 3487, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3488": { - "id": 3488, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3489": { - "id": 3489, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3490": { - "id": 3490, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3491": { - "id": 3491, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3492": { - "id": 3492, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3493": { - "id": 3493, - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3494": { - "id": 3494, - "name": "Izji Qo's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3495": { - "id": 3495, - "name": "Izji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3496": { - "id": 3496, - "name": "Inzji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3497": { - "id": 3497, - "name": "Izji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3498": { - "id": 3498, - "name": "Disintegrated", - "description": "Transports the target to the last Lifestone he or she used.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "215", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3499": { - "id": 3499, - "name": "Arcanum Salvaging Self I", - "description": "Increases the caster's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "435", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3500": { - "id": 3500, - "name": "Arcanum Salvaging Self II", - "description": "Increases the caster's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "435", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "3501": { - "id": 3501, - "name": "Arcanum Salvaging Self III", - "description": "Increases the caster's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "435", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "3502": { - "id": 3502, - "name": "Arcanum Salvaging Self IV", - "description": "Increases the caster's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3503": { - "id": 3503, - "name": "Arcanum Salvaging Self V", - "description": "Increases the caster's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "435", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "3504": { - "id": 3504, - "name": "Arcanum Salvaging Self VI", - "description": "Increases the caster's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "435", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "3505": { - "id": 3505, - "name": "Arcanum Salvaging VII", - "description": "Increases the caster's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3506": { - "id": 3506, - "name": "Arcanum Enlightenment I", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "435", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3507": { - "id": 3507, - "name": "Arcanum Enlightenment II", - "description": "Increases the target's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "435", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "3508": { - "id": 3508, - "name": "Arcanum Enlightenment III", - "description": "Increases the target's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "435", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "3509": { - "id": 3509, - "name": "Arcanum Enlightenment IV", - "description": "Increases the target's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3510": { - "id": 3510, - "name": "Arcanum Enlightenment V", - "description": "Increases the target's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "435", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "3511": { - "id": 3511, - "name": "Arcanum Enlightenment VI", - "description": "Increases the target's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "435", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "3512": { - "id": 3512, - "name": "Arcanum Enlightenment VII", - "description": "Increases the target's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3513": { - "id": 3513, - "name": "Nuhmudira's Wisdom I", - "description": "Increases the caster's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "435", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3514": { - "id": 3514, - "name": "Nuhmudira's Wisdom II", - "description": "Increases the caster's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "435", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "3515": { - "id": 3515, - "name": "Nuhmudira's Wisdom III", - "description": "Increases the caster's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "435", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "3516": { - "id": 3516, - "name": "Nuhmudira's Wisdom IV", - "description": "Increases the caster's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3517": { - "id": 3517, - "name": "Nuhmudira's Wisdom V", - "description": "Increases the caster's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "435", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "3518": { - "id": 3518, - "name": "Nuhmudira's Wisdom VI", - "description": "Increases the caster's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "435", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "3519": { - "id": 3519, - "name": "Nuhmudira's Wisdom VII", - "description": "Increases the caster's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3520": { - "id": 3520, - "name": "Nuhmudira's Enlightenment I", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "435", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3521": { - "id": 3521, - "name": "Nuhmudira's Enlightenment II", - "description": "Increases the target's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "435", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "3522": { - "id": 3522, - "name": "Nuhmudira's Enlightenment III", - "description": "Increases the target's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "435", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "3523": { - "id": 3523, - "name": "Nuhmudira's Enlightenment IV", - "description": "Increases the target's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3524": { - "id": 3524, - "name": "Nuhmudira's Enlightenment V", - "description": "Increases the target's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "435", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "3525": { - "id": 3525, - "name": "Nuhmudira Enlightenment VI", - "description": "Increases the target's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "435", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "3526": { - "id": 3526, - "name": "Nuhmudira's Enlightenment", - "description": "Increases the target's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3527": { - "id": 3527, - "name": "Intoxication I", - "description": "Decreases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "130", - "duration": "300", - "mana": "50", - "family": "8", - "speed": "0.2", - "target_effect": "9", - "target_mask": "16" - }, - "3528": { - "id": 3528, - "name": "Intoxication II", - "description": "Decreases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "difficulty": "230", - "duration": "300", - "mana": "50", - "family": "8", - "speed": "0.2", - "target_effect": "9", - "target_mask": "16" - }, - "3529": { - "id": 3529, - "name": "Intoxication III", - "description": "Decreases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "difficulty": "330", - "duration": "300", - "mana": "50", - "family": "8", - "speed": "0.2", - "target_effect": "9", - "target_mask": "16" - }, - "3530": { - "id": 3530, - "name": "Ketnan's Eye", - "description": "Increases the target's Focus by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "50", - "family": "9", - "speed": "0.2", - "target_effect": "16", - "target_mask": "16" - }, - "3531": { - "id": 3531, - "name": "Bobo's Quickening", - "description": "Increases the caster's Quickness by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "70", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "3532": { - "id": 3532, - "name": "Bobo's Focused Blessing", - "description": "Increases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "difficulty": "140", - "duration": "300", - "mana": "50", - "family": "9", - "speed": "0.2", - "target_effect": "16", - "target_mask": "16" - }, - "3533": { - "id": 3533, - "name": "Brighteyes' Favor", - "description": "Increases the caster's Coordination by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "60", - "family": "7", - "speed": "0.2", - "target_effect": "8", - "target_mask": "16" - }, - "3534": { - "id": 3534, - "name": "Free Ride to the K'nath Lair", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3535": { - "id": 3535, - "name": "Free Ride to Sanamar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3536": { - "id": 3536, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3537": { - "id": 3537, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3538": { - "id": 3538, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3539": { - "id": 3539, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3540": { - "id": 3540, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3541": { - "id": 3541, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3542": { - "id": 3542, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3543": { - "id": 3543, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3544": { - "id": 3544, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3545": { - "id": 3545, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3546": { - "id": 3546, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3547": { - "id": 3547, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3548": { - "id": 3548, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3549": { - "id": 3549, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3550": { - "id": 3550, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3551": { - "id": 3551, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3552": { - "id": 3552, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3553": { - "id": 3553, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3554": { - "id": 3554, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3555": { - "id": 3555, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3556": { - "id": 3556, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3557": { - "id": 3557, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3558": { - "id": 3558, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3559": { - "id": 3559, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3560": { - "id": 3560, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3561": { - "id": 3561, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3562": { - "id": 3562, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3563": { - "id": 3563, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3564": { - "id": 3564, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3565": { - "id": 3565, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3566": { - "id": 3566, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3567": { - "id": 3567, - "name": "Fiun Flee", - "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "515", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3568": { - "id": 3568, - "name": "Fiun Efficiency", - "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "516", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3569": { - "id": 3569, - "name": "Mana Boost", - "description": "Raises mana by 10% for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "1800", - "mana": "10", - "family": "412", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3570": { - "id": 3570, - "name": "Stamina Boost", - "description": "Raises Stamina by 10% for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "1800", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3571": { - "id": 3571, - "name": "Health Boost", - "description": "Raises health by 10% for 30 minutes.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "1800", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3572": { - "id": 3572, - "name": "Inner Brilliance", - "description": "Raises target's Focus by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3573": { - "id": 3573, - "name": "Inner Might", - "description": "Raises target's Strength by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3574": { - "id": 3574, - "name": "Inner Will", - "description": "Raises target's Self by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3575": { - "id": 3575, - "name": "Perfect Balance", - "description": "Raises target's Coordination by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3576": { - "id": 3576, - "name": "Perfect Health", - "description": "Raises target's Endurance by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3577": { - "id": 3577, - "name": "Perfect Speed", - "description": "Raises target's Quickness by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3578": { - "id": 3578, - "name": "Depths of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3579": { - "id": 3579, - "name": "Underpassage of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3580": { - "id": 3580, - "name": "Center of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3581": { - "id": 3581, - "name": "Secrets of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3582": { - "id": 3582, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3583": { - "id": 3583, - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3584": { - "id": 3584, - "name": "Qin Xikit's Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3585": { - "id": 3585, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3586": { - "id": 3586, - "name": "Qin Xikit's Antechamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3587": { - "id": 3587, - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3588": { - "id": 3588, - "name": "Secrets of Qin Xikit's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3589": { - "id": 3589, - "name": "Qin Xikit's Tomb", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3590": { - "id": 3590, - "name": "Regurgitated!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3591": { - "id": 3591, - "name": "Access to Xi Ru's Font", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3592": { - "id": 3592, - "name": "Qin Xikit's Island", - "description": "Summons a portal to Qin Xikit's Island.", - "school": "Item Enchantment", - "difficulty": "351", - "duration": "900", - "mana": "110", - "family": "203", - "speed": "1", - "target_effect": "0", - "target_mask": "65536" - }, - "3593": { - "id": 3593, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3594": { - "id": 3594, - "name": "Underpassage of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3595": { - "id": 3595, - "name": "Underpassage of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3596": { - "id": 3596, - "name": "Center of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3597": { - "id": 3597, - "name": "Secrets of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3598": { - "id": 3598, - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3599": { - "id": 3599, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3600": { - "id": 3600, - "name": "Depths of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3601": { - "id": 3601, - "name": "Underpassage of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3602": { - "id": 3602, - "name": "Center of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3603": { - "id": 3603, - "name": "Secrets of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3604": { - "id": 3604, - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3605": { - "id": 3605, - "name": "Portal to Cragstone", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3606": { - "id": 3606, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3607": { - "id": 3607, - "name": "Depth's of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3608": { - "id": 3608, - "name": "Underpassage of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3609": { - "id": 3609, - "name": "Center of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3610": { - "id": 3610, - "name": "Secrets of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3611": { - "id": 3611, - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3612": { - "id": 3612, - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3613": { - "id": 3613, - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3614": { - "id": 3614, - "name": "Underpassage of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3615": { - "id": 3615, - "name": "Center of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3616": { - "id": 3616, - "name": "Secrets of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3617": { - "id": 3617, - "name": "Depths of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3618": { - "id": 3618, - "name": "Portal to Western Aphus Lassel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3619": { - "id": 3619, - "name": "Portal to the Black Death Catacombs", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3620": { - "id": 3620, - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3621": { - "id": 3621, - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3622": { - "id": 3622, - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3623": { - "id": 3623, - "name": "Portal to Center of the Obsidian Plains", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3624": { - "id": 3624, - "name": "Portal to Hills Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3625": { - "id": 3625, - "name": "Portal to the Kara Wetlands", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3626": { - "id": 3626, - "name": "Portal to the Marescent Plateau Base", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3627": { - "id": 3627, - "name": "Portal to Neydisa Castle", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3628": { - "id": 3628, - "name": "Portal to the Northern Landbridge", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3629": { - "id": 3629, - "name": "Portal to the Olthoi Horde Nest", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3630": { - "id": 3630, - "name": "Portal to the Olthoi North", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3631": { - "id": 3631, - "name": "Portal to the Renegade Fortress", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3632": { - "id": 3632, - "name": "Portal to Ridge Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3633": { - "id": 3633, - "name": "Portal to the Southern Landbridge", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3634": { - "id": 3634, - "name": "Portal To Valley of Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3635": { - "id": 3635, - "name": "Portal to Wilderness Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3636": { - "id": 3636, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3637": { - "id": 3637, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3638": { - "id": 3638, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3639": { - "id": 3639, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3640": { - "id": 3640, - "name": "Enchanter's Boon", - "description": "Increases the target's Creature Enchantment skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "430", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3641": { - "id": 3641, - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "426", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3642": { - "id": 3642, - "name": "Fencer's Boon", - "description": "Increases the target's Finesse Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "442", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3643": { - "id": 3643, - "name": "Life Giver's Boon", - "description": "Increases the target's Life Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "429", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3644": { - "id": 3644, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3645": { - "id": 3645, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3646": { - "id": 3646, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3647": { - "id": 3647, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3648": { - "id": 3648, - "name": "Soldier's Boon", - "description": "Increases the target's Heavy Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "447", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3649": { - "id": 3649, - "name": "Aerfalle's Embrace", - "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "421", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "3650": { - "id": 3650, - "name": "Aerfalle's Enforcement", - "description": "Lowers all fellowship members skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "424", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "3651": { - "id": 3651, - "name": "Aerfalle's Gaze", - "description": "Lowers target's skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "70", - "family": "424", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "3652": { - "id": 3652, - "name": "Aerfalle's Touch", - "description": "Decreases all of the target's attributes by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "120", - "mana": "300", - "family": "421", - "speed": "0.35", - "target_effect": "38", - "target_mask": "16" - }, - "3653": { - "id": 3653, - "name": "Acid Blast III", - "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "131", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3654": { - "id": 3654, - "name": "Acid Volley I", - "description": "Shoots three streams of acid toward the target. Each stream does 4-10 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3655": { - "id": 3655, - "name": "Acid Volley II", - "description": "Shoots three streams of acid toward the target. Each stream does 8-16 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "207", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3656": { - "id": 3656, - "name": "Blade Blast III", - "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3657": { - "id": 3657, - "name": "Blade Blast IV", - "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "137", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3658": { - "id": 3658, - "name": "Blade Volley I", - "description": "Shoots three whirling blades toward the target. Each blade does 4-10 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "213", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3659": { - "id": 3659, - "name": "Blade Volley II", - "description": "Shoots three whirling blades toward the target. Each blade does 8-16 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "10", - "family": "213", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3660": { - "id": 3660, - "name": "Bludgeoning Volley I", - "description": "Shoots three shock waves toward the target. Each wave does 4-10 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "208", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3661": { - "id": 3661, - "name": "Bludgeoning Volley II", - "description": "Shoots three shock waves toward the target. Each wave does 8-16 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "208", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3662": { - "id": 3662, - "name": "Flame Blast I", - "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "75", - "duration": "-1", - "mana": "40", - "family": "135", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3663": { - "id": 3663, - "name": "Flame Volley III", - "description": "Shoots three bolts of flame toward the target. Each bolt does 4-10 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "211", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3664": { - "id": 3664, - "name": "Flame Volley IV", - "description": "Shoots three bolts of flame toward the target. Each bolt does 8-16 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "211", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3665": { - "id": 3665, - "name": "Force Blast III", - "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3666": { - "id": 3666, - "name": "Force Blast IV", - "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "136", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "3667": { - "id": 3667, - "name": "Force Volley III", - "description": "Shoots three bolts of force toward the target. Each bolt does 4-10 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "212", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3668": { - "id": 3668, - "name": "Force Volley IV", - "description": "Shoots three bolts of force toward the target. Each bolt does 8-16 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "212", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3669": { - "id": 3669, - "name": "Frost Blast III", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "133", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3670": { - "id": 3670, - "name": "Frost Blast IV", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "133", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3671": { - "id": 3671, - "name": "Frost Volley III", - "description": "Shoots three bolts of frost toward the target. Each bolt does 4-10 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "209", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3672": { - "id": 3672, - "name": "Frost Volley IV", - "description": "Shoots three bolts of frost toward the target. Each bolt does 8-16 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "209", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3673": { - "id": 3673, - "name": "Lightning Blast III", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3674": { - "id": 3674, - "name": "Lightning Blast IV", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "134", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3675": { - "id": 3675, - "name": "Lightning Volley III", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 4-10 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "210", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3676": { - "id": 3676, - "name": "Lightning Volley IV", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 8-16 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "210", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3677": { - "id": 3677, - "name": "Shock Blast III", - "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "132", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3678": { - "id": 3678, - "name": "Shock Blast IV", - "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "132", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "3679": { - "id": 3679, - "name": "Prodigal Acid Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "449", - "speed": "0.15", - "target_effect": "63", - "target_mask": "6" - }, - "3680": { - "id": 3680, - "name": "Prodigal Acid Protection", - "description": "Reduces damage the caster takes from acid by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "448", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "3681": { - "id": 3681, - "name": "Prodigal Alchemy Mastery", - "description": "Increases the caster's Alchemy skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "450", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3682": { - "id": 3682, - "name": "Prodigal Arcane Enlightenment", - "description": "Increases the caster's Arcane Lore skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "456", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3683": { - "id": 3683, - "name": "Prodigal Armor Expertise", - "description": "Increases the caster's Armor Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "452", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3684": { - "id": 3684, - "name": "Prodigal Armor", - "description": "Increases the caster's natural armor by 1000 points.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "457", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3685": { - "id": 3685, - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3686": { - "id": 3686, - "name": "Prodigal Blade Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "503", - "speed": "0.15", - "target_effect": "61", - "target_mask": "6" - }, - "3687": { - "id": 3687, - "name": "Prodigal Blade Protection", - "description": "Reduces damage the caster takes from Slashing by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "502", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "3688": { - "id": 3688, - "name": "Prodigal Blood Drinker", - "description": "Increases a weapon's damage value by 50 points.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "473", - "speed": "0.15", - "target_effect": "57", - "target_mask": "257" - }, - "3689": { - "id": 3689, - "name": "Prodigal Bludgeon Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "464", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "3690": { - "id": 3690, - "name": "Prodigal Bludgeon Protection", - "description": "Reduces damage the caster takes from Bludgeoning by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "463", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3691": { - "id": 3691, - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3692": { - "id": 3692, - "name": "Prodigal Cold Protection", - "description": "Reduces damage the caster takes from Cold by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "466", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "3693": { - "id": 3693, - "name": "Prodigal Cooking Mastery", - "description": "Increases the caster's Cooking skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "468", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3694": { - "id": 3694, - "name": "Prodigal Coordination", - "description": "Increases the caster's Coordination by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "469", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "3695": { - "id": 3695, - "name": "Prodigal Creature Enchantment Mastery", - "description": "Increases the caster's Creature Enchantment skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "470", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3696": { - "id": 3696, - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3697": { - "id": 3697, - "name": "Prodigal Finesse Weapon Mastery", - "description": "Increases the caster's Finesse Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "472", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3698": { - "id": 3698, - "name": "Prodigal Deception Mastery", - "description": "Increases the caster's Deception skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "474", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3699": { - "id": 3699, - "name": "Prodigal Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 25%.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "475", - "speed": "0.15", - "target_effect": "61", - "target_mask": "33025" - }, - "3700": { - "id": 3700, - "name": "Prodigal Endurance", - "description": "Increases the caster's Endurance by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "478", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "3701": { - "id": 3701, - "name": "Prodigal Fealty", - "description": "Increases the caster's Loyalty skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "490", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3702": { - "id": 3702, - "name": "Prodigal Fire Protection", - "description": "Reduces damage the caster takes from Fire by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "479", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "3703": { - "id": 3703, - "name": "Prodigal Flame Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "480", - "speed": "0.15", - "target_effect": "57", - "target_mask": "6" - }, - "3704": { - "id": 3704, - "name": "Prodigal Fletching Mastery", - "description": "Increases the caster's Fletching skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "481", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3705": { - "id": 3705, - "name": "Prodigal Focus", - "description": "Increases the caster's Focus by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "482", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "3706": { - "id": 3706, - "name": "Prodigal Frost Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "467", - "speed": "0.15", - "target_effect": "65", - "target_mask": "6" - }, - "3707": { - "id": 3707, - "name": "Prodigal Healing Mastery", - "description": "Increases the caster's Healing skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "483", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3708": { - "id": 3708, - "name": "Prodigal Heart Seeker", - "description": "Increases a weapon's Attack Skill modifier by 25%.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "461", - "speed": "0.15", - "target_effect": "59", - "target_mask": "257" - }, - "3709": { - "id": 3709, - "name": "Prodigal Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 100%.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "451", - "speed": "0.15", - "target_effect": "67", - "target_mask": "32768" - }, - "3710": { - "id": 3710, - "name": "Prodigal Impenetrability", - "description": "Improves a shield or piece of armor's armor value by 1000 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "458", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "3711": { - "id": 3711, - "name": "Prodigal Impregnability", - "description": "Increases the caster's Missile Defense skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "496", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "3712": { - "id": 3712, - "name": "Prodigal Invulnerability", - "description": "Increases the caster's Melee Defense skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "495", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "3713": { - "id": 3713, - "name": "Prodigal Item Enchantment Mastery", - "description": "Increases the caster's Item Enchantment skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "485", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3714": { - "id": 3714, - "name": "Prodigal Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "453", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3715": { - "id": 3715, - "name": "Prodigal Jumping Mastery", - "description": "Increases the caster's Jump skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "486", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "3716": { - "id": 3716, - "name": "Prodigal Leadership Mastery", - "description": "Increases the caster's Leadership skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "487", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3717": { - "id": 3717, - "name": "Prodigal Life Magic Mastery", - "description": "Increases the caster's Life Magic skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "488", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3718": { - "id": 3718, - "name": "Prodigal Lightning Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "477", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "3719": { - "id": 3719, - "name": "Prodigal Lightning Protection", - "description": "Reduces damage the caster takes from Lightning by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "476", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "3720": { - "id": 3720, - "name": "Prodigal Lockpick Mastery", - "description": "Increases the caster's Lockpick skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "489", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3721": { - "id": 3721, - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3722": { - "id": 3722, - "name": "Prodigal Magic Item Expertise", - "description": "Increases the caster's Magic Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "454", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3723": { - "id": 3723, - "name": "Prodigal Magic Resistance", - "description": "Increases the caster's Magic Defense skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "492", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "3724": { - "id": 3724, - "name": "Prodigal Mana Conversion Mastery", - "description": "Increases the caster's Mana Conversion skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "494", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3725": { - "id": 3725, - "name": "Prodigal Mana Renewal", - "description": "Increases the caster's natural mana rate by 1000%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "493", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "3726": { - "id": 3726, - "name": "Prodigal Monster Attunement", - "description": "Increases the caster's Assess Monster skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "459", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3727": { - "id": 3727, - "name": "Prodigal Person Attunement", - "description": "Increases the caster's Assess Person skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "460", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3728": { - "id": 3728, - "name": "Prodigal Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "498", - "speed": "0.15", - "target_effect": "59", - "target_mask": "6" - }, - "3729": { - "id": 3729, - "name": "Prodigal Piercing Protection", - "description": "Reduces damage the caster takes from Piercing by 99.9%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "497", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "3730": { - "id": 3730, - "name": "Prodigal Quickness", - "description": "Increases the caster's Quickness by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "499", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "3731": { - "id": 3731, - "name": "Prodigal Regeneration", - "description": "Increase caster's natural healing rate by 1000%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "484", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3732": { - "id": 3732, - "name": "Prodigal Rejuvenation", - "description": "Increases the rate at which the caster regains Stamina by 1000%.", - "school": "Life Magic", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "506", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "3733": { - "id": 3733, - "name": "Prodigal Willpower", - "description": "Increases the caster's Self by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "501", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "3734": { - "id": 3734, - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3735": { - "id": 3735, - "name": "Prodigal Spirit Drinker", - "description": "Increases a caster's damage mod by 15%.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "473", - "speed": "0.15", - "target_effect": "57", - "target_mask": "32768" - }, - "3736": { - "id": 3736, - "name": "Prodigal Sprint", - "description": "Increases the caster's Run skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "500", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "3737": { - "id": 3737, - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3738": { - "id": 3738, - "name": "Prodigal Strength", - "description": "Increases the caster's Strength by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "507", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "3739": { - "id": 3739, - "name": "Prodigal Swift Killer", - "description": "Improves a weapon's speed by 1000 points.", - "school": "Item Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "512", - "speed": "0.15", - "target_effect": "63", - "target_mask": "257" - }, - "3740": { - "id": 3740, - "name": "Prodigal Heavy Weapon Mastery", - "description": "Increases the caster's Heavy Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "508", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3741": { - "id": 3741, - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3742": { - "id": 3742, - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "3743": { - "id": 3743, - "name": "Prodigal War Magic Mastery", - "description": "Increases the caster's War Magic skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "511", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3744": { - "id": 3744, - "name": "Prodigal Weapon Expertise", - "description": "Increases the caster's Weapon Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "455", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "3745": { - "id": 3745, - "name": "Inferior Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 52%.", - "school": "Life Magic", - "difficulty": "245", - "duration": "3600", - "mana": "40", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "3746": { - "id": 3746, - "name": "Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 62%.", - "school": "Life Magic", - "difficulty": "295", - "duration": "3600", - "mana": "40", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "3747": { - "id": 3747, - "name": "Lesser Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 45%.", - "school": "Life Magic", - "difficulty": "195", - "duration": "3600", - "mana": "40", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "3748": { - "id": 3748, - "name": "Master Salvager's Greater Boon", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "360", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3749": { - "id": 3749, - "name": "Master Alchemist's Boon", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "180", - "mana": "50", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3750": { - "id": 3750, - "name": "Master Alchemist's Greater Boon", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "360", - "mana": "50", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3751": { - "id": 3751, - "name": "Master Chef's Boon", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "180", - "mana": "70", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3752": { - "id": 3752, - "name": "Master Chef's Greater Boon", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "360", - "mana": "70", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3753": { - "id": 3753, - "name": "Fletching Master's Boon", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "180", - "mana": "50", - "family": "218", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "3754": { - "id": 3754, - "name": "Fletching Master's Greater Boon", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "360", - "mana": "50", - "family": "218", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "3755": { - "id": 3755, - "name": "Master Lockpicker's Boon", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "180", - "mana": "70", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3756": { - "id": 3756, - "name": "Master Lockpicker's Greater Boon", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "360", - "mana": "70", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "3757": { - "id": 3757, - "name": "Master Salvager's Boon", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "180", - "mana": "70", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "3758": { - "id": 3758, - "name": "Inky Armor", - "description": "Your skin is coated with a fine layer of Niffis ink. Your natural armor is increased by 5 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "1", - "duration": "3600", - "mana": "10", - "family": "513", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "3759": { - "id": 3759, - "name": "Mana Giver", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "3760": { - "id": 3760, - "name": "Culinary Ecstasy", - "description": "All secondary attributes are increased by 10% for the duration of the spell.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "1800", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3761": { - "id": 3761, - "name": "Fiun Resistance", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "514", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3762": { - "id": 3762, - "name": "Defiled Temple Portal Sending", - "description": "Transports the target to the Defiled Temple", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3763": { - "id": 3763, - "name": "Balloon Ride", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3764": { - "id": 3764, - "name": "Summons a portal to the Banderling Shrine", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "60", - "mana": "70", - "family": "203", - "speed": "0.5", - "target_effect": "0", - "target_mask": "65536" - }, - "3765": { - "id": 3765, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3766": { - "id": 3766, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3767": { - "id": 3767, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3768": { - "id": 3768, - "name": "Bitter Punishment", - "description": "Transports the target to far above Ayn Tayan.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3769": { - "id": 3769, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3770": { - "id": 3770, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3771": { - "id": 3771, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3772": { - "id": 3772, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3773": { - "id": 3773, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3774": { - "id": 3774, - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3775": { - "id": 3775, - "name": "Angry Punishment", - "description": "Transports the target to high above the northern mountains", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3776": { - "id": 3776, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3777": { - "id": 3777, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3778": { - "id": 3778, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3779": { - "id": 3779, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3780": { - "id": 3780, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3781": { - "id": 3781, - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3782": { - "id": 3782, - "name": "Cruel Punishment", - "description": "Transports the target to high above a Shadow Spire crater", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3783": { - "id": 3783, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3784": { - "id": 3784, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3785": { - "id": 3785, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3786": { - "id": 3786, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3787": { - "id": 3787, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3788": { - "id": 3788, - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3789": { - "id": 3789, - "name": "Slaughter Punishment", - "description": "Transports the target to high above a Spire crater in the Obsidian Plains", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3790": { - "id": 3790, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3791": { - "id": 3791, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3792": { - "id": 3792, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3793": { - "id": 3793, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3794": { - "id": 3794, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3795": { - "id": 3795, - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3796": { - "id": 3796, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3797": { - "id": 3797, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3798": { - "id": 3798, - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3799": { - "id": 3799, - "name": "Black Marrow Bliss", - "description": "The warm flavor of the Black Marrow Tea soothes your soul.", - "school": "Life Magic", - "difficulty": "275", - "duration": "-1", - "mana": "60", - "family": "84", - "speed": "0.3", - "target_effect": "34", - "target_mask": "16" - }, - "3800": { - "id": 3800, - "name": "Burning Spirit", - "description": "Increases all attributes by 2 for 10 minutes. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3801": { - "id": 3801, - "name": "Shadow Touch", - "description": "Increases the target's Melee Defense skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "518", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3802": { - "id": 3802, - "name": "Shadow Reek", - "description": "Increases the target's War Magic skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "426", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3803": { - "id": 3803, - "name": "Shadow Shot", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3804": { - "id": 3804, - "name": "Shadow Shot", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3805": { - "id": 3805, - "name": "Acid Ring", - "description": "Shoots nine waves of acid outward from the caster. Each wave does 30-60 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3806": { - "id": 3806, - "name": "Flame Ring", - "description": "Shoots nine waves of flame outward from the caster. Each wave does 30-60 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3807": { - "id": 3807, - "name": "Force Ring", - "description": "Shoots nine waves of force outward from the caster. Each wave does 30-60 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3808": { - "id": 3808, - "name": "Lightning Ring", - "description": "Shoots nine waves of lightning outward from the caster. Each wave does 30-60 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3809": { - "id": 3809, - "name": "Minor Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "3600", - "mana": "10", - "family": "437", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3810": { - "id": 3810, - "name": "Asheron?\u00c7\u00d6s Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "86400", - "mana": "1", - "family": "520", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3811": { - "id": 3811, - "name": "Blackmoor?\u00c7\u00d6s Favor", - "description": "Increases Natural Armor by 50 points for 24 hours. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "100", - "duration": "86400", - "mana": "1", - "family": "519", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "3812": { - "id": 3812, - "name": "Tursh's Lair", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3813": { - "id": 3813, - "name": "Free Ride to Shoushi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3814": { - "id": 3814, - "name": "Free Ride to Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3815": { - "id": 3815, - "name": "Free Ride to Holtburg", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3816": { - "id": 3816, - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3817": { - "id": 3817, - "name": "Hunter's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "2400", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "3818": { - "id": 3818, - "name": "Curse of Raven Fury", - "description": "Drains half of the caster?\u00c7\u00d6s health and projects a ring of vicious energy outwards. When struck. the target?\u00c7\u00d6s health is reduced by 200% of the amount drained from the caster.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3819": { - "id": 3819, - "name": "Conscript's Might", - "description": "The might of the Conscripts of the Raven Hand flows through you. bolstering your strength by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3820": { - "id": 3820, - "name": "Conscript's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "2400", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "3821": { - "id": 3821, - "name": "Augur's Will", - "description": "The will of the Augurs of the Raven Hand flows through you. increasing your Self by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3822": { - "id": 3822, - "name": "Augur's Glare", - "description": "You are filled with the intense dedication of the Augurs of the Raven Hand. increasing your Focus by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3823": { - "id": 3823, - "name": "Augur's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "30", - "duration": "2400", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "3824": { - "id": 3824, - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3825": { - "id": 3825, - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "2400", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "3826": { - "id": 3826, - "name": "a powerful force", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3827": { - "id": 3827, - "name": "Lunnum's Embrace", - "description": "Improves a shield or piece of armor's armor value by 500 points.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "3828": { - "id": 3828, - "name": "Rage of Grael", - "description": "Infuses a weapon with the rage of the ancient barbarian gladiator. Grael. Increases a weapon's damage value by 3 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "10800", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "3829": { - "id": 3829, - "name": "Blessing of the Sundew", - "description": "Increases the rate at which the target regains Mana by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "10800", - "mana": "10", - "family": "259", - "speed": "0", - "target_effect": "39", - "target_mask": "16" - }, - "3830": { - "id": 3830, - "name": "Blessing of the Fly Trap", - "description": "Increases the rate at which the target regains Health by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "10800", - "mana": "10", - "family": "257", - "speed": "0", - "target_effect": "37", - "target_mask": "16" - }, - "3831": { - "id": 3831, - "name": "Blessing of the Pitcher Plant", - "description": "Increases the rate at which the target regains Stamina by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "10800", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "3832": { - "id": 3832, - "name": "Master's Voice", - "description": "The sibilant voice of Adhorix helps improve your concentration. Your Focus is raised by 10. This effect stacks with other Focus-raising spells.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "1800", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3833": { - "id": 3833, - "name": "Minor Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "437", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3834": { - "id": 3834, - "name": "Major Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "437", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "3835": { - "id": 3835, - "name": "Leviathan's Curse", - "description": "Drains 150-400 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3836": { - "id": 3836, - "name": "Breath of the Deep", - "description": "Shoots a bolt of cold at the target. The bolt does 200-350 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3837": { - "id": 3837, - "name": "Water Island Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3838": { - "id": 3838, - "name": "Abandoned Mines Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3839": { - "id": 3839, - "name": "Brilliant Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3840": { - "id": 3840, - "name": "Dazzling Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3841": { - "id": 3841, - "name": "Devastated Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3842": { - "id": 3842, - "name": "Northeast Coast Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3843": { - "id": 3843, - "name": "Fire Island Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3844": { - "id": 3844, - "name": "Gatekeeper Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3845": { - "id": 3845, - "name": "Radiant Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3846": { - "id": 3846, - "name": "Ruined Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3847": { - "id": 3847, - "name": "Cataracts of Xik Minru", - "description": "Sends target to the Cataracts of Xik Minru", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3848": { - "id": 3848, - "name": "Combat Medication", - "description": "The energies imbued upon the ring weave a healing aura around you. increasing your natural healing rate by 130%.", - "school": "Life Magic", - "difficulty": "320", - "duration": "60", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3849": { - "id": 3849, - "name": "Night Runner", - "description": "The energies imbued upon this ring surge through you. increasing your run skill by 40. Additional effects can be layered on top of this.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "60", - "mana": "70", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "3850": { - "id": 3850, - "name": "Selflessness", - "description": "Your selflessness aids your fellows. but at a cost. Your health is reduced by 10.", - "school": "Life Magic", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "280", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "3851": { - "id": 3851, - "name": "Corrupted Essence", - "description": "Dark forces channel through your essence. improving your focus. Your Focus is raised by 15. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "600", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3852": { - "id": 3852, - "name": "Ravenous Armor", - "description": "You feel your life force being sapped slowly by your armor. Your Maximum Health is reduced by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "600", - "mana": "70", - "family": "280", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "3853": { - "id": 3853, - "name": "Ardent Defense", - "description": "You are gifted with an improved defense against melee attacks. Your Melee Defense is raised by 12. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "3854": { - "id": 3854, - "name": "True Loyalty", - "description": "Your loyalty knows no bounds while you wear this armor. Your Loyalty is raised by 12. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "600", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "3855": { - "id": 3855, - "name": "Flight of Bats", - "description": "Increases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "780", - "mana": "30", - "family": "67", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "3856": { - "id": 3856, - "name": "Ulgrim's Recall", - "description": "A really really good spell.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3857": { - "id": 3857, - "name": "Pumpkin Rain", - "description": "Rains eight of pumpkins down. smooshing any that oppose.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3858": { - "id": 3858, - "name": "Pumpkin Ring", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 40-80 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3859": { - "id": 3859, - "name": "Pumpkin Wall", - "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 30-60 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3860": { - "id": 3860, - "name": "Sweet Speed", - "description": "Increases the target's Run by 100 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "60", - "mana": "50", - "family": "369", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "3861": { - "id": 3861, - "name": "Taste for Blood", - "description": "The feral instincts of the Mukkir give you a keener eye towards improving your weapons. Increases the target's Weapon Tinkering skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "600", - "mana": "50", - "family": "377", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "3862": { - "id": 3862, - "name": "Duke Raoul's Pride", - "description": "Increases the caster's Self by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "70", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "3863": { - "id": 3863, - "name": "Hunter's Hardiness", - "description": "Increases the caster's Endurance by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "3864": { - "id": 3864, - "name": "Zongo's Fist", - "description": "Increases the caster's Strength by 50 points.", - "school": "Creature Enchantment", - "difficulty": "420", - "duration": "1800", - "mana": "70", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "3865": { - "id": 3865, - "name": "Glenden Wood Recall", - "description": "Sends the caster to Glenden Wood.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3866": { - "id": 3866, - "name": "Glacial Speed", - "description": "Decreases the target's Run skill by 200 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "30", - "mana": "50", - "family": "78", - "speed": "0.15", - "target_effect": "142", - "target_mask": "16" - }, - "3867": { - "id": 3867, - "name": "Embrace of the Chill Shadow", - "description": "Reduces damage the target takes from Cold by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "12", - "duration": "10800", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "3868": { - "id": 3868, - "name": "Dardante's Keep Portal Sending", - "description": "This spell sends the user to Dardante's Keep.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3869": { - "id": 3869, - "name": "Invocation of the Black Book", - "description": "The dark energies of the Black Book of Salt and Ash have made your weapon strike more accurately. The Invocation has raised your weapon's Attack Modifier by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "1800", - "mana": "10", - "family": "521", - "speed": "0", - "target_effect": "59", - "target_mask": "257" - }, - "3870": { - "id": 3870, - "name": "Syphon Creature Essence", - "description": "This spell attempts to rip all positive Creature Magic from a single target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3871": { - "id": 3871, - "name": "Syphon Item Essence", - "description": "Dispels all positive Item Enchantments of level 7 or lower from the players wielded weapon or caster.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "58", - "target_mask": "33025" - }, - "3872": { - "id": 3872, - "name": "Syphon Life Essence", - "description": "This spell attempts to rip all positive Life Magic from a single target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "3873": { - "id": 3873, - "name": "Essence's Command", - "description": "Dispels 1-3 positive Life Magic enchantments of level 7 or lower from each person in the fellowship.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "300", - "family": "250", - "speed": "0.05", - "target_effect": "146", - "target_mask": "16" - }, - "3874": { - "id": 3874, - "name": "Death's Aura", - "description": "Drains 40-75 points of health from each member of the fellowship.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "10", - "family": "68", - "speed": "0", - "target_effect": "32", - "target_mask": "16" - }, - "3875": { - "id": 3875, - "name": "Acidic Curse", - "description": "Increases damage all fellowship members take from acid by 185%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "3876": { - "id": 3876, - "name": "Curse of the Blades", - "description": "Increases damage all fellowship members take from Slashing by 185%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "114", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "3877": { - "id": 3877, - "name": "Corrosive Strike", - "description": "Shoots a stream of acid at the target. The stream does 150-300 points of acid damage to the target.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3878": { - "id": 3878, - "name": "Incendiary Strike", - "description": "Shoots a bolt of flame at the target. The bolt does 150-300 points of fire damage to the target.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3879": { - "id": 3879, - "name": "Glacial Strike", - "description": "Shoots a bolt of frost at the target. The bolt does 150-300 points of cold damage to the target.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3880": { - "id": 3880, - "name": "Galvanic Strike", - "description": "Shoots a bolt of lighting at the target. The bolt does 150-300 points of electrical damage to the target.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3881": { - "id": 3881, - "name": "Corrosive Ring", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3882": { - "id": 3882, - "name": "Incendiary Ring", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3883": { - "id": 3883, - "name": "Pyroclastic Explosion", - "description": "Shoots sixteen waves of flame outward from the caster. Each wave does 75-150 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3884": { - "id": 3884, - "name": "Glacial Ring", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 100-200 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3885": { - "id": 3885, - "name": "Galvanic Ring", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 100-200 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3886": { - "id": 3886, - "name": "Magic Disarmament", - "description": "Decreases the target's Magic Defense skill by 200 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "3887": { - "id": 3887, - "name": "Entering the Hatch", - "description": "Entering the Hatch", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3888": { - "id": 3888, - "name": "Passage to the Rare Chambers", - "description": "Passage to the Rare Chambers", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3889": { - "id": 3889, - "name": "Inner Burial Chamber Portal Sending", - "description": "Portals the user to the Inner Burial Chamber in the Ruschk Burial Mound dungeon.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3890": { - "id": 3890, - "name": "Will of the People", - "description": "The words of Arwyth Margyle have boosted your Self by 10 points. This spell stacks with normal spells. but will be overridden by Major Willpower.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "1800", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3891": { - "id": 3891, - "name": "Honor of the Bull", - "description": "Your deidcation to the Viamontian cause has bolstered your loyalty by 10 points. This spell stacks with normal spells. but will be overridden by Major Loyalty.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "1800", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "3892": { - "id": 3892, - "name": "Summon Flame Seekers", - "description": "Summons three Homing Flame Bolts.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3893": { - "id": 3893, - "name": "Summon Burning Haze", - "description": "Creates a cloud of burning gases.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "226", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3894": { - "id": 3894, - "name": "Dark Persistence", - "description": "A dark power suffuses your being. increasing your Endurance by 3.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "10800", - "mana": "10", - "family": "416", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "3895": { - "id": 3895, - "name": "Dark Reflexes", - "description": "A dark power suffuses your being. increasing your Quickness by 3.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "10800", - "mana": "10", - "family": "522", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "3896": { - "id": 3896, - "name": "Dark Equilibrium", - "description": "A dark power suffuses your being. increasing your Coordination by 3.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "10800", - "mana": "10", - "family": "413", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3897": { - "id": 3897, - "name": "Dark Purpose", - "description": "A dark power suffuses your being. increasing your Self by 3.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "10800", - "mana": "10", - "family": "417", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "3898": { - "id": 3898, - "name": "Pooky's Recall 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3899": { - "id": 3899, - "name": "Pooky's Recall 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3900": { - "id": 3900, - "name": "Pooky's Recall 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3901": { - "id": 3901, - "name": "Egg Bomb", - "description": "Shoots an explosive egg at the target. The egg does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3902": { - "id": 3902, - "name": "Ring around the Rabbit", - "description": "Shoots eight rabbits outward from the caster. Each rabbit does 40-80 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3903": { - "id": 3903, - "name": "Whirlwind", - "description": "Eight whirlwinds move outward from the caster. Each whirlwind does 60-120 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3904": { - "id": 3904, - "name": "Essence's Fury", - "description": "Corrodes the target for 200 points of acid damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3905": { - "id": 3905, - "name": "Essence's Fury", - "description": "Burns the target for 200 points of fire damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3906": { - "id": 3906, - "name": "Essence's Fury", - "description": "Freezes the target for 200 points of cold damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3907": { - "id": 3907, - "name": "Essence's Fury", - "description": "Shocks the target for 200 points of electric damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "237", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3908": { - "id": 3908, - "name": "Mana Blast", - "description": "Fires three bolts of energy. When struck by a bolt. the target's mana is reduced by 500.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "84", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3909": { - "id": 3909, - "name": "Mana Syphon", - "description": "Decreases target's natural mana rate by 100%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "120", - "mana": "70", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "3910": { - "id": 3910, - "name": "Brain Freeze", - "description": "The Essence strikes out with an icicle impaling your head. reducing all your skills by 50%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "15", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "3911": { - "id": 3911, - "name": "Spiral of Souls", - "description": "A spiral of energy sucks the life force out of all those around the caster for 40-75 points of damage.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3912": { - "id": 3912, - "name": "Lower Black Spear Temple Portal Sending", - "description": "Transports the player to the lower levels of the Black Spear Temple.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3913": { - "id": 3913, - "name": "Aegis of the Golden Flame", - "description": "Increases the caster's natural armor by 235 points.", - "school": "Life Magic", - "difficulty": "310", - "duration": "3600", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3914": { - "id": 3914, - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3915": { - "id": 3915, - "name": "Black Madness", - "description": "A madness enters your mind. The gaping horror of the abyss fills you with dread. reducing all your skills by 30%.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "160", - "target_mask": "16" - }, - "3916": { - "id": 3916, - "name": "Flayed Flesh", - "description": "Decreases the target's natural armor by 500 points.", - "school": "Life Magic", - "difficulty": "500", - "duration": "10", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "3917": { - "id": 3917, - "name": "Numbing Chill", - "description": "Increases damage all fellowship members take from cold by 185%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "3918": { - "id": 3918, - "name": "Flammable", - "description": "Increases damage all fellowship members take from fire by 185%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "3919": { - "id": 3919, - "name": "Lightning Rod", - "description": "Increases damage all fellowship members take from lightning by 185%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "3920": { - "id": 3920, - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3921": { - "id": 3921, - "name": "Harbinger's Lair", - "description": "Harbinger's Lair", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3922": { - "id": 3922, - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3923": { - "id": 3923, - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3924": { - "id": 3924, - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3925": { - "id": 3925, - "name": "Harbinger's Lair", - "description": "Harbinger's Lair", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3926": { - "id": 3926, - "name": "Harbinger's Fiery Touch", - "description": "Shoots a bolt of elemental energy at the target. The bolt does 130-220 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3927": { - "id": 3927, - "name": "Charge Flesh", - "description": "Target's flesh is left open and vulnerable to electric attacks. Increases damage the target takes from lightning by 200%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "60", - "mana": "10", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "3928": { - "id": 3928, - "name": "Disarmament", - "description": "Decreases the target's Melee Defense skill by 200 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "3929": { - "id": 3929, - "name": "Rossu Morta Chapterhouse Recall", - "description": "This spell teleports the caster to the Chapterhouse of the Rossu Morta.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3930": { - "id": 3930, - "name": "Whispering Blade Chapterhouse Recall", - "description": "This spell teleports the caster to the Chapterhouse of the Whispering Blade.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3931": { - "id": 3931, - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3932": { - "id": 3932, - "name": "Grael's Rage", - "description": "Drains 200-400 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "150", - "target_mask": "16" - }, - "3933": { - "id": 3933, - "name": "Black Spear Strike", - "description": "Impales the target for 250-300 points of piercing damage.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "200", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3934": { - "id": 3934, - "name": "Heavy Acid Ring", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 250-400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3935": { - "id": 3935, - "name": "Heavy Blade Ring", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 250-400 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3936": { - "id": 3936, - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 250-400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3937": { - "id": 3937, - "name": "Heavy Force Ring", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 250-400 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3938": { - "id": 3938, - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 250-400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3939": { - "id": 3939, - "name": "Thaumic Bleed", - "description": "Shoots 12 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3940": { - "id": 3940, - "name": "Exsanguinating Wave", - "description": "A wave of life draining energy.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "0" - }, - "3941": { - "id": 3941, - "name": "Heavy Lightning Ring", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 250-400 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3942": { - "id": 3942, - "name": "Heavy Shock Ring", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 250-400 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3943": { - "id": 3943, - "name": "Burning Earth", - "description": "A burning section of ground that deals 100-400 points of damage to whatever touches it.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3944": { - "id": 3944, - "name": "Rain of Spears", - "description": "Black Spears streak from the sky dealing 300 points of damage to whatever they hit.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3945": { - "id": 3945, - "name": "Raging Storm", - "description": "Rains LOTS of red lightning down.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "239", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "3946": { - "id": 3946, - "name": "Acid Wave", - "description": "Shoots eight waves of acid forward from the caster. Each wave does 80-150 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3947": { - "id": 3947, - "name": "Blade Wave", - "description": "Shoots eight slashing waves forward from the caster. Each wave does 80-150 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3948": { - "id": 3948, - "name": "Flame Wave", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 80-150 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3949": { - "id": 3949, - "name": "Force Wave", - "description": "Shoots eight waves of force forward from the caster. Each wave does 80-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3950": { - "id": 3950, - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 80-150 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3951": { - "id": 3951, - "name": "Lightning Wave", - "description": "Shoots eight waves of lightning forward from the caster. Each wave does 80-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3952": { - "id": 3952, - "name": "Shock Waves", - "description": "Shoots eight shock waves forward from the caster. Each wave does 80-150 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "3953": { - "id": 3953, - "name": "Carraida?\u00c7\u00d6s Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "86400", - "mana": "1", - "family": "520", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3954": { - "id": 3954, - "name": "Access to the White Tower", - "description": "Teleports the target into the White Tower.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3955": { - "id": 3955, - "name": "Epic Bludgeon Ward", - "description": "Reduces damage the target takes from bludgeoning by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "20", - "family": "401", - "speed": "0.05", - "target_effect": "55", - "target_mask": "16" - }, - "3956": { - "id": 3956, - "name": "Epic Piercing Ward", - "description": "Reduces damage the target takes from piercing by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "20", - "family": "405", - "speed": "0.05", - "target_effect": "45", - "target_mask": "16" - }, - "3957": { - "id": 3957, - "name": "Epic Slashing Ward", - "description": "Reduces damage the target takes from slashing by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "difficulty": "50", - "duration": "10800", - "mana": "20", - "family": "403", - "speed": "0.05", - "target_effect": "47", - "target_mask": "16" - }, - "3958": { - "id": 3958, - "name": "White Tower Egress", - "description": "Teleports the target out of the White Tower.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3959": { - "id": 3959, - "name": "Redirect Motives", - "description": "In an attempt to redirect the motives of the wielder back to the law they are sworn to uphold this spell drains 50-100 points of the target's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "3960": { - "id": 3960, - "name": "Authority", - "description": "Increases a weapon's damage value by 60 points.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "1020", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "257" - }, - "3961": { - "id": 3961, - "name": "Defense of the Just", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 60%.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "33025" - }, - "3962": { - "id": 3962, - "name": "Bound to the Law", - "description": "Target is bound to law and justice. The confines of the law do not always allow free action. Reduces Melee Defense by 60 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "240", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "3963": { - "id": 3963, - "name": "Epic Coordination", - "description": "Increases the target's Coordination by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "3964": { - "id": 3964, - "name": "Epic Focus", - "description": "Increases the target's Focus by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "3965": { - "id": 3965, - "name": "Epic Strength", - "description": "Increases the target's Strength by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "3966": { - "id": 3966, - "name": "Ringleader's Chambers", - "description": "Target is portaled into a the Bandit Ringleader?\u00c7\u00d6s chambers", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3967": { - "id": 3967, - "name": "Bandit Trap", - "description": "Target is portaled into a Sawato Bandit Trap!", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3968": { - "id": 3968, - "name": "Bandit Hideout", - "description": "Target is portaled into the Sawato Bandit Hideout", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "3969": { - "id": 3969, - "name": "Acid Bomb", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 100-400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3970": { - "id": 3970, - "name": "Blade Bomb", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 100-400 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3971": { - "id": 3971, - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 100-400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3972": { - "id": 3972, - "name": "Force Bomb", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 100-400 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3973": { - "id": 3973, - "name": "Frost Bomb", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3974": { - "id": 3974, - "name": "Lightning Bomb", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3975": { - "id": 3975, - "name": "Shock Bomb", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 200-1000 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3976": { - "id": 3976, - "name": "Incantation of Armor Other", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "3977": { - "id": 3977, - "name": "Coordination Other Incantation", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "100", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "3978": { - "id": 3978, - "name": "Focus Other Incantation", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "100", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "3979": { - "id": 3979, - "name": "Strength Other Incantation", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "3980": { - "id": 3980, - "name": "Impenetrability Incantation", - "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "325", - "duration": "10800", - "mana": "100", - "family": "160", - "speed": "0.3", - "target_effect": "142", - "target_mask": "6" - }, - "3981": { - "id": 3981, - "name": "Mana Renewal Other Incantation", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "100", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "3982": { - "id": 3982, - "name": "Regeneration Other Incantation", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "100", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "3983": { - "id": 3983, - "name": "Rejuvenation Other Incantation", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "100", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "3984": { - "id": 3984, - "name": "Mukkir's Ferocity", - "description": "Increases a weapon's Attack Skill modifier by 4%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "10800", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "3985": { - "id": 3985, - "name": "Mukkir Sense", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 4%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "10800", - "mana": "10", - "family": "329", - "speed": "0.01", - "target_effect": "61", - "target_mask": "33025" - }, - "3986": { - "id": 3986, - "name": "Rock Fall", - "description": "A large falling block of black ice.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "3987": { - "id": 3987, - "name": "Black Spear Strike", - "description": "Impales the target for 150-200 points of piercing damage.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "200", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3988": { - "id": 3988, - "name": "Black Spear Strike", - "description": "Impales the target for 200-250 points of piercing damage.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "200", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "3989": { - "id": 3989, - "name": "Dark Lightning", - "description": "Shoots a bolt of lighting at the target. The bolt does 150-250 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "3990": { - "id": 3990, - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-150 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3991": { - "id": 3991, - "name": "Thaumic Bleed", - "description": "Shoots 8 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3992": { - "id": 3992, - "name": "Heavy Acid Ring", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 150-300 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3993": { - "id": 3993, - "name": "Heavy Blade Ring", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 150-300 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3994": { - "id": 3994, - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 150-300 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3995": { - "id": 3995, - "name": "Heavy Force Ring", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 150-300 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3996": { - "id": 3996, - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 150-300 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3997": { - "id": 3997, - "name": "Heavy Lightning Ring", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 150-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3998": { - "id": 3998, - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "3999": { - "id": 3999, - "name": "Exsanguinating Wave", - "description": "A wave of life draining energy.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "0" - }, - "4000": { - "id": 4000, - "name": "Heavy Shock Ring", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 150-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4001": { - "id": 4001, - "name": "Burning Earth", - "description": "A burning section of ground that deals 200-500 points of damage to whatever touches it.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4002": { - "id": 4002, - "name": "Burning Earth", - "description": "A burning section of ground that deals 100-200 points of damage to whatever touches it.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4003": { - "id": 4003, - "name": "Wall of Spears", - "description": "Black Spears streak towards the target. Each spear does 150-250 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "234", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4004": { - "id": 4004, - "name": "Wall of Spears", - "description": "Black Spears streak towards the target. Each spear does 100-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "234", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4005": { - "id": 4005, - "name": "Acid Wave", - "description": "Shoots eight waves of acid forward from the caster. Each wave does 20-100 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "222", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4006": { - "id": 4006, - "name": "Blade Wave", - "description": "Shoots eight slashing waves forward from the caster. Each wave does 20-100 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "228", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4007": { - "id": 4007, - "name": "Flame Wave", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 20-100 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4008": { - "id": 4008, - "name": "Force Wave", - "description": "Shoots eight waves of force forward from the caster. Each wave does 20-100 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4009": { - "id": 4009, - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 20-100 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4010": { - "id": 4010, - "name": "Lightning Wave", - "description": "Shoots eight waves of lightning forward from the caster. Each wave does 20-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4011": { - "id": 4011, - "name": "Shock Waves", - "description": "Shoots eight shock waves forward from the caster. Each wave does 20-100 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4012": { - "id": 4012, - "name": "White Totem Temple Sending", - "description": "The White Totem Gateway sends you to the White Totem Temple.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4013": { - "id": 4013, - "name": "Black Totem Temple Sending", - "description": "The Black Totem Gateway sends you to the Black Totem Temple.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4014": { - "id": 4014, - "name": "Abyssal Totem Temple Sending", - "description": "The Abyssal Totem Gateway sends you to the Abyssal Totem Temple.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4015": { - "id": 4015, - "name": "Ruschk Skin", - "description": "Increases the target's natural armor by 10 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "10", - "duration": "10800", - "mana": "10", - "family": "513", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4016": { - "id": 4016, - "name": "Shadow's Heart", - "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "10800", - "mana": "10", - "family": "349", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4017": { - "id": 4017, - "name": "Phial's Accuracy", - "description": "Increases the target's Missile Weapons skill by 800 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "100", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4018": { - "id": 4018, - "name": "Permafrost", - "description": "A frozen shell that offers a surprising amount of protection.", - "school": "Item Enchantment", - "difficulty": "475", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "4019": { - "id": 4019, - "name": "Epic Quickness", - "description": "Increases the target's Quickness by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "4020": { - "id": 4020, - "name": "Epic Deception Prowess", - "description": "Increases the target's Deception skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "343", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4021": { - "id": 4021, - "name": "Flurry of Stars", - "description": "Shoots five whirling blades quickly outward from the caster. Each blade does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4022": { - "id": 4022, - "name": "Zombies Persistence", - "description": "Increase caster's natural healing rate by 200% for 60 seconds.", - "school": "Life Magic", - "difficulty": "545", - "duration": "60", - "mana": "50", - "family": "93", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "4023": { - "id": 4023, - "name": "Disco Inferno Portal Sending", - "description": "This spell sends the player to the Night Club dungeon.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4024": { - "id": 4024, - "name": "Asheron?\u00c7\u00d6s Lesser Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "86400", - "mana": "1", - "family": "520", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4025": { - "id": 4025, - "name": "Cast Iron Stomach", - "description": "Increases maximum stamina by 50 points.", - "school": "Life Magic", - "difficulty": "50", - "duration": "10800", - "mana": "10", - "family": "281", - "speed": "0.01", - "target_effect": "35", - "target_mask": "16" - }, - "4026": { - "id": 4026, - "name": "Hematic Verdure", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "510", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "4027": { - "id": 4027, - "name": "Messenger's Stride", - "description": "Increases the target's Run skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "780", - "mana": "10", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "4028": { - "id": 4028, - "name": "Snowball", - "description": "A fluffy snowball.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "119", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "4029": { - "id": 4029, - "name": "Return to the Hall of Champions", - "description": "Transports the target to the Colosseum's Hall of Champions.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4030": { - "id": 4030, - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4031": { - "id": 4031, - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4032": { - "id": 4032, - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4033": { - "id": 4033, - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4034": { - "id": 4034, - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4035": { - "id": 4035, - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4036": { - "id": 4036, - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4037": { - "id": 4037, - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4038": { - "id": 4038, - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4039": { - "id": 4039, - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4040": { - "id": 4040, - "name": "Master's Innervation", - "description": "Increase caster's natural healing rate by 1000% for 20 seconds.", - "school": "Life Magic", - "difficulty": "1000", - "duration": "20", - "mana": "70", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "4041": { - "id": 4041, - "name": "The Path to Bur", - "description": "Transports the target to the world of Bur.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4042": { - "id": 4042, - "name": "The Winding Path to Bur", - "description": "Transports the target to the world of Bur.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4043": { - "id": 4043, - "name": "Kukuur Hide", - "description": "Increases the caster's natural armor by 300 points.", - "school": "Life Magic", - "difficulty": "350", - "duration": "120", - "mana": "100", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4044": { - "id": 4044, - "name": "Acid Ball", - "description": "A ball of acid.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "117", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4045": { - "id": 4045, - "name": "Flame Ball", - "description": "A ball of fire.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4046": { - "id": 4046, - "name": "Lightning Ball", - "description": "A ball of lightning.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4047": { - "id": 4047, - "name": "Artisan Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "30", - "mana": "10", - "family": "523", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4048": { - "id": 4048, - "name": "Artisan Cook's Inspiration", - "description": "Increases the target's Cooking skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "30", - "mana": "10", - "family": "524", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4049": { - "id": 4049, - "name": "Artisan Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "30", - "mana": "10", - "family": "525", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4050": { - "id": 4050, - "name": "Artisan Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "30", - "duration": "30", - "mana": "10", - "family": "526", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4051": { - "id": 4051, - "name": "Master Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "20", - "duration": "30", - "mana": "10", - "family": "523", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4052": { - "id": 4052, - "name": "Master Cook's Inspiration", - "description": "Increases the target's Cooking skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "20", - "duration": "30", - "mana": "10", - "family": "524", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4053": { - "id": 4053, - "name": "Master Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "20", - "duration": "30", - "mana": "10", - "family": "525", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4054": { - "id": 4054, - "name": "Master Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "20", - "duration": "30", - "mana": "10", - "family": "526", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4055": { - "id": 4055, - "name": "Journeyman Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "30", - "mana": "10", - "family": "523", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4056": { - "id": 4056, - "name": "Journeyman Cook's Inspiration", - "description": "Increases the target's Cooking skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "30", - "mana": "10", - "family": "524", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4057": { - "id": 4057, - "name": "Journeyman Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "30", - "mana": "10", - "family": "525", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4058": { - "id": 4058, - "name": "Journeyman Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "30", - "mana": "10", - "family": "526", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4059": { - "id": 4059, - "name": "Endurance Other Incantation", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "3600", - "mana": "70", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "4060": { - "id": 4060, - "name": "Quickness Other Incantation", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "3600", - "mana": "70", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "4061": { - "id": 4061, - "name": "Willpower Other Incantation", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "3600", - "mana": "70", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "4062": { - "id": 4062, - "name": "Empyrean Aegis", - "description": "Improves a shield or piece of armor's armor value by 500 points.", - "school": "Item Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "4063": { - "id": 4063, - "name": "Exit the Upper Catacomb", - "description": "Transports the target to the caverns of the Burun.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4064": { - "id": 4064, - "name": "Access the Upper Catacomb", - "description": "Transports the target to the upper chamber of the Falatacot.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4065": { - "id": 4065, - "name": "Lower Catacomb Portal Sending", - "description": "Transports the target to the lower catacomb of the Falatacot", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4066": { - "id": 4066, - "name": "Access to the Ley Line Cavern", - "description": "This spell transports the target to the Ley Line Cavern.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4067": { - "id": 4067, - "name": "Mucor Bolt", - "description": "Casting this spell creates a bolt of pure mana which sails toward its target. doing 0-100 points directly to health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "100", - "family": "80", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "4068": { - "id": 4068, - "name": "Mucor Mana Well", - "description": "Consuming this fungus causes your ability to regenerate mana to rapidly increase. Your regeneration rate is increased by 100% (stacking with both normal spells and cantrips) for 3 hours.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "10", - "family": "527", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "4069": { - "id": 4069, - "name": "Mucor Jolt", - "description": "The mucor imbued into this weapon sap a small amount of strength from the target of your blow. dealing 0-70 points of damage directly to health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.3", - "target_effect": "32", - "target_mask": "16" - }, - "4070": { - "id": 4070, - "name": "Empyrean Mana Absorbtion", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "7200", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "4071": { - "id": 4071, - "name": "Empyrean Stamina Absorbtion", - "description": "Increases maximum Stamina by 100 points.", - "school": "Life Magic", - "difficulty": "100", - "duration": "7200", - "mana": "70", - "family": "281", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "4072": { - "id": 4072, - "name": "Aurlanaa's Resolve", - "description": "Increases your Stamina Regeneration Rate by 20%. This effect can be layered with other cantrips.", - "school": "Life Magic", - "difficulty": "20", - "duration": "3600", - "mana": "60", - "family": "528", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "4073": { - "id": 4073, - "name": "Empyrean Regeneration", - "description": "Increases your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "3600", - "mana": "60", - "family": "257", - "speed": "0.2", - "target_effect": "37", - "target_mask": "16" - }, - "4074": { - "id": 4074, - "name": "Empyrean Rejuvenation", - "description": "Increases your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "3600", - "mana": "60", - "family": "407", - "speed": "0.2", - "target_effect": "41", - "target_mask": "16" - }, - "4075": { - "id": 4075, - "name": "Empyrean Mana Renewal", - "description": "Increases your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "difficulty": "50", - "duration": "3600", - "mana": "60", - "family": "259", - "speed": "0.2", - "target_effect": "39", - "target_mask": "16" - }, - "4076": { - "id": 4076, - "name": "Empyrean Enlightenment", - "description": "Increases the target's Arcane Lore skill by 60 points.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4077": { - "id": 4077, - "name": "Mana Conversion Mastery Incantation", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "7200", - "mana": "80", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4078": { - "id": 4078, - "name": "Egg", - "description": "An egg.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "118", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "4079": { - "id": 4079, - "name": "Work it Off", - "description": "Teleports the target to the dishwashing room", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4080": { - "id": 4080, - "name": "Paid in Full", - "description": "Teleports the target to the kitchen", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4081": { - "id": 4081, - "name": "Eye of the Tempest", - "description": "Shoots twelve waves of lightning outward from the caster. Each wave does 60-120 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4082": { - "id": 4082, - "name": "Big Fire", - "description": "A large ball of fire.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4083": { - "id": 4083, - "name": "Kresovus' Warren Portal Sending", - "description": "The mysterious chest in Lord Kresovus' chambers has teleported you...", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4084": { - "id": 4084, - "name": "Bur Recall", - "description": "Sends the caster to Bur.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4085": { - "id": 4085, - "name": "Entering Harraag's Hideout", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4086": { - "id": 4086, - "name": "Icy Shield", - "description": "Increases the target's natural armor by 100 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "100", - "duration": "3600", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4087": { - "id": 4087, - "name": "Armor Breach", - "description": "Decreases the target's natural armor by 225 points for 10 seconds.", - "school": "Life Magic", - "difficulty": "325", - "duration": "10", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "4088": { - "id": 4088, - "name": "Withering Poison", - "description": "Decreases the victim's natural healing rate by 75%.", - "school": "Life Magic", - "difficulty": "500", - "duration": "240", - "mana": "70", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "4089": { - "id": 4089, - "name": "Assassin's Gift", - "description": "Raises the Assassin's Deception Skill by 100.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "3600", - "mana": "70", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4090": { - "id": 4090, - "name": "Scarab's Shell", - "description": "Increases the target's natural armor by 260 points.", - "school": "Life Magic", - "difficulty": "401", - "duration": "7200", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4091": { - "id": 4091, - "name": "Spear", - "description": "Impales the target for 150-250 points of piercing damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4092": { - "id": 4092, - "name": "Flame Grenade", - "description": "Burns the target for 80-240 points of fire damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "200", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4093": { - "id": 4093, - "name": "Don't Bite Me", - "description": "Reduces damage the target takes from Bludgeoning by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "401", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4094": { - "id": 4094, - "name": "Don't Burn Me", - "description": "Reduces damage the target takes from Fire by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "287", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "4095": { - "id": 4095, - "name": "Don't Stab Me", - "description": "Reduces damage the target takes from Piercing by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "12", - "duration": "780", - "mana": "10", - "family": "405", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "4096": { - "id": 4096, - "name": "Flame Chain", - "description": "Shoots five bolts of flame in a row at the target. Each bolt does 26-44 points of fire damage to the first thing it hits. This spell is more effective for long range attacks.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "60", - "family": "121", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4097": { - "id": 4097, - "name": "Violet Rain", - "description": "Rains LOTS of lightning down.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "239", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4098": { - "id": 4098, - "name": "Treasure Room", - "description": "Sends a player to BoneCrunch's Treasure Room.", - "school": "Item Enchantment", - "difficulty": "320", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4099": { - "id": 4099, - "name": "Strength of Diemos", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "410", - "duration": "10800", - "mana": "70", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "4100": { - "id": 4100, - "name": "Breath of Renewal", - "description": "Restores 500-750 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "67", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "4101": { - "id": 4101, - "name": "Champion's Skullduggery", - "description": "Decrease the target's Melee Defense skill by 125 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "20", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4102": { - "id": 4102, - "name": "Champion's Clever Ruse", - "description": "Decrease the target's Magic Defense skill by 125 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "20", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4103": { - "id": 4103, - "name": "Black Water Portal Sending", - "description": "Portals the user to the lair of the Watcher of the Black Water.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4104": { - "id": 4104, - "name": "Champion Arena", - "description": "Transports the target to Gladiator Diemos' Arena.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4105": { - "id": 4105, - "name": "Champion Arena", - "description": "Transports the target to The Master's Arena.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4106": { - "id": 4106, - "name": "Travel to the Paradox-touched Olthoi Queen's Lair", - "description": "Instantly transports the target to the Paradox-touched Olthoi Queen's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4107": { - "id": 4107, - "name": "Marrow Blight", - "description": "Lowers all of the target's attributes by 10% for 10 seconds.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "10", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "4108": { - "id": 4108, - "name": "Apathy", - "description": "You feel as though a great weight has settled on you. You can't seem to gather enough strength to do much of anything.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "30", - "mana": "1", - "family": "2", - "speed": "0.3", - "target_effect": "7", - "target_mask": "16" - }, - "4109": { - "id": 4109, - "name": "Greater Marrow Blight", - "description": "You feel a sharp ache deep in your bones. Lowers all of the targets attributes by 50%.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "30", - "mana": "10", - "family": "421", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "4110": { - "id": 4110, - "name": "Poison", - "description": "Drains 40-80 points of the target's Health.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4111": { - "id": 4111, - "name": "Lesser Tusker Hide", - "description": "Increases your natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "60", - "mana": "100", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4112": { - "id": 4112, - "name": "Spirit Nullification", - "description": "Your caster's usual glow of elemental power is extinguished.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "32768" - }, - "4113": { - "id": 4113, - "name": "FoulRing", - "description": "A wave of foulness.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "0" - }, - "4114": { - "id": 4114, - "name": "Hypnotic Suggestion", - "description": "A sudden urge to cluck like a chicken makes it difficult to defend yourself. Decreases your Melee Defense by 200 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "30", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4115": { - "id": 4115, - "name": "Mesmerizing Gaze", - "description": "Mudmouth stares deep into your eyes and you find your mind wandering. even with the sounds of battle that surround you. Your skills are lowered by 20%.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "10", - "family": "424", - "speed": "0.01", - "target_effect": "160", - "target_mask": "16" - }, - "4116": { - "id": 4116, - "name": "Trance", - "description": "Just look at that shiny thing over there! It's sooo beautiful. Decreases your Magic Defense by 200 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "30", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4117": { - "id": 4117, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from acid damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "101", - "speed": "0.1", - "target_effect": "49", - "target_mask": "16" - }, - "4118": { - "id": 4118, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from lightning damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "107", - "speed": "0.1", - "target_effect": "53", - "target_mask": "16" - }, - "4119": { - "id": 4119, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from fire damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "109", - "speed": "0.1", - "target_effect": "43", - "target_mask": "16" - }, - "4120": { - "id": 4120, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Cold damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "105", - "speed": "0.1", - "target_effect": "51", - "target_mask": "16" - }, - "4121": { - "id": 4121, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from bludgeon damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "103", - "speed": "0.1", - "target_effect": "55", - "target_mask": "16" - }, - "4122": { - "id": 4122, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Piercing damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "111", - "speed": "0.1", - "target_effect": "45", - "target_mask": "16" - }, - "4123": { - "id": 4123, - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Slashing damage by 50%.", - "school": "Life Magic", - "difficulty": "100", - "duration": "60", - "mana": "40", - "family": "113", - "speed": "0.1", - "target_effect": "47", - "target_mask": "16" - }, - "4124": { - "id": 4124, - "name": "Dark Nanners", - "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "235", - "speed": "0.25", - "target_effect": "0", - "target_mask": "0" - }, - "4125": { - "id": 4125, - "name": "Dark Nanners", - "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "234", - "speed": "0.25", - "target_effect": "0", - "target_mask": "0" - }, - "4126": { - "id": 4126, - "name": "Rain of Nanners", - "description": "Dark Nanners streak from the sky dealing 100-300 points of piercing damage to the first thing they hit.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "241", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4127": { - "id": 4127, - "name": "Portal Punch", - "description": "A powerful punch which sends the target to Oolutanga's Refuge.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4128": { - "id": 4128, - "name": "Call of the Mhoire Forge", - "description": "Calls the spirit to the location of the forge of House Mhoire.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4129": { - "id": 4129, - "name": "Travel to the Prodigal Shadow Child's Lair", - "description": "Instantly transports the target to the Prodigal Shadow Child's Lair.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4130": { - "id": 4130, - "name": "Travel to the Prodigal Shadow Child's Sanctum", - "description": "Instantly transports the target to the Prodigal Shadow Child's Sanctum.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4131": { - "id": 4131, - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4132": { - "id": 4132, - "name": "Spectral Blood Drinker", - "description": "Increases a weapon's damage value by 30 points for 3 minutes.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "180", - "mana": "70", - "family": "473", - "speed": "0.15", - "target_effect": "57", - "target_mask": "257" - }, - "4133": { - "id": 4133, - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4134": { - "id": 4134, - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4135": { - "id": 4135, - "name": "Spectral Finesse Weapon Mastery", - "description": "Increases the caster's Finesse Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "472", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4136": { - "id": 4136, - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4137": { - "id": 4137, - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4138": { - "id": 4138, - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4139": { - "id": 4139, - "name": "Spectral Heavy Weapon Mastery", - "description": "Increases the caster's Heavy Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "508", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4140": { - "id": 4140, - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "465", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4141": { - "id": 4141, - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "462", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4142": { - "id": 4142, - "name": "Spectral War Magic Mastery", - "description": "Increases the caster's War Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "511", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4143": { - "id": 4143, - "name": "Witnessing History", - "description": "Teleports the PC to Branch 4. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4144": { - "id": 4144, - "name": "Witnessing History", - "description": "Teleports the PC to Branch 5. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4145": { - "id": 4145, - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 1. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4146": { - "id": 4146, - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 2. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4147": { - "id": 4147, - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 3. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4148": { - "id": 4148, - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 4. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4149": { - "id": 4149, - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 5. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4150": { - "id": 4150, - "name": "Expulsion from Claude's Mind", - "description": "Teleports the PC to Aun Kelauri's tent.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "5", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4151": { - "id": 4151, - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 1. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4152": { - "id": 4152, - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 2. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4153": { - "id": 4153, - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 3. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4154": { - "id": 4154, - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 4. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4155": { - "id": 4155, - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 5. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4156": { - "id": 4156, - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 1. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4157": { - "id": 4157, - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 2. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4158": { - "id": 4158, - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 3. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4159": { - "id": 4159, - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 4. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4160": { - "id": 4160, - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 5. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4161": { - "id": 4161, - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 1. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4162": { - "id": 4162, - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 2. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4163": { - "id": 4163, - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 3. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4164": { - "id": 4164, - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 4. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4165": { - "id": 4165, - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 5. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4166": { - "id": 4166, - "name": "Witnessing History", - "description": "Teleports the PC to Branch 1. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4167": { - "id": 4167, - "name": "Witnessing History", - "description": "Teleports the PC to Branch 2. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4168": { - "id": 4168, - "name": "Witnessing History", - "description": "Teleports the PC to Branch 3. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4169": { - "id": 4169, - "name": "Harbinger Blood Infusion", - "description": "The Harbinger's blood suffuses your being. increasing your natural armor by 300 points.", - "school": "Life Magic", - "difficulty": "410", - "duration": "900", - "mana": "100", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4170": { - "id": 4170, - "name": "Harbinger's Coordination", - "description": "Increases Coordination 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "413", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4171": { - "id": 4171, - "name": "Harbinger's Endurance", - "description": "Increases Endurance 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "416", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "4172": { - "id": 4172, - "name": "Harbinger's Focus", - "description": "Increases Focus 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "415", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4173": { - "id": 4173, - "name": "Harbinger's Quickness", - "description": "Increases Quickness 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "522", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "4174": { - "id": 4174, - "name": "Harbinger's Strength", - "description": "Increases Strength 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "414", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4175": { - "id": 4175, - "name": "Harbinger's Willpower", - "description": "Increases Willpower 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "7200", - "mana": "10", - "family": "417", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4176": { - "id": 4176, - "name": "Prodigal Harbinger's Lair", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4177": { - "id": 4177, - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Acid Prep Room.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4178": { - "id": 4178, - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Cold Prep Room.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4179": { - "id": 4179, - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Fire Prep Room.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4180": { - "id": 4180, - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Lightning Prep Room.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4181": { - "id": 4181, - "name": "Essence Bolt", - "description": "A dangerous looking ball of acid.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "120", - "family": "117", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4182": { - "id": 4182, - "name": "Ball Lightning", - "description": "A sparking ball of lightning that deals 400 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4183": { - "id": 4183, - "name": "Corrosive Veil", - "description": "A wave of acid that deals 400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "117", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4184": { - "id": 4184, - "name": "Essence Bolt", - "description": "A dangerous looking ball of flame.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "120", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4185": { - "id": 4185, - "name": "Essence Bolt", - "description": "A dangerous looking ball of Frost.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "120", - "family": "119", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4186": { - "id": 4186, - "name": "Hoar Frost", - "description": "A strangely spreading frost that deals 400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "119", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4187": { - "id": 4187, - "name": "Essence Bolt", - "description": "A dangerous looking ball of lightning.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "120", - "family": "120", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4188": { - "id": 4188, - "name": "Shadowed Flame", - "description": "A dark flame that deals 400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4189": { - "id": 4189, - "name": "Harbinger Acid Protection", - "description": "Reduces damage the target takes from acid by 80%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "120", - "mana": "70", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "4190": { - "id": 4190, - "name": "Harbinger Cold Protection", - "description": "Reduces damage the target takes from Cold by 80%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "120", - "mana": "70", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "4191": { - "id": 4191, - "name": "Harbinger Flame Protection", - "description": "Reduces damage the target takes from fire by 80%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "120", - "mana": "70", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "4192": { - "id": 4192, - "name": "Harbinger Lightning Protection", - "description": "Reduces damage the target takes from Lightning by 80%.", - "school": "Life Magic", - "difficulty": "350", - "duration": "120", - "mana": "70", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "4193": { - "id": 4193, - "name": "Harbinger Magic Defense", - "description": "Increases the caster's Magic Defense skill by 400 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4194": { - "id": 4194, - "name": "Magical Void", - "description": "Decreases the target's Magic Defense skill by 350 points.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "30", - "mana": "70", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4195": { - "id": 4195, - "name": "Harbinger Melee Defense", - "description": "Increases the caster's Melee Defense skill by 400 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4196": { - "id": 4196, - "name": "Harbinger Missile Defense", - "description": "Increases the caster's Missile Defense skill by 400 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "60", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4197": { - "id": 4197, - "name": "Naked to the Elements", - "description": "Decrease the target's Melee Defense skill by 350 points.", - "school": "Creature Enchantment", - "difficulty": "350", - "duration": "30", - "mana": "70", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4198": { - "id": 4198, - "name": "Paradox-touched Olthoi Infested Area Recall", - "description": "Transports the caster to the area infested by the Paradox-touched Olthoi.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4199": { - "id": 4199, - "name": "Frozen Armor", - "description": "A layer of thin but sturdy frost covers you. increasing your natural armor by 260.", - "school": "Life Magic", - "difficulty": "401", - "duration": "7200", - "mana": "70", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4200": { - "id": 4200, - "name": "Into the Darkness", - "description": "Teleports the target into a dark zombie filled dungeon.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4201": { - "id": 4201, - "name": "Numbing Chill", - "description": "A numbing chill that acclimates you to cold.", - "school": "Life Magic", - "difficulty": "340", - "duration": "180", - "mana": "70", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "4202": { - "id": 4202, - "name": "Trevor's Zombie Strike", - "description": "Damages the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4203": { - "id": 4203, - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4204": { - "id": 4204, - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4205": { - "id": 4205, - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4206": { - "id": 4206, - "name": "Chewy Center", - "description": "Dispels all negative enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "280", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4207": { - "id": 4207, - "name": "Arena of the Pumpkin King", - "description": "Transports the target to the Arena of the Pumpkin King.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4208": { - "id": 4208, - "name": "Spectral Flame", - "description": "Shoots a bolt of spectral energy dealing 110-180 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4209": { - "id": 4209, - "name": "Gummy Shield", - "description": "Boosts the targets magic defense skill by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "30", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4210": { - "id": 4210, - "name": "The Jitters", - "description": "Boosts the targets missile defense by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "30", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4211": { - "id": 4211, - "name": "Licorice Leap", - "description": "Boosts casters jump skill by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "30", - "mana": "100", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "4212": { - "id": 4212, - "name": "Sticky Melee", - "description": "Boosts the targets melee defense skill by 100 for a short time.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "30", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4213": { - "id": 4213, - "name": "Colosseum Recall", - "description": "Sends the caster to the Colosseum.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4214": { - "id": 4214, - "name": "Return to the Keep", - "description": "This spell returns the caster to Candeth Keep.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4215": { - "id": 4215, - "name": "Shadow Armor", - "description": "The darkness envelops this armor. offering magical protection from harm.", - "school": "Item Enchantment", - "difficulty": "900", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "4216": { - "id": 4216, - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 30-60 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "80", - "family": "224", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4217": { - "id": 4217, - "name": "Gourd Guard", - "description": "Improves the Pumpkin Shield's armor value by 300 points.", - "school": "Item Enchantment", - "difficulty": "410", - "duration": "3600", - "mana": "70", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "4218": { - "id": 4218, - "name": "Knockback", - "description": "Knocks the target back from the portal.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4219": { - "id": 4219, - "name": "Trial of the Arm", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4220": { - "id": 4220, - "name": "Trial of the Heart", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4221": { - "id": 4221, - "name": "Spectral Life Magic Mastery", - "description": "Increases the caster's Life Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "488", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4222": { - "id": 4222, - "name": "Chambers Beneath", - "description": "Sends the target directly to the chambers beneath Linvak Tukal.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4223": { - "id": 4223, - "name": "Trials Graduation Chamber", - "description": "Portals the target to the Trials Graduation Chamber.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4224": { - "id": 4224, - "name": "Trial of the Mind", - "description": "Portals the target to Linvak Tukal's Trial of the Mind.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4225": { - "id": 4225, - "name": "Trials of the Arm. Mind and Heart", - "description": "Sends the target to the Trials of the Arm. Mind and Heart.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4226": { - "id": 4226, - "name": "Epic Endurance", - "description": "Increases the target's Endurance by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "4227": { - "id": 4227, - "name": "Epic Willpower", - "description": "Increases the target's Self by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4228": { - "id": 4228, - "name": "Awakening", - "description": "You awake as if from a dream.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4229": { - "id": 4229, - "name": "Journey Into the Past", - "description": "This spell transports the target into the Apparition Black Death Catacomb.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4230": { - "id": 4230, - "name": "Bael'Zharon Dream Sending", - "description": "Teleports the player into the dream realm of the Ithaenc Quiddity Seed.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4231": { - "id": 4231, - "name": "Leadership Mastery Other Incantation", - "description": "Increases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "7200", - "mana": "80", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4232": { - "id": 4232, - "name": "Epic Leadership", - "description": "Increases the target's Leadership skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "293", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4233": { - "id": 4233, - "name": "Aerbax Recall Center Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4234": { - "id": 4234, - "name": "Aerbax Recall East Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4235": { - "id": 4235, - "name": "Aerbax Recall North Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4236": { - "id": 4236, - "name": "Aerbax Recall South Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4237": { - "id": 4237, - "name": "Aerbax Recall West Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4238": { - "id": 4238, - "name": "Aerbax Expulsion", - "description": "Portals the target off Aerbax's Platforms.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4239": { - "id": 4239, - "name": "Ring of Death", - "description": "A large explosion dealing massive ammounts of damage to everyone it hits.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "0" - }, - "4240": { - "id": 4240, - "name": "Aerbax's Magic Shield", - "description": "Increases the caster's Magic Defense by 900 points.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4241": { - "id": 4241, - "name": "Aerbax Magic Shield Down", - "description": "Nullifies Aerbax's Magic Shield.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "41", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4242": { - "id": 4242, - "name": "Aerbax's Melee Shield", - "description": "Increases the caster's Melee Defense by 900 points.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4243": { - "id": 4243, - "name": "Aerbax Melee Shield Down", - "description": "Nullifies Aerbax's Melee Shield.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "37", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4244": { - "id": 4244, - "name": "Aerbax's Missile Shield", - "description": "Increases the caster's Missile Defense by 900 points.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4245": { - "id": 4245, - "name": "Aerbax Missile Shield Down", - "description": "Nullifies Aerbax's Missile Shield.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "180", - "mana": "70", - "family": "39", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4246": { - "id": 4246, - "name": "MeteorStrike", - "description": "Rains LOTS of red lightning down.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "1", - "family": "239", - "speed": "0.01", - "target_effect": "0", - "target_mask": "0" - }, - "4247": { - "id": 4247, - "name": "Tanada Battle Burrows Portal Sending", - "description": "This spell transports the target to the Tanada Battle Burrows.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4248": { - "id": 4248, - "name": "Shroud Cabal North Outpost Sending", - "description": "This spell sends the player to the Shroud Cabal Northern Outpost", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4249": { - "id": 4249, - "name": "Shroud Cabal South Outpost Sending", - "description": "This spell sends the player to the Shroud Cabal Southern Outpost", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4250": { - "id": 4250, - "name": "Aerbax's Platform", - "description": "Portals the target to the Aerbax's Platform.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4251": { - "id": 4251, - "name": "Jester's Boot", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4252": { - "id": 4252, - "name": "Entrance to the Jester's Cell", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4253": { - "id": 4253, - "name": "Entrance to the Jester's Cell", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4254": { - "id": 4254, - "name": "Jester's Prison Hallway", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4255": { - "id": 4255, - "name": "Jester's Prison Entryway", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4256": { - "id": 4256, - "name": "Jester Recall 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4257": { - "id": 4257, - "name": "Jester Recall 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4258": { - "id": 4258, - "name": "Jester Recall 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4259": { - "id": 4259, - "name": "Jester Recall 4", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4260": { - "id": 4260, - "name": "Jester Recall 5", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4261": { - "id": 4261, - "name": "Jester Recall 6", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4262": { - "id": 4262, - "name": "Jester Recall 7", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4263": { - "id": 4263, - "name": "Jester Recall 8", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4264": { - "id": 4264, - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4265": { - "id": 4265, - "name": "Arcane Pyramid", - "description": "Shoots a pyramid at the target. The pyramid does 130-185 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4266": { - "id": 4266, - "name": "Blood Bolt", - "description": "Shoots a bolt of blood at your target that does 100-200 points of health damage.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4267": { - "id": 4267, - "name": "Cow", - "description": "Shoots a Cow at your target. Cow does 100-200 points of Bludgeoning damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4268": { - "id": 4268, - "name": "Fireworks", - "description": "Shoots fireworks at your target. The fireworks do 100-200 points of Fire damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4269": { - "id": 4269, - "name": "Present", - "description": "Shoots a Present at your target. Present does 100-200 points of slashing damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4270": { - "id": 4270, - "name": "Table", - "description": "Shoots a Table at your target. Table does 100-200 points of piercing damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4271": { - "id": 4271, - "name": "Acid Whip", - "description": "Sends a line of eight balls of acid towards the target. Each ball does 60-120 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "229", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4272": { - "id": 4272, - "name": "Razor Whip", - "description": "Sends a line of eight whirling blades towards the target. Each ball does 60-120 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "235", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4273": { - "id": 4273, - "name": "Spray of Coins", - "description": "Sends a wall of thirty coins towards the target. Each coin does 1-30 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "230", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4274": { - "id": 4274, - "name": "Flame Whip", - "description": "Sends a line of eight balls of fire towards the target. Each ball does 60-120 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "233", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4275": { - "id": 4275, - "name": "Electric Whip", - "description": "Sends a line of eight bolts of lightning towards the target. Each ball does 60-120 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "232", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4276": { - "id": 4276, - "name": "Jester's Malevolent Eye", - "description": "Shoots a beam of light at your target. It does 50-150 points of undefined damage.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4277": { - "id": 4277, - "name": "Jester's Prison Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4278": { - "id": 4278, - "name": "Rytheran's Library Portal Sending", - "description": "This spell sends the player to Rytheran's Library.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4280": { - "id": 4280, - "name": "Deck of Hands Favor", - "description": "Increases the target's Coordination by 15 points. This spell stacks with normal spells and cantrip spells.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "600", - "mana": "10", - "family": "413", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4281": { - "id": 4281, - "name": "Deck of Eyes Favor", - "description": "Increases the target's Focus by 15 points. This spell stacks with normal spells and cantrip spells.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "600", - "mana": "10", - "family": "415", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4282": { - "id": 4282, - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4283": { - "id": 4283, - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "122", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "4284": { - "id": 4284, - "name": "Harm Self", - "description": "Drains 100000 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4285": { - "id": 4285, - "name": "Harm Self", - "description": "Drains 900000 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4286": { - "id": 4286, - "name": "Harm Self", - "description": "Drains 300000 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4287": { - "id": 4287, - "name": "Harm Self", - "description": "Drains 700000 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4288": { - "id": 4288, - "name": "Harm Self", - "description": "Drains 500000 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4289": { - "id": 4289, - "name": "Access the Messenger's Sanctuary", - "description": "Transports the target to the hidden cavern where Falatacot messengers tend to hide.", - "school": "Item Enchantment", - "difficulty": "1000", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4290": { - "id": 4290, - "name": "Incantation of Armor Other", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4291": { - "id": 4291, - "name": "Incantation of Armor Self", - "description": "Increases the caster's natural armor by 250 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4292": { - "id": 4292, - "name": "Incantation of Bafflement Other", - "description": "Decreases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "4293": { - "id": 4293, - "name": "Incantation of Bafflement Self", - "description": "Decreases the caster's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "10", - "speed": "0.15", - "target_effect": "17", - "target_mask": "16" - }, - "4294": { - "id": 4294, - "name": "Incantation of Clumsiness Other", - "description": "Decreases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "4295": { - "id": 4295, - "name": "Incantation of Clumsiness Self", - "description": "Decreases the caster's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "8", - "speed": "0.15", - "target_effect": "9", - "target_mask": "16" - }, - "4296": { - "id": 4296, - "name": "Incantation of Coordination Other", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "4297": { - "id": 4297, - "name": "Incantation of Coordination Self", - "description": "Increases the caster's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "4298": { - "id": 4298, - "name": "Incantation of Endurance Other", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "4299": { - "id": 4299, - "name": "Incantation of Endurance Self", - "description": "Increases the caster's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "4300": { - "id": 4300, - "name": "Incantation of Enfeeble Other", - "description": "Drains 66-131 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "82", - "speed": "0.05", - "target_effect": "36", - "target_mask": "16" - }, - "4301": { - "id": 4301, - "name": "Incantation of Enfeeble Self", - "description": "Drains 50-100 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "82", - "speed": "0.15", - "target_effect": "36", - "target_mask": "16" - }, - "4302": { - "id": 4302, - "name": "Incantation of Feeblemind Other", - "description": "Decreases the target's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "4303": { - "id": 4303, - "name": "Incantation of Feeblemind Self", - "description": "Decreases the caster's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "4304": { - "id": 4304, - "name": "Incantation of Focus Other", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "4305": { - "id": 4305, - "name": "Incantation of Focus Self", - "description": "Increases the caster's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "4306": { - "id": 4306, - "name": "Incantation of Frailty Other", - "description": "Decreases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "4307": { - "id": 4307, - "name": "Incantation of Frailty Self", - "description": "Decreases the caster's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "4", - "speed": "0.15", - "target_effect": "11", - "target_mask": "16" - }, - "4308": { - "id": 4308, - "name": "Incantation of Harm Other", - "description": "Drains 50-95 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4309": { - "id": 4309, - "name": "Incantation of Harm Self", - "description": "Drains 48-90 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4310": { - "id": 4310, - "name": "Incantation of Heal Other", - "description": "Restores 90-180 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "79", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "4311": { - "id": 4311, - "name": "Incantation of Heal Self", - "description": "Restores 90-180 points of the caster's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "67", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "4312": { - "id": 4312, - "name": "Incantation of Imperil Other", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "4313": { - "id": 4313, - "name": "Incantation of Imperil Self", - "description": "Decreases the caster's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "4314": { - "id": 4314, - "name": "Incantation of Mana Boost Other", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "4315": { - "id": 4315, - "name": "Incantation of Mana Boost Self", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "83", - "speed": "0.15", - "target_effect": "33", - "target_mask": "16" - }, - "4316": { - "id": 4316, - "name": "Incantation of Mana Drain Other", - "description": "Drains 52-95 points of the target's Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "4317": { - "id": 4317, - "name": "Incantation of Mana Drain Self", - "description": "Drains 48-90 points of the caster's Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "84", - "speed": "0.15", - "target_effect": "34", - "target_mask": "16" - }, - "4318": { - "id": 4318, - "name": "Incantation of Quickness Other", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "4319": { - "id": 4319, - "name": "Incantation of Quickness Self", - "description": "Increases the caster's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "4320": { - "id": 4320, - "name": "Incantation of Revitalize Other", - "description": "Restores 125-250 points of the target's Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "81", - "speed": "0.05", - "target_effect": "35", - "target_mask": "16" - }, - "4321": { - "id": 4321, - "name": "Incantation of Revitalize Self", - "description": "Restores 125-250 points of the caster's Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "81", - "speed": "0.15", - "target_effect": "35", - "target_mask": "16" - }, - "4322": { - "id": 4322, - "name": "Incantation of Slowness Other", - "description": "Decreases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "4323": { - "id": 4323, - "name": "Incantation of Slowness Self", - "description": "Decreases the caster's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "4324": { - "id": 4324, - "name": "Incantation of Strength Other", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "4325": { - "id": 4325, - "name": "Incantation of Strength Self", - "description": "Increases the caster's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "4326": { - "id": 4326, - "name": "Incantation of Weakness Other", - "description": "Decreases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "2", - "speed": "0.15", - "target_effect": "7", - "target_mask": "16" - }, - "4327": { - "id": 4327, - "name": "Incantation of Weakness Self", - "description": "Decrease the caster's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "2", - "speed": "0.2", - "target_effect": "7", - "target_mask": "16" - }, - "4328": { - "id": 4328, - "name": "Incantation of Willpower Other", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "4329": { - "id": 4329, - "name": "Incantation of Willpower Self", - "description": "Increases the caster's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "4330": { - "id": 4330, - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4331": { - "id": 4331, - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all negative enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4332": { - "id": 4332, - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4333": { - "id": 4333, - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all positive enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4334": { - "id": 4334, - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels all enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4335": { - "id": 4335, - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "4336": { - "id": 4336, - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4337": { - "id": 4337, - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4338": { - "id": 4338, - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4339": { - "id": 4339, - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4340": { - "id": 4340, - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4341": { - "id": 4341, - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "147", - "target_mask": "16" - }, - "4342": { - "id": 4342, - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 8 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "4343": { - "id": 4343, - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "4344": { - "id": 4344, - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "68", - "target_mask": "16" - }, - "4345": { - "id": 4345, - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4346": { - "id": 4346, - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "320", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4347": { - "id": 4347, - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4348": { - "id": 4348, - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4349": { - "id": 4349, - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4350": { - "id": 4350, - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "146", - "target_mask": "16" - }, - "4351": { - "id": 4351, - "name": "Incantation of Greater Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "7", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4352": { - "id": 4352, - "name": "Incantation of Greater Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "3", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "4353": { - "id": 4353, - "name": "Incantation of Greater Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "9", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "4354": { - "id": 4354, - "name": "Incantation of Greater Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "5", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "4355": { - "id": 4355, - "name": "Incantation of Greater Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "11", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "4356": { - "id": 4356, - "name": "Incantation of Greater Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "1", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4357": { - "id": 4357, - "name": "Incantation of Greater Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "4358": { - "id": 4358, - "name": "Incantation of Greater Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "4359": { - "id": 4359, - "name": "Incantation of Greater Flange Ward", - "description": "Reduces damage all fellowship members from Bludgeoning by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4360": { - "id": 4360, - "name": "Incantation of Greater Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "4361": { - "id": 4361, - "name": "Incantation of Greater Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "4362": { - "id": 4362, - "name": "Incantation of Greater Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "4363": { - "id": 4363, - "name": "Incantation of Greater Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "4364": { - "id": 4364, - "name": "Incantation of Greater Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "4365": { - "id": 4365, - "name": "Incantation of Greater Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "4366": { - "id": 4366, - "name": "Incantation of Greater Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "4367": { - "id": 4367, - "name": "Incantation of Greater Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "43", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4368": { - "id": 4368, - "name": "Incantation of Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "39", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "4369": { - "id": 4369, - "name": "Incantation of Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "37", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4370": { - "id": 4370, - "name": "Incantation of Greater Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "45", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4371": { - "id": 4371, - "name": "Incantation of Greater Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "47", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4372": { - "id": 4372, - "name": "Incantation of Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "41", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "4373": { - "id": 4373, - "name": "Incantation of Greater Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "51", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4374": { - "id": 4374, - "name": "Incantation of Greater Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "49", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4375": { - "id": 4375, - "name": "Incantation of Blossom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4376": { - "id": 4376, - "name": "Incantation of Blossom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4377": { - "id": 4377, - "name": "Incantation of Blossom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4378": { - "id": 4378, - "name": "Incantation of Blossom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4379": { - "id": 4379, - "name": "Incantation of Blossom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4380": { - "id": 4380, - "name": "Incantation of Blossom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4381": { - "id": 4381, - "name": "Incantation of Blossom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4382": { - "id": 4382, - "name": "Incantation of Blossom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4383": { - "id": 4383, - "name": "Incantation of Blossom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4384": { - "id": 4384, - "name": "Incantation of Blossom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4385": { - "id": 4385, - "name": "Incantation of Blossom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4386": { - "id": 4386, - "name": "Incantation of Blossom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4387": { - "id": 4387, - "name": "Incantation of Blossom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4388": { - "id": 4388, - "name": "Incantation of Blossom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4389": { - "id": 4389, - "name": "Incantation of Blossom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4390": { - "id": 4390, - "name": "Incantation of Blossom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "409", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4391": { - "id": 4391, - "name": "Incantation of Acid Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "162", - "speed": "0.15", - "target_effect": "63", - "target_mask": "6" - }, - "4392": { - "id": 4392, - "name": "Incantation of Acid Lure", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "163", - "speed": "0.15", - "target_effect": "64", - "target_mask": "6" - }, - "4393": { - "id": 4393, - "name": "Incantation of Blade Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "174", - "speed": "0.15", - "target_effect": "61", - "target_mask": "6" - }, - "4394": { - "id": 4394, - "name": "Incantation of Blade Lure", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "175", - "speed": "0.15", - "target_effect": "62", - "target_mask": "6" - }, - "4395": { - "id": 4395, - "name": "Aura of Incantation of Blood Drinker Self", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "4396": { - "id": 4396, - "name": "Incantation of Blood Loather", - "description": "Decreases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "257" - }, - "4397": { - "id": 4397, - "name": "Incantation of Bludgeon Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "164", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "4398": { - "id": 4398, - "name": "Incantation of Bludgeon Lure", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "165", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "4399": { - "id": 4399, - "name": "Incantation of Brittlemail", - "description": "Worsens a shield or piece of armor's armor value by 300 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "161", - "speed": "0.15", - "target_effect": "143", - "target_mask": "6" - }, - "4400": { - "id": 4400, - "name": "Aura of Incantation of Defender Self", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 20%.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "4401": { - "id": 4401, - "name": "Incantation of Flame Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "170", - "speed": "0.15", - "target_effect": "57", - "target_mask": "6" - }, - "4402": { - "id": 4402, - "name": "Incantation of Flame Lure", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "171", - "speed": "0.15", - "target_effect": "58", - "target_mask": "6" - }, - "4403": { - "id": 4403, - "name": "Incantation of Frost Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "166", - "speed": "0.15", - "target_effect": "65", - "target_mask": "6" - }, - "4404": { - "id": 4404, - "name": "Incantation of Frost Lure", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "167", - "speed": "0.15", - "target_effect": "66", - "target_mask": "6" - }, - "4405": { - "id": 4405, - "name": "Aura of Incantation of Heart Seeker Self", - "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "4406": { - "id": 4406, - "name": "Incantation of Hermetic Void", - "description": "Decreases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "194", - "speed": "0.15", - "target_effect": "68", - "target_mask": "32768" - }, - "4407": { - "id": 4407, - "name": "Incantation of Impenetrability", - "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "160", - "speed": "0.15", - "target_effect": "142", - "target_mask": "6" - }, - "4408": { - "id": 4408, - "name": "Incantation of Leaden Weapon", - "description": "Worsens a weapon's speed by 80 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "159", - "speed": "0.15", - "target_effect": "64", - "target_mask": "257" - }, - "4409": { - "id": 4409, - "name": "Incantation of Lightning Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "168", - "speed": "0.15", - "target_effect": "67", - "target_mask": "6" - }, - "4410": { - "id": 4410, - "name": "Incantation of Lightning Lure", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "169", - "speed": "0.15", - "target_effect": "68", - "target_mask": "6" - }, - "4411": { - "id": 4411, - "name": "Incantation of Lure Blade", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 20%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "157", - "speed": "0.15", - "target_effect": "62", - "target_mask": "33025" - }, - "4412": { - "id": 4412, - "name": "Incantation of Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "172", - "speed": "0.15", - "target_effect": "59", - "target_mask": "6" - }, - "4413": { - "id": 4413, - "name": "Incantation of Piercing Lure", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 200%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "173", - "speed": "0.15", - "target_effect": "60", - "target_mask": "6" - }, - "4414": { - "id": 4414, - "name": "Aura of Incantation of Spirit Drinker Self", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "4415": { - "id": 4415, - "name": "Incantation of Spirit Loather", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "155", - "speed": "0.15", - "target_effect": "58", - "target_mask": "32768" - }, - "4416": { - "id": 4416, - "name": "Incantation of Strengthen Lock", - "description": "Increases a lock's resistance to picking by 250 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "192", - "speed": "0.15", - "target_effect": "59", - "target_mask": "640" - }, - "4417": { - "id": 4417, - "name": "Aura of Incantation of Swift Killer Self", - "description": "Improves a weapon's speed by 80 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "4418": { - "id": 4418, - "name": "Aura of Incantation of Hermetic Link Self", - "description": "Increases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "4419": { - "id": 4419, - "name": "Incantation of Turn Blade", - "description": "Decreases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "153", - "speed": "0.15", - "target_effect": "60", - "target_mask": "257" - }, - "4420": { - "id": 4420, - "name": "Incantation of Weaken Lock", - "description": "Decreases a lock's resistance to picking by 250 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "193", - "speed": "0.15", - "target_effect": "60", - "target_mask": "640" - }, - "4421": { - "id": 4421, - "name": "Incantation of Acid Arc", - "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4422": { - "id": 4422, - "name": "Incantation of Blade Arc", - "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4423": { - "id": 4423, - "name": "Incantation of Flame Arc", - "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4424": { - "id": 4424, - "name": "Incantation of Force Arc", - "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4425": { - "id": 4425, - "name": "Incantation of Frost Arc", - "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4426": { - "id": 4426, - "name": "Incantation of Lightning Arc", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4427": { - "id": 4427, - "name": "Incantation of Shock Arc", - "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4428": { - "id": 4428, - "name": "Incantation of Martyr's Hecatomb", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4429": { - "id": 4429, - "name": "Incantation of Martyr's Blight", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "84", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4430": { - "id": 4430, - "name": "Incantation of Martyr's Tenacity", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "82", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4431": { - "id": 4431, - "name": "Incantation of Acid Blast", - "description": "Shoots five streams of acid outward from the caster. Each stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4432": { - "id": 4432, - "name": "Incantation of Acid Streak", - "description": "Sends a stream of acid streaking towards the target. The stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4433": { - "id": 4433, - "name": "Incantation of Acid Stream", - "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4434": { - "id": 4434, - "name": "Incantation of Acid Volley", - "description": "Shoots five streams of acid toward the target. Each stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4435": { - "id": 4435, - "name": "Incantation of Blade Blast", - "description": "Shoots five whirling blades outward from the caster. Each blade does 47-94 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "137", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4436": { - "id": 4436, - "name": "Incantation of Blade Volley", - "description": "Shoots five whirling blades toward the target. Each blade does 47-94 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "213", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4437": { - "id": 4437, - "name": "Incantation of Bludgeoning Volley", - "description": "Shoots five shock waves toward the target. Each wave does 47-94 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "208", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4438": { - "id": 4438, - "name": "Incantation of Flame Blast", - "description": "Shoots five bolts of flame outward from the caster. Each bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4439": { - "id": 4439, - "name": "Incantation of Flame Bolt", - "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4440": { - "id": 4440, - "name": "Incantation of Flame Streak", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "247", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4441": { - "id": 4441, - "name": "Incantation of Flame Volley", - "description": "Shoots five bolts of flame toward the target. Each bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "211", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4442": { - "id": 4442, - "name": "Incantation of Force Blast", - "description": "Shoots five force bolts outward from the caster. Each bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4443": { - "id": 4443, - "name": "Incantation of Force Bolt", - "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4444": { - "id": 4444, - "name": "Incantation of Force Streak", - "description": "Sends a bolt of force streaking towards the target. The bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "248", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4445": { - "id": 4445, - "name": "Incantation of Force Volley", - "description": "Shoots five bolts of force toward the target. Each bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "212", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4446": { - "id": 4446, - "name": "Incantation of Frost Blast", - "description": "Shoots five bolts of frost outward from the caster. Each bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "133", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "4447": { - "id": 4447, - "name": "Incantation of Frost Bolt", - "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "119", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4448": { - "id": 4448, - "name": "Incantation of Frost Streak", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "245", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4449": { - "id": 4449, - "name": "Incantation of Frost Volley", - "description": "Shoots five bolts of frost toward the target. Each bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "209", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4450": { - "id": 4450, - "name": "Incantation of Lightning Blast", - "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 47-94 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4451": { - "id": 4451, - "name": "Incantation of Lightning Bolt", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4452": { - "id": 4452, - "name": "Incantation of Lightning Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 47-94 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4453": { - "id": 4453, - "name": "Incantation of Lightning Volley", - "description": "Shoots five bolts of lightning toward the target. Each bolt does 47-94 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "210", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4454": { - "id": 4454, - "name": "Incantation of Shock Blast", - "description": "Shoots five shock waves outward from the caster. Each wave does 47-94 points of damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "132", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4455": { - "id": 4455, - "name": "Incantation of Shock Wave", - "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "118", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4456": { - "id": 4456, - "name": "Incantation of Shock Wave Streak", - "description": "Sends a shock wave streaking towards the target. The wave does 47-94 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "244", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4457": { - "id": 4457, - "name": "Incantation of Whirling Blade", - "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "123", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4458": { - "id": 4458, - "name": "Incantation of Whirling Blade Streak", - "description": "Sends a magical blade streaking towards the target. The bolt does 47-94 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "249", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4459": { - "id": 4459, - "name": "Incantation of Acid Protection Other", - "description": "Reduces damage the target takes from acid by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "4460": { - "id": 4460, - "name": "Incantation of Acid Protection Self", - "description": "Reduces damage the caster takes from acid by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "4461": { - "id": 4461, - "name": "Incantation of Blade Protection Other", - "description": "Reduces damage the target takes from Slashing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "4462": { - "id": 4462, - "name": "Incantation of Blade Protection Self", - "description": "Reduces damage the caster takes from Slashing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "4463": { - "id": 4463, - "name": "Incantation of Bludgeoning Protection Other", - "description": "Reduces damage the target takes from Bludgeoning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4464": { - "id": 4464, - "name": "Incantation of Bludgeoning Protection Self", - "description": "Reduces damage the caster takes from Bludgeoning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "4465": { - "id": 4465, - "name": "Incantation of Cold Protection Other", - "description": "Reduces damage the target takes from Cold by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "4466": { - "id": 4466, - "name": "Incantation of Cold Protection Self", - "description": "Reduces damage the caster takes from Cold by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "4467": { - "id": 4467, - "name": "Incantation of Fire Protection Other", - "description": "Reduces damage the target takes from fire by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "4468": { - "id": 4468, - "name": "Incantation of Fire Protection Self", - "description": "Reduces damage the caster takes from Fire by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "4469": { - "id": 4469, - "name": "Incantation of Lightning Protection Other", - "description": "Reduces damage the target takes from Lightning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "4470": { - "id": 4470, - "name": "Incantation of Lightning Protection Self", - "description": "Reduces damage the caster takes from Lightning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "4471": { - "id": 4471, - "name": "Incantation of Piercing Protection Other", - "description": "Reduces damage the target takes from Piercing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "4472": { - "id": 4472, - "name": "Incantation of Piercing Protection Self", - "description": "Reduces damage the caster takes from Piercing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "4473": { - "id": 4473, - "name": "Incantation of Acid Vulnerability Other", - "description": "Increases damage the target takes from acid by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "4474": { - "id": 4474, - "name": "Incantation of Acid Vulnerability Self", - "description": "Increases damage the caster takes from acid by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "4475": { - "id": 4475, - "name": "Incantation of Blade Vulnerability Other", - "description": "Increases damage the target takes from Slashing by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "4476": { - "id": 4476, - "name": "Incantation of Blade Vulnerability Self", - "description": "Increases damage the caster takes from Slashing by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "114", - "speed": "0.15", - "target_effect": "48", - "target_mask": "16" - }, - "4477": { - "id": 4477, - "name": "Incantation of Bludgeoning Vulnerability Other", - "description": "Increases damage the target takes from Bludgeoning by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "4478": { - "id": 4478, - "name": "Incantation of Bludgeoning Vulnerability Self", - "description": "Increases damage the caster takes from Bludgeoning by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "104", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "4479": { - "id": 4479, - "name": "Incantation of Cold Vulnerability Other", - "description": "Increases damage the target takes from Cold by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "4480": { - "id": 4480, - "name": "Incantation of Cold Vulnerability Self", - "description": "Increases damage the caster takes from Cold by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "106", - "speed": "0.15", - "target_effect": "52", - "target_mask": "16" - }, - "4481": { - "id": 4481, - "name": "Incantation of Fire Vulnerability Other", - "description": "Increases damage the target takes from Fire by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "4482": { - "id": 4482, - "name": "Incantation of Fire Vulnerability Self", - "description": "Increases damage the caster takes from Fire by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "4483": { - "id": 4483, - "name": "Incantation of Lightning Vulnerability Other", - "description": "Increases damage the target takes from Lightning by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "4484": { - "id": 4484, - "name": "Incantation of Lightning Vulnerability Self", - "description": "Increases damage the caster takes from Lightning by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "108", - "speed": "0.15", - "target_effect": "54", - "target_mask": "16" - }, - "4485": { - "id": 4485, - "name": "Incantation of Piercing Vulnerability Other", - "description": "Increases damage the target takes from Piercing by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "4486": { - "id": 4486, - "name": "Incantation of Piercing Vulnerability Self", - "description": "Increases damage the caster takes from Piercing by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "112", - "speed": "0.15", - "target_effect": "46", - "target_mask": "16" - }, - "4487": { - "id": 4487, - "name": "Incantation of Exhaustion Other", - "description": "Decreases the rate at which the target regains Stamina by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "4488": { - "id": 4488, - "name": "Incantation of Exhaustion Self", - "description": "Decreases the rate at which the caster regains Stamina by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "96", - "speed": "0.15", - "target_effect": "42", - "target_mask": "16" - }, - "4489": { - "id": 4489, - "name": "Incantation of Fester Other", - "description": "Decrease target's natural healing rate by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "4490": { - "id": 4490, - "name": "Incantation of Fester Self", - "description": "Decrease caster's natural healing rate by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "94", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "4491": { - "id": 4491, - "name": "Incantation of Mana Depletion Other", - "description": "Decreases target's natural mana rate by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "4492": { - "id": 4492, - "name": "Incantation of Mana Depletion Self", - "description": "Decreases caster's natural mana rate by 75%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "98", - "speed": "0.15", - "target_effect": "40", - "target_mask": "16" - }, - "4493": { - "id": 4493, - "name": "Incantation of Mana Renewal Other", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "4494": { - "id": 4494, - "name": "Incantation of Mana Renewal Self", - "description": "Increases the caster's natural mana rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "4495": { - "id": 4495, - "name": "Incantation of Regeneration Other", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "4496": { - "id": 4496, - "name": "Incantation of Regeneration Self", - "description": "Increase caster's natural healing rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "4497": { - "id": 4497, - "name": "Incantation of Rejuvenation Other", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "4498": { - "id": 4498, - "name": "Incantation of Rejuvenation Self", - "description": "Increases the rate at which the caster regains Stamina by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "4499": { - "id": 4499, - "name": "Incantation of Arcanum Salvaging Self", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4500": { - "id": 4500, - "name": "Incantation of Arcanum Enlightenment", - "description": "Increases the target's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4501": { - "id": 4501, - "name": "Incantation of Nuhmudira's Wisdom", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4502": { - "id": 4502, - "name": "Incantation of Nuhmudira Enlightenment", - "description": "Increases the target's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4503": { - "id": 4503, - "name": "Incantation of Alchemy Ineptitude Other", - "description": "Decreases the target's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4504": { - "id": 4504, - "name": "Incantation of Alchemy Ineptitude Self", - "description": "Decreases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "220", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4505": { - "id": 4505, - "name": "Incantation of Alchemy Mastery Other", - "description": "Increases the target's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4506": { - "id": 4506, - "name": "Incantation of Alchemy Mastery Self", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "221", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4507": { - "id": 4507, - "name": "Incantation of Arcane Benightedness Other", - "description": "Decreases the target's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4508": { - "id": 4508, - "name": "Incantation of Arcane Benightedness Self", - "description": "Decreases the caster's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "54", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4509": { - "id": 4509, - "name": "Incantation of Arcane Enlightenment Other", - "description": "Increases the target's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4510": { - "id": 4510, - "name": "Incantation of Arcane Enlightenment Self", - "description": "Increases the caster's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "53", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4511": { - "id": 4511, - "name": "Incantation of Armor Tinkering Expertise Other", - "description": "Increases the target's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4512": { - "id": 4512, - "name": "Incantation of Armor Tinkering Expertise Self", - "description": "Increases the caster's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "55", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4513": { - "id": 4513, - "name": "Incantation of Armor Tinkering Ignorance Other", - "description": "Decreases the target's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4514": { - "id": 4514, - "name": "Incantation of Armor Tinkering Ignorance Self", - "description": "Decreases the caster's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "56", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4515": { - "id": 4515, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4516": { - "id": 4516, - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4517": { - "id": 4517, - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4518": { - "id": 4518, - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4519": { - "id": 4519, - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4520": { - "id": 4520, - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4521": { - "id": 4521, - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4522": { - "id": 4522, - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4523": { - "id": 4523, - "name": "Incantation of Cooking Ineptitude Other", - "description": "Decreases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4524": { - "id": 4524, - "name": "Incantation of Cooking Ineptitude Self", - "description": "Decreases the caster's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "217", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4525": { - "id": 4525, - "name": "Incantation of Cooking Mastery Other", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4526": { - "id": 4526, - "name": "Incantation of Cooking Mastery Self", - "description": "Increases the caster's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "216", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4527": { - "id": 4527, - "name": "Incantation of Creature Enchantment Ineptitude Other", - "description": "Decreases the target's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4528": { - "id": 4528, - "name": "Incantation of Creature Enchantment Ineptitude Self", - "description": "Decreases the caster's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "44", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4529": { - "id": 4529, - "name": "Incantation of Creature Enchantment Mastery Other", - "description": "Increases the target's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4530": { - "id": 4530, - "name": "Incantation of Creature Enchantment Mastery Self", - "description": "Increases the caster's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "43", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4531": { - "id": 4531, - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4532": { - "id": 4532, - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4533": { - "id": 4533, - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4534": { - "id": 4534, - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4535": { - "id": 4535, - "name": "Incantation of Finesse Weapon Ineptitude Other", - "description": "Decreases the target's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4536": { - "id": 4536, - "name": "Incantation of Finesse Weapon Ineptitude Self", - "description": "Decreases the caster's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "24", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4537": { - "id": 4537, - "name": "Incantation of Finesse Weapon Mastery Other", - "description": "Increases the target's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4538": { - "id": 4538, - "name": "Incantation of Finesse Weapon Mastery Self", - "description": "Increases the caster's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "23", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4539": { - "id": 4539, - "name": "Incantation of Deception Ineptitude Other", - "description": "Decreases the target's Deception skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4540": { - "id": 4540, - "name": "Incantation of Deception Ineptitude Self", - "description": "Decreases the caster's Deception skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "66", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4541": { - "id": 4541, - "name": "Incantation of Deception Mastery Other", - "description": "Increases the target's Deception skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4542": { - "id": 4542, - "name": "Incantation of Deception Mastery Self", - "description": "Increases the caster's Deception skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "65", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4543": { - "id": 4543, - "name": "Incantation of Defenselessness Other", - "description": "Decreases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4544": { - "id": 4544, - "name": "Incantation of Defenselessness Self", - "description": "Decreases the caster's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "40", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4545": { - "id": 4545, - "name": "Incantation of Faithlessness Other", - "description": "Decreases the target's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4546": { - "id": 4546, - "name": "Incantation of Faithlessness Self", - "description": "Decreases the caster's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "76", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4547": { - "id": 4547, - "name": "Incantation of Fealty Other", - "description": "Increases the target's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4548": { - "id": 4548, - "name": "Incantation of Fealty Self", - "description": "Increases the caster's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "75", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4549": { - "id": 4549, - "name": "Incantation of Fletching Ineptitude Other", - "description": "Decreases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4550": { - "id": 4550, - "name": "Incantation of Fletching Ineptitude Self", - "description": "Decreases the caster's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "219", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4551": { - "id": 4551, - "name": "Incantation of Fletching Mastery Other", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4552": { - "id": 4552, - "name": "Incantation of Fletching Mastery Self", - "description": "Increases the caster's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "218", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4553": { - "id": 4553, - "name": "Incantation of Healing Ineptitude Other", - "description": "Decreases the target's Healing skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4554": { - "id": 4554, - "name": "Incantation of Healing Ineptitude Self", - "description": "Decreases the caster's Healing skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "68", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4555": { - "id": 4555, - "name": "Incantation of Healing Mastery Other", - "description": "Increases the target's Healing skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4556": { - "id": 4556, - "name": "Incantation of Healing Mastery Self", - "description": "Increases the caster's Healing skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "67", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4557": { - "id": 4557, - "name": "Incantation of Impregnability Other", - "description": "Increases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4558": { - "id": 4558, - "name": "Incantation of Impregnability Self", - "description": "Increases the caster's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4559": { - "id": 4559, - "name": "Incantation of Invulnerability Other", - "description": "Increases the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4560": { - "id": 4560, - "name": "Incantation of Invulnerability Self", - "description": "Increases the caster's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4561": { - "id": 4561, - "name": "Incantation of Item Enchantment Ineptitude Other", - "description": "Decreases the target's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4562": { - "id": 4562, - "name": "Incantation of Item Enchantment Ineptitude Self", - "description": "Decreases the caster's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "46", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4563": { - "id": 4563, - "name": "Incantation of Item Enchantment Mastery Other", - "description": "Increases the target's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4564": { - "id": 4564, - "name": "Incantation of Item Enchantment Mastery Self", - "description": "Increases the caster's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "45", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4565": { - "id": 4565, - "name": "Incantation of Item Tinkering Expertise Other", - "description": "Increases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4566": { - "id": 4566, - "name": "Incantation of Item Tinkering Expertise Self", - "description": "Increases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4567": { - "id": 4567, - "name": "Incantation of Item Tinkering Ignorance Other", - "description": "Decreases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4568": { - "id": 4568, - "name": "Incantation of Item Tinkering Ignorance Self", - "description": "Decreases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4569": { - "id": 4569, - "name": "Incantation of Jumping Ineptitude Other", - "description": "Decreases the target's Jump skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "4570": { - "id": 4570, - "name": "Incantation of Jumping Ineptitude Self", - "description": "Decreases the caster's Jump skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "70", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "4571": { - "id": 4571, - "name": "Incantation of Jumping Mastery Other", - "description": "Increases the target's Jump skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "4572": { - "id": 4572, - "name": "Incantation of Jumping Mastery Self", - "description": "Increases the caster's Jump skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "69", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "4573": { - "id": 4573, - "name": "Incantation of Leaden Feet Other", - "description": "Decreases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "4574": { - "id": 4574, - "name": "Incantation of Leaden Feet Self", - "description": "Decreases the caster's Run skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "78", - "speed": "0.15", - "target_effect": "25", - "target_mask": "16" - }, - "4575": { - "id": 4575, - "name": "Incantation of Leadership Ineptitude Other", - "description": "Decreases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4576": { - "id": 4576, - "name": "Incantation of Leadership Ineptitude Self", - "description": "Decreases the caster's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "72", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4577": { - "id": 4577, - "name": "Incantation of Leadership Mastery Other", - "description": "Increases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4578": { - "id": 4578, - "name": "Incantation of Leadership Mastery Self", - "description": "Increases the caster's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "71", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4579": { - "id": 4579, - "name": "Incantation of Life Magic Ineptitude Other", - "description": "Decreases the target's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4580": { - "id": 4580, - "name": "Incantation of Life Magic Ineptitude Self", - "description": "Decreases the caster's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "48", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4581": { - "id": 4581, - "name": "Incantation of Life Magic Mastery Other", - "description": "Increases the target's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4582": { - "id": 4582, - "name": "Incantation of Life Magic Mastery Self", - "description": "Increases the caster's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "47", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4583": { - "id": 4583, - "name": "Incantation of Lockpick Ineptitude Other", - "description": "Decreases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4584": { - "id": 4584, - "name": "Incantation of Lockpick Ineptitude Self", - "description": "Decreases the caster's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "74", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "4585": { - "id": 4585, - "name": "Incantation of Lockpick Mastery Other", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4586": { - "id": 4586, - "name": "Incantation of Lockpick Mastery Self", - "description": "Increases the caster's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "73", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4587": { - "id": 4587, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4588": { - "id": 4588, - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4589": { - "id": 4589, - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4590": { - "id": 4590, - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4591": { - "id": 4591, - "name": "Incantation of Magic Item Tinkering Expertise Other", - "description": "Increases the target's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4592": { - "id": 4592, - "name": "Incantation of Magic Item Tinkering Expertise Self", - "description": "Increases the caster's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "59", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4593": { - "id": 4593, - "name": "Incantation of Magic Item Tinkering Ignorance Other", - "description": "Decreases the target's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4594": { - "id": 4594, - "name": "Incantation of Magic Item Tinkering Ignorance Self", - "description": "Decreases the caster's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "60", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4595": { - "id": 4595, - "name": "Incantation of Magic Resistance Other", - "description": "Increases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4596": { - "id": 4596, - "name": "Incantation of Magic Resistance Self", - "description": "Increases the caster's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "4597": { - "id": 4597, - "name": "Incantation of Magic Yield Other", - "description": "Decreases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4598": { - "id": 4598, - "name": "Incantation of Magic Yield Self", - "description": "Decreases the caster's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "42", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4599": { - "id": 4599, - "name": "Incantation of Mana Conversion Ineptitude Other", - "description": "Decreases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4600": { - "id": 4600, - "name": "Incantation of Mana Conversion Ineptitude Self", - "description": "Decreases the caster's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "52", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4601": { - "id": 4601, - "name": "Incantation of Mana Conversion Mastery Other", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4602": { - "id": 4602, - "name": "Incantation of Mana Conversion Mastery Self", - "description": "Increases the caster's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4603": { - "id": 4603, - "name": "Incantation of Monster Attunement Other", - "description": "Increases the target's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4604": { - "id": 4604, - "name": "Incantation of Monster Attunement Self", - "description": "Increases the caster's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "63", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4605": { - "id": 4605, - "name": "Incantation of Monster Unfamiliarity Other", - "description": "Decreases the target's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4606": { - "id": 4606, - "name": "Incantation of Monster Unfamiliarity Self", - "description": "Decreases the caster's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "64", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4607": { - "id": 4607, - "name": "Incantation of Person Attunement Other", - "description": "Increases the target's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4608": { - "id": 4608, - "name": "Incantation of Person Attunement Self", - "description": "Increases the caster's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "205", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4609": { - "id": 4609, - "name": "Incantation of Person Unfamiliarity Other", - "description": "Decreases the target's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4610": { - "id": 4610, - "name": "Incantation of Person Unfamiliarity Self", - "description": "Decreases the caster's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "206", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4611": { - "id": 4611, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4612": { - "id": 4612, - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4613": { - "id": 4613, - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4614": { - "id": 4614, - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4615": { - "id": 4615, - "name": "Incantation of Sprint Other", - "description": "Increases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "4616": { - "id": 4616, - "name": "Incantation of Sprint Self", - "description": "Increases the caster's Run skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "4617": { - "id": 4617, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4618": { - "id": 4618, - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4619": { - "id": 4619, - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4620": { - "id": 4620, - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4621": { - "id": 4621, - "name": "Incantation of Heavy Weapon Ineptitude Other", - "description": "Decreases the target's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4622": { - "id": 4622, - "name": "Incantation of Heavy Weapon Ineptitude Self", - "description": "Decreases the caster's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "32", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4623": { - "id": 4623, - "name": "Incantation of Heavy Weapon Mastery Other", - "description": "Increases the target's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4624": { - "id": 4624, - "name": "Incantation of Heavy Weapon Mastery Self", - "description": "Increases the caster's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "31", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4625": { - "id": 4625, - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4626": { - "id": 4626, - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "20", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4627": { - "id": 4627, - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4628": { - "id": 4628, - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4629": { - "id": 4629, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4630": { - "id": 4630, - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4631": { - "id": 4631, - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "4632": { - "id": 4632, - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "18", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "4633": { - "id": 4633, - "name": "Incantation of Vulnerability Other", - "description": "Decrease the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4634": { - "id": 4634, - "name": "Incantation of Vulnerability Self", - "description": "Decrease the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "38", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "4635": { - "id": 4635, - "name": "Incantation of War Magic Ineptitude Other", - "description": "Decreases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4636": { - "id": 4636, - "name": "Incantation of War Magic Ineptitude Self", - "description": "Decreases the caster's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "50", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "4637": { - "id": 4637, - "name": "Incantation of War Magic Mastery Other", - "description": "Increases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4638": { - "id": 4638, - "name": "Incantation of War Magic Mastery Self", - "description": "Increases the caster's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4639": { - "id": 4639, - "name": "Incantation of Weapon Tinkering Expertise Other", - "description": "Increases the target's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4640": { - "id": 4640, - "name": "Incantation of Weapon Tinkering Expertise Self", - "description": "Increases the caster's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "61", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "4641": { - "id": 4641, - "name": "Incantation of Weapon Tinkering Ignorance Other", - "description": "Decreases the target's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4642": { - "id": 4642, - "name": "Incantation of Weapon Tinkering Ignorance Self", - "description": "Decreases the caster's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "62", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "4643": { - "id": 4643, - "name": "Incantation of Drain Health Other", - "description": "Drains 60% of the target's Health and gives 35% of it to the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "68", - "family": "87", - "speed": "0.85", - "target_effect": "32", - "target_mask": "16" - }, - "4644": { - "id": 4644, - "name": "Incantation of Drain Mana Other", - "description": "Drains 60% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "68", - "family": "91", - "speed": "0.85", - "target_effect": "34", - "target_mask": "16" - }, - "4645": { - "id": 4645, - "name": "Incantation of Drain Stamina Other", - "description": "Drains 60% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "68", - "family": "89", - "speed": "0.85", - "target_effect": "36", - "target_mask": "16" - }, - "4646": { - "id": 4646, - "name": "Incantation of Health to Mana Other", - "description": "Drains one-half of the target's Health and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "4647": { - "id": 4647, - "name": "Incantation of Health to Mana Self", - "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "87", - "speed": "0.15", - "target_effect": "74", - "target_mask": "16" - }, - "4648": { - "id": 4648, - "name": "Incantation of Health to Stamina Other", - "description": "Drains one-half of the target's Health and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "4649": { - "id": 4649, - "name": "Incantation of Health to Stamina Self", - "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "87", - "speed": "0.15", - "target_effect": "73", - "target_mask": "16" - }, - "4650": { - "id": 4650, - "name": "Incantation of Infuse Health Other", - "description": "Drains one-quarter of the caster's Health and gives 200% of that to the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "88", - "speed": "0.75", - "target_effect": "31", - "target_mask": "16" - }, - "4651": { - "id": 4651, - "name": "Incantation of Infuse Mana Other", - "description": "Drains one-quarter of the caster's Mana and gives 200% of that to the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "92", - "speed": "0.75", - "target_effect": "33", - "target_mask": "16" - }, - "4652": { - "id": 4652, - "name": "Incantation of Infuse Stamina Other", - "description": "Drains one-quarter of the caster's Stamina and gives 200% of that to the target.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "90", - "speed": "0.75", - "target_effect": "35", - "target_mask": "16" - }, - "4653": { - "id": 4653, - "name": "Incantation of Mana to Health Other", - "description": "Drains one-half of the target's Mana and gives 200% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "4654": { - "id": 4654, - "name": "Incantation of Mana to Health Self", - "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "91", - "speed": "0.15", - "target_effect": "77", - "target_mask": "16" - }, - "4655": { - "id": 4655, - "name": "Incantation of Mana to Stamina Other", - "description": "Drains one-half of the target's Mana and gives 200% of that to his/her stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "4656": { - "id": 4656, - "name": "Incantation of Mana to Stamina Self", - "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "91", - "speed": "0.15", - "target_effect": "78", - "target_mask": "16" - }, - "4657": { - "id": 4657, - "name": "Incantation of Stamina to Health Other", - "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "4658": { - "id": 4658, - "name": "Incantation of Stamina to Health Self", - "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "89", - "speed": "0.15", - "target_effect": "75", - "target_mask": "16" - }, - "4659": { - "id": 4659, - "name": "Incantation of Stamina to Mana Other", - "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "4660": { - "id": 4660, - "name": "Epic Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "381", - "speed": "0.01", - "target_effect": "63", - "target_mask": "6" - }, - "4661": { - "id": 4661, - "name": "Epic Blood Thirst", - "description": "Increases a weapon's damage value by 7 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "4662": { - "id": 4662, - "name": "Epic Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "383", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "4663": { - "id": 4663, - "name": "Epic Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "6", - "duration": "780", - "mana": "10", - "family": "329", - "speed": "0.01", - "target_effect": "61", - "target_mask": "33025" - }, - "4664": { - "id": 4664, - "name": "Epic Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "385", - "speed": "0.01", - "target_effect": "57", - "target_mask": "6" - }, - "4665": { - "id": 4665, - "name": "Epic Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "387", - "speed": "0.01", - "target_effect": "65", - "target_mask": "6" - }, - "4666": { - "id": 4666, - "name": "Epic Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "6", - "duration": "780", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "4667": { - "id": 4667, - "name": "Epic Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 60 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "391", - "speed": "0", - "target_effect": "142", - "target_mask": "6" - }, - "4668": { - "id": 4668, - "name": "Epic Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "393", - "speed": "0.01", - "target_effect": "59", - "target_mask": "6" - }, - "4669": { - "id": 4669, - "name": "Epic Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "395", - "speed": "0.01", - "target_effect": "61", - "target_mask": "6" - }, - "4670": { - "id": 4670, - "name": "Epic Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "4671": { - "id": 4671, - "name": "Epic Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "397", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "4672": { - "id": 4672, - "name": "Epic Swift Hunter", - "description": "Improves a weapon's speed by 30 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "399", - "speed": "0", - "target_effect": "63", - "target_mask": "257" - }, - "4673": { - "id": 4673, - "name": "Epic Acid Ward", - "description": "Reduces damage the target takes from Acid by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "285", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "4674": { - "id": 4674, - "name": "Epic Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "401", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4675": { - "id": 4675, - "name": "Epic Flame Ward", - "description": "Reduces damage the target takes from Fire by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "287", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "4676": { - "id": 4676, - "name": "Epic Frost Ward", - "description": "Reduces damage the target takes from Cold by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "4677": { - "id": 4677, - "name": "Epic Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "405", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "4678": { - "id": 4678, - "name": "Epic Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "403", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "4679": { - "id": 4679, - "name": "Epic Storm Ward", - "description": "Reduces damage the target takes from Lightning by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "20", - "duration": "780", - "mana": "10", - "family": "291", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "4680": { - "id": 4680, - "name": "Epic Health Gain", - "description": "Increases the rate at which the target regains Health by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "45", - "duration": "780", - "mana": "10", - "family": "257", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "4681": { - "id": 4681, - "name": "Epic Mana Gain", - "description": "Increases the rate at which the target regains Mana by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "45", - "duration": "780", - "mana": "10", - "family": "259", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "4682": { - "id": 4682, - "name": "Epic Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "45", - "duration": "780", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "4683": { - "id": 4683, - "name": "Epic Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "333", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4684": { - "id": 4684, - "name": "Epic Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "335", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4685": { - "id": 4685, - "name": "Epic Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "337", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4686": { - "id": 4686, - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4687": { - "id": 4687, - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4688": { - "id": 4688, - "name": "Epic Cooking Prowess", - "description": "Increases the target's Cooking skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "339", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4689": { - "id": 4689, - "name": "Epic Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4690": { - "id": 4690, - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4691": { - "id": 4691, - "name": "Epic Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4692": { - "id": 4692, - "name": "Epic Fealty", - "description": "Increases the target's Loyalty skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4693": { - "id": 4693, - "name": "Epic Fletching Prowess", - "description": "Increases the target's Fletching skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "347", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4694": { - "id": 4694, - "name": "Epic Healing Prowess", - "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "349", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4695": { - "id": 4695, - "name": "Epic Impregnability", - "description": "Increases the target's Missile Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "654", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "4696": { - "id": 4696, - "name": "Epic Invulnerability", - "description": "Increases the target's Melee Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "4697": { - "id": 4697, - "name": "Epic Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4698": { - "id": 4698, - "name": "Epic Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4699": { - "id": 4699, - "name": "Epic Jumping Prowess", - "description": "Increases the target's Jump skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "355", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "4700": { - "id": 4700, - "name": "Epic Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4701": { - "id": 4701, - "name": "Epic Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "359", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4702": { - "id": 4702, - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4703": { - "id": 4703, - "name": "Epic Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "361", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4704": { - "id": 4704, - "name": "Epic Magic Resistance", - "description": "Increases the target's Magic Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "4705": { - "id": 4705, - "name": "Epic Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4706": { - "id": 4706, - "name": "Epic Monster Attunement", - "description": "Increases the target's Assess Creature skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "365", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4707": { - "id": 4707, - "name": "Epic Person Attunement", - "description": "Increases the target's Assess Person skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "367", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4708": { - "id": 4708, - "name": "Epic Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "437", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4709": { - "id": 4709, - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4710": { - "id": 4710, - "name": "Epic Sprint", - "description": "Increases the target's Run skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "4711": { - "id": 4711, - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4712": { - "id": 4712, - "name": "Epic Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4713": { - "id": 4713, - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4714": { - "id": 4714, - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4715": { - "id": 4715, - "name": "Epic War Magic Aptitude", - "description": "Increases the target's War Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4716": { - "id": 4716, - "name": "Burning Curse", - "description": "Does 100-250 points of fire damage to the cursed target.", - "school": "Life Magic", - "difficulty": "350", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "4717": { - "id": 4717, - "name": "Expedient Return to Ulgrim", - "description": "Teleports target far above Ayan Baqur.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4718": { - "id": 4718, - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Waiting Area of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "difficulty": "999", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4719": { - "id": 4719, - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Outer Receiving Chamber of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "difficulty": "999", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4720": { - "id": 4720, - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Inner Receiving Chamber of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "difficulty": "999", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4721": { - "id": 4721, - "name": "Travel to the Ruins of Degar'Alesh", - "description": "Instantly transports the target to the Ruins of Degar'Alesh.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4722": { - "id": 4722, - "name": "Bleed Other", - "description": "Decreases target's health by 10 every heart beat.", - "school": "Life Magic", - "difficulty": "10", - "duration": "30", - "mana": "20", - "family": "530", - "speed": "0.01", - "target_effect": "100", - "target_mask": "16" - }, - "4723": { - "id": 4723, - "name": "Bleed Self", - "description": "Decreases caster's health by 10 every heart beat.", - "school": "Life Magic", - "difficulty": "10", - "duration": "30", - "mana": "20", - "family": "530", - "speed": "0.01", - "target_effect": "100", - "target_mask": "16" - }, - "4724": { - "id": 4724, - "name": "Gateway to Nyr'leha", - "description": "The Gateway to Nyr'leha. ancient city from beneath the waves.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4725": { - "id": 4725, - "name": "The Pit of Heretics", - "description": "Sends the target to the Sclavus Pit.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4726": { - "id": 4726, - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "30", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "4727": { - "id": 4727, - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "30", - "mana": "10", - "family": "536", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "4728": { - "id": 4728, - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "30", - "mana": "10", - "family": "537", - "speed": "0.01", - "target_effect": "7", - "target_mask": "16" - }, - "4729": { - "id": 4729, - "name": "Travel to the Catacombs of Tar'Kelyn", - "description": "Instantly transports the target to the Catacombs of Tar'Kelyn.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4730": { - "id": 4730, - "name": "Novice Duelist's Coordination", - "description": "Increases the target's Coordination by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "568", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4731": { - "id": 4731, - "name": "Apprentice Duelist's Coordination", - "description": "Increases the target's Coordination by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "568", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4732": { - "id": 4732, - "name": "Journeyman Duelist's Coordination", - "description": "Increases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "568", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4733": { - "id": 4733, - "name": "Master Duelist's Coordination", - "description": "Increases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "568", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4734": { - "id": 4734, - "name": "Novice Hero's Endurance", - "description": "Increases the target's Endurance by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "567", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4735": { - "id": 4735, - "name": "Apprentice Hero's Endurance", - "description": "Increases the target's Endurance by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "567", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4736": { - "id": 4736, - "name": "Journeyman Hero's Endurance", - "description": "Increases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "567", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4737": { - "id": 4737, - "name": "Master Hero's Endurance", - "description": "Increases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "567", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4738": { - "id": 4738, - "name": "Novice Sage's Focus", - "description": "Increases the target's Focus by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "570", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4739": { - "id": 4739, - "name": "Apprentice Sage's Focus", - "description": "Increases the target's Focus by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "570", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4740": { - "id": 4740, - "name": "Journeyman Sage's Focus", - "description": "Increases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "570", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4741": { - "id": 4741, - "name": "Master Sage's Focus", - "description": "Increases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "570", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4742": { - "id": 4742, - "name": "Novice Rover's Quickness", - "description": "Increases the target's Quickness by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "569", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4743": { - "id": 4743, - "name": "Apprentice Rover's Quickness", - "description": "Increases the target's Quickness by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "569", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4744": { - "id": 4744, - "name": "Journeyman Rover's Quickness", - "description": "Increases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "569", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4745": { - "id": 4745, - "name": "Master Rover's Quickness", - "description": "Increases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "569", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4746": { - "id": 4746, - "name": "Novice Brute's Strength", - "description": "Increases the target's Strength by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "566", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4747": { - "id": 4747, - "name": "Apprentice Brute's Strength", - "description": "Increases the target's Strength by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "566", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4748": { - "id": 4748, - "name": "Journeyman Brute's Strength", - "description": "Increases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "566", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4749": { - "id": 4749, - "name": "Master Brute's Strength", - "description": "Increases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "566", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4750": { - "id": 4750, - "name": "Novice Adherent's Willpower", - "description": "Increases the target's Self by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "571", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4751": { - "id": 4751, - "name": "Apprentice Adherent's Willpower", - "description": "Increases the target's Self by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "571", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4752": { - "id": 4752, - "name": "Journeyman Adherent's Willpower", - "description": "Increases the target's Self by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "571", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4753": { - "id": 4753, - "name": "Master Adherent's Willpower", - "description": "Increases the target's Self by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "571", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "4754": { - "id": 4754, - "name": "Apprentice Survivor's Health", - "description": "Increases maximum health by 3 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "572", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "4755": { - "id": 4755, - "name": "Journeyman Survivor's Health", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "572", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "4756": { - "id": 4756, - "name": "Apprentice Clairvoyant's Mana", - "description": "Increases maximum mana by 6 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "574", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "4757": { - "id": 4757, - "name": "Journeyman Clairvoyant's Mana", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "574", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "4758": { - "id": 4758, - "name": "Apprentice Tracker's Stamina", - "description": "Increases maximum stamina by 6 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "573", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "4759": { - "id": 4759, - "name": "Journeyman Tracker's Stamina", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "573", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "4760": { - "id": 4760, - "name": "Incidental Acid Resistance", - "description": "Reduces damage the target takes from Acid by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "581", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4761": { - "id": 4761, - "name": "Crude Acid Resistance", - "description": "Reduces damage the target takes from Acid by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "581", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4762": { - "id": 4762, - "name": "Effective Acid Resistance", - "description": "Reduces damage the target takes from Acid by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "581", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4763": { - "id": 4763, - "name": "Masterwork Acid Resistance", - "description": "Reduces damage the target takes from Acid by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "581", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4764": { - "id": 4764, - "name": "Incidental Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "578", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4765": { - "id": 4765, - "name": "Crude Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "578", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4766": { - "id": 4766, - "name": "Effective Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "578", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4767": { - "id": 4767, - "name": "Masterwork Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "578", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4768": { - "id": 4768, - "name": "Incidental Flame Resistance", - "description": "Reduces damage the target takes from Fire by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "580", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4769": { - "id": 4769, - "name": "Crude Flame Resistance", - "description": "Reduces damage the target takes from Fire by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "580", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4770": { - "id": 4770, - "name": "Effective Flame Resistance", - "description": "Reduces damage the target takes from Fire by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "580", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4771": { - "id": 4771, - "name": "Masterwork Flame Resistance", - "description": "Reduces damage the target takes from Fire by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "580", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4772": { - "id": 4772, - "name": "Incidental Frost Resistance", - "description": "Reduces damage the target takes from Cold by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "582", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4773": { - "id": 4773, - "name": "Crude Frost Resistance", - "description": "Reduces damage the target takes from Cold by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "582", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4774": { - "id": 4774, - "name": "Effective Frost Resistance", - "description": "Reduces damage the target takes from Cold by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "582", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4775": { - "id": 4775, - "name": "Masterwork Frost Resistance", - "description": "Reduces damage the target takes from Cold by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "582", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4776": { - "id": 4776, - "name": "Incidental Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "583", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4777": { - "id": 4777, - "name": "Crude Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "583", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4778": { - "id": 4778, - "name": "Effective Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "583", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4779": { - "id": 4779, - "name": "Masterwork Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "583", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4780": { - "id": 4780, - "name": "Incidental Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "579", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4781": { - "id": 4781, - "name": "Crude Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "579", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4782": { - "id": 4782, - "name": "Effective Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "579", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4783": { - "id": 4783, - "name": "Masterwork Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "579", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4784": { - "id": 4784, - "name": "Incidental Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "577", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4785": { - "id": 4785, - "name": "Crude Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 5%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "577", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4786": { - "id": 4786, - "name": "Effective Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 10%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "577", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4787": { - "id": 4787, - "name": "Masterwork Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 20%.", - "school": "Life Magic", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "577", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4788": { - "id": 4788, - "name": "Novice Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "559", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4789": { - "id": 4789, - "name": "Apprentice Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "559", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4790": { - "id": 4790, - "name": "Journeyman Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "559", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4791": { - "id": 4791, - "name": "Master Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "559", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4792": { - "id": 4792, - "name": "Novice Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "561", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4793": { - "id": 4793, - "name": "Apprentice Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "561", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4794": { - "id": 4794, - "name": "Journeyman Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "561", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4795": { - "id": 4795, - "name": "Master Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "561", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4796": { - "id": 4796, - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4797": { - "id": 4797, - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4798": { - "id": 4798, - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4799": { - "id": 4799, - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4800": { - "id": 4800, - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4801": { - "id": 4801, - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4802": { - "id": 4802, - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4803": { - "id": 4803, - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4804": { - "id": 4804, - "name": "Novice Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "556", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4805": { - "id": 4805, - "name": "Apprentice Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "556", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4806": { - "id": 4806, - "name": "Journeyman Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "556", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4807": { - "id": 4807, - "name": "Master Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "556", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4808": { - "id": 4808, - "name": "Novice Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "549", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4809": { - "id": 4809, - "name": "Apprentice Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "549", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4810": { - "id": 4810, - "name": "Journeyman Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "549", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4811": { - "id": 4811, - "name": "Master Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "549", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4812": { - "id": 4812, - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4813": { - "id": 4813, - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4814": { - "id": 4814, - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4815": { - "id": 4815, - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4816": { - "id": 4816, - "name": "Novice Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "540", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4817": { - "id": 4817, - "name": "Apprentice Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "540", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4818": { - "id": 4818, - "name": "Journeyman Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "540", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4819": { - "id": 4819, - "name": "Master Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "540", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4820": { - "id": 4820, - "name": "Novice Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "557", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4821": { - "id": 4821, - "name": "Apprentice Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "557", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4822": { - "id": 4822, - "name": "Journeyman Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "557", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4823": { - "id": 4823, - "name": "Master Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "557", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4824": { - "id": 4824, - "name": "Novice Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "548", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4825": { - "id": 4825, - "name": "Apprentice Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "548", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4826": { - "id": 4826, - "name": "Journeyman Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "548", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4827": { - "id": 4827, - "name": "Master Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "548", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4828": { - "id": 4828, - "name": "Novice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4829": { - "id": 4829, - "name": "Apprentice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4830": { - "id": 4830, - "name": "Journeyman Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4831": { - "id": 4831, - "name": "Master Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4832": { - "id": 4832, - "name": "Novice Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "576", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4833": { - "id": 4833, - "name": "Apprentice Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "576", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4834": { - "id": 4834, - "name": "Journeyman Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "576", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4835": { - "id": 4835, - "name": "Master Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "576", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4836": { - "id": 4836, - "name": "Novice Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "551", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4837": { - "id": 4837, - "name": "Apprentice Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "551", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4838": { - "id": 4838, - "name": "Journeyman Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "551", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4839": { - "id": 4839, - "name": "Master Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "551", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4840": { - "id": 4840, - "name": "Novice Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "558", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4841": { - "id": 4841, - "name": "Apprentice Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "558", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4842": { - "id": 4842, - "name": "Journeyman Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "558", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4843": { - "id": 4843, - "name": "Master Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "558", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4844": { - "id": 4844, - "name": "Yeoman's Loyalty", - "description": "Increases the target's Loyalty skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "565", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4845": { - "id": 4845, - "name": "Squire's Loyalty", - "description": "Increases the target's Loyalty skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "565", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4846": { - "id": 4846, - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4847": { - "id": 4847, - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4848": { - "id": 4848, - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4849": { - "id": 4849, - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4850": { - "id": 4850, - "name": "Novice Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "554", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4851": { - "id": 4851, - "name": "Apprentice Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "554", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4852": { - "id": 4852, - "name": "Journeyman Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "554", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4853": { - "id": 4853, - "name": "Master Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "554", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4854": { - "id": 4854, - "name": "Novice Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "564", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4855": { - "id": 4855, - "name": "Apprentice Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "564", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4856": { - "id": 4856, - "name": "Journeyman Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "564", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4857": { - "id": 4857, - "name": "Master Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "564", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4858": { - "id": 4858, - "name": "Novice Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "552", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4859": { - "id": 4859, - "name": "Apprentice Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "552", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4860": { - "id": 4860, - "name": "Journeyman Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "552", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4861": { - "id": 4861, - "name": "Master Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "552", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4862": { - "id": 4862, - "name": "Novice Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "553", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4863": { - "id": 4863, - "name": "Apprentice Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "553", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4864": { - "id": 4864, - "name": "Journeyman Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "553", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4865": { - "id": 4865, - "name": "Master Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "553", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4866": { - "id": 4866, - "name": "Novice Scavenger's Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "560", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4867": { - "id": 4867, - "name": "Apprentice Scavenger's Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "560", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4868": { - "id": 4868, - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4869": { - "id": 4869, - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4870": { - "id": 4870, - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4871": { - "id": 4871, - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4872": { - "id": 4872, - "name": "Novice Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "575", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4873": { - "id": 4873, - "name": "Apprentice Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "575", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4874": { - "id": 4874, - "name": "Journeyman Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "575", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4875": { - "id": 4875, - "name": "Master Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "575", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4876": { - "id": 4876, - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4877": { - "id": 4877, - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4878": { - "id": 4878, - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4879": { - "id": 4879, - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4880": { - "id": 4880, - "name": "Novice Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "538", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4881": { - "id": 4881, - "name": "Apprentice Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "538", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4882": { - "id": 4882, - "name": "Journeyman Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "538", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4883": { - "id": 4883, - "name": "Master Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "538", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4884": { - "id": 4884, - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4885": { - "id": 4885, - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4886": { - "id": 4886, - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4887": { - "id": 4887, - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "545", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4888": { - "id": 4888, - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4889": { - "id": 4889, - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4890": { - "id": 4890, - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4891": { - "id": 4891, - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "539", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4892": { - "id": 4892, - "name": "Novice Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "550", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4893": { - "id": 4893, - "name": "Apprentice Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "550", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4894": { - "id": 4894, - "name": "Journeyman Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "550", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4895": { - "id": 4895, - "name": "Master Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "550", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4896": { - "id": 4896, - "name": "Novice Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "562", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4897": { - "id": 4897, - "name": "Apprentice Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "562", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4898": { - "id": 4898, - "name": "Journeyman Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "562", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4899": { - "id": 4899, - "name": "Master Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "562", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "4900": { - "id": 4900, - "name": "Society Initiate's Blessing", - "description": "Increases all attributes by 3. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "3600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4901": { - "id": 4901, - "name": "Society Adept's Blessing", - "description": "Increases all attributes by 6. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "3600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4902": { - "id": 4902, - "name": "Society Knight's Blessing", - "description": "Increases all attributes by 9. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "9", - "duration": "3600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4903": { - "id": 4903, - "name": "Society Lord's Blessing", - "description": "Increases all attributes by 12. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "3600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4904": { - "id": 4904, - "name": "Society Master's Blessing", - "description": "Increases all attributes by 15. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "3600", - "mana": "10", - "family": "517", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "4905": { - "id": 4905, - "name": "Novice Challenger's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 30%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "2700", - "mana": "10", - "family": "555", - "speed": "0.01", - "target_effect": "41", - "target_mask": "16" - }, - "4906": { - "id": 4906, - "name": "Apprentice Challenger's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 100%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "2700", - "mana": "10", - "family": "555", - "speed": "0.01", - "target_effect": "41", - "target_mask": "16" - }, - "4907": { - "id": 4907, - "name": "Celestial Hand Stronghold Recall", - "description": "Sends the caster to the Celestial Hand Stronghold.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4908": { - "id": 4908, - "name": "Eldrytch Web Stronghold Recall", - "description": "Sends the caster to the Eldrytch Web Stronghold.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4909": { - "id": 4909, - "name": "Radiant Blood Stronghold Recall", - "description": "Sends the caster to the Radiant Blood Stronghold.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "4910": { - "id": 4910, - "name": "Raider Tag", - "description": "Drains 1-2 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "50", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "4911": { - "id": 4911, - "name": "Epic Armor", - "description": "Increases the target's natural armor by 60 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "60", - "duration": "780", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "4912": { - "id": 4912, - "name": "Epic Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "377", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "4913": { - "id": 4913, - "name": "Aerlinthe Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4914": { - "id": 4914, - "name": "Aerlinthe Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4915": { - "id": 4915, - "name": "A'mun Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4916": { - "id": 4916, - "name": "A'mun Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4917": { - "id": 4917, - "name": "Esper Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4918": { - "id": 4918, - "name": "Esper Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4919": { - "id": 4919, - "name": "Halaetan Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4920": { - "id": 4920, - "name": "Halaetan Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4921": { - "id": 4921, - "name": "Linvak Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4922": { - "id": 4922, - "name": "Linvak Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4923": { - "id": 4923, - "name": "Obsidian Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4924": { - "id": 4924, - "name": "Obsidian Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4925": { - "id": 4925, - "name": "Dance", - "description": "Causes the target to dance uncontrollably.", - "school": "Creature Enchantment", - "difficulty": "800", - "duration": "30", - "mana": "70", - "family": "198", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4926": { - "id": 4926, - "name": "Smite", - "description": "Drains 400-800 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "150", - "target_mask": "16" - }, - "4927": { - "id": 4927, - "name": "Incantation of Acid Stream with 300 Spellpower", - "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4928": { - "id": 4928, - "name": "Incantation of Acid Stream with 350 Spellpower", - "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "350", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4929": { - "id": 4929, - "name": "Harm", - "description": "Drains 5-10 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "4930": { - "id": 4930, - "name": "Flame Bolt I", - "description": "Shoots a mini fireball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4931": { - "id": 4931, - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4932": { - "id": 4932, - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4933": { - "id": 4933, - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5", - "mana": "10", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "4934": { - "id": 4934, - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "10", - "mana": "10", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "4935": { - "id": 4935, - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "10", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "4936": { - "id": 4936, - "name": "Flame Bolt I", - "description": "Shoots a mini iceball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4937": { - "id": 4937, - "name": "Flame Bolt I", - "description": "Shoots a mini iceball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4938": { - "id": 4938, - "name": "Flame Bolt I", - "description": "Shoots a mini arrow", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4939": { - "id": 4939, - "name": "Mini Uber", - "description": "Shoots a bolt of elemental energy at the target.", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "50", - "family": "121", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "4940": { - "id": 4940, - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4941": { - "id": 4941, - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4942": { - "id": 4942, - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4943": { - "id": 4943, - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4944": { - "id": 4944, - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "40", - "mana": "10", - "family": "6", - "speed": "0.01", - "target_effect": "13", - "target_mask": "16" - }, - "4945": { - "id": 4945, - "name": "Flame Bolt I", - "description": "Shoots a mini arrow", - "school": "War Magic", - "difficulty": "900", - "duration": "-1", - "mana": "5", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "4946": { - "id": 4946, - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4947": { - "id": 4947, - "name": "Harm", - "description": "Drains 10-20 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "4948": { - "id": 4948, - "name": "Harm", - "description": "Drains 20-30 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "4949": { - "id": 4949, - "name": "Harm", - "description": "Drains 60-80 points of the target's Health.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.01", - "target_effect": "32", - "target_mask": "16" - }, - "4950": { - "id": 4950, - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4951": { - "id": 4951, - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4952": { - "id": 4952, - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4953": { - "id": 4953, - "name": "Test Portal", - "description": "Target is portaled for testing purposes and doesn't really go anywhere.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4954": { - "id": 4954, - "name": "Crystalline Portal", - "description": "Target is portaled into up to the Crystalline Crag", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4955": { - "id": 4955, - "name": "Portal Space Eddy", - "description": "Target is portaled for testing purposes and doesn't really go anywhere", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4956": { - "id": 4956, - "name": "Tanada Sanctum Portal Sending", - "description": "This spell sends the player to the Tanada Clan inner sanctum.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4957": { - "id": 4957, - "name": "Tanada Sanctum Return", - "description": "This spell sends the player to Tanada Sajo in Hebian-To.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4958": { - "id": 4958, - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "difficulty": "450", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4959": { - "id": 4959, - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4960": { - "id": 4960, - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4961": { - "id": 4961, - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4962": { - "id": 4962, - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "difficulty": "425", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4963": { - "id": 4963, - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "difficulty": "425", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4964": { - "id": 4964, - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "difficulty": "425", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4965": { - "id": 4965, - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "difficulty": "450", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4966": { - "id": 4966, - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "difficulty": "450", - "duration": "5400", - "mana": "80", - "family": "19", - "speed": "0.3", - "target_effect": "18", - "target_mask": "257" - }, - "4967": { - "id": 4967, - "name": "Cleansing Ring of Fire", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 31-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "4968": { - "id": 4968, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4969": { - "id": 4969, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4970": { - "id": 4970, - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "439", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4971": { - "id": 4971, - "name": "Enchanter's Boon", - "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "430", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4972": { - "id": 4972, - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "426", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4973": { - "id": 4973, - "name": "Fencer's Boon", - "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "442", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4974": { - "id": 4974, - "name": "Life Giver's Boon", - "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "429", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "4975": { - "id": 4975, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4976": { - "id": 4976, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4977": { - "id": 4977, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4978": { - "id": 4978, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4979": { - "id": 4979, - "name": "Soldier's Boon", - "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "447", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4980": { - "id": 4980, - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "600", - "mana": "10", - "family": "438", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "4981": { - "id": 4981, - "name": "Incantation of Stamina to Mana Self", - "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "89", - "speed": "0.15", - "target_effect": "76", - "target_mask": "16" - }, - "4982": { - "id": 4982, - "name": "Nimble Fingers - Lockpick", - "description": "Increases the target's Lockpick skill by 5 points. This stacks with all other Lockpick bonuses.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "360", - "mana": "70", - "family": "584", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4983": { - "id": 4983, - "name": "Nimble Fingers - Alchemy", - "description": "Increases the caster's Alchemy skill by 5 points. This stacks with all other Alchemy bonuses.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "360", - "mana": "50", - "family": "587", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4984": { - "id": 4984, - "name": "Nimble Fingers - Cooking", - "description": "Increases the target's Cooking skill by 5 points. This stacks with all other Cooking bonuses.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "360", - "mana": "70", - "family": "586", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "4985": { - "id": 4985, - "name": "Nimble Fingers - Fletching", - "description": "Increases the target's Fletching skill by 5 points. This stacks with all other Fletching bonuses.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "360", - "mana": "50", - "family": "585", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "4986": { - "id": 4986, - "name": "Assassin's Alchemy Kit", - "description": "Increases the caster's Alchemy skill by 1%. This increase stacks with all other Alchemy increases.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "360", - "mana": "50", - "family": "592", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "4987": { - "id": 4987, - "name": "Olthoi Spit", - "description": "A spell-like projectile of condensed olthoi acid.", - "school": "War Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "117", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "4988": { - "id": 4988, - "name": "Tunnel Out", - "description": "The olthoi matron tunnels away.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4989": { - "id": 4989, - "name": "Mysterious Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4990": { - "id": 4990, - "name": "Floor Puzzle Bypass", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4991": { - "id": 4991, - "name": "Jump Puzzle Bypass", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4992": { - "id": 4992, - "name": "Direct Assassin Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4993": { - "id": 4993, - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4994": { - "id": 4994, - "name": "Get over here!", - "description": "The assassin teleports you to her.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4995": { - "id": 4995, - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4996": { - "id": 4996, - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4997": { - "id": 4997, - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "4998": { - "id": 4998, - "name": "Arena Stamina", - "description": "Increases maximum stamina by 25 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "180", - "mana": "70", - "family": "281", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "4999": { - "id": 4999, - "name": "Arena Life", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "difficulty": "15", - "duration": "180", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5000": { - "id": 5000, - "name": "Arena Mana", - "description": "Increases maximum mana by 25 points.", - "school": "Life Magic", - "difficulty": "250", - "duration": "180", - "mana": "70", - "family": "283", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5001": { - "id": 5001, - "name": "Arena Piercing Protection Other", - "description": "Reduces damage the target takes from Piercing by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "5002": { - "id": 5002, - "name": "Arena Acid Protection Other", - "description": "Reduces damage the target takes from acid by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "5003": { - "id": 5003, - "name": "Arena Blade Protection Other", - "description": "Reduces damage the target takes from Slashing by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "5004": { - "id": 5004, - "name": "Arena Bludgeoning Protection Other", - "description": "Reduces damage the target takes from Bludgeoning by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "5005": { - "id": 5005, - "name": "Arena Cold Protection Other", - "description": "Reduces damage the target takes from Cold by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "5006": { - "id": 5006, - "name": "Arena Fire Protection Other", - "description": "Reduces damage the target takes from fire by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "5007": { - "id": 5007, - "name": "Arena Lightning Protection Other", - "description": "Reduces damage the target takes from Lightning by 70%", - "school": "Life Magic", - "difficulty": "400", - "duration": "180", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "5008": { - "id": 5008, - "name": "Apostate Nexus Portal Sending", - "description": "Teleports the user to the Apostate Nexus dungeon.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5009": { - "id": 5009, - "name": "Aerfalle's Greater Ward", - "description": "Improves a shield or piece of armor's armor value by 400 points.", - "school": "Item Enchantment", - "difficulty": "401", - "duration": "3600", - "mana": "60", - "family": "160", - "speed": "0.3", - "target_effect": "142", - "target_mask": "6" - }, - "5010": { - "id": 5010, - "name": "Entering Aerfalle's Sanctum", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5011": { - "id": 5011, - "name": "Geomantic Raze", - "description": "Drains 150-300 points of the target's Health.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5012": { - "id": 5012, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5013": { - "id": 5013, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5014": { - "id": 5014, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5015": { - "id": 5015, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5016": { - "id": 5016, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5017": { - "id": 5017, - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5018": { - "id": 5018, - "name": "Story of the Unknown Warrior", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5019": { - "id": 5019, - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5020": { - "id": 5020, - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5021": { - "id": 5021, - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5022": { - "id": 5022, - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5023": { - "id": 5023, - "name": "Spectral Two Handed Combat Mastery", - "description": "Increases the caster's Two Handed Combat skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "598", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5024": { - "id": 5024, - "name": "Spectral Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 150 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "453", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5025": { - "id": 5025, - "name": "Prodigal Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "453", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5026": { - "id": 5026, - "name": "Prodigal Two Handed Combat Mastery", - "description": "Increases the caster's Two Handed Combat skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "598", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5027": { - "id": 5027, - "name": "Greater Cascade", - "description": "Increases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "30", - "family": "595", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "5028": { - "id": 5028, - "name": "Lesser Cascade", - "description": "Increases the target's Two Handed Combat skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "780", - "mana": "30", - "family": "595", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "5029": { - "id": 5029, - "name": "Cascade", - "description": "Increases the target's Two Handed Combat skill by 12 points.", - "school": "Creature Enchantment", - "difficulty": "12", - "duration": "780", - "mana": "30", - "family": "595", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "5030": { - "id": 5030, - "name": "Two Handed Fighter's Boon", - "description": "Increases the target's Two Handed Combat skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "597", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5031": { - "id": 5031, - "name": "Two Handed Fighter's Boon", - "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "597", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5032": { - "id": 5032, - "name": "Incantation of Two Handed Combat Mastery Self", - "description": "Increases the caster's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5033": { - "id": 5033, - "name": "Epic Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "5034": { - "id": 5034, - "name": "Epic Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5035": { - "id": 5035, - "name": "Feeble Sword Aptitude", - "description": "Increases the target's Sword skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5036": { - "id": 5036, - "name": "Feeble Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5037": { - "id": 5037, - "name": "Item Tinkering Ignorance Other I", - "description": "Decreases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "58", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5038": { - "id": 5038, - "name": "Item Tinkering Ignorance Other II", - "description": "Decreases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "58", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "5039": { - "id": 5039, - "name": "Item Tinkering Ignorance Other III", - "description": "Decreases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "58", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "5040": { - "id": 5040, - "name": "Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5041": { - "id": 5041, - "name": "Item Tinkering Ignorance Other V", - "description": "Decreases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "58", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "5042": { - "id": 5042, - "name": "Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "58", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "5043": { - "id": 5043, - "name": "Unfortunate Appraisal", - "description": "Decreases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5044": { - "id": 5044, - "name": "Incantation of Item Tinkering Ignorance Other", - "description": "Decreases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5045": { - "id": 5045, - "name": "Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "58", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5046": { - "id": 5046, - "name": "Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "58", - "speed": "0.05", - "target_effect": "29", - "target_mask": "16" - }, - "5047": { - "id": 5047, - "name": "Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "58", - "speed": "0.1", - "target_effect": "29", - "target_mask": "16" - }, - "5048": { - "id": 5048, - "name": "Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5049": { - "id": 5049, - "name": "Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "58", - "speed": "0.2", - "target_effect": "29", - "target_mask": "16" - }, - "5050": { - "id": 5050, - "name": "Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "58", - "speed": "0.3", - "target_effect": "29", - "target_mask": "16" - }, - "5051": { - "id": 5051, - "name": "Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5052": { - "id": 5052, - "name": "Incantation of Item Tinkering Ignorance Self", - "description": "Decreases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "58", - "speed": "0.15", - "target_effect": "29", - "target_mask": "16" - }, - "5053": { - "id": 5053, - "name": "Item Tinkering Expertise Other I", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "57", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "5054": { - "id": 5054, - "name": "Item Tinkering Expertise Other II", - "description": "Increases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "57", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "5055": { - "id": 5055, - "name": "Item Tinkering Expertise Other III", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "57", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "5056": { - "id": 5056, - "name": "Item Tinkering Expertise Other IV", - "description": "Increases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5057": { - "id": 5057, - "name": "Item Tinkering Expertise Other V", - "description": "Increases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "57", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "5058": { - "id": 5058, - "name": "Item Tinkering Expertise Other VI", - "description": "Increases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "57", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5059": { - "id": 5059, - "name": "Yoshi's Boon", - "description": "Increases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5060": { - "id": 5060, - "name": "Incantation of Item Tinkering Expertise Other", - "description": "Increases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5061": { - "id": 5061, - "name": "Item Tinkering Expertise Self I", - "description": "Increases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "57", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "5062": { - "id": 5062, - "name": "Item Tinkering Expertise Self II", - "description": "Increases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "57", - "speed": "0.05", - "target_effect": "28", - "target_mask": "16" - }, - "5063": { - "id": 5063, - "name": "Item Tinkering Expertise Self III", - "description": "Increases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "57", - "speed": "0.1", - "target_effect": "28", - "target_mask": "16" - }, - "5064": { - "id": 5064, - "name": "Item Tinkering Expertise Self IV", - "description": "Increases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5065": { - "id": 5065, - "name": "Item Tinkering Expertise Self V", - "description": "Increases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "57", - "speed": "0.2", - "target_effect": "28", - "target_mask": "16" - }, - "5066": { - "id": 5066, - "name": "Item Tinkering Expertise Self VI", - "description": "Increases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "57", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5067": { - "id": 5067, - "name": "Yoshi's Blessing", - "description": "Increases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5068": { - "id": 5068, - "name": "Incantation of Item Tinkering Expertise Self", - "description": "Increases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "57", - "speed": "0.15", - "target_effect": "28", - "target_mask": "16" - }, - "5069": { - "id": 5069, - "name": "Major Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "5070": { - "id": 5070, - "name": "Major Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5071": { - "id": 5071, - "name": "Minor Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "5072": { - "id": 5072, - "name": "Minor Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5073": { - "id": 5073, - "name": "Moderate Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "602", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5074": { - "id": 5074, - "name": "Moderate Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5075": { - "id": 5075, - "name": "Two Handed Combat Ineptitude Other I", - "description": "Decreases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "594", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "5076": { - "id": 5076, - "name": "Two Handed Combat Ineptitude Other II", - "description": "Decreases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "594", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "5077": { - "id": 5077, - "name": "Two Handed Combat Ineptitude Other III", - "description": "Decreases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "594", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "5078": { - "id": 5078, - "name": "Two Handed Combat Ineptitude Other IV", - "description": "Decreases the target's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5079": { - "id": 5079, - "name": "Two Handed Combat Ineptitude Other V", - "description": "Decreases the target's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "594", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "5080": { - "id": 5080, - "name": "Two Handed Combat Ineptitude Other VI", - "description": "Decreases the target's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "594", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "5081": { - "id": 5081, - "name": "Greased Palms", - "description": "Decreases the target's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5082": { - "id": 5082, - "name": "Incantation of Two Handed Combat Ineptitude Other", - "description": "Decreases the target's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5083": { - "id": 5083, - "name": "Two Handed Combat Ineptitude Self I", - "description": "Decreases the caster's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "15", - "family": "594", - "speed": "0.01", - "target_effect": "19", - "target_mask": "16" - }, - "5084": { - "id": 5084, - "name": "Two Handed Combat Ineptitude Self II", - "description": "Decreases the caster's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "30", - "family": "594", - "speed": "0.05", - "target_effect": "19", - "target_mask": "16" - }, - "5085": { - "id": 5085, - "name": "Two Handed Combat Ineptitude Self III", - "description": "Decreases the caster's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "40", - "family": "594", - "speed": "0.1", - "target_effect": "19", - "target_mask": "16" - }, - "5086": { - "id": 5086, - "name": "Two Handed Combat Ineptitude Self IV", - "description": "Decreases the caster's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "50", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5087": { - "id": 5087, - "name": "Two Handed Combat Ineptitude Self V", - "description": "Decreases the caster's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "60", - "family": "594", - "speed": "0.2", - "target_effect": "19", - "target_mask": "16" - }, - "5088": { - "id": 5088, - "name": "Two Handed Combat Ineptitude Self VI", - "description": "Decreases the caster's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "70", - "family": "594", - "speed": "0.3", - "target_effect": "19", - "target_mask": "16" - }, - "5089": { - "id": 5089, - "name": "Two Handed Combat Ineptitude Self VII", - "description": "Decreases the caster's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5090": { - "id": 5090, - "name": "Incantation of Two Handed Combat Ineptitude Self", - "description": "Decreases the caster's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "594", - "speed": "0.15", - "target_effect": "19", - "target_mask": "16" - }, - "5091": { - "id": 5091, - "name": "Two Handed Combat Mastery Other I", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "593", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5092": { - "id": 5092, - "name": "Two Handed Combat Mastery Other II", - "description": "Increases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "593", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "5093": { - "id": 5093, - "name": "Two Handed Combat Mastery Other III", - "description": "Increases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "593", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "5094": { - "id": 5094, - "name": "Two Handed Combat Mastery Other IV", - "description": "Increases the target's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5095": { - "id": 5095, - "name": "Two Handed Combat Mastery Other V", - "description": "Increases the target's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "593", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "5096": { - "id": 5096, - "name": "Two Handed Combat Mastery Other VI", - "description": "Increases the target's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "593", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5097": { - "id": 5097, - "name": "Boon of T'ing", - "description": "Increases the target's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5098": { - "id": 5098, - "name": "Incantation of Two Handed Combat Mastery Other", - "description": "Increases the target's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5099": { - "id": 5099, - "name": "Two Handed Combat Mastery Self I", - "description": "Increases the caster's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "593", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5100": { - "id": 5100, - "name": "Two Handed Combat Mastery Self II", - "description": "Increases the caster's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "593", - "speed": "0.05", - "target_effect": "18", - "target_mask": "16" - }, - "5101": { - "id": 5101, - "name": "Two Handed Combat Mastery Self III", - "description": "Increases the caster's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "593", - "speed": "0.1", - "target_effect": "18", - "target_mask": "16" - }, - "5102": { - "id": 5102, - "name": "Two Handed Combat Mastery Self IV", - "description": "Increases the caster's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5103": { - "id": 5103, - "name": "Two Handed Combat Mastery Self V", - "description": "Increases the caster's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "593", - "speed": "0.2", - "target_effect": "18", - "target_mask": "16" - }, - "5104": { - "id": 5104, - "name": "Two Handed Combat Mastery Self VI", - "description": "Increases the caster's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "593", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5105": { - "id": 5105, - "name": "Blessing of T'ing", - "description": "Increases the caster's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "593", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5106": { - "id": 5106, - "name": "Master Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5107": { - "id": 5107, - "name": "Novice Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "599", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5108": { - "id": 5108, - "name": "Apprentice Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "599", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5109": { - "id": 5109, - "name": "Journeyman Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "599", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5110": { - "id": 5110, - "name": "Master Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "599", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5111": { - "id": 5111, - "name": "Novice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5112": { - "id": 5112, - "name": "Apprentice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5113": { - "id": 5113, - "name": "Journeyman Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "563", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5114": { - "id": 5114, - "name": "Expose Weakness VIII", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "5115": { - "id": 5115, - "name": "Expose Weakness I", - "description": "Decreases the target's natural armor by 20 points.", - "school": "Life Magic", - "difficulty": "25", - "duration": "60", - "mana": "10", - "family": "116", - "speed": "0.01", - "target_effect": "56", - "target_mask": "16" - }, - "5116": { - "id": 5116, - "name": "Expose Weakness II", - "description": "Decreases the target's natural armor by 50 points.", - "school": "Life Magic", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "116", - "speed": "0.05", - "target_effect": "56", - "target_mask": "16" - }, - "5117": { - "id": 5117, - "name": "Expose Weakness III", - "description": "Decreases the target's natural armor by 75 points.", - "school": "Life Magic", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "116", - "speed": "0.1", - "target_effect": "56", - "target_mask": "16" - }, - "5118": { - "id": 5118, - "name": "Expose Weakness IV", - "description": "Decreases the target's natural armor by 100 points.", - "school": "Life Magic", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "5119": { - "id": 5119, - "name": "Expose Weakness V", - "description": "Decreases the target's natural armor by 150 points.", - "school": "Life Magic", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "116", - "speed": "0.2", - "target_effect": "56", - "target_mask": "16" - }, - "5120": { - "id": 5120, - "name": "Expose Weakness VI", - "description": "Decreases the target's natural armor by 200 points.", - "school": "Life Magic", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "116", - "speed": "0.3", - "target_effect": "56", - "target_mask": "16" - }, - "5121": { - "id": 5121, - "name": "Expose Weakness VII", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "5122": { - "id": 5122, - "name": "Call of Leadership V", - "description": "Increases maximum health by 10 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "400", - "duration": "1800", - "mana": "80", - "family": "609", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5123": { - "id": 5123, - "name": "Answer of Loyalty (Mana) I", - "description": "Enhances the Mana of all Fellowship members by 2 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "607", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5124": { - "id": 5124, - "name": "Answer of Loyalty (Mana) II", - "description": "Enhances the Mana of all Fellowship members by 4 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "607", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5125": { - "id": 5125, - "name": "Answer of Loyalty (Mana) III", - "description": "Enhances the Mana of all Fellowship members by 6 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "275", - "duration": "1800", - "mana": "60", - "family": "607", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5126": { - "id": 5126, - "name": "Answer of Loyalty (Mana) IV", - "description": "Enhances the Mana of all Fellowship members by 8 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "325", - "duration": "1800", - "mana": "70", - "family": "607", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5127": { - "id": 5127, - "name": "Answer of Loyalty (Mana) V", - "description": "Enhances the Mana of all Fellowship members by 10 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "400", - "duration": "1800", - "mana": "80", - "family": "607", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5128": { - "id": 5128, - "name": "Answer of Loyalty (Stamina) I", - "description": "Enhances the Endurance of all Fellowship members by 2 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "608", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5129": { - "id": 5129, - "name": "Answer of Loyalty (Stamina) II", - "description": "Enhances the Endurance of all Fellowship members by 4 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "608", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5130": { - "id": 5130, - "name": "Answer of Loyalty (Stamina) III", - "description": "Enhances the Endurance of all Fellowship members by 6 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "275", - "duration": "1800", - "mana": "60", - "family": "608", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5131": { - "id": 5131, - "name": "Answer of Loyalty (Stamina) IV", - "description": "Enhances the Endurance of all Fellowship members by 8 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "325", - "duration": "1800", - "mana": "70", - "family": "608", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5132": { - "id": 5132, - "name": "Answer of Loyalty (Stamina) V", - "description": "Enhances the Endurance of all Fellowship members by 10 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "400", - "duration": "1800", - "mana": "80", - "family": "608", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5133": { - "id": 5133, - "name": "Call of Leadership I", - "description": "Increases maximum health by 2 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "175", - "duration": "1800", - "mana": "40", - "family": "609", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5134": { - "id": 5134, - "name": "Call of Leadership II", - "description": "Increases maximum health by 4 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "225", - "duration": "1800", - "mana": "50", - "family": "609", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5135": { - "id": 5135, - "name": "Call of Leadership III", - "description": "Increases maximum health by 6 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "275", - "duration": "1800", - "mana": "60", - "family": "609", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5136": { - "id": 5136, - "name": "Call of Leadership IV", - "description": "Increases maximum health by 8 points for 30 minutes.", - "school": "Life Magic", - "difficulty": "325", - "duration": "1800", - "mana": "70", - "family": "609", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "5137": { - "id": 5137, - "name": "Augmented Understanding III", - "description": "Increases experience by 6%.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "615", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5138": { - "id": 5138, - "name": "Augmented Damage I", - "description": "Increases damage rating by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "610", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5139": { - "id": 5139, - "name": "Augmented Damage II", - "description": "Increases damage rating by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "610", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5140": { - "id": 5140, - "name": "Augmented Damage III", - "description": "Increases damage rating by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "610", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5141": { - "id": 5141, - "name": "Augmented Damage Reduction I", - "description": "Increases damage reduction rating by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "611", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5142": { - "id": 5142, - "name": "Augmented Damage Reduction II", - "description": "Increases damage reduction rating by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "611", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5143": { - "id": 5143, - "name": "Augmented Damage Reduction III", - "description": "Increases damage reduction rating by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "611", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5144": { - "id": 5144, - "name": "Augmented Health I", - "description": "Increases maximum health by 5 points.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "612", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5145": { - "id": 5145, - "name": "Augmented Health II", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "612", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5146": { - "id": 5146, - "name": "Augmented Health III", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "612", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5147": { - "id": 5147, - "name": "Augmented Mana I", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "614", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5148": { - "id": 5148, - "name": "Augmented Mana II", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "614", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5149": { - "id": 5149, - "name": "Augmented Mana III", - "description": "Increases maximum mana by 30 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "614", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5150": { - "id": 5150, - "name": "Augmented Stamina I", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "613", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5151": { - "id": 5151, - "name": "Augmented Stamina II", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "613", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5152": { - "id": 5152, - "name": "Augmented Stamina III", - "description": "Increases maximum stamina by 30 points.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "613", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5153": { - "id": 5153, - "name": "Augmented Understanding I", - "description": "Increases experience by 2%.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "615", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5154": { - "id": 5154, - "name": "Augmented Understanding II", - "description": "Increases experience by 4%.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "615", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5155": { - "id": 5155, - "name": "Virindi Whisper IV", - "description": "Increases the target's Arcane Lore skill by 32 points for 60 seconds.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "60", - "mana": "40", - "family": "616", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5156": { - "id": 5156, - "name": "Virindi Whisper V", - "description": "Increases the target's Arcane Lore skill by 40 points for 60 seconds.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "60", - "mana": "50", - "family": "616", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "5157": { - "id": 5157, - "name": "Virindi Whisper I", - "description": "Increases the target's Arcane Lore skill by 8 points for 60 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "616", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5158": { - "id": 5158, - "name": "Virindi Whisper II", - "description": "Increases the target's Arcane Lore skill by 16 points for 60 seconds.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "60", - "mana": "20", - "family": "616", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "5159": { - "id": 5159, - "name": "Virindi Whisper III", - "description": "Increases the target's Arcane Lore skill by 24 points for 60 seconds.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "60", - "mana": "30", - "family": "616", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "5160": { - "id": 5160, - "name": "Mhoire Castle", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5161": { - "id": 5161, - "name": "Mhoire Castle Great Hall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5162": { - "id": 5162, - "name": "Mhoire Castle Northeast Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5163": { - "id": 5163, - "name": "Mhoire Castle Northwest Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5164": { - "id": 5164, - "name": "Mhoire Castle Southeast Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5165": { - "id": 5165, - "name": "Mhoire Castle Southwest Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5166": { - "id": 5166, - "name": "Flaming Skull", - "description": "A burning skull", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "121", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "5167": { - "id": 5167, - "name": "Mhoire Castle Exit Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5168": { - "id": 5168, - "name": "a spectacular view of the Mhoire lands", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "14", - "target_mask": "16" - }, - "5169": { - "id": 5169, - "name": "a descent into the Mhoire catacombs", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "14", - "target_mask": "16" - }, - "5170": { - "id": 5170, - "name": "a descent into the Mhoire catacombs", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "14", - "target_mask": "16" - }, - "5171": { - "id": 5171, - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. You're feeling pretty good.", - "school": "Life Magic", - "difficulty": "250", - "duration": "300", - "mana": "80", - "family": "617", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "5172": { - "id": 5172, - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. Your blood is poisoned.", - "school": "Life Magic", - "difficulty": "250", - "duration": "300", - "mana": "80", - "family": "618", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5173": { - "id": 5173, - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. Your wounds are poisoned and don't heal as well.", - "school": "Life Magic", - "difficulty": "250", - "duration": "300", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5174": { - "id": 5174, - "name": "Mhoire's Blessing of Power", - "description": "Your damage has been augmented by the magic of the Mhoire blood.", - "school": "Life Magic", - "difficulty": "250", - "duration": "300", - "mana": "80", - "family": "610", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "5175": { - "id": 5175, - "name": "Facility Hub Recall", - "description": "Transports the caster to the Facilty Hub.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "10", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5176": { - "id": 5176, - "name": "Celestial Hand Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5177": { - "id": 5177, - "name": "Radiant Blood Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5178": { - "id": 5178, - "name": "Eldrytch Web Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5179": { - "id": 5179, - "name": "Celestial Hand Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5180": { - "id": 5180, - "name": "Radiant Blood Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5181": { - "id": 5181, - "name": "Eldrytch Web Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5182": { - "id": 5182, - "name": "Aura of Incantation of Spirit Drinker", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5183": { - "id": 5183, - "name": "Aura of Incantation of Blood Drinker Self", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5184": { - "id": 5184, - "name": "Rare Damage Boost VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5185": { - "id": 5185, - "name": "Rare Damage Boost VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5186": { - "id": 5186, - "name": "Rare Damage Boost IX", - "description": "Your damage rating is increased by 9.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5187": { - "id": 5187, - "name": "Rare Damage Boost X", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5188": { - "id": 5188, - "name": "Rare Damage Reduction I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5189": { - "id": 5189, - "name": "Rare Damage Reduction II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5190": { - "id": 5190, - "name": "Rare Damage Reduction III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5191": { - "id": 5191, - "name": "Rare Damage Reduction IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5192": { - "id": 5192, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5193": { - "id": 5193, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5194": { - "id": 5194, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5195": { - "id": 5195, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5196": { - "id": 5196, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5197": { - "id": 5197, - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "634", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5198": { - "id": 5198, - "name": "Rare Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5199": { - "id": 5199, - "name": "Rare Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5200": { - "id": 5200, - "name": "Rare Damage Boost III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5201": { - "id": 5201, - "name": "Rare Damage Boost IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5202": { - "id": 5202, - "name": "Rare Damage Boost V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5203": { - "id": 5203, - "name": "Rare Damage Boost VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "633", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5204": { - "id": 5204, - "name": "Surge of Destruction", - "description": "The damage rating of the caster is increased by 20.", - "school": "Life Magic", - "difficulty": "1", - "duration": "8", - "mana": "70", - "family": "628", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "5205": { - "id": 5205, - "name": "Surge of Affliction", - "description": "The target loses 150 points of health over 19 seconds.", - "school": "Life Magic", - "difficulty": "250", - "duration": "19", - "mana": "80", - "family": "631", - "speed": "0.15", - "target_effect": "165", - "target_mask": "16" - }, - "5206": { - "id": 5206, - "name": "Surge of Protection", - "description": "The damage reduction rating of the caster is increased by 20.", - "school": "Life Magic", - "difficulty": "1", - "duration": "12", - "mana": "70", - "family": "629", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "5207": { - "id": 5207, - "name": "Surge of Festering", - "description": "The heal rating of the target is decreased by 20.", - "school": "Life Magic", - "difficulty": "250", - "duration": "12", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "166", - "target_mask": "16" - }, - "5208": { - "id": 5208, - "name": "Surge of Regeneration", - "description": "The caster gains 150 points of health over 19 seconds.", - "school": "Life Magic", - "difficulty": "250", - "duration": "19", - "mana": "80", - "family": "630", - "speed": "0.15", - "target_effect": "164", - "target_mask": "16" - }, - "5209": { - "id": 5209, - "name": "Sigil of Fury I (Critical Damage)", - "description": "Your critical damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5210": { - "id": 5210, - "name": "Sigil of Fury II (Critical Damage)", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5211": { - "id": 5211, - "name": "Sigil of Fury III (Critical Damage)", - "description": "Your critical damage rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5212": { - "id": 5212, - "name": "Sigil of Fury IV (Critical Damage)", - "description": "Your critical damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5213": { - "id": 5213, - "name": "Sigil of Fury V (Critical Damage)", - "description": "Your critical damage rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5214": { - "id": 5214, - "name": "Sigil of Fury VI (Critical Damage)", - "description": "Your critical damage rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5215": { - "id": 5215, - "name": "Sigil of Fury VII (Critical Damage)", - "description": "Your critical damage rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5216": { - "id": 5216, - "name": "Sigil of Fury VIII (Critical Damage)", - "description": "Your critical damage rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5217": { - "id": 5217, - "name": "Sigil of Fury IX (Critical Damage)", - "description": "Your critical damage rating is increased by 9.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5218": { - "id": 5218, - "name": "Sigil of Fury X (Critical Damage)", - "description": "Your critical damage rating is increased by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5219": { - "id": 5219, - "name": "Sigil of Fury XI (Critical Damage)", - "description": "Your critical damage rating is increased by 11.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5220": { - "id": 5220, - "name": "Sigil of Fury XII (Critical Damage)", - "description": "Your critical damage rating is increased by 12.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5221": { - "id": 5221, - "name": "Sigil of Fury XIII (Critical Damage)", - "description": "Your critical damage rating is increased by 13.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5222": { - "id": 5222, - "name": "Sigil of Fury XIV (Critical Damage)", - "description": "Your critical damage rating is increased by 14.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5223": { - "id": 5223, - "name": "Sigil of Fury XV (Critical Damage)", - "description": "Your critical damage rating is increased by 15.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5224": { - "id": 5224, - "name": "Sigil of Destruction I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5225": { - "id": 5225, - "name": "Sigil of Destruction II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5226": { - "id": 5226, - "name": "Sigil of Destruction III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5227": { - "id": 5227, - "name": "Sigil of Destruction IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5228": { - "id": 5228, - "name": "Sigil of Destruction V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5229": { - "id": 5229, - "name": "Sigil of Destruction VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5230": { - "id": 5230, - "name": "Sigil of Destruction VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5231": { - "id": 5231, - "name": "Sigil of Destruction VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5232": { - "id": 5232, - "name": "Sigil of Destruction IX", - "description": "Your damage rating is increased by 9.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5233": { - "id": 5233, - "name": "Sigil of Destruction X", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5234": { - "id": 5234, - "name": "Sigil of Destruction XI", - "description": "Your damage rating is increased by 11.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5235": { - "id": 5235, - "name": "Sigil of Destruction XII", - "description": "Your damage rating is increased by 12.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5236": { - "id": 5236, - "name": "Sigil of Destruction XIII", - "description": "Your damage rating is increased by 13.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5237": { - "id": 5237, - "name": "Sigil of Destruction XIV", - "description": "Your damage rating is increased by 14.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5238": { - "id": 5238, - "name": "Sigil of Destruction XV", - "description": "Your damage rating is increased by 15.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5239": { - "id": 5239, - "name": "Sigil of Defense I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5240": { - "id": 5240, - "name": "Sigil of Defense II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5241": { - "id": 5241, - "name": "Sigil of Defense III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5242": { - "id": 5242, - "name": "Sigil of Defense IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5243": { - "id": 5243, - "name": "Sigil of Defense V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5244": { - "id": 5244, - "name": "Sigil of Defense VI", - "description": "Your damage reduction rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5245": { - "id": 5245, - "name": "Sigil of Defense VII", - "description": "Your damage reduction rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5246": { - "id": 5246, - "name": "Sigil of Defense VIII", - "description": "Your damage reduction rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5247": { - "id": 5247, - "name": "Sigil of Defense IX", - "description": "Your damage reduction rating is increased by 9.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5248": { - "id": 5248, - "name": "Sigil of Defense X", - "description": "Your damage reduction rating is increased by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5249": { - "id": 5249, - "name": "Sigil of Defense XI", - "description": "Your damage reduction rating is increased by 11.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5250": { - "id": 5250, - "name": "Sigil of Defense XII", - "description": "Your damage reduction rating is increased by 12.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5251": { - "id": 5251, - "name": "Sigil of Defense XIII", - "description": "Your damage reduction rating is increased by 13.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5252": { - "id": 5252, - "name": "Sigil of Defense XIV", - "description": "Your damage reduction rating is increased by 14.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5253": { - "id": 5253, - "name": "Sigil of Defense XV", - "description": "Your damage reduction rating is increased by 15.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5254": { - "id": 5254, - "name": "Sigil of Growth I", - "description": "Your healing rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5255": { - "id": 5255, - "name": "Sigil of Growth II", - "description": "Your healing rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5256": { - "id": 5256, - "name": "Sigil of Growth III", - "description": "Your healing rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5257": { - "id": 5257, - "name": "Sigil of Growth IV", - "description": "Your healing rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5258": { - "id": 5258, - "name": "Sigil of Growth V", - "description": "Your healing rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5259": { - "id": 5259, - "name": "Sigil of Growth VI", - "description": "Your healing rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5260": { - "id": 5260, - "name": "Sigil of Growth VII", - "description": "Your healing rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5261": { - "id": 5261, - "name": "Sigil of Growth VIII", - "description": "Your healing rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5262": { - "id": 5262, - "name": "Sigil of Growth IX", - "description": "Your healing rating is increased by 9.", - "school": "Life Magic", - "difficulty": "9", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5263": { - "id": 5263, - "name": "Sigil of Growth X", - "description": "Your healing rating is increased by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5264": { - "id": 5264, - "name": "Sigil of Growth XI", - "description": "Your healing rating is increased by 11.", - "school": "Life Magic", - "difficulty": "11", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5265": { - "id": 5265, - "name": "Sigil of Growth XII", - "description": "Your healing rating is increased by 12.", - "school": "Life Magic", - "difficulty": "12", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5266": { - "id": 5266, - "name": "Sigil of Growth XIII", - "description": "Your healing rating is increased by 13.", - "school": "Life Magic", - "difficulty": "13", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5267": { - "id": 5267, - "name": "Sigil of Growth XIV", - "description": "Your healing rating is increased by 14.", - "school": "Life Magic", - "difficulty": "14", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5268": { - "id": 5268, - "name": "Sigil of Growth XV", - "description": "Your healing rating is increased by 15.", - "school": "Life Magic", - "difficulty": "15", - "duration": "300", - "mana": "80", - "family": "627", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5269": { - "id": 5269, - "name": "Sigil of Vigor I (Health)", - "description": "Your health is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5270": { - "id": 5270, - "name": "Sigil of Vigor II (Health)", - "description": "Your health is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5271": { - "id": 5271, - "name": "Sigil of Vigor III (Health)", - "description": "Your health is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5272": { - "id": 5272, - "name": "Sigil of Vigor IV (Health)", - "description": "Your health is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5273": { - "id": 5273, - "name": "Sigil of Vigor V (Health)", - "description": "Your health is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5274": { - "id": 5274, - "name": "Sigil of Vigor VI (Health)", - "description": "Your health is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5275": { - "id": 5275, - "name": "Sigil of Vigor VII (Health)", - "description": "Your health is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5276": { - "id": 5276, - "name": "Sigil of Vigor VIII (Health)", - "description": "Your health is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5277": { - "id": 5277, - "name": "Sigil of Vigor IX (Health)", - "description": "Your health is increased by 9.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5278": { - "id": 5278, - "name": "Sigil of Vigor X (Health)", - "description": "Your health is increased by 10.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5279": { - "id": 5279, - "name": "Sigil of Vigor XI (Health)", - "description": "Your health is increased by 11.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5280": { - "id": 5280, - "name": "Sigil of Vigor XII (Health)", - "description": "Your health is increased by 12.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5281": { - "id": 5281, - "name": "Sigil of Vigor XIII (Health)", - "description": "Your health is increased by 13.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5282": { - "id": 5282, - "name": "Sigil of Vigor XIV (Health)", - "description": "Your health is increased by 14.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5283": { - "id": 5283, - "name": "Sigil of Vigor XV (Health)", - "description": "Your health is increased by 15.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "623", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5284": { - "id": 5284, - "name": "Sigil of Vigor I (Mana)", - "description": "Your mana is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5285": { - "id": 5285, - "name": "Sigil of Vigor II (Mana)", - "description": "Your mana is increased by 10.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5286": { - "id": 5286, - "name": "Sigil of Vigor III (Mana)", - "description": "Your mana is increased by 15.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5287": { - "id": 5287, - "name": "Sigil of Vigor IV (Mana)", - "description": "Your mana is increased by 20.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5288": { - "id": 5288, - "name": "Sigil of Vigor V (Mana)", - "description": "Your mana is increased by 25.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5289": { - "id": 5289, - "name": "Sigil of Vigor VI (Mana)", - "description": "Your mana is increased by 30.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5290": { - "id": 5290, - "name": "Sigil of Vigor VII (Mana)", - "description": "Your mana is increased by 35.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5291": { - "id": 5291, - "name": "Sigil of Vigor VIII (Mana)", - "description": "Your mana is increased by 40.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5292": { - "id": 5292, - "name": "Sigil of Vigor IX (Mana)", - "description": "Your mana is increased by 45.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5293": { - "id": 5293, - "name": "Sigil of Vigor X (Mana)", - "description": "Your mana is increased by 50.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5294": { - "id": 5294, - "name": "Sigil of Vigor XI (Mana)", - "description": "Your mana is increased by 55.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5295": { - "id": 5295, - "name": "Sigil of Vigor XII (Mana)", - "description": "Your mana is increased by 60.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5296": { - "id": 5296, - "name": "Sigil of Vigor XIII (Mana)", - "description": "Your mana is increased by 65.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5297": { - "id": 5297, - "name": "Sigil of Vigor XIV (Mana)", - "description": "Your mana is increased by 70.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5298": { - "id": 5298, - "name": "Sigil of Vigor XV (Mana)", - "description": "Your mana is increased by 75.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "625", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "5299": { - "id": 5299, - "name": "Sigil of Vigor I (Stamina)", - "description": "Your stamina is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5300": { - "id": 5300, - "name": "Sigil of Vigor II (Stamina)", - "description": "Your stamina is increased by 10.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5301": { - "id": 5301, - "name": "Sigil of Vigor III (Stamina)", - "description": "Your stamina is increased by 15.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5302": { - "id": 5302, - "name": "Sigil of Vigor IV (Stamina)", - "description": "Your stamina is increased by 20.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5303": { - "id": 5303, - "name": "Sigil of Vigor V (Stamina)", - "description": "Your stamina is increased by 25.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5304": { - "id": 5304, - "name": "Sigil of Vigor VI (Stamina)", - "description": "Your stamina is increased by 30.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5305": { - "id": 5305, - "name": "Sigil of Vigor VII (Stamina)", - "description": "Your stamina is increased by 35.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5306": { - "id": 5306, - "name": "Sigil of Vigor VIII (Stamina)", - "description": "Your stamina is increased by 40.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5307": { - "id": 5307, - "name": "Sigil of Vigor IX (Stamina)", - "description": "Your stamina is increased by 45.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5308": { - "id": 5308, - "name": "Sigil of Vigor X (Stamina)", - "description": "Your stamina is increased by 50.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5309": { - "id": 5309, - "name": "Sigil of Vigor XI (Stamina)", - "description": "Your stamina is increased by 55.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5310": { - "id": 5310, - "name": "Sigil of Vigor XII (Stamina)", - "description": "Your stamina is increased by 60.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5311": { - "id": 5311, - "name": "Sigil of Vigor XIII (Stamina)", - "description": "Your stamina is increased by 65.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5312": { - "id": 5312, - "name": "Sigil of Vigor XIV (Stamina)", - "description": "Your stamina is increased by 70.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5313": { - "id": 5313, - "name": "Sigil of Vigor XV (Stamina)", - "description": "Your stamina is increased by 75.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "624", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5314": { - "id": 5314, - "name": "Blessing of Unity", - "description": "You heal 10 points of health every 5 seconds for 50 seconds.", - "school": "Life Magic", - "difficulty": "250", - "duration": "50", - "mana": "80", - "family": "617", - "speed": "0.15", - "target_effect": "31", - "target_mask": "16" - }, - "5315": { - "id": 5315, - "name": "Sigil of Fury I (Endurance)", - "description": "Your endurance is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5316": { - "id": 5316, - "name": "Sigil of Fury II (Endurance)", - "description": "Your endurance is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5317": { - "id": 5317, - "name": "Sigil of Fury III (Endurance)", - "description": "Your endurance is increased by 3.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5318": { - "id": 5318, - "name": "Sigil of Fury IV (Endurance)", - "description": "Your endurance is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5319": { - "id": 5319, - "name": "Sigil of Fury V (Endurance)", - "description": "Your endurance is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5320": { - "id": 5320, - "name": "Sigil of Fury VI (Endurance)", - "description": "Your endurance is increased by 6.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5321": { - "id": 5321, - "name": "Sigil of Fury VII (Endurance)", - "description": "Your endurance is increased by 7.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5322": { - "id": 5322, - "name": "Sigil of Fury VIII (Endurance)", - "description": "Your endurance is increased by 8.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5323": { - "id": 5323, - "name": "Sigil of Fury IX (Endurance)", - "description": "Your endurance is increased by 9.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5324": { - "id": 5324, - "name": "Sigil of Fury X (Endurance)", - "description": "Your endurance is increased by 10.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5325": { - "id": 5325, - "name": "Sigil of Fury XI (Endurance)", - "description": "Your endurance is increased by 11.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5326": { - "id": 5326, - "name": "Sigil of Fury XII (Endurance)", - "description": "Your endurance is increased by 12.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5327": { - "id": 5327, - "name": "Sigil of Fury XIII (Endurance)", - "description": "Your endurance is increased by 13.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5328": { - "id": 5328, - "name": "Sigil of Fury XIV (Endurance)", - "description": "Your endurance is increased by 14.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5329": { - "id": 5329, - "name": "Sigil of Fury XV (Endurance)", - "description": "Your endurance is increased by 15.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "635", - "speed": "0.3", - "target_effect": "10", - "target_mask": "16" - }, - "5330": { - "id": 5330, - "name": "Gear Knight Invasion Area Camp Recall", - "description": "Sends the caster to the Gear Knight Invasion Area Camp.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "5331": { - "id": 5331, - "name": "Clouded Soul", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 200-250 points of nether damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "700", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "5332": { - "id": 5332, - "name": "Bael'zharon's Nether Streak", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 125-200 points of nether damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "700", - "duration": "-1", - "mana": "80", - "family": "639", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5333": { - "id": 5333, - "name": "Bael'zharon's Nether Arc", - "description": "Shoots a bolt of nether at the target. The bolt does 125-200 points of nether damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "700", - "duration": "-1", - "mana": "40", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5334": { - "id": 5334, - "name": "Bael'zharons Curse of Destruction", - "description": "The target loses 600 points of health over 30 seconds.", - "school": "War Magic", - "difficulty": "700", - "duration": "30", - "mana": "80", - "family": "636", - "speed": "0.15", - "target_effect": "167", - "target_mask": "16" - }, - "5335": { - "id": 5335, - "name": "Bael'zharons Curse of Minor Destruction", - "description": "The target loses 720 points of health over 120 seconds.", - "school": "War Magic", - "difficulty": "700", - "duration": "240", - "mana": "80", - "family": "637", - "speed": "0.15", - "target_effect": "167", - "target_mask": "16" - }, - "5336": { - "id": 5336, - "name": "Bael'zharons Curse of Festering", - "description": "The heal rating of the target is decreased by 90.", - "school": "Life Magic", - "difficulty": "700", - "duration": "60", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5337": { - "id": 5337, - "name": "Destructive Curse VII", - "description": "The target loses 294 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "325", - "duration": "30", - "mana": "70", - "family": "636", - "speed": "0.15", - "target_effect": "167", - "target_mask": "16" - }, - "5338": { - "id": 5338, - "name": "Incantation of Destructive Curse", - "description": "The target loses 357 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "400", - "duration": "30", - "mana": "80", - "family": "636", - "speed": "0.15", - "target_effect": "167", - "target_mask": "16" - }, - "5339": { - "id": 5339, - "name": "Destructive Curse I", - "description": "The target loses 56 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "25", - "duration": "30", - "mana": "10", - "family": "636", - "speed": "0", - "target_effect": "167", - "target_mask": "16" - }, - "5340": { - "id": 5340, - "name": "Destructive Curse II", - "description": "The target loses 91 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "75", - "duration": "30", - "mana": "20", - "family": "636", - "speed": "0.05", - "target_effect": "167", - "target_mask": "16" - }, - "5341": { - "id": 5341, - "name": "Destructive Curse III", - "description": "The target loses 126 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "125", - "duration": "30", - "mana": "30", - "family": "636", - "speed": "0.1", - "target_effect": "167", - "target_mask": "16" - }, - "5342": { - "id": 5342, - "name": "Destructive Curse IV", - "description": "The target loses 154 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "175", - "duration": "30", - "mana": "40", - "family": "636", - "speed": "0.15", - "target_effect": "167", - "target_mask": "16" - }, - "5343": { - "id": 5343, - "name": "Destructive Curse V", - "description": "The target loses 189 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "225", - "duration": "30", - "mana": "50", - "family": "636", - "speed": "0.2", - "target_effect": "167", - "target_mask": "16" - }, - "5344": { - "id": 5344, - "name": "Destructive Curse VI", - "description": "The target loses 231 points of health over 30 seconds.", - "school": "Void Magic", - "difficulty": "275", - "duration": "30", - "mana": "60", - "family": "636", - "speed": "0.3", - "target_effect": "167", - "target_mask": "16" - }, - "5345": { - "id": 5345, - "name": "Nether Streak V", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 35-88 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "639", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5346": { - "id": 5346, - "name": "Nether Streak VI", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 42-105 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "639", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5347": { - "id": 5347, - "name": "Nether Streak VII", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 84-130 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "639", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5348": { - "id": 5348, - "name": "Incantation of Nether Streak", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 126-162 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "639", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5349": { - "id": 5349, - "name": "Nether Bolt I", - "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "640", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "5350": { - "id": 5350, - "name": "Nether Bolt II", - "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "640", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "5351": { - "id": 5351, - "name": "Nether Bolt III", - "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "640", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "5352": { - "id": 5352, - "name": "Nether Bolt IV", - "description": "Shoots a bolt of nether at the target. The bolt does 73-146 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5353": { - "id": 5353, - "name": "Nether Bolt V", - "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "640", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5354": { - "id": 5354, - "name": "Nether Bolt VI", - "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "640", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5355": { - "id": 5355, - "name": "Nether Bolt VII", - "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5356": { - "id": 5356, - "name": "Incantation of Nether Bolt", - "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5357": { - "id": 5357, - "name": "Nether Streak I", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 10-27 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "639", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "5358": { - "id": 5358, - "name": "Nether Streak II", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 21-42 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "639", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "5359": { - "id": 5359, - "name": "Nether Streak III", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 25-56 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "639", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "5360": { - "id": 5360, - "name": "Nether Streak IV", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 31-73 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "639", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5361": { - "id": 5361, - "name": "Clouded Soul", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 94-147 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "641", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "5362": { - "id": 5362, - "name": "Nether Arc II", - "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "640", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "5363": { - "id": 5363, - "name": "Nether Arc III", - "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "640", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "5364": { - "id": 5364, - "name": "Nether Arc IV", - "description": "Shoots a bolt of nether at the target. The bolt does 73-147 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5365": { - "id": 5365, - "name": "Nether Arc V", - "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "640", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5366": { - "id": 5366, - "name": "Nether Arc VI", - "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "640", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5367": { - "id": 5367, - "name": "Nether Arc VII", - "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5368": { - "id": 5368, - "name": "Incantation of Nether Arc", - "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "640", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5369": { - "id": 5369, - "name": "Nether Arc I", - "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "640", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "5370": { - "id": 5370, - "name": "Incantation of Nether Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-57 points of electrical damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5371": { - "id": 5371, - "name": "Festering Curse I", - "description": "The heal rating of the target is decreased by 5.", - "school": "Void Magic", - "difficulty": "25", - "duration": "30", - "mana": "10", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5372": { - "id": 5372, - "name": "Festering Curse II", - "description": "The heal rating of the target is decreased by 10.", - "school": "Void Magic", - "difficulty": "75", - "duration": "30", - "mana": "20", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5373": { - "id": 5373, - "name": "Festering Curse III", - "description": "The heal rating of the target is decreased by 15.", - "school": "Void Magic", - "difficulty": "125", - "duration": "30", - "mana": "30", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5374": { - "id": 5374, - "name": "Festering Curse IV", - "description": "The heal rating of the target is decreased by 20.", - "school": "Void Magic", - "difficulty": "175", - "duration": "30", - "mana": "40", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5375": { - "id": 5375, - "name": "Festering Curse V", - "description": "The heal rating of the target is decreased by 25.", - "school": "Void Magic", - "difficulty": "225", - "duration": "30", - "mana": "50", - "family": "643", - "speed": "0.2", - "target_effect": "168", - "target_mask": "16" - }, - "5376": { - "id": 5376, - "name": "Festering Curse VI", - "description": "The heal rating of the target is decreased by 30.", - "school": "Void Magic", - "difficulty": "275", - "duration": "30", - "mana": "60", - "family": "643", - "speed": "0.3", - "target_effect": "168", - "target_mask": "16" - }, - "5377": { - "id": 5377, - "name": "Festering Curse VII", - "description": "The heal rating of the target is decreased by 35.", - "school": "Void Magic", - "difficulty": "325", - "duration": "30", - "mana": "70", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5378": { - "id": 5378, - "name": "Incantation of Festering Curse", - "description": "The heal rating of the target is decreased by 45.", - "school": "Void Magic", - "difficulty": "400", - "duration": "30", - "mana": "80", - "family": "643", - "speed": "0.15", - "target_effect": "168", - "target_mask": "16" - }, - "5379": { - "id": 5379, - "name": "Weakening Curse I", - "description": "Decreases the target's damage rating by 1.", - "school": "Void Magic", - "difficulty": "25", - "duration": "15", - "mana": "10", - "family": "642", - "speed": "0", - "target_effect": "169", - "target_mask": "16" - }, - "5380": { - "id": 5380, - "name": "Weakening Curse II", - "description": "Decreases the target's damage rating by 2.", - "school": "Void Magic", - "difficulty": "75", - "duration": "15", - "mana": "20", - "family": "642", - "speed": "0", - "target_effect": "169", - "target_mask": "16" - }, - "5381": { - "id": 5381, - "name": "Weakening Curse III", - "description": "Decreases the target's damage rating by 4.", - "school": "Void Magic", - "difficulty": "125", - "duration": "15", - "mana": "30", - "family": "642", - "speed": "0.1", - "target_effect": "169", - "target_mask": "16" - }, - "5382": { - "id": 5382, - "name": "Weakening Curse IV", - "description": "Decreases the target's damage rating by 6.", - "school": "Void Magic", - "difficulty": "175", - "duration": "15", - "mana": "40", - "family": "642", - "speed": "0.15", - "target_effect": "169", - "target_mask": "16" - }, - "5383": { - "id": 5383, - "name": "Weakening Curse V", - "description": "Decreases the target's damage rating by 8.", - "school": "Void Magic", - "difficulty": "225", - "duration": "15", - "mana": "50", - "family": "642", - "speed": "0.2", - "target_effect": "169", - "target_mask": "16" - }, - "5384": { - "id": 5384, - "name": "Weakening Curse VI", - "description": "Decreases the target's damage rating by 10.", - "school": "Void Magic", - "difficulty": "275", - "duration": "15", - "mana": "60", - "family": "642", - "speed": "0.3", - "target_effect": "169", - "target_mask": "16" - }, - "5385": { - "id": 5385, - "name": "Weakening Curse VII", - "description": "Decreases the target's damage rating by 12.", - "school": "Void Magic", - "difficulty": "325", - "duration": "15", - "mana": "70", - "family": "642", - "speed": "0.15", - "target_effect": "169", - "target_mask": "16" - }, - "5386": { - "id": 5386, - "name": "Incantation of Weakening Curse", - "description": "Decreases the target's damage rating by 15.", - "school": "Void Magic", - "difficulty": "400", - "duration": "15", - "mana": "80", - "family": "642", - "speed": "0.15", - "target_effect": "169", - "target_mask": "16" - }, - "5387": { - "id": 5387, - "name": "Corrosion I", - "description": "Sends a bolt of corrosion towards the target. The bolt does 76 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "1", - "duration": "-1", - "mana": "5", - "family": "637", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "5388": { - "id": 5388, - "name": "Corrosion II", - "description": "Sends a bolt of corrosion towards the target. The bolt does 116 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "50", - "duration": "-1", - "mana": "10", - "family": "637", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "5389": { - "id": 5389, - "name": "Corrosion III", - "description": "Sends a bolt of corrosion towards the target. The bolt does 152 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "100", - "duration": "-1", - "mana": "15", - "family": "637", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "5390": { - "id": 5390, - "name": "Corrosion IV", - "description": "Sends a bolt of corrosion towards the target. The bolt does 192 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "637", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5391": { - "id": 5391, - "name": "Corrosion V", - "description": "Sends a bolt of corrosion towards the target. The bolt does 204 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "25", - "family": "637", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5392": { - "id": 5392, - "name": "Corrosion VI", - "description": "Sends a bolt of corrosion towards the target. The bolt does 288 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "637", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5393": { - "id": 5393, - "name": "Corrosion VII", - "description": "Sends a bolt of corrosion towards the target. The bolt does 360 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "637", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5394": { - "id": 5394, - "name": "Incantation of Corrosion", - "description": "Sends a bolt of corrosion towards the target. The bolt does 448 points of damage over 15 seconds.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "637", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5395": { - "id": 5395, - "name": "Corruption I", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 56 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "638", - "speed": "0", - "target_effect": "0", - "target_mask": "16" - }, - "5396": { - "id": 5396, - "name": "Corruption II", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 91 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "638", - "speed": "0.05", - "target_effect": "0", - "target_mask": "16" - }, - "5397": { - "id": 5397, - "name": "Corruption III", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 126 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "638", - "speed": "0.1", - "target_effect": "0", - "target_mask": "16" - }, - "5398": { - "id": 5398, - "name": "Corruption IV", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 154 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "638", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5399": { - "id": 5399, - "name": "Corruption V", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 189 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "638", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5400": { - "id": 5400, - "name": "Corruption VI", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 231 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "638", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5401": { - "id": 5401, - "name": "Corruption VII", - "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 294 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "638", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5402": { - "id": 5402, - "name": "Incantation of Corruption", - "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 357 points of damage over 30 seconds.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "638", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5403": { - "id": 5403, - "name": "Void Magic Mastery Other I", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "645", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5404": { - "id": 5404, - "name": "Void Magic Mastery Other II", - "description": "Increases the target's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "645", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "5405": { - "id": 5405, - "name": "Void Magic Mastery Other III", - "description": "Increases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "645", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "5406": { - "id": 5406, - "name": "Void Magic Mastery Other IV", - "description": "Increases the target's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5407": { - "id": 5407, - "name": "Void Magic Mastery Other V", - "description": "Increases the target's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "645", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "5408": { - "id": 5408, - "name": "Void Magic Mastery Other VI", - "description": "Increases the target's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "645", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5409": { - "id": 5409, - "name": "Void Magic Mastery Other VII", - "description": "Increases the target's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5410": { - "id": 5410, - "name": "Incantation of Void Magic Mastery Other", - "description": "Increases the target's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5411": { - "id": 5411, - "name": "Void Magic Mastery Self I", - "description": "Increases the caster's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "645", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5412": { - "id": 5412, - "name": "Void Magic Mastery Self II", - "description": "Increases the caster's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "645", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "5413": { - "id": 5413, - "name": "Void Magic Mastery Self III", - "description": "Increases the caster's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "645", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "5414": { - "id": 5414, - "name": "Void Magic Mastery Self IV", - "description": "Increases the caster's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5415": { - "id": 5415, - "name": "Void Magic Mastery Self V", - "description": "Increases the caster's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "645", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "5416": { - "id": 5416, - "name": "Void Magic Mastery Self VI", - "description": "Increases the caster's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "645", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5417": { - "id": 5417, - "name": "Void Magic Mastery Self VII", - "description": "Increases the caster's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5418": { - "id": 5418, - "name": "Incantation of Void Magic Mastery Self", - "description": "Increases the caster's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "645", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5419": { - "id": 5419, - "name": "Void Magic Ineptitude Other I", - "description": "Decreases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "644", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "5420": { - "id": 5420, - "name": "Void Magic Ineptitude Other II", - "description": "Decreases the target's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "644", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "5421": { - "id": 5421, - "name": "Void Magic Ineptitude Other III", - "description": "Decreases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "644", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "5422": { - "id": 5422, - "name": "Void Magic Ineptitude Other IV", - "description": "Decreases the target's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "644", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "5423": { - "id": 5423, - "name": "Void Magic Ineptitude Other V", - "description": "Decreases the target's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "644", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "5424": { - "id": 5424, - "name": "Void Magic Ineptitude Other VI", - "description": "Decreases the target's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "644", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "5425": { - "id": 5425, - "name": "Void Magic Ineptitude Other VII", - "description": "Decreases the target's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "644", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "5426": { - "id": 5426, - "name": "Incantation of Void Magic Ineptitude Other", - "description": "Decreases the target's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "644", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "5427": { - "id": 5427, - "name": "Minor Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "780", - "mana": "10", - "family": "646", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5428": { - "id": 5428, - "name": "Major Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "15", - "duration": "780", - "mana": "10", - "family": "646", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5429": { - "id": 5429, - "name": "Epic Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "646", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5430": { - "id": 5430, - "name": "Moderate Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "646", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5431": { - "id": 5431, - "name": "Novice Shadow's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "647", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5432": { - "id": 5432, - "name": "Apprentice Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "647", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5433": { - "id": 5433, - "name": "Journeyman Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "647", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5434": { - "id": 5434, - "name": "Master Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "647", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5435": { - "id": 5435, - "name": "Spectral Void Magic Mastery", - "description": "Increases the caster's Void Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "648", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5436": { - "id": 5436, - "name": "Prodigal Void Magic Mastery", - "description": "Increases the caster's Void Magic skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "648", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5437": { - "id": 5437, - "name": "Corruptor's Boon", - "description": "Increases the target's Void Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "649", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5438": { - "id": 5438, - "name": "Corruptor's Boon", - "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "649", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5439": { - "id": 5439, - "name": "Acid Spit Streak 1", - "description": "Spits a stream of acid streaking towards the target. The stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5440": { - "id": 5440, - "name": "Acid Spit 1", - "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5441": { - "id": 5441, - "name": "Acid Spit 2", - "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5442": { - "id": 5442, - "name": "Acid Spit Arc 1", - "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "35", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5443": { - "id": 5443, - "name": "Acid Spit Arc 2", - "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5444": { - "id": 5444, - "name": "Acid Spit Blast 1", - "description": "Spits five streams of acid outward from the caster. Each stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5445": { - "id": 5445, - "name": "Acid Spit Blast 2", - "description": "Spits five streams of acid outward from the caster. Each stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "131", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5446": { - "id": 5446, - "name": "Acid Spit Volley 1", - "description": "Spits five streams of acid toward the target. Each stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5447": { - "id": 5447, - "name": "Acid Spit Volley 2", - "description": "Shoots five streams of acid toward the target. Each stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "207", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5448": { - "id": 5448, - "name": "Acid Spit Streak", - "description": "Spits a stream of acid streaking towards the target. The stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "243", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5449": { - "id": 5449, - "name": "Surging Strength", - "description": "The damage rating of the caster is increased by 20. This spell stacks with other effects that boost damage rating.", - "school": "Life Magic", - "difficulty": "2", - "duration": "15", - "mana": "70", - "family": "650", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "5450": { - "id": 5450, - "name": "Towering Defense", - "description": "The damage reduction rating of the caster is increased by 30. This spell stacks with other effects that boost damage reduction rating.", - "school": "Life Magic", - "difficulty": "2", - "duration": "15", - "mana": "70", - "family": "651", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "5451": { - "id": 5451, - "name": "Luminous Vitality", - "description": "Increases maximum health by 5 points. This spell stacks with other effects that increase health.", - "school": "Life Magic", - "difficulty": "5", - "duration": "10800", - "mana": "70", - "family": "652", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5452": { - "id": 5452, - "name": "Queen's Willpower", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "11", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "5453": { - "id": 5453, - "name": "Queen's Armor", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "115", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "5454": { - "id": 5454, - "name": "Queen's Coordination", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "7", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "5455": { - "id": 5455, - "name": "Queen's Endurance", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "3", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "5456": { - "id": 5456, - "name": "Queen's Focus", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "9", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "5457": { - "id": 5457, - "name": "Queen's Quickness", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "5", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "5458": { - "id": 5458, - "name": "Queen's Strength", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "1", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "5459": { - "id": 5459, - "name": "Queen's Piercing Protection", - "description": "Reduces damage the target takes from Piercing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "111", - "speed": "0.15", - "target_effect": "45", - "target_mask": "16" - }, - "5460": { - "id": 5460, - "name": "Queen's Acid Protection", - "description": "Reduces damage the target takes from acid by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "101", - "speed": "0.15", - "target_effect": "49", - "target_mask": "16" - }, - "5461": { - "id": 5461, - "name": "Queen's Blade Protection", - "description": "Reduces damage the target takes from Slashing by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "113", - "speed": "0.15", - "target_effect": "47", - "target_mask": "16" - }, - "5462": { - "id": 5462, - "name": "Queen's Bludgeoning Protection", - "description": "Reduces damage the target takes from Bludgeoning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "103", - "speed": "0.15", - "target_effect": "55", - "target_mask": "16" - }, - "5463": { - "id": 5463, - "name": "Queen's Cold Protection", - "description": "Reduces damage the target takes from Cold by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "105", - "speed": "0.15", - "target_effect": "51", - "target_mask": "16" - }, - "5464": { - "id": 5464, - "name": "Queen's Fire Protection", - "description": "Reduces damage the target takes from fire by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "109", - "speed": "0.15", - "target_effect": "43", - "target_mask": "16" - }, - "5465": { - "id": 5465, - "name": "Queen's Lightning Protection", - "description": "Reduces damage the target takes from Lightning by 68%", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "5466": { - "id": 5466, - "name": "Queen's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "95", - "speed": "0.15", - "target_effect": "41", - "target_mask": "16" - }, - "5467": { - "id": 5467, - "name": "Queen's Mana Renewal", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "97", - "speed": "0.15", - "target_effect": "39", - "target_mask": "16" - }, - "5468": { - "id": 5468, - "name": "Queen's Regeneration", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "93", - "speed": "0.15", - "target_effect": "37", - "target_mask": "16" - }, - "5469": { - "id": 5469, - "name": "Queen's Impregnability Other", - "description": "Increases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "39", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "5470": { - "id": 5470, - "name": "Queen's Invulnerability Other", - "description": "Increases the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "37", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "5471": { - "id": 5471, - "name": "Queen's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "41", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "5472": { - "id": 5472, - "name": "Queen's Mana Conversion Mastery", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "51", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5473": { - "id": 5473, - "name": "Queen's Salvaging Mastery Other", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "435", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5474": { - "id": 5474, - "name": "Queen's Sprint", - "description": "Increases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "77", - "speed": "0.15", - "target_effect": "24", - "target_mask": "16" - }, - "5475": { - "id": 5475, - "name": "Queen's Light Weapon Mastery", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "17", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5476": { - "id": 5476, - "name": "Queen's War Magic Mastery", - "description": "Increases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "10800", - "mana": "80", - "family": "49", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "5477": { - "id": 5477, - "name": "Critical Damage Metamorphi I", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5478": { - "id": 5478, - "name": "Critical Damage Metamorphi II", - "description": "Your critical damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5479": { - "id": 5479, - "name": "Critical Damage Metamorphi III", - "description": "Your critical damage rating is increased by 6.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5480": { - "id": 5480, - "name": "Critical Damage Metamorphi IV", - "description": "Your critical damage rating is increased by 8.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5481": { - "id": 5481, - "name": "Critical Damage Metamorphi V", - "description": "Your critical damage rating is increased by 10.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5482": { - "id": 5482, - "name": "Critical Damage Metamorphi VI", - "description": "Your critical damage rating is increased by 12.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5483": { - "id": 5483, - "name": "Critical Damage Metamorphi VII", - "description": "Your critical damage rating is increased by 14.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5484": { - "id": 5484, - "name": "Critical Damage Metamorphi VIII", - "description": "Your critical damage rating is increased by 16.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5485": { - "id": 5485, - "name": "Critical Damage Metamorphi IX", - "description": "Your critical damage rating is increased by 20.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5486": { - "id": 5486, - "name": "Critical Damage Metamorphi X", - "description": "Your critical damage rating is increased by 24.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5487": { - "id": 5487, - "name": "Critical Damage Metamorphi XI", - "description": "Your critical damage rating is increased by 30.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "626", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5489": { - "id": 5489, - "name": "Critical Damage Reduction Metamorphi I", - "description": "Your critical damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5490": { - "id": 5490, - "name": "Critical Damage Reduction Metamorphi II", - "description": "Your critical damage reduction rating is increased by 4.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5491": { - "id": 5491, - "name": "Critical Damage Reduction Metamorphi III", - "description": "Your critical damage reduction rating is increased by 6.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5492": { - "id": 5492, - "name": "Critical Damage Reduction Metamorphi IV", - "description": "Your critical damage reduction rating is increased by 8.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5493": { - "id": 5493, - "name": "Critical Damage Reduction Metamorphi V", - "description": "Your critical damage reduction rating is increased by 10.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5494": { - "id": 5494, - "name": "Critical Damage Reduction Metamorphi VI", - "description": "Your critical damage reduction rating is increased by 12.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5495": { - "id": 5495, - "name": "Critical Damage Reduction Metamorphi VII", - "description": "Your critical damage reduction rating is increased by 14.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5496": { - "id": 5496, - "name": "Critical Damage Reduction Metamorphi VIII", - "description": "Your critical damage reduction rating is increased by 16.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5497": { - "id": 5497, - "name": "Critical Damage Reduction Metamorphi IX", - "description": "Your critical damage reduction rating is increased by 20.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5498": { - "id": 5498, - "name": "Critical Damage Reduction Metamorphi X", - "description": "Your critical damage reduction rating is increased by 24.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5499": { - "id": 5499, - "name": "Critical Damage Reduction Metamorphi XI", - "description": "Your critical damage reduction rating is increased by 30.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "653", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5500": { - "id": 5500, - "name": "Damage Metamorphi I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5501": { - "id": 5501, - "name": "Damage Metamorphi II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5502": { - "id": 5502, - "name": "Damage Metamorphi III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5503": { - "id": 5503, - "name": "Damage Metamorphi IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5504": { - "id": 5504, - "name": "Damage Metamorphi V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5505": { - "id": 5505, - "name": "Damage Metamorphi VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5506": { - "id": 5506, - "name": "Damage Metamorphi VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5507": { - "id": 5507, - "name": "Damage Metamorphi VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5508": { - "id": 5508, - "name": "Damage Metamorphi IX", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5509": { - "id": 5509, - "name": "Damage Metamorphi X", - "description": "Your damage rating is increased by 12.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5510": { - "id": 5510, - "name": "Damage Metamorphi XI", - "description": "Your damage rating is increased by 15.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "620", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5511": { - "id": 5511, - "name": "Damage Reduction Metamorphi I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5512": { - "id": 5512, - "name": "Damage Reduction Metamorphi II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5513": { - "id": 5513, - "name": "Damage Reduction Metamorphi III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5514": { - "id": 5514, - "name": "Damage Reduction Metamorphi IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5515": { - "id": 5515, - "name": "Damage Reduction Metamorphi V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5516": { - "id": 5516, - "name": "Damage Reduction Metamorphi VI", - "description": "Your damage reduction rating is increased by 6.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5517": { - "id": 5517, - "name": "Damage Reduction Metamorphi VII", - "description": "Your damage reduction rating is increased by 7.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5518": { - "id": 5518, - "name": "Damage Reduction Metamorphi VIII", - "description": "Your damage reduction rating is increased by 8.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5519": { - "id": 5519, - "name": "Damage Reduction Metamorphi IX", - "description": "Your damage reduction rating is increased by 10.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5520": { - "id": 5520, - "name": "Damage Reduction Metamorphi X", - "description": "Your damage reduction rating is increased by 12.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5521": { - "id": 5521, - "name": "Damage Reduction Metamorphi XI", - "description": "Your damage reduction rating is increased by 15.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "621", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5522": { - "id": 5522, - "name": "Acid Spit Vulnerability 1", - "description": "Increases damage the target takes from acid by 185%.", - "school": "War Magic", - "difficulty": "325", - "duration": "-1", - "mana": "70", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "5523": { - "id": 5523, - "name": "Acid Spit Vulnerability 2", - "description": "Increases damage the target takes from acid by 210%.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "102", - "speed": "0.15", - "target_effect": "50", - "target_mask": "16" - }, - "5524": { - "id": 5524, - "name": "Falling stalactite", - "description": "Stalactites fall from the ceiling piercing anyone below.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "120", - "family": "237", - "speed": "0.25", - "target_effect": "0", - "target_mask": "0" - }, - "5525": { - "id": 5525, - "name": "Bloodstone Bolt I", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 16-40 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "1", - "duration": "-1", - "mana": "10", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5526": { - "id": 5526, - "name": "Bloodstone Bolt II", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 32-64 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "50", - "duration": "-1", - "mana": "20", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5527": { - "id": 5527, - "name": "Bloodstone Bolt III", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 48-88 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "100", - "duration": "-1", - "mana": "30", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5528": { - "id": 5528, - "name": "Bloodstone Bolt IV", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 56-112 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "150", - "duration": "-1", - "mana": "40", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5529": { - "id": 5529, - "name": "Bloodstone Bolt V", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 64-136 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "200", - "duration": "-1", - "mana": "50", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5530": { - "id": 5530, - "name": "Bloodstone Bolt VI", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 80-160 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "250", - "duration": "-1", - "mana": "60", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5531": { - "id": 5531, - "name": "Bloodstone Bolt VII", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 128-200 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "300", - "duration": "-1", - "mana": "70", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5532": { - "id": 5532, - "name": "Incantation of Bloodstone Bolt", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 192-248 points of health from the first thing it hits.", - "school": "Life Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "80", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5533": { - "id": 5533, - "name": "Entering Lord Kastellar's Lab", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5534": { - "id": 5534, - "name": "Entering the Bloodstone Factory", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5535": { - "id": 5535, - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 80-160 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "30", - "family": "117", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5536": { - "id": 5536, - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5537": { - "id": 5537, - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 50-100 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "150", - "duration": "-1", - "mana": "20", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5538": { - "id": 5538, - "name": "Darkened Heart", - "description": "Your heart. darkened with hate. provides an increase to your Void Magic skill by 2.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "10800", - "mana": "10", - "family": "649", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5539": { - "id": 5539, - "name": "Warded Cavern Passage", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5540": { - "id": 5540, - "name": "Warded Dungeon Passage", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "5541": { - "id": 5541, - "name": "Lost City of Neftet Recall", - "description": "Sends the caster to the Lost City of Neftet.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "5542": { - "id": 5542, - "name": "Burning Sands Infliction", - "description": "You've been covered in burning sand. causing damage over time. The target loses 357 points of health over 30 seconds.", - "school": "Life Magic", - "difficulty": "350", - "duration": "30", - "mana": "80", - "family": "618", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5543": { - "id": 5543, - "name": "Curse of the Burning Sands", - "description": "Your wounds are cursed and don't heal as well.", - "school": "Life Magic", - "difficulty": "350", - "duration": "300", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "5544": { - "id": 5544, - "name": "Nether Blast I", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "75", - "duration": "-1", - "mana": "40", - "family": "135", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5545": { - "id": 5545, - "name": "Nether Blast II", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "75", - "duration": "-1", - "mana": "40", - "family": "135", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5546": { - "id": 5546, - "name": "Nether Blast III", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 21-47 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "125", - "duration": "-1", - "mana": "15", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5547": { - "id": 5547, - "name": "Nether Blast IV", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 31-63 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "175", - "duration": "-1", - "mana": "20", - "family": "135", - "speed": "0.2", - "target_effect": "0", - "target_mask": "16" - }, - "5548": { - "id": 5548, - "name": "Nether Blast V", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 36-73 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "225", - "duration": "-1", - "mana": "25", - "family": "135", - "speed": "0.3", - "target_effect": "0", - "target_mask": "16" - }, - "5549": { - "id": 5549, - "name": "Nether Blast VI", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 42-89 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "275", - "duration": "-1", - "mana": "30", - "family": "135", - "speed": "0.4", - "target_effect": "0", - "target_mask": "16" - }, - "5550": { - "id": 5550, - "name": "Nether Blast VII", - "description": "Shoots five bolts of nether outward from the caster. Each bolt does 78-126 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "325", - "duration": "-1", - "mana": "35", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5551": { - "id": 5551, - "name": "Incantation of Nether Blast", - "description": "Shoots five bolts of nether outward from the caster. Each bolt does 115-158 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "135", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5552": { - "id": 5552, - "name": "Sigil of Purity IX", - "description": "Your DoT reduction rating is increased by 36.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5553": { - "id": 5553, - "name": "Sigil of Perserverance I", - "description": "Your health drain resistance rating is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5554": { - "id": 5554, - "name": "Sigil of Perserverance X", - "description": "Your health drain resistance rating is increased by 40.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5555": { - "id": 5555, - "name": "Sigil of Perserverance XI", - "description": "Your health drain resistance rating is increased by 44.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5556": { - "id": 5556, - "name": "Sigil of Perserverance XII", - "description": "Your health drain resistance rating is increased by 48.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5557": { - "id": 5557, - "name": "Sigil of Perserverance XIII", - "description": "desc desc Your health drain resistance rating is increased by 52.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5558": { - "id": 5558, - "name": "Sigil of Perserverance XIV", - "description": "desc desc Your health drain resistance rating is increased by 56.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5559": { - "id": 5559, - "name": "Sigil of Perserverance XV", - "description": "desc desc Your health drain resistance rating is increased by 50.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5560": { - "id": 5560, - "name": "Sigil of Perserverance II", - "description": "Your health drain resistance rating is increased by 8.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5561": { - "id": 5561, - "name": "Sigil of Perserverance III", - "description": "Your health drain resistance rating is increased by 12.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5562": { - "id": 5562, - "name": "Sigil of Perserverance IV", - "description": "Your health drain resistance rating is increased by 16.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5563": { - "id": 5563, - "name": "Sigil of Perserverance V", - "description": "Your health drain resistance rating is increased by 20.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5564": { - "id": 5564, - "name": "Sigil of Perserverance VI", - "description": "Your health drain resistance rating is increased by 24.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5565": { - "id": 5565, - "name": "Sigil of Perserverance VII", - "description": "Your health drain resistance rating is increased by 28.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5566": { - "id": 5566, - "name": "Sigil of Perserverance VIII", - "description": "Your health drain resistance rating is increased by 32.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5567": { - "id": 5567, - "name": "Sigil of Perserverance IX", - "description": "Your health drain resistance rating is increased by 36.", - "school": "Life Magic", - "difficulty": "9", - "duration": "510", - "mana": "70", - "family": "657", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5568": { - "id": 5568, - "name": "Sigil of Purity I", - "description": "Your DoT reduction rating is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5569": { - "id": 5569, - "name": "Sigil of Purity X", - "description": "Your DoT reduction rating is increased by 40.", - "school": "Life Magic", - "difficulty": "10", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5570": { - "id": 5570, - "name": "Sigil of Purity XI", - "description": "Your DoT reduction rating is increased by 44.", - "school": "Life Magic", - "difficulty": "11", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5571": { - "id": 5571, - "name": "Sigil of Purity XII", - "description": "Your DoT reduction rating is increased by 48.", - "school": "Life Magic", - "difficulty": "12", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5572": { - "id": 5572, - "name": "Sigil of Purity XIII", - "description": "Your DoT reduction rating is increased by 52.", - "school": "Life Magic", - "difficulty": "13", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5573": { - "id": 5573, - "name": "Sigil of Purity XIV", - "description": "Your DoT reduction rating is increased by 56.", - "school": "Life Magic", - "difficulty": "14", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5574": { - "id": 5574, - "name": "Sigil of Purity XV", - "description": "Your DoT reduction rating is increased by 60.", - "school": "Life Magic", - "difficulty": "15", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5575": { - "id": 5575, - "name": "Sigil of Purity II", - "description": "Your DoT reduction rating is increased by 8.", - "school": "Life Magic", - "difficulty": "2", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5576": { - "id": 5576, - "name": "Sigil of Purity III", - "description": "Your DoT reduction rating is increased by 12.", - "school": "Life Magic", - "difficulty": "3", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5577": { - "id": 5577, - "name": "Sigil of Purity IV", - "description": "Your DoT reduction rating is increased by 16.", - "school": "Life Magic", - "difficulty": "4", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5578": { - "id": 5578, - "name": "Sigil of Purity V", - "description": "Your DoT reduction rating is increased by 20.", - "school": "Life Magic", - "difficulty": "5", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5579": { - "id": 5579, - "name": "Sigil of Purity VI", - "description": "Your DoT reduction rating is increased by 24.", - "school": "Life Magic", - "difficulty": "6", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5580": { - "id": 5580, - "name": "Sigil of Purity VII", - "description": "Your DoT reduction rating is increased by 28.", - "school": "Life Magic", - "difficulty": "7", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5581": { - "id": 5581, - "name": "Sigil of Purity VIII", - "description": "Your DoT reduction rating is increased by 32.", - "school": "Life Magic", - "difficulty": "8", - "duration": "510", - "mana": "70", - "family": "658", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5582": { - "id": 5582, - "name": "Nullify All Rares", - "description": "Dispels all rare enchantments on the player.", - "school": "Life Magic", - "difficulty": "600", - "duration": "-1", - "mana": "340", - "family": "250", - "speed": "0.35", - "target_effect": "148", - "target_mask": "16" - }, - "5583": { - "id": 5583, - "name": "Weave of Alchemy I", - "description": "Increases the target's Alchemy skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5584": { - "id": 5584, - "name": "Weave of Alchemy II", - "description": "Increases the target's Alchemy skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5585": { - "id": 5585, - "name": "Weave of Alchemy III", - "description": "Increases the target's Alchemy skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5586": { - "id": 5586, - "name": "Weave of Alchemy IV", - "description": "Increases the target's Alchemy skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5587": { - "id": 5587, - "name": "Weave of Alchemy V", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5588": { - "id": 5588, - "name": "Weave of Arcane Lore I", - "description": "Increases the target's Arcane Lore skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5589": { - "id": 5589, - "name": "Weave of Arcane Lore II", - "description": "Increases the target's Arcane Lore skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5590": { - "id": 5590, - "name": "Weave of Arcane Lore III", - "description": "Increases the target's Arcane Lore skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5591": { - "id": 5591, - "name": "Weave of Arcane Lore IV", - "description": "Increases the target's Arcane Lore skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5592": { - "id": 5592, - "name": "Weave of Arcane Lore V", - "description": "Increases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5593": { - "id": 5593, - "name": "Weave of Armor Tinkering I", - "description": "Increases the target's Armor Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5594": { - "id": 5594, - "name": "Weave of Armor Tinkering II", - "description": "Increases the target's Armor Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5595": { - "id": 5595, - "name": "Weave of Armor Tinkering III", - "description": "Increases the target's Armor Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5596": { - "id": 5596, - "name": "Weave of Armor Tinkering IV", - "description": "Increases the target's Armor Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5597": { - "id": 5597, - "name": "Weave of Armor Tinkering V", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5598": { - "id": 5598, - "name": "Weave of Person Attunement I", - "description": "Increases the target's Assess Person skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5599": { - "id": 5599, - "name": "Weave of Person Attunement II", - "description": "Increases the target's Assess Person skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5600": { - "id": 5600, - "name": "Weave of Person Attunement III", - "description": "Increases the target's Assess Person skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5601": { - "id": 5601, - "name": "Weave of Person Attunement IV", - "description": "Increases the target's Assess Person skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5602": { - "id": 5602, - "name": "Weave of the Person Attunement V", - "description": "Increases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5603": { - "id": 5603, - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5604": { - "id": 5604, - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5605": { - "id": 5605, - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5606": { - "id": 5606, - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5607": { - "id": 5607, - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5608": { - "id": 5608, - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5609": { - "id": 5609, - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5610": { - "id": 5610, - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5611": { - "id": 5611, - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5612": { - "id": 5612, - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5613": { - "id": 5613, - "name": "Weave of Cooking I", - "description": "Increases the target's Cooking skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5614": { - "id": 5614, - "name": "Weave of Cooking II", - "description": "Increases the target's Cooking skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5615": { - "id": 5615, - "name": "Weave of Cooking III", - "description": "Increases the target's Cooking skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5616": { - "id": 5616, - "name": "Weave of Cooking IV", - "description": "Increases the target's Cooking skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5617": { - "id": 5617, - "name": "Weave of the Cooking V", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5618": { - "id": 5618, - "name": "Weave of Creature Enchantment I", - "description": "Increases the target's Creature Enchantment skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5619": { - "id": 5619, - "name": "Weave of Creature Enchantment II", - "description": "Increases the target's Creature Enchantment skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5620": { - "id": 5620, - "name": "Weave of Creature Enchantment III", - "description": "Increases the target's Creature Enchantment skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5621": { - "id": 5621, - "name": "Weave of Creature Enchantment IV", - "description": "Increases the target's Creature Enchantment skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5622": { - "id": 5622, - "name": "Weave of the Creature Enchantment V", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5623": { - "id": 5623, - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5624": { - "id": 5624, - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5625": { - "id": 5625, - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5626": { - "id": 5626, - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5627": { - "id": 5627, - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5628": { - "id": 5628, - "name": "Weave of Finesse Weapons I", - "description": "Increases the target's Finesse Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5629": { - "id": 5629, - "name": "Weave of Finesse Weapons II", - "description": "Increases the target's Finesse Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5630": { - "id": 5630, - "name": "Weave of Finesse Weapons III", - "description": "Increases the target's Finesse Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5631": { - "id": 5631, - "name": "Weave of Finesse Weapons IV", - "description": "Increases the target's Finesse Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5632": { - "id": 5632, - "name": "Weave of Finesse Weapons V", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5633": { - "id": 5633, - "name": "Weave of Deception I", - "description": "Increases the target's Deception skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5634": { - "id": 5634, - "name": "Weave of the Deception II", - "description": "Increases the target's Deception skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5635": { - "id": 5635, - "name": "Weave of the Deception III", - "description": "Increases the target's Deception skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5636": { - "id": 5636, - "name": "Weave of the Deception IV", - "description": "Increases the target's Deception skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5637": { - "id": 5637, - "name": "Weave of the Deception V", - "description": "Increases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5638": { - "id": 5638, - "name": "Weave of Fletching I", - "description": "Increases the target's Fletching skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5639": { - "id": 5639, - "name": "Weave of the Fletching II", - "description": "Increases the target's Fletching skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5640": { - "id": 5640, - "name": "Weave of the Fletching III", - "description": "Increases the target's Fletching skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5641": { - "id": 5641, - "name": "Weave of the Fletching IV", - "description": "Increases the target's Fletching skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5642": { - "id": 5642, - "name": "Weave of the Fletching V", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5643": { - "id": 5643, - "name": "Weave of Healing I", - "description": "Increases the target's Healing skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5644": { - "id": 5644, - "name": "Weave of the Healing II", - "description": "Increases the target's Healing skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5645": { - "id": 5645, - "name": "Weave of the Healing III", - "description": "Increases the target's Healing skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5646": { - "id": 5646, - "name": "Weave of the Healing IV", - "description": "Increases the target's Healing skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5647": { - "id": 5647, - "name": "Weave of the Healing V", - "description": "Increases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5648": { - "id": 5648, - "name": "Weave of Item Enchantment I", - "description": "Increases the target's Item Enchantment skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5649": { - "id": 5649, - "name": "Weave of Item Enchantment II", - "description": "Increases the target's Item Enchantment skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5650": { - "id": 5650, - "name": "Weave of Item Enchantment III", - "description": "Increases the target's Item Enchantment skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5651": { - "id": 5651, - "name": "Weave of Item Enchantment IV", - "description": "Increases the target's Item Enchantment skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5652": { - "id": 5652, - "name": "Weave of the Item Enchantment V", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5653": { - "id": 5653, - "name": "Weave of Item Tinkering I", - "description": "Increases the target's Item Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5654": { - "id": 5654, - "name": "Weave of Item Tinkering II", - "description": "Increases the target's Item Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5655": { - "id": 5655, - "name": "Weave of Item Tinkering III", - "description": "Increases the target's Item Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5656": { - "id": 5656, - "name": "Weave of Item Tinkering IV", - "description": "Increases the target's Item Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5657": { - "id": 5657, - "name": "Weave of the Item Tinkering V", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5658": { - "id": 5658, - "name": "Weave of Leadership I", - "description": "Increases the target's Leadership skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5659": { - "id": 5659, - "name": "Weave of Leadership II", - "description": "Increases the target's Leadership skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5660": { - "id": 5660, - "name": "Weave of Leadership III", - "description": "Increases the target's Leadership skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5661": { - "id": 5661, - "name": "Weave of Leadership IV", - "description": "Increases the target's Leadership skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5662": { - "id": 5662, - "name": "Weave of Leadership V", - "description": "Increases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5663": { - "id": 5663, - "name": "Weave of Life Magic I", - "description": "Increases the target's Life Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5664": { - "id": 5664, - "name": "Weave of Life Magic II", - "description": "Increases the target's Life Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5665": { - "id": 5665, - "name": "Weave of Life Magic III", - "description": "Increases the target's Life Magic skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5666": { - "id": 5666, - "name": "Weave of Life Magic IV", - "description": "Increases the target's Life Magic skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5667": { - "id": 5667, - "name": "Weave of Life Magic V", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5668": { - "id": 5668, - "name": "Weave of Fealty I", - "description": "Increases the target's Loyalty skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5669": { - "id": 5669, - "name": "Weave of Fealty II", - "description": "Increases the target's Loyalty skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5670": { - "id": 5670, - "name": "Weave of Fealty III", - "description": "Increases the target's Loyalty skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5671": { - "id": 5671, - "name": "Weave of Fealty IV", - "description": "Increases the target's Loyalty skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5672": { - "id": 5672, - "name": "Weave of Fealty V", - "description": "Increases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5673": { - "id": 5673, - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5674": { - "id": 5674, - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5675": { - "id": 5675, - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5676": { - "id": 5676, - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5677": { - "id": 5677, - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5678": { - "id": 5678, - "name": "Weave of Magic Resistance I", - "description": "Increases the target's Magic Defense skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5679": { - "id": 5679, - "name": "Weave of Magic Resistance II", - "description": "Increases the target's Magic Defense skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5680": { - "id": 5680, - "name": "Weave of Magic Resistance III", - "description": "Increases the target's Magic Defense skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5681": { - "id": 5681, - "name": "Weave of Magic Resistance IV", - "description": "Increases the target's Magic Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5682": { - "id": 5682, - "name": "Weave of the Magic Resistance V", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5683": { - "id": 5683, - "name": "Weave of Magic Item Tinkering I", - "description": "Increases the target's Magic Item Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5684": { - "id": 5684, - "name": "Weave of Magic Item Tinkering II", - "description": "Increases the target's Magic Item Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5685": { - "id": 5685, - "name": "Weave of Magic Item Tinkering III", - "description": "Increases the target's Magic Item Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5686": { - "id": 5686, - "name": "Weave of Magic Item Tinkering IV", - "description": "Increases the target's Magic Item Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5687": { - "id": 5687, - "name": "Weave of the Magic Item Tinkering V", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5688": { - "id": 5688, - "name": "Weave of Mana Conversion I", - "description": "Increases the target's Mana Conversion skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5689": { - "id": 5689, - "name": "Weave of Mana Conversion II", - "description": "Increases the target's Mana Conversion skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5690": { - "id": 5690, - "name": "Weave of Mana Conversion III", - "description": "Increases the target's Mana Conversion skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5691": { - "id": 5691, - "name": "Weave of Mana Conversion IV", - "description": "Increases the target's Mana Conversion skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5692": { - "id": 5692, - "name": "Weave of Mana Conversion V", - "description": "Increases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5693": { - "id": 5693, - "name": "Weave of Invulnerability I", - "description": "Increases the target's Melee Defense skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5694": { - "id": 5694, - "name": "Weave of Invulnerability II", - "description": "Increases the target's Melee Defense skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5695": { - "id": 5695, - "name": "Weave of Invulnerability III", - "description": "Increases the target's Melee Defense skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5696": { - "id": 5696, - "name": "Weave of Invulnerability IV", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5697": { - "id": 5697, - "name": "Weave of the Invulnerability V", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5698": { - "id": 5698, - "name": "Weave of Impregnability I", - "description": "Increases the target's Missile Defense skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5699": { - "id": 5699, - "name": "Weave of Impregnability II", - "description": "Increases the target's Missile Defense skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5700": { - "id": 5700, - "name": "Weave of Impregnability III", - "description": "Increases the target's Missile Defense skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5701": { - "id": 5701, - "name": "Weave of Impregnability IV", - "description": "Increases the target's Missile Defense skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5702": { - "id": 5702, - "name": "Weave of the Impregnability V", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "22", - "target_mask": "16" - }, - "5703": { - "id": 5703, - "name": "Weave of Salvaging I", - "description": "Increases the target's Salvaging skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5704": { - "id": 5704, - "name": "Weave of Salvaging II", - "description": "Increases the target's Salvaging skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5705": { - "id": 5705, - "name": "Weave of Salvaging III", - "description": "Increases the target's Salvaging skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5706": { - "id": 5706, - "name": "Weave of Salvaging IV", - "description": "Increases the target's Salvaging skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5707": { - "id": 5707, - "name": "Weave of Salvaging V", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5708": { - "id": 5708, - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5709": { - "id": 5709, - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5710": { - "id": 5710, - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5711": { - "id": 5711, - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5712": { - "id": 5712, - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5713": { - "id": 5713, - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5714": { - "id": 5714, - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5715": { - "id": 5715, - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5716": { - "id": 5716, - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5717": { - "id": 5717, - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5718": { - "id": 5718, - "name": "Weave of Heavy Weapons I", - "description": "Increases the target's Heavy Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5719": { - "id": 5719, - "name": "Weave of Heavy Weapons II", - "description": "Increases the target's Heavy Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5720": { - "id": 5720, - "name": "Weave of Heavy Weapons III", - "description": "Increases the target's Heavy Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5721": { - "id": 5721, - "name": "Weave of Heavy Weapons IV", - "description": "Increases the target's Heavy Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5722": { - "id": 5722, - "name": "Weave of Heavy Weapons V", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5723": { - "id": 5723, - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5724": { - "id": 5724, - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5725": { - "id": 5725, - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5726": { - "id": 5726, - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5727": { - "id": 5727, - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5728": { - "id": 5728, - "name": "Weave of Two Handed Combat I", - "description": "Increases the target's Two Handed Combat skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5729": { - "id": 5729, - "name": "Weave of Two Handed Combat II", - "description": "Increases the target's Two Handed Combat skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5730": { - "id": 5730, - "name": "Weave of Two Handed Combat III", - "description": "Increases the target's Two Handed Combat skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5731": { - "id": 5731, - "name": "Weave of Two Handed Combat IV", - "description": "Increases the target's Two Handed Combat skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5732": { - "id": 5732, - "name": "Weave of Two Handed Combat V", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5733": { - "id": 5733, - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5734": { - "id": 5734, - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5735": { - "id": 5735, - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5736": { - "id": 5736, - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5737": { - "id": 5737, - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5738": { - "id": 5738, - "name": "Weave of Void Magic I", - "description": "Increases the target's Void Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5739": { - "id": 5739, - "name": "Weave of Void Magic II", - "description": "Increases the target's Void Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5740": { - "id": 5740, - "name": "Weave of Void Magic III", - "description": "Increases the target's Void Magic skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5741": { - "id": 5741, - "name": "Weave of Void Magic IV", - "description": "Increases the target's Void Magic skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5742": { - "id": 5742, - "name": "Weave of Void Magic V", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5743": { - "id": 5743, - "name": "Weave of War Magic I", - "description": "Increases the target's War Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5744": { - "id": 5744, - "name": "Weave of War Magic II", - "description": "Increases the target's War Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5745": { - "id": 5745, - "name": "Weave of War Magic III", - "description": "Increases the target's War Magic skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5746": { - "id": 5746, - "name": "Weave of War Magic IV", - "description": "Increases the target's War Magic skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5747": { - "id": 5747, - "name": "Weave of War Magic V", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5748": { - "id": 5748, - "name": "Weave of Weapon Tinkering I", - "description": "Increases the target's Weapon Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5749": { - "id": 5749, - "name": "Weave of Weapon Tinkering II", - "description": "Increases the target's Weapon Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5750": { - "id": 5750, - "name": "Weave of Weapon Tinkering III", - "description": "Increases the target's Weapon Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5751": { - "id": 5751, - "name": "Weave of Weapon Tinkering IV", - "description": "Increases the target's Weapon Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5752": { - "id": 5752, - "name": "Weave of the Weapon Tinkering V", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5753": { - "id": 5753, - "name": "Cloaked in Skill", - "description": "Increases all of the target's skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "660", - "speed": "0.15", - "target_effect": "22", - "target_mask": "16" - }, - "5754": { - "id": 5754, - "name": "Shroud of Darkness (Magic)", - "description": "Decreases the target's Magic Defense skill by half.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "-1", - "mana": "70", - "family": "661", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "5755": { - "id": 5755, - "name": "Shroud of Darkness (Melee)", - "description": "Decreases the targets's Melee Defense skill by half.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "-1", - "mana": "70", - "family": "662", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "5756": { - "id": 5756, - "name": "Shroud of Darkness (Missile)", - "description": "Decreases the target's Missile Defense skill by half.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "-1", - "mana": "70", - "family": "663", - "speed": "0.15", - "target_effect": "23", - "target_mask": "16" - }, - "5757": { - "id": 5757, - "name": "Weave of Creature Attunement III", - "description": "Increases the target's Assess Creature skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "5758": { - "id": 5758, - "name": "Weave of Creature Attunement IV", - "description": "Increases the target's Assess Creature skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5759": { - "id": 5759, - "name": "Weave of the Creature Attunement V", - "description": "Increases the target's Assess Creature skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5760": { - "id": 5760, - "name": "Weave of Creature Attunement I", - "description": "Increases the target's Assess Creature skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5761": { - "id": 5761, - "name": "Weave of Creature Attunement II", - "description": "Increases the target's Assess Creature skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "28", - "target_mask": "16" - }, - "5762": { - "id": 5762, - "name": "Rolling Death", - "description": "A giant snowball.", - "school": "War Magic", - "difficulty": "320", - "duration": "-1", - "mana": "120", - "family": "117", - "speed": "0", - "target_effect": "0", - "target_mask": "0" - }, - "5763": { - "id": 5763, - "name": "Dirty Fighting Ineptitude Other I", - "description": "Decreases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "664", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5764": { - "id": 5764, - "name": "Dirty Fighting Ineptitude Other II", - "description": "Decreases the target's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "664", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "5765": { - "id": 5765, - "name": "Dirty Fighting Ineptitude Other III", - "description": "Decreases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "664", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "5766": { - "id": 5766, - "name": "Dirty Fighting Ineptitude Other IV", - "description": "Decreases the target's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "664", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5767": { - "id": 5767, - "name": "Dirty Fighting Ineptitude Other V", - "description": "Decreases the target's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "664", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "5768": { - "id": 5768, - "name": "Dirty Fighting Ineptitude Other VI", - "description": "Decreases the target's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "664", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "5769": { - "id": 5769, - "name": "Dirty Fighting Ineptitude Other VII", - "description": "Decreases the target's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "664", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5770": { - "id": 5770, - "name": "Incantation of Dirty Fighting Ineptitude Other", - "description": "Decreases the target's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "664", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5771": { - "id": 5771, - "name": "Dirty Fighting Mastery Other I", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "665", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5772": { - "id": 5772, - "name": "Dirty Fighting Mastery Other II", - "description": "Increases the target's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "665", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5773": { - "id": 5773, - "name": "Dirty Fighting Mastery Other III", - "description": "Increases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "665", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5774": { - "id": 5774, - "name": "Dirty Fighting Mastery Other IV", - "description": "Increases the target's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5775": { - "id": 5775, - "name": "Dirty Fighting Mastery Other V", - "description": "Increases the target's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "665", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5776": { - "id": 5776, - "name": "Dirty Fighting Mastery Other VI", - "description": "Increases the target's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "665", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5777": { - "id": 5777, - "name": "Dirty Fighting Mastery Other VII", - "description": "Increases the target's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5778": { - "id": 5778, - "name": "Incantation of Dirty Fighting Mastery Other", - "description": "Increases the target's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5779": { - "id": 5779, - "name": "Dirty Fighting Mastery Self I", - "description": "Increases the caster's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "665", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5780": { - "id": 5780, - "name": "Dirty Fighting Mastery Self II", - "description": "Increases the caster's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "665", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5781": { - "id": 5781, - "name": "Dirty Fighting Mastery Self III", - "description": "Increases the caster's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "665", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5782": { - "id": 5782, - "name": "Dirty Fighting Mastery Self IV", - "description": "Increases the caster's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5783": { - "id": 5783, - "name": "Dirty Fighting Mastery Self V", - "description": "Increases the caster's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "665", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5784": { - "id": 5784, - "name": "Dirty Fighting Mastery Self VI", - "description": "Increases the caster's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "665", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5785": { - "id": 5785, - "name": "Dirty Fighting Mastery Self VII", - "description": "Increases the caster's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5786": { - "id": 5786, - "name": "Incantation of Dirty Fighting Mastery Self", - "description": "Increases the caster's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "665", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5787": { - "id": 5787, - "name": "Dual Wield Ineptitude Other I", - "description": "Decreases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "667", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5788": { - "id": 5788, - "name": "Dual Wield Ineptitude Other II", - "description": "Decreases the target's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "667", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "5789": { - "id": 5789, - "name": "Dual Wield Ineptitude Other III", - "description": "Decreases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "667", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "5790": { - "id": 5790, - "name": "Dual Wield Ineptitude Other IV", - "description": "Decreases the target's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "667", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5791": { - "id": 5791, - "name": "Dual Wield Ineptitude Other V", - "description": "Decreases the target's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "667", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "5792": { - "id": 5792, - "name": "Dual Wield Ineptitude Other VI", - "description": "Decreases the target's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "667", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "5793": { - "id": 5793, - "name": "Dual Wield Ineptitude Other VII", - "description": "Decreases the target's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "667", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5794": { - "id": 5794, - "name": "Incantation of Dual Wield Ineptitude Other", - "description": "Decreases the target's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "667", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5795": { - "id": 5795, - "name": "Dual Wield Mastery Other I", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "668", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5796": { - "id": 5796, - "name": "Dual Wield Mastery Other II", - "description": "Increases the target's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "668", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5797": { - "id": 5797, - "name": "Dual Wield Mastery Other III", - "description": "Increases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "668", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5798": { - "id": 5798, - "name": "Dual Wield Mastery Other IV", - "description": "Increases the target's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5799": { - "id": 5799, - "name": "Dual Wield Mastery Other V", - "description": "Increases the target's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "668", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5800": { - "id": 5800, - "name": "Dual Wield Mastery Other VI", - "description": "Increases the target's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "668", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5801": { - "id": 5801, - "name": "Dual Wield Mastery Other VII", - "description": "Increases the target's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5802": { - "id": 5802, - "name": "Incantation of Dual Wield Mastery Other", - "description": "Increases the target's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5803": { - "id": 5803, - "name": "Dual Wield Mastery Self I", - "description": "Increases the caster's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "668", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5804": { - "id": 5804, - "name": "Dual Wield Mastery Self II", - "description": "Increases the caster's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "668", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5805": { - "id": 5805, - "name": "Dual Wield Mastery Self III", - "description": "Increases the caster's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "668", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5806": { - "id": 5806, - "name": "Dual Wield Mastery Self IV", - "description": "Increases the caster's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5807": { - "id": 5807, - "name": "Dual Wield Mastery Self V", - "description": "Increases the caster's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "668", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5808": { - "id": 5808, - "name": "Dual Wield Mastery Self VI", - "description": "Increases the caster's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "668", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5809": { - "id": 5809, - "name": "Dual Wield Mastery Self VII", - "description": "Increases the caster's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5810": { - "id": 5810, - "name": "Incantation of Dual Wield Mastery Self", - "description": "Increases the caster's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "668", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5811": { - "id": 5811, - "name": "Recklessness Ineptitude Other I", - "description": "Decreases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "670", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5812": { - "id": 5812, - "name": "Recklessness Ineptitude Other II", - "description": "Decreases the target's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "670", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "5813": { - "id": 5813, - "name": "Recklessness Ineptitude Other III", - "description": "Decreases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "670", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "5814": { - "id": 5814, - "name": "Recklessness Ineptitude Other IV", - "description": "Decreases the target's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "670", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5815": { - "id": 5815, - "name": "Recklessness Ineptitude Other V", - "description": "Decreases the target's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "670", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "5816": { - "id": 5816, - "name": "Recklessness Ineptitude Other VI", - "description": "Decreases the target's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "670", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "5817": { - "id": 5817, - "name": "Recklessness Ineptitude Other VII", - "description": "Decreases the target's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "670", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5818": { - "id": 5818, - "name": "Incantation of Recklessness Ineptitude Other", - "description": "Decreases the target's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "670", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5819": { - "id": 5819, - "name": "Recklessness Mastery Other I", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "671", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5820": { - "id": 5820, - "name": "Recklessness Mastery Other II", - "description": "Increases the target's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "671", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5821": { - "id": 5821, - "name": "Recklessness Mastery Other III", - "description": "Increases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "671", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5822": { - "id": 5822, - "name": "Recklessness Mastery Other IV", - "description": "Increases the target's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5823": { - "id": 5823, - "name": "Recklessness Mastery Other V", - "description": "Increases the target's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "671", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5824": { - "id": 5824, - "name": "Recklessness Mastery Other VI", - "description": "Increases the target's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "671", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5825": { - "id": 5825, - "name": "Recklessness Mastery Other VII", - "description": "Increases the target's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5826": { - "id": 5826, - "name": "Incantation of Recklessness Mastery Other", - "description": "Increases the target's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5827": { - "id": 5827, - "name": "Recklessness Mastery Self I", - "description": "Increases the caster's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "671", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5828": { - "id": 5828, - "name": "Recklessness Mastery Self II", - "description": "Increases the caster's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "671", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5829": { - "id": 5829, - "name": "Recklessness Mastery Self III", - "description": "Increases the caster's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "671", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5830": { - "id": 5830, - "name": "Recklessness Mastery Self IV", - "description": "Increases the caster's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5831": { - "id": 5831, - "name": "Recklessness Mastery Self V", - "description": "Increases the caster's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "671", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5832": { - "id": 5832, - "name": "Recklessness Mastery Self VI", - "description": "Increases the caster's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "671", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5833": { - "id": 5833, - "name": "Recklessness Mastery Self VII", - "description": "Increases the caster's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5834": { - "id": 5834, - "name": "Incantation of Recklessness Mastery Self", - "description": "Increases the caster's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "671", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5835": { - "id": 5835, - "name": "Shield Ineptitude Other I", - "description": "Decreases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "673", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5836": { - "id": 5836, - "name": "Shield Ineptitude Other II", - "description": "Decreases the target's Shield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "673", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "5837": { - "id": 5837, - "name": "Shield Ineptitude Other III", - "description": "Decreases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "673", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "5838": { - "id": 5838, - "name": "Shield Ineptitude Other IV", - "description": "Decreases the target's Shield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "673", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5839": { - "id": 5839, - "name": "Shield Ineptitude Other V", - "description": "Decreases the target's Shield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "673", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "5840": { - "id": 5840, - "name": "Shield Ineptitude Other VI", - "description": "Decreases the target's Shield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "673", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "5841": { - "id": 5841, - "name": "Shield Ineptitude Other VII", - "description": "Decreases the target's Shield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "673", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5842": { - "id": 5842, - "name": "Incantation of Shield Ineptitude Other", - "description": "Decreases the target's Shield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "673", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5843": { - "id": 5843, - "name": "Shield Mastery Other I", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "674", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5844": { - "id": 5844, - "name": "Shield Mastery Other II", - "description": "Increases the target's Shield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "674", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5845": { - "id": 5845, - "name": "Shield Mastery Other III", - "description": "Increases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "674", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5846": { - "id": 5846, - "name": "Shield Mastery Other IV", - "description": "Increases the target's Shield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5847": { - "id": 5847, - "name": "Shield Mastery Other V", - "description": "Increases the target's Shield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "674", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5848": { - "id": 5848, - "name": "Shield Mastery Other VI", - "description": "Increases the target's Shield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "674", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5849": { - "id": 5849, - "name": "Shield Mastery Other VII", - "description": "Increases the target's Shield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5850": { - "id": 5850, - "name": "Incantation of Shield Mastery Other", - "description": "Increases the target's Shield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5851": { - "id": 5851, - "name": "Shield Mastery Self I", - "description": "Increases the caster's Shield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "674", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5852": { - "id": 5852, - "name": "Shield Mastery Self II", - "description": "Increases the caster's Shield skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "674", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5853": { - "id": 5853, - "name": "Shield Mastery Self III", - "description": "Increases the caster's Shield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "674", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5854": { - "id": 5854, - "name": "Shield Mastery Self IV", - "description": "Increases the caster's Shield skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5855": { - "id": 5855, - "name": "Shield Mastery Self V", - "description": "Increases the caster's Shield skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "674", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5856": { - "id": 5856, - "name": "Shield Mastery Self VI", - "description": "Increases the caster's Shield skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "674", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5857": { - "id": 5857, - "name": "Shield Mastery Self VII", - "description": "Increases the caster's Shield skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5858": { - "id": 5858, - "name": "Incantation of Shield Mastery Self", - "description": "Increases the caster's Shield skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "674", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5859": { - "id": 5859, - "name": "Sneak Attack Ineptitude Other I", - "description": "Decreases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "676", - "speed": "0.01", - "target_effect": "29", - "target_mask": "16" - }, - "5860": { - "id": 5860, - "name": "Sneak Attack Ineptitude Other II", - "description": "Decreases the target's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "676", - "speed": "0.05", - "target_effect": "21", - "target_mask": "16" - }, - "5861": { - "id": 5861, - "name": "Sneak Attack Ineptitude Other III", - "description": "Decreases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "676", - "speed": "0.1", - "target_effect": "21", - "target_mask": "16" - }, - "5862": { - "id": 5862, - "name": "Sneak Attack Ineptitude Other IV", - "description": "Decreases the target's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "676", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5863": { - "id": 5863, - "name": "Sneak Attack Ineptitude Other V", - "description": "Decreases the target's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "676", - "speed": "0.2", - "target_effect": "21", - "target_mask": "16" - }, - "5864": { - "id": 5864, - "name": "Sneak Attack Ineptitude Other VI", - "description": "Decreases the target's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "676", - "speed": "0.3", - "target_effect": "21", - "target_mask": "16" - }, - "5865": { - "id": 5865, - "name": "Sneak Attack Ineptitude Other VII", - "description": "Decreases the target's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "676", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5866": { - "id": 5866, - "name": "Incantation of Sneak Attack Ineptitude Other", - "description": "Decreases the target's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "676", - "speed": "0.15", - "target_effect": "21", - "target_mask": "16" - }, - "5867": { - "id": 5867, - "name": "Sneak Attack Mastery Other I", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "677", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5868": { - "id": 5868, - "name": "Sneak Attack Mastery Other II", - "description": "Increases the target's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "677", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5869": { - "id": 5869, - "name": "Sneak Attack Mastery Other III", - "description": "Increases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "677", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5870": { - "id": 5870, - "name": "Sneak Attack Mastery Other IV", - "description": "Increases the target's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5871": { - "id": 5871, - "name": "Sneak Attack Mastery Other V", - "description": "Increases the target's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "677", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5872": { - "id": 5872, - "name": "Sneak Attack Mastery Other VI", - "description": "Increases the target's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "677", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5873": { - "id": 5873, - "name": "Sneak Attack Mastery Other VII", - "description": "Increases the target's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5874": { - "id": 5874, - "name": "Incantation of Sneak Attack Mastery Other", - "description": "Increases the target's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5875": { - "id": 5875, - "name": "Sneak Attack Mastery Self I", - "description": "Increases the caster's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "677", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5876": { - "id": 5876, - "name": "Sneak Attack Mastery Self II", - "description": "Increases the caster's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "677", - "speed": "0.05", - "target_effect": "20", - "target_mask": "16" - }, - "5877": { - "id": 5877, - "name": "Sneak Attack Mastery Self III", - "description": "Increases the caster's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "677", - "speed": "0.1", - "target_effect": "20", - "target_mask": "16" - }, - "5878": { - "id": 5878, - "name": "Sneak Attack Mastery Self IV", - "description": "Increases the caster's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5879": { - "id": 5879, - "name": "Sneak Attack Mastery Self V", - "description": "Increases the caster's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "677", - "speed": "0.2", - "target_effect": "20", - "target_mask": "16" - }, - "5880": { - "id": 5880, - "name": "Sneak Attack Mastery Self VI", - "description": "Increases the caster's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "677", - "speed": "0.3", - "target_effect": "20", - "target_mask": "16" - }, - "5881": { - "id": 5881, - "name": "Sneak Attack Mastery Self VII", - "description": "Increases the caster's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5882": { - "id": 5882, - "name": "Incantation of Sneak Attack Mastery Self", - "description": "Increases the caster's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "677", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "5883": { - "id": 5883, - "name": "Minor Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "666", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5884": { - "id": 5884, - "name": "Minor Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "669", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5885": { - "id": 5885, - "name": "Minor Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "672", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5886": { - "id": 5886, - "name": "Minor Shield Aptitude", - "description": "Increases the target's Shield skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "675", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5887": { - "id": 5887, - "name": "Minor Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "678", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5888": { - "id": 5888, - "name": "Major Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "666", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5889": { - "id": 5889, - "name": "Major Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "669", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5890": { - "id": 5890, - "name": "Major Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "672", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5891": { - "id": 5891, - "name": "Major Shield Aptitude", - "description": "Increases the target's Shield skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "675", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5892": { - "id": 5892, - "name": "Major Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "678", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5893": { - "id": 5893, - "name": "Epic Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "666", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5894": { - "id": 5894, - "name": "Epic Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "669", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5895": { - "id": 5895, - "name": "Epic Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "672", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5896": { - "id": 5896, - "name": "Epic Shield Aptitude", - "description": "Increases the target's Shield skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "675", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5897": { - "id": 5897, - "name": "Epic Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "678", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "5898": { - "id": 5898, - "name": "Moderate Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "666", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5899": { - "id": 5899, - "name": "Moderate Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "669", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5900": { - "id": 5900, - "name": "Moderate Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "672", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5901": { - "id": 5901, - "name": "Moderate Shield Aptitude", - "description": "Increases the target's Shield skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "675", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5902": { - "id": 5902, - "name": "Moderate Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "678", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "5903": { - "id": 5903, - "name": "Prodigal Dual Wield Mastery", - "description": "Increases the caster's Dual Wield skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "680", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5904": { - "id": 5904, - "name": "Spectral Dual Wield Mastery", - "description": "Increases the caster's Dual Wield skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "680", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5905": { - "id": 5905, - "name": "Prodigal Recklessness Mastery", - "description": "Increases the caster's Recklessness skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "681", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5906": { - "id": 5906, - "name": "Spectral Recklessness Mastery", - "description": "Increases the caster's Recklessness skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "681", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5907": { - "id": 5907, - "name": "Prodigal Shield Mastery", - "description": "Increases the caster's Shield skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "682", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5908": { - "id": 5908, - "name": "Spectral Shield Mastery", - "description": "Increases the caster's Shield skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "682", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5909": { - "id": 5909, - "name": "Prodigal Sneak Attack Mastery", - "description": "Increases the caster's Sneak Attack skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "683", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5910": { - "id": 5910, - "name": "Spectral Sneak Attack Mastery", - "description": "Increases the caster's Sneak Attack skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "683", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5911": { - "id": 5911, - "name": "Prodigal Dirty Fighting Mastery", - "description": "Increases the caster's Dirty Fighting skill by 250 points.", - "school": "Creature Enchantment", - "difficulty": "600", - "duration": "900", - "mana": "70", - "family": "679", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5912": { - "id": 5912, - "name": "Spectral Dirty Fighting Mastery", - "description": "Increases the caster's Dirty Fighting skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "540", - "mana": "70", - "family": "679", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "5913": { - "id": 5913, - "name": "Weave of Dirty Fighting I", - "description": "Increases the target's Dirty Fighting skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5914": { - "id": 5914, - "name": "Weave of Dirty Fighting II", - "description": "Increases the target's Dirty Fighting skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5915": { - "id": 5915, - "name": "Weave of Dirty Fighting III", - "description": "Increases the target's Dirty Fighting skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5916": { - "id": 5916, - "name": "Weave of Dirty Fighting IV", - "description": "Increases the target's Dirty Fighting skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5917": { - "id": 5917, - "name": "Weave of Dirty Fighting V", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5918": { - "id": 5918, - "name": "Weave of Dual Wield I", - "description": "Increases the target's Dual Wield skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5919": { - "id": 5919, - "name": "Weave of Dual Wield II", - "description": "Increases the target's Dual Wield skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5920": { - "id": 5920, - "name": "Weave of Dual Wield III", - "description": "Increases the target's Dual Wield skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5921": { - "id": 5921, - "name": "Weave of Dual Wield IV", - "description": "Increases the target's Dual Wield skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5922": { - "id": 5922, - "name": "Weave of Dual Wield V", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5923": { - "id": 5923, - "name": "Weave of Recklessness I", - "description": "Increases the target's Recklessness skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5924": { - "id": 5924, - "name": "Weave of Recklessness II", - "description": "Increases the target's Recklessness skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5925": { - "id": 5925, - "name": "Weave of Recklessness III", - "description": "Increases the target's Recklessness skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5926": { - "id": 5926, - "name": "Weave of Recklessness IV", - "description": "Increases the target's Recklessness skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5927": { - "id": 5927, - "name": "Weave of Recklessness V", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5928": { - "id": 5928, - "name": "Weave of Shield I", - "description": "Increases the target's Shield skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5929": { - "id": 5929, - "name": "Weave of Shield II", - "description": "Increases the target's Shield skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5930": { - "id": 5930, - "name": "Weave of Shield III", - "description": "Increases the target's Shield skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5931": { - "id": 5931, - "name": "Weave of Shield IV", - "description": "Increases the target's Shield skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5932": { - "id": 5932, - "name": "Weave of Shield V", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5933": { - "id": 5933, - "name": "Weave of Sneak Attack I", - "description": "Increases the target's Sneak Attack skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5934": { - "id": 5934, - "name": "Weave of Sneak Attack II", - "description": "Increases the target's Sneak Attack skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5935": { - "id": 5935, - "name": "Weave of Sneak Attack III", - "description": "Increases the target's Sneak Attack skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5936": { - "id": 5936, - "name": "Weave of Sneak Attack IV", - "description": "Increases the target's Sneak Attack skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5937": { - "id": 5937, - "name": "Weave of Sneak Attack V", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "18", - "target_mask": "16" - }, - "5938": { - "id": 5938, - "name": "Blinding Assault", - "description": "Decreases all of the target's attack skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "684", - "speed": "0.15", - "target_effect": "171", - "target_mask": "16" - }, - "5939": { - "id": 5939, - "name": "Bleeding Assault", - "description": "The target loses 120 points of health over 20 seconds.", - "school": "Life Magic", - "difficulty": "250", - "duration": "20", - "mana": "80", - "family": "685", - "speed": "0.15", - "target_effect": "173", - "target_mask": "16" - }, - "5940": { - "id": 5940, - "name": "Unbalancing Assault", - "description": "Decreases all of the target's defense skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "686", - "speed": "0.15", - "target_effect": "172", - "target_mask": "16" - }, - "5941": { - "id": 5941, - "name": "Traumatic Assault", - "description": "Decreases heals cast on the target by a rating of 20 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "687", - "speed": "0.15", - "target_effect": "170", - "target_mask": "16" - }, - "5942": { - "id": 5942, - "name": "Blinding Blow", - "description": "Decreases all of the target's attack skills by 10 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "684", - "speed": "0.15", - "target_effect": "171", - "target_mask": "16" - }, - "5943": { - "id": 5943, - "name": "Bleeding Blow", - "description": "The target loses 60 points of health over 20 seconds.", - "school": "Life Magic", - "difficulty": "250", - "duration": "20", - "mana": "80", - "family": "685", - "speed": "0.15", - "target_effect": "173", - "target_mask": "16" - }, - "5944": { - "id": 5944, - "name": "Unbalancing Blow", - "description": "Decreases all of the target's defense skills by 10 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "686", - "speed": "0.15", - "target_effect": "172", - "target_mask": "16" - }, - "5945": { - "id": 5945, - "name": "Traumatic Blow", - "description": "Decreases heals cast on the target by a rating of 10 for 20 seconds.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "20", - "mana": "70", - "family": "687", - "speed": "0.15", - "target_effect": "170", - "target_mask": "16" - }, - "5946": { - "id": 5946, - "name": "Novice Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "688", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5947": { - "id": 5947, - "name": "Apprentice Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "688", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5948": { - "id": 5948, - "name": "Journeyman Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "688", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5949": { - "id": 5949, - "name": "Master Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "688", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5950": { - "id": 5950, - "name": "Novice Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "689", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5951": { - "id": 5951, - "name": "Apprentice Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "689", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5952": { - "id": 5952, - "name": "Journeyman Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "689", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5953": { - "id": 5953, - "name": "Master Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "689", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5954": { - "id": 5954, - "name": "Novice Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "690", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5955": { - "id": 5955, - "name": "Apprentice Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "690", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5956": { - "id": 5956, - "name": "Journeyman Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "690", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5957": { - "id": 5957, - "name": "Master Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "690", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5958": { - "id": 5958, - "name": "Novice Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "691", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5959": { - "id": 5959, - "name": "Apprentice Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "691", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5960": { - "id": 5960, - "name": "Journeyman Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "691", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5961": { - "id": 5961, - "name": "Master Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "691", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5962": { - "id": 5962, - "name": "Novice Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "692", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5963": { - "id": 5963, - "name": "Apprentice Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "692", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5964": { - "id": 5964, - "name": "Journeyman Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "692", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5965": { - "id": 5965, - "name": "Master Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "692", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "5966": { - "id": 5966, - "name": "Vigor of Mhoire", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "70", - "family": "693", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "5967": { - "id": 5967, - "name": "Galvanic Arc", - "description": "Shoots a blue bolt of lighting at the target. The bolt does 200-300 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5968": { - "id": 5968, - "name": "Galvanic Blast", - "description": "Shoots five blue bolts of lightning outward from the caster. Each bolt does 50-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5969": { - "id": 5969, - "name": "Galvanic Strike", - "description": "Shoots a bolt of blue lighting at the target. The bolt does 200-300 points of electrical damage to the target.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "35", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5970": { - "id": 5970, - "name": "Galvanic Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 50-100 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "246", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5971": { - "id": 5971, - "name": "Galvanic Volley", - "description": "Shoots five blue bolts of lightning toward the target. Each bolt does 50-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "210", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "5972": { - "id": 5972, - "name": "Galvanic Bomb", - "description": "Shoots 12 waves of blue lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "5973": { - "id": 5973, - "name": "Protection of Mouf", - "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "15", - "duration": "5400", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "5974": { - "id": 5974, - "name": "Rare Armor Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "694", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5975": { - "id": 5975, - "name": "Rare Armor Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "694", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5976": { - "id": 5976, - "name": "Rare Armor Damage Boost III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "694", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5977": { - "id": 5977, - "name": "Rare Armor Damage Boost IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "694", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5978": { - "id": 5978, - "name": "Rare Armor Damage Boost V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "694", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "5979": { - "id": 5979, - "name": "Blighted Touch", - "description": "Sath'tik's blighted touch wracks your body. you are afflicted with his corruption and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "difficulty": "327", - "duration": "60", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "5980": { - "id": 5980, - "name": "Corrupted Touch", - "description": "Sath'tik's corruption has seeped into your skin. causing damage over time. The target loses 357 points of health over 30 seconds.", - "school": "Life Magic", - "difficulty": "350", - "duration": "30", - "mana": "80", - "family": "618", - "speed": "0.15", - "target_effect": "32", - "target_mask": "16" - }, - "5981": { - "id": 5981, - "name": "Sath'tik's Curse", - "description": "Your wounds are cursed and don't heal as well.", - "school": "Life Magic", - "difficulty": "350", - "duration": "300", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "5982": { - "id": 5982, - "name": "Aura of Hermetic Link Other I", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "1800", - "mana": "10", - "family": "195", - "speed": "0.01", - "target_effect": "67", - "target_mask": "16" - }, - "5983": { - "id": 5983, - "name": "Aura of Hermetic Link Other II", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "195", - "speed": "0.05", - "target_effect": "67", - "target_mask": "16" - }, - "5984": { - "id": 5984, - "name": "Aura of Hermetic Link Other III", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "195", - "speed": "0.1", - "target_effect": "67", - "target_mask": "16" - }, - "5985": { - "id": 5985, - "name": "Aura of Hermetic Link Other IV", - "description": "Increases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "5986": { - "id": 5986, - "name": "Aura of Hermetic Link Other V", - "description": "Increases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "195", - "speed": "0.2", - "target_effect": "67", - "target_mask": "16" - }, - "5987": { - "id": 5987, - "name": "Aura of Hermetic Link Other VI", - "description": "Increases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "195", - "speed": "0.3", - "target_effect": "67", - "target_mask": "16" - }, - "5988": { - "id": 5988, - "name": "Aura of Hermetic Link Other VII", - "description": "Increases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "5989": { - "id": 5989, - "name": "Aura of Incantation of Hermetic Link Other", - "description": "Increases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "195", - "speed": "0.15", - "target_effect": "67", - "target_mask": "16" - }, - "5990": { - "id": 5990, - "name": "Aura of Blood Drinker Other I", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "154", - "speed": "0", - "target_effect": "57", - "target_mask": "16" - }, - "5991": { - "id": 5991, - "name": "Aura of Blood Drinker Other II", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "154", - "speed": "0.05", - "target_effect": "57", - "target_mask": "16" - }, - "5992": { - "id": 5992, - "name": "Aura of Blood Drinker Other III", - "description": "Increases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "154", - "speed": "0.1", - "target_effect": "57", - "target_mask": "16" - }, - "5993": { - "id": 5993, - "name": "Aura of Blood Drinker Other IV", - "description": "Increases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5994": { - "id": 5994, - "name": "Aura of Blood Drinker Other V", - "description": "Increases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "154", - "speed": "0.2", - "target_effect": "57", - "target_mask": "16" - }, - "5995": { - "id": 5995, - "name": "Aura of Blood Drinker Other VI", - "description": "Increases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "154", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "5996": { - "id": 5996, - "name": "Aura of Blood Drinker Other VII", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5997": { - "id": 5997, - "name": "Aura of Incantation of Blood Drinker Other", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5998": { - "id": 5998, - "name": "Aura of Incantation of Blood Drinker Other", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "154", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "5999": { - "id": 5999, - "name": "Aura of Defender Other I", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "156", - "speed": "0.01", - "target_effect": "61", - "target_mask": "16" - }, - "6000": { - "id": 6000, - "name": "Aura of Defender Other II", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "156", - "speed": "0.05", - "target_effect": "61", - "target_mask": "16" - }, - "6001": { - "id": 6001, - "name": "Aura of Defender Other III", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "156", - "speed": "0.1", - "target_effect": "61", - "target_mask": "16" - }, - "6002": { - "id": 6002, - "name": "Aura of Defender Other IV", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "6003": { - "id": 6003, - "name": "Aura of Defender Other V", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "156", - "speed": "0.2", - "target_effect": "61", - "target_mask": "16" - }, - "6004": { - "id": 6004, - "name": "Aura of Defender Other VI", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "156", - "speed": "0.3", - "target_effect": "61", - "target_mask": "16" - }, - "6005": { - "id": 6005, - "name": "Aura of Defender Other VII", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "6006": { - "id": 6006, - "name": "Aura of Incantation of Defender Other", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "156", - "speed": "0.15", - "target_effect": "61", - "target_mask": "16" - }, - "6007": { - "id": 6007, - "name": "Aura of Heart Seeker Other I", - "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "152", - "speed": "0.01", - "target_effect": "59", - "target_mask": "16" - }, - "6008": { - "id": 6008, - "name": "Aura of Heart Seeker Other II", - "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "152", - "speed": "0.05", - "target_effect": "59", - "target_mask": "16" - }, - "6009": { - "id": 6009, - "name": "Aura of Heart Seeker Other III", - "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "152", - "speed": "0.1", - "target_effect": "59", - "target_mask": "16" - }, - "6010": { - "id": 6010, - "name": "Aura of Heart Seeker Other IV", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "6011": { - "id": 6011, - "name": "Aura of Heart Seeker Other V", - "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "152", - "speed": "0.2", - "target_effect": "59", - "target_mask": "16" - }, - "6012": { - "id": 6012, - "name": "Aura of Heart Seeker Other VI", - "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "152", - "speed": "0.3", - "target_effect": "59", - "target_mask": "16" - }, - "6013": { - "id": 6013, - "name": "Aura of Heart Seeker Other VII", - "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "6014": { - "id": 6014, - "name": "Aura of Incantation of Heart Seeker Other", - "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "152", - "speed": "0.15", - "target_effect": "59", - "target_mask": "16" - }, - "6015": { - "id": 6015, - "name": "Aura of Spirit Drinker Other I", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "695", - "speed": "0", - "target_effect": "57", - "target_mask": "16" - }, - "6016": { - "id": 6016, - "name": "Aura of Spirit Drinker Other II", - "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "695", - "speed": "0.05", - "target_effect": "57", - "target_mask": "16" - }, - "6017": { - "id": 6017, - "name": "Aura of Spirit Drinker Other III", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "695", - "speed": "0.1", - "target_effect": "57", - "target_mask": "16" - }, - "6018": { - "id": 6018, - "name": "Aura of Spirit Drinker Other IV", - "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "6019": { - "id": 6019, - "name": "Aura of Spirit Drinker Other V", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "695", - "speed": "0.2", - "target_effect": "57", - "target_mask": "16" - }, - "6020": { - "id": 6020, - "name": "Aura of Spirit Drinker Other VI", - "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "695", - "speed": "0.3", - "target_effect": "57", - "target_mask": "16" - }, - "6021": { - "id": 6021, - "name": "Aura of Spirit Drinker Other VII", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "6022": { - "id": 6022, - "name": "Aura of Incantation of Spirit Drinker Other", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "6023": { - "id": 6023, - "name": "Aura of Incantation of Spirit Drinker Other", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "difficulty": "350", - "duration": "5400", - "mana": "80", - "family": "695", - "speed": "0.15", - "target_effect": "57", - "target_mask": "16" - }, - "6024": { - "id": 6024, - "name": "Aura of Swift Killer Other I", - "description": "Improves a weapon's speed by 10 points.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "158", - "speed": "0", - "target_effect": "63", - "target_mask": "16" - }, - "6025": { - "id": 6025, - "name": "Aura of Swift Killer Other II", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "158", - "speed": "0.05", - "target_effect": "63", - "target_mask": "16" - }, - "6026": { - "id": 6026, - "name": "Aura of Swift Killer Other III", - "description": "Improves a weapon's speed by 30 points.", - "school": "Item Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "158", - "speed": "0.1", - "target_effect": "63", - "target_mask": "16" - }, - "6027": { - "id": 6027, - "name": "Aura of Swift Killer Other IV", - "description": "Improves a weapon's speed by 40 points.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "6028": { - "id": 6028, - "name": "Aura of Swift Killer Other V", - "description": "Improves a weapon's speed by 50 points.", - "school": "Item Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "158", - "speed": "0.2", - "target_effect": "63", - "target_mask": "16" - }, - "6029": { - "id": 6029, - "name": "Aura of Swift Killer Other VI", - "description": "Improves a weapon's speed by 60 points.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "158", - "speed": "0.3", - "target_effect": "63", - "target_mask": "16" - }, - "6030": { - "id": 6030, - "name": "Aura of Swift Killer Other VII", - "description": "Improves a weapon's speed by 70 points.", - "school": "Item Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "6031": { - "id": 6031, - "name": "Aura of Incantation of Swift Killer Other", - "description": "Improves a weapon's speed by 80 points.", - "school": "Item Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "158", - "speed": "0.15", - "target_effect": "63", - "target_mask": "16" - }, - "6032": { - "id": 6032, - "name": "Imprisoned", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6033": { - "id": 6033, - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6034": { - "id": 6034, - "name": "Proving Grounds Rolling Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6035": { - "id": 6035, - "name": "Spirit of Izexi", - "description": "Infuses a magic caster with the spirit of the Dark Falatacot. Izexi. Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "1", - "duration": "10800", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "6036": { - "id": 6036, - "name": "No Escape", - "description": "There is no escape! Target's run skill is reduced by 95%.", - "school": "Creature Enchantment", - "difficulty": "500", - "duration": "180", - "mana": "10", - "family": "78", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "6037": { - "id": 6037, - "name": "Fleeting Will", - "description": "The voices in your head command you. This spell decreases the target's Self by 80%.", - "school": "Creature Enchantment", - "difficulty": "285", - "duration": "180", - "mana": "10", - "family": "12", - "speed": "0.15", - "target_effect": "15", - "target_mask": "16" - }, - "6038": { - "id": 6038, - "name": "Warm and Fuzzy", - "description": "The cider makes you feel all warm and fuzzy inside. raising your Stamina by 10% for 1 hour.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "10", - "family": "411", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "6039": { - "id": 6039, - "name": "Legendary Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "377", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6040": { - "id": 6040, - "name": "Legendary Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "333", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6041": { - "id": 6041, - "name": "Legendary Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "335", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6042": { - "id": 6042, - "name": "Legendary Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "337", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6043": { - "id": 6043, - "name": "Legendary Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "311", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "6044": { - "id": 6044, - "name": "Legendary Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "331", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "6045": { - "id": 6045, - "name": "Legendary Cooking Prowess", - "description": "Increases the target's Cooking skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "339", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6046": { - "id": 6046, - "name": "Legendary Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "251", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6047": { - "id": 6047, - "name": "Legendary Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "313", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "6048": { - "id": 6048, - "name": "Legendary Deception Prowess", - "description": "Increases the target's Deception skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "343", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6049": { - "id": 6049, - "name": "Legendary Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "666", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6050": { - "id": 6050, - "name": "Legendary Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "669", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6051": { - "id": 6051, - "name": "Legendary Fealty", - "description": "Increases the target's Loyalty skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "345", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6052": { - "id": 6052, - "name": "Legendary Fletching Prowess", - "description": "Increases the target's Fletching skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "347", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6053": { - "id": 6053, - "name": "Legendary Healing Prowess", - "description": "Increases the target's Healing skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "349", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6054": { - "id": 6054, - "name": "Legendary Impregnability", - "description": "Increases the target's Missile Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "654", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "6055": { - "id": 6055, - "name": "Legendary Invulnerability", - "description": "Increases the target's Melee Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "351", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "6056": { - "id": 6056, - "name": "Legendary Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "253", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6057": { - "id": 6057, - "name": "Legendary Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "353", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6058": { - "id": 6058, - "name": "Legendary Jumping Prowess", - "description": "Increases the target's Jump skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "355", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "6059": { - "id": 6059, - "name": "Legendary Leadership", - "description": "Increases the target's Leadership skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "293", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6060": { - "id": 6060, - "name": "Legendary Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "357", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6061": { - "id": 6061, - "name": "Legendary Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "359", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6062": { - "id": 6062, - "name": "Legendary Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "361", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6063": { - "id": 6063, - "name": "Legendary Magic Resistance", - "description": "Increases the target's Magic Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "299", - "speed": "0.01", - "target_effect": "22", - "target_mask": "16" - }, - "6064": { - "id": 6064, - "name": "Legendary Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "363", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6065": { - "id": 6065, - "name": "Legendary Monster Attunement", - "description": "Increases the target's Assess Creature skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "365", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6066": { - "id": 6066, - "name": "Legendary Person Attunement", - "description": "Increases the target's Assess Person skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "367", - "speed": "0.01", - "target_effect": "28", - "target_mask": "16" - }, - "6067": { - "id": 6067, - "name": "Legendary Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "672", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6068": { - "id": 6068, - "name": "Legendary Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "437", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6069": { - "id": 6069, - "name": "Legendary Shield Aptitude", - "description": "Increases the target's Shield skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "675", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6070": { - "id": 6070, - "name": "Legendary Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "678", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6071": { - "id": 6071, - "name": "Legendary Sprint", - "description": "Increases the target's Run skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "369", - "speed": "0.01", - "target_effect": "24", - "target_mask": "16" - }, - "6072": { - "id": 6072, - "name": "Legendary Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "371", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "6073": { - "id": 6073, - "name": "Legendary Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "595", - "speed": "0.01", - "target_effect": "18", - "target_mask": "16" - }, - "6074": { - "id": 6074, - "name": "Legendary Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "646", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6075": { - "id": 6075, - "name": "Legendary War Magic Aptitude", - "description": "Increases the target's War Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "255", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6076": { - "id": 6076, - "name": "Legendary Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "60", - "duration": "780", - "mana": "10", - "family": "407", - "speed": "0", - "target_effect": "41", - "target_mask": "16" - }, - "6077": { - "id": 6077, - "name": "Legendary Health Gain", - "description": "Increases the rate at which the target regains Health by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "60", - "duration": "780", - "mana": "10", - "family": "257", - "speed": "0.01", - "target_effect": "37", - "target_mask": "16" - }, - "6078": { - "id": 6078, - "name": "Legendary Mana Gain", - "description": "Increases the rate at which the target regains Mana by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "60", - "duration": "780", - "mana": "10", - "family": "259", - "speed": "0.01", - "target_effect": "39", - "target_mask": "16" - }, - "6079": { - "id": 6079, - "name": "Legendary Storm Ward", - "description": "Reduces damage the target takes from Lightning by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "291", - "speed": "0.01", - "target_effect": "53", - "target_mask": "16" - }, - "6080": { - "id": 6080, - "name": "Legendary Acid Ward", - "description": "Reduces damage the target takes from Acid by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "285", - "speed": "0.01", - "target_effect": "49", - "target_mask": "16" - }, - "6081": { - "id": 6081, - "name": "Legendary Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "401", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "6082": { - "id": 6082, - "name": "Legendary Flame Ward", - "description": "Reduces damage the target takes from Fire by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "287", - "speed": "0.01", - "target_effect": "43", - "target_mask": "16" - }, - "6083": { - "id": 6083, - "name": "Legendary Frost Ward", - "description": "Reduces damage the target takes from Cold by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "289", - "speed": "0.01", - "target_effect": "51", - "target_mask": "16" - }, - "6084": { - "id": 6084, - "name": "Legendary Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "405", - "speed": "0.01", - "target_effect": "45", - "target_mask": "16" - }, - "6085": { - "id": 6085, - "name": "Legendary Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "403", - "speed": "0.01", - "target_effect": "47", - "target_mask": "16" - }, - "6086": { - "id": 6086, - "name": "Epic Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 25%.", - "school": "Item Enchantment", - "difficulty": "25", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "6087": { - "id": 6087, - "name": "Legendary Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "difficulty": "30", - "duration": "1800", - "mana": "10", - "family": "425", - "speed": "0.01", - "target_effect": "67", - "target_mask": "33025" - }, - "6088": { - "id": 6088, - "name": "Legendary Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "381", - "speed": "0.01", - "target_effect": "63", - "target_mask": "6" - }, - "6089": { - "id": 6089, - "name": "Legendary Blood Thirst", - "description": "Increases a weapon's damage value by 10 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "257" - }, - "6090": { - "id": 6090, - "name": "Legendary Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "383", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "6091": { - "id": 6091, - "name": "Legendary Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 9%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "9", - "duration": "780", - "mana": "10", - "family": "329", - "speed": "0.01", - "target_effect": "61", - "target_mask": "33025" - }, - "6092": { - "id": 6092, - "name": "Legendary Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "385", - "speed": "0.01", - "target_effect": "57", - "target_mask": "6" - }, - "6093": { - "id": 6093, - "name": "Legendary Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "387", - "speed": "0.01", - "target_effect": "65", - "target_mask": "6" - }, - "6094": { - "id": 6094, - "name": "Legendary Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 9%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "9", - "duration": "780", - "mana": "10", - "family": "389", - "speed": "0.01", - "target_effect": "59", - "target_mask": "257" - }, - "6095": { - "id": 6095, - "name": "Legendary Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 80 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "391", - "speed": "0", - "target_effect": "142", - "target_mask": "6" - }, - "6096": { - "id": 6096, - "name": "Legendary Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "393", - "speed": "0.01", - "target_effect": "59", - "target_mask": "6" - }, - "6097": { - "id": 6097, - "name": "Legendary Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "395", - "speed": "0.01", - "target_effect": "61", - "target_mask": "6" - }, - "6098": { - "id": 6098, - "name": "Legendary Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "7", - "duration": "780", - "mana": "10", - "family": "323", - "speed": "0", - "target_effect": "57", - "target_mask": "32768" - }, - "6099": { - "id": 6099, - "name": "Legendary Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "4", - "duration": "780", - "mana": "10", - "family": "397", - "speed": "0.01", - "target_effect": "67", - "target_mask": "6" - }, - "6100": { - "id": 6100, - "name": "Legendary Swift Hunter", - "description": "Improves a weapon's speed by 40 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "difficulty": "40", - "duration": "780", - "mana": "10", - "family": "399", - "speed": "0", - "target_effect": "63", - "target_mask": "257" - }, - "6101": { - "id": 6101, - "name": "Legendary Willpower", - "description": "Increases the target's Self by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "271", - "speed": "0.01", - "target_effect": "14", - "target_mask": "16" - }, - "6102": { - "id": 6102, - "name": "Legendary Armor", - "description": "Increases the target's natural armor by 80 points. Additional spells can be layered over this.", - "school": "Life Magic", - "difficulty": "80", - "duration": "780", - "mana": "10", - "family": "379", - "speed": "0.01", - "target_effect": "55", - "target_mask": "16" - }, - "6103": { - "id": 6103, - "name": "Legendary Coordination", - "description": "Increases the target's Coordination by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "267", - "speed": "0.01", - "target_effect": "8", - "target_mask": "16" - }, - "6104": { - "id": 6104, - "name": "Legendary Endurance", - "description": "Increases the target's Endurance by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "263", - "speed": "0.01", - "target_effect": "10", - "target_mask": "16" - }, - "6105": { - "id": 6105, - "name": "Legendary Focus", - "description": "Increases the target's Focus by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "269", - "speed": "0.01", - "target_effect": "16", - "target_mask": "16" - }, - "6106": { - "id": 6106, - "name": "Legendary Quickness", - "description": "Increases the target's Quickness by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "265", - "speed": "0.01", - "target_effect": "12", - "target_mask": "16" - }, - "6107": { - "id": 6107, - "name": "Legendary Strength", - "description": "Increases the target's Strength by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "261", - "speed": "0.01", - "target_effect": "6", - "target_mask": "16" - }, - "6108": { - "id": 6108, - "name": "Summoning Mastery Other I", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "696", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6109": { - "id": 6109, - "name": "Summoning Mastery Other II", - "description": "Increases the target's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "20", - "family": "696", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "6110": { - "id": 6110, - "name": "Summoning Mastery Other III", - "description": "Increases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "30", - "family": "696", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "6111": { - "id": 6111, - "name": "Summoning Mastery Other IV", - "description": "Increases the target's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "40", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6112": { - "id": 6112, - "name": "Summoning Mastery Other V", - "description": "Increases the target's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "50", - "family": "696", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "6113": { - "id": 6113, - "name": "Summoning Mastery Other VI", - "description": "Increases the target's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "60", - "family": "696", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6114": { - "id": 6114, - "name": "Summoning Mastery Other VII", - "description": "Increases the target's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6115": { - "id": 6115, - "name": "Incantation of Summoning Mastery Other", - "description": "Increases the target's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6116": { - "id": 6116, - "name": "Summoning Mastery Self I", - "description": "Increases the caster's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "15", - "family": "696", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6117": { - "id": 6117, - "name": "Summoning Mastery Self II", - "description": "Increases the caster's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "1800", - "mana": "30", - "family": "696", - "speed": "0.05", - "target_effect": "26", - "target_mask": "16" - }, - "6118": { - "id": 6118, - "name": "Summoning Mastery Self III", - "description": "Increases the caster's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "1800", - "mana": "40", - "family": "696", - "speed": "0.1", - "target_effect": "26", - "target_mask": "16" - }, - "6119": { - "id": 6119, - "name": "Summoning Mastery Self IV", - "description": "Increases the caster's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "150", - "duration": "1800", - "mana": "50", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6120": { - "id": 6120, - "name": "Summoning Mastery Self V", - "description": "Increases the caster's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "200", - "duration": "1800", - "mana": "60", - "family": "696", - "speed": "0.2", - "target_effect": "26", - "target_mask": "16" - }, - "6121": { - "id": 6121, - "name": "Summoning Mastery Self VI", - "description": "Increases the caster's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "2700", - "mana": "70", - "family": "696", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6122": { - "id": 6122, - "name": "Summoning Mastery Self VII", - "description": "Increases the caster's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "300", - "duration": "3600", - "mana": "70", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6123": { - "id": 6123, - "name": "Incantation of Summoning Mastery Self", - "description": "Increases the caster's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "5400", - "mana": "80", - "family": "696", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6124": { - "id": 6124, - "name": "Epic Summoning Prowess", - "description": "Increases the target's Summoning skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "25", - "duration": "780", - "mana": "10", - "family": "698", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6125": { - "id": 6125, - "name": "Legendary Summoning Prowess", - "description": "Increases the target's Summoning skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "35", - "duration": "780", - "mana": "10", - "family": "698", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6126": { - "id": 6126, - "name": "Major Summoning Prowess", - "description": "Increases the target's Summoning skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "780", - "mana": "10", - "family": "698", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6127": { - "id": 6127, - "name": "Minor Summoning Prowess", - "description": "Increases the target's Summoning skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "780", - "mana": "10", - "family": "698", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6128": { - "id": 6128, - "name": "Moderate Summoning Prowess", - "description": "Increases the target's Summoning skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "780", - "mana": "10", - "family": "698", - "speed": "0.01", - "target_effect": "26", - "target_mask": "16" - }, - "6129": { - "id": 6129, - "name": "Summoning Ineptitude Other I", - "description": "Decreases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "60", - "mana": "10", - "family": "697", - "speed": "0.01", - "target_effect": "27", - "target_mask": "16" - }, - "6130": { - "id": 6130, - "name": "Summoning Ineptitude Other II", - "description": "Decreases the target's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "difficulty": "75", - "duration": "90", - "mana": "20", - "family": "697", - "speed": "0.05", - "target_effect": "27", - "target_mask": "16" - }, - "6131": { - "id": 6131, - "name": "Summoning Ineptitude Other III", - "description": "Decreases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "125", - "duration": "120", - "mana": "30", - "family": "697", - "speed": "0.1", - "target_effect": "27", - "target_mask": "16" - }, - "6132": { - "id": 6132, - "name": "Summoning Ineptitude Other IV", - "description": "Decreases the target's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "difficulty": "175", - "duration": "150", - "mana": "40", - "family": "697", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "6133": { - "id": 6133, - "name": "Summoning Ineptitude Other V", - "description": "Decreases the target's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "difficulty": "225", - "duration": "180", - "mana": "50", - "family": "697", - "speed": "0.2", - "target_effect": "27", - "target_mask": "16" - }, - "6134": { - "id": 6134, - "name": "Summoning Ineptitude Other VI", - "description": "Decreases the target's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "difficulty": "275", - "duration": "210", - "mana": "60", - "family": "697", - "speed": "0.3", - "target_effect": "27", - "target_mask": "16" - }, - "6135": { - "id": 6135, - "name": "Summoning Ineptitude Other VII", - "description": "Decreases the target's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "difficulty": "325", - "duration": "240", - "mana": "70", - "family": "697", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "6136": { - "id": 6136, - "name": "Incantation of Summoning Ineptitude Other", - "description": "Decreases the target's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "697", - "speed": "0.15", - "target_effect": "27", - "target_mask": "16" - }, - "6137": { - "id": 6137, - "name": "Weave of Summoning II", - "description": "Increases the target's Summoning skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6138": { - "id": 6138, - "name": "Weave of Summoning III", - "description": "Increases the target's Summoning skill by 6 points.", - "school": "Creature Enchantment", - "difficulty": "6", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6139": { - "id": 6139, - "name": "Weave of Summoning IV", - "description": "Increases the target's Summoning skill by 8 points.", - "school": "Creature Enchantment", - "difficulty": "8", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6140": { - "id": 6140, - "name": "Weave of Summoning V", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "10", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6141": { - "id": 6141, - "name": "Weave of Summoning I", - "description": "Increases the target's Summoning skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "500", - "mana": "70", - "family": "659", - "speed": "0.3", - "target_effect": "26", - "target_mask": "16" - }, - "6142": { - "id": 6142, - "name": "Novice Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "1800", - "mana": "10", - "family": "699", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6143": { - "id": 6143, - "name": "Apprentice Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "1800", - "mana": "10", - "family": "699", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6144": { - "id": 6144, - "name": "Journeyman Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "1800", - "mana": "10", - "family": "699", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6145": { - "id": 6145, - "name": "Master Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "1800", - "mana": "10", - "family": "699", - "speed": "0.01", - "target_effect": "20", - "target_mask": "16" - }, - "6146": { - "id": 6146, - "name": "Ride The Lightning", - "description": "Reduces damage the target takes from Lightning by 70%.", - "school": "Life Magic", - "difficulty": "425", - "duration": "10800", - "mana": "80", - "family": "107", - "speed": "0.15", - "target_effect": "53", - "target_mask": "16" - }, - "6147": { - "id": 6147, - "name": "Entrance to the Frozen Valley", - "description": "Transports target to the Frozen Valley.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6148": { - "id": 6148, - "name": "Begone and Be Afraid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6149": { - "id": 6149, - "name": "Rynthid Vision", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6150": { - "id": 6150, - "name": "Rynthid Recall", - "description": "Transports the caster to the area overrun by the Rynthid.", - "school": "Item Enchantment", - "difficulty": "225", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6151": { - "id": 6151, - "name": "Crimson Storm", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "200", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6152": { - "id": 6152, - "name": "Rocky Shrapnel", - "description": "Shoots 12 waves of boulders outward from the caster. Each wave does 100-400 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6153": { - "id": 6153, - "name": "Tryptophan Coma", - "description": "You are soooooo sleepy. reducing your Quickness.", - "school": "Creature Enchantment", - "difficulty": "400", - "duration": "300", - "mana": "80", - "family": "6", - "speed": "0.15", - "target_effect": "13", - "target_mask": "16" - }, - "6154": { - "id": 6154, - "name": "Entering the Basement", - "description": "Entering the Basement", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6155": { - "id": 6155, - "name": "Earthen Stomp", - "description": "The stomp of these creatures creates powerful rings of destructive force.", - "school": "Life Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6156": { - "id": 6156, - "name": "Viridian Ring", - "description": "A powerful emanation that creates a ring of overwhelming life magic.", - "school": "Life Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "150", - "family": "80", - "speed": "0.15", - "target_effect": "32", - "target_mask": "0" - }, - "6157": { - "id": 6157, - "name": "Withering Ring", - "description": "A terrible emanation that destroys the victim's ability to heal wounds.", - "school": "Life Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "150", - "family": "643", - "speed": "0.15", - "target_effect": "38", - "target_mask": "0" - }, - "6158": { - "id": 6158, - "name": "Poison Breath", - "description": "A deadly cone of poison.", - "school": "Life Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "40", - "family": "530", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "6159": { - "id": 6159, - "name": "Thorn Volley", - "description": "A cone of thorns and quill like projectiles.", - "school": "Life Magic", - "difficulty": "600", - "duration": "-1", - "mana": "40", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "6160": { - "id": 6160, - "name": "Thorns", - "description": "Shoots a cluster of sharp thorns at the target. The cluster does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "6161": { - "id": 6161, - "name": "Acidic Thorns", - "description": "Shoots a cluster of acidic thorns at the target. The cluster does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "117", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "6162": { - "id": 6162, - "name": "Thorn Arc", - "description": "Shoots a cluster of sharp thorns at the target. The thorns do 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "122", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "6163": { - "id": 6163, - "name": "Ring of Thorns", - "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6164": { - "id": 6164, - "name": "Deadly Ring of Thorns", - "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "80", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6165": { - "id": 6165, - "name": "Deadly Thorn Volley", - "description": "A deadly cone of thorns and quill like projectiles.", - "school": "Life Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "40", - "family": "136", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "6166": { - "id": 6166, - "name": "Poisoned Wounds", - "description": "Your wounds are poisoned and don't heal as well.", - "school": "Life Magic", - "difficulty": "350", - "duration": "30", - "mana": "80", - "family": "619", - "speed": "0.15", - "target_effect": "38", - "target_mask": "16" - }, - "6167": { - "id": 6167, - "name": "Poisoned Vitality", - "description": "Poison flows in your veins reducing your total health by 50%.", - "school": "Creature Enchantment", - "difficulty": "50", - "duration": "30", - "mana": "10", - "family": "410", - "speed": "0.01", - "target_effect": "9", - "target_mask": "16" - }, - "6168": { - "id": 6168, - "name": "Deadly Ring of Lightning", - "description": "The power of storms creates a deadly ring of lightning.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "80", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6169": { - "id": 6169, - "name": "Deadly Lightning Volley", - "description": "A deadly cone of lightning.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "40", - "family": "134", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "6170": { - "id": 6170, - "name": "Honeyed Life Mead", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "70", - "family": "700", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "6171": { - "id": 6171, - "name": "Honeyed Mana Mead", - "description": "Increases maximum mana by 50 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "70", - "family": "701", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "6172": { - "id": 6172, - "name": "Honeyed Vigor Mead", - "description": "Increases maximum stamina by 50 points.", - "school": "Life Magic", - "difficulty": "20", - "duration": "10800", - "mana": "70", - "family": "702", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "6173": { - "id": 6173, - "name": "Raging Heart", - "description": "Increases maximum health by 65 points for 1 hour.", - "school": "Life Magic", - "difficulty": "65", - "duration": "3600", - "mana": "70", - "family": "279", - "speed": "0.3", - "target_effect": "31", - "target_mask": "16" - }, - "6174": { - "id": 6174, - "name": "Twisting Wounds", - "description": "The Critical Damage Rating of the caster is increased by 10.", - "school": "Life Magic", - "difficulty": "2", - "duration": "1200", - "mana": "70", - "family": "703", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6175": { - "id": 6175, - "name": "Increasing Pain", - "description": "The damage rating of the caster is increased by 10. This spell does not stack with Luminous Crystal of Surging Strength.", - "school": "Life Magic", - "difficulty": "2", - "duration": "1200", - "mana": "70", - "family": "650", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6176": { - "id": 6176, - "name": "Genius", - "description": "Increases the caster's Focus by 50 points for a short period of time.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "30", - "mana": "60", - "family": "15", - "speed": "0.3", - "target_effect": "16", - "target_mask": "16" - }, - "6177": { - "id": 6177, - "name": "Gauntlet Item Mastery", - "description": "Increases the caster's Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "600", - "mana": "70", - "family": "453", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6178": { - "id": 6178, - "name": "Gauntlet Weapon Mastery", - "description": "Increases the caster's Weapon Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "600", - "mana": "70", - "family": "455", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6179": { - "id": 6179, - "name": "Gauntlet Magic Item Mastery", - "description": "Increases the caster's Magic Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "600", - "mana": "70", - "family": "454", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6180": { - "id": 6180, - "name": "Gauntlet Armor Mastery", - "description": "Increases the caster's Armor Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "difficulty": "250", - "duration": "600", - "mana": "70", - "family": "452", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6181": { - "id": 6181, - "name": "Singeing Flames", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 150-250 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "80", - "family": "226", - "speed": "0.01", - "target_effect": "0", - "target_mask": "16" - }, - "6182": { - "id": 6182, - "name": "Over-Exerted", - "description": "Decreases all of the target's defense skills by 500 for 1 minute.", - "school": "Creature Enchantment", - "difficulty": "100", - "duration": "60", - "mana": "70", - "family": "686", - "speed": "0.15", - "target_effect": "172", - "target_mask": "16" - }, - "6183": { - "id": 6183, - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6184": { - "id": 6184, - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6185": { - "id": 6185, - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "difficulty": "125", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6186": { - "id": 6186, - "name": "Deafening Wail", - "description": "The bark of these creatures creates powerful rings of destructive force.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6187": { - "id": 6187, - "name": "Screeching Howl", - "description": "A deafening howl creating deadly shockwaves.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "40", - "family": "132", - "speed": "0.15", - "target_effect": "0", - "target_mask": "0" - }, - "6188": { - "id": 6188, - "name": "Earthquake", - "description": "The stomp of this creature violently shakes the ground.", - "school": "War Magic", - "difficulty": "1200", - "duration": "-1", - "mana": "80", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6189": { - "id": 6189, - "name": "Searing Disc II", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 49-96 points of acid damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "222", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6190": { - "id": 6190, - "name": "Horizon's Blades II", - "description": "Shoots eight blades outward from the caster. Each blade does 49-98 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "228", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6191": { - "id": 6191, - "name": "Cassius' Ring of Fire II", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 49-98 points of fire damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "226", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6192": { - "id": 6192, - "name": "Nuhmudira's Spines II", - "description": "Shoots eight waves of force outward from the caster. Each wave does 49-98 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "227", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6193": { - "id": 6193, - "name": "Halo of Frost II", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 49-98 points of cold damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "224", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6194": { - "id": 6194, - "name": "Eye of the Storm II", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6195": { - "id": 6195, - "name": "Clouded Soul II", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 109-172 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "641", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6196": { - "id": 6196, - "name": "Tectonic Rifts II", - "description": "Shoots eight shock waves outward from the caster. Each wave does 49-96 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "223", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6197": { - "id": 6197, - "name": "Eye of the Storm II", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "250", - "duration": "-1", - "mana": "90", - "family": "225", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6198": { - "id": 6198, - "name": "Incantation of Lightning Bolt", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "6199": { - "id": 6199, - "name": "Incantation of Lightning Arc", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "difficulty": "400", - "duration": "-1", - "mana": "40", - "family": "120", - "speed": "0.15", - "target_effect": "0", - "target_mask": "16" - }, - "6200": { - "id": 6200, - "name": "Paragon's Dual Wield Mastery V", - "description": "Increases the wielder's Dual Wield skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "708", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6201": { - "id": 6201, - "name": "Paragon's Finesse Weapon Mastery I", - "description": "Increases the wielder's Finesse Weapons skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "716", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6202": { - "id": 6202, - "name": "Paragon's Finesse Weapon Mastery II", - "description": "Increases the wielder's Finesse Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "716", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6203": { - "id": 6203, - "name": "Paragon's Finesse Weapon Mastery III", - "description": "Increases the wielder's Finesse Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "716", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6204": { - "id": 6204, - "name": "Paragon's Finesse Weapon Mastery IV", - "description": "Increases the wielder's Finesse Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "716", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6205": { - "id": 6205, - "name": "Paragon's Finesse Weapon Mastery V", - "description": "Increases the wielder's Finesse Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "716", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6206": { - "id": 6206, - "name": "Paragon's Heavy Weapon Mastery I", - "description": "Increases the wielder's Heavy Weapons skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "717", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6207": { - "id": 6207, - "name": "Paragon's Heavy Weapon Mastery II", - "description": "Increases the wielder's Heavy Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "717", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6208": { - "id": 6208, - "name": "Paragon's Heavy Weapon Mastery III", - "description": "Increases the wielder's Heavy Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "717", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6209": { - "id": 6209, - "name": "Paragon's Heavy Weapon Mastery IV", - "description": "Increases the wielder's Heavy Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "717", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6210": { - "id": 6210, - "name": "Paragon's Heavy Weapon Mastery V", - "description": "Increases the wielder's Heavy Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "717", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6211": { - "id": 6211, - "name": "Paragon's Life Magic Mastery I", - "description": "Increases the wielder's Life Magic skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "719", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6212": { - "id": 6212, - "name": "Paragon's Life Magic Mastery II", - "description": "Increases the wielder's Life Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "719", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6213": { - "id": 6213, - "name": "Paragon's Life Magic Mastery III", - "description": "Increases the wielder's Life Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "719", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6214": { - "id": 6214, - "name": "Paragon's Life Magic Mastery IV", - "description": "Increases the wielder's Life Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "719", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6215": { - "id": 6215, - "name": "Paragon's Life Magic Mastery V", - "description": "Increases the wielder's Life Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "719", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6216": { - "id": 6216, - "name": "Paragon's Light Weapon Mastery I", - "description": "Increases the wielder's Light Weapons skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "715", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6217": { - "id": 6217, - "name": "Paragon's Light Weapon Mastery II", - "description": "Increases the wielder's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "715", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6218": { - "id": 6218, - "name": "Paragon's Light Weapon Mastery III", - "description": "Increases the wielder's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "715", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6219": { - "id": 6219, - "name": "Paragon's Light Weapon Mastery IV", - "description": "Increases the wielder's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "715", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6220": { - "id": 6220, - "name": "Paragon's Light Weapon Mastery V", - "description": "Increases the wielder's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "715", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6221": { - "id": 6221, - "name": "Paragon's Missile Weapon Mastery I", - "description": "Increases the wielder's Missile Weapons skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "721", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6222": { - "id": 6222, - "name": "Paragon's Missile Weapon Mastery II", - "description": "Increases the wielder's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "721", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6223": { - "id": 6223, - "name": "Paragon's Missile Weapon Mastery III", - "description": "Increases the wielder's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "721", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6224": { - "id": 6224, - "name": "Paragon's Missile Weapon Mastery IV", - "description": "Increases the wielder's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "721", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6225": { - "id": 6225, - "name": "Paragon's Missile Weapon Mastery V", - "description": "Increases the wielder's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "721", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6226": { - "id": 6226, - "name": "Paragon's Recklessness Mastery I", - "description": "Increases the wielder's Recklessness skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "709", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6227": { - "id": 6227, - "name": "Paragon's Recklessness Mastery II", - "description": "Increases the wielder's Recklessness skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "709", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6228": { - "id": 6228, - "name": "Paragon's Recklessness Mastery III", - "description": "Increases the wielder's Recklessness skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "709", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6229": { - "id": 6229, - "name": "Paragon's Recklessness Mastery IV", - "description": "Increases the wielder's Recklessness skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "709", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6230": { - "id": 6230, - "name": "Paragon's Recklessness Mastery V", - "description": "Increases the wielder's Recklessness skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "709", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6231": { - "id": 6231, - "name": "Paragon's Sneak Attack Mastery I", - "description": "Increases the wielder's Sneak Attack skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "710", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6232": { - "id": 6232, - "name": "Paragon's Sneak Attack Mastery II", - "description": "Increases the wielder's Sneak Attack skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "710", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6233": { - "id": 6233, - "name": "Paragon's Sneak Attack Mastery III", - "description": "Increases the wielder's Sneak Attack skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "710", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6234": { - "id": 6234, - "name": "Paragon's Sneak Attack Mastery IV", - "description": "Increases the wielder's Sneak Attack skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "710", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6235": { - "id": 6235, - "name": "Paragon's Sneak Attack Mastery V", - "description": "Increases the wielder's Sneak Attack skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "710", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6236": { - "id": 6236, - "name": "Paragon's Two Handed Combat Mastery I", - "description": "Increases the wielder's Two Handed Combat skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "727", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6237": { - "id": 6237, - "name": "Paragon's Two Handed Combat Mastery II", - "description": "Increases the wielder's Two Handed Combat skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "727", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6238": { - "id": 6238, - "name": "Paragon's Two Handed Combat Mastery III", - "description": "Increases the wielder's Two Handed Combat skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "727", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6239": { - "id": 6239, - "name": "Paragon's Two Handed Combat Mastery IV", - "description": "Increases the wielder's Two Handed Combat skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "727", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6240": { - "id": 6240, - "name": "Paragon's Two Handed Combat Mastery V", - "description": "Increases the wielder's Two Handed Combat skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "727", - "speed": "0.15", - "target_effect": "18", - "target_mask": "16" - }, - "6241": { - "id": 6241, - "name": "Paragon's Void Magic Mastery I", - "description": "Increases the wielder's Void Magic skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "720", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6242": { - "id": 6242, - "name": "Paragon's Void Magic Mastery II", - "description": "Increases the wielder's Void Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "720", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6243": { - "id": 6243, - "name": "Paragon's Void Magic Mastery III", - "description": "Increases the wielder's Void Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "720", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6244": { - "id": 6244, - "name": "Paragon's Void Magic Mastery IV", - "description": "Increases the wielder's Void Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "720", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6245": { - "id": 6245, - "name": "Paragon's Void Magic Mastery V", - "description": "Increases the wielder's Void Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "720", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6246": { - "id": 6246, - "name": "Paragon's War Magic Mastery I", - "description": "Increases the wielder's War Magic skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "718", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6247": { - "id": 6247, - "name": "Paragon's War Magic Mastery II", - "description": "Increases the wielder's War Magic skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "718", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6248": { - "id": 6248, - "name": "Paragon's War Magic Mastery III", - "description": "Increases the wielder's War Magic skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "718", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6249": { - "id": 6249, - "name": "Paragon's War Magic Mastery IV", - "description": "Increases the wielder's War Magic skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "718", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6250": { - "id": 6250, - "name": "Paragon's War Magic Mastery V", - "description": "Increases the wielder's War Magic skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "718", - "speed": "0.15", - "target_effect": "26", - "target_mask": "16" - }, - "6251": { - "id": 6251, - "name": "Paragon's Dirty Fighting Mastery I", - "description": "Increases the wielder's Dirty Fighting skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "707", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6252": { - "id": 6252, - "name": "Paragon's Dirty Fighting Mastery II", - "description": "Increases the wielder's Dirty Fighting skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "707", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6253": { - "id": 6253, - "name": "Paragon's Dirty Fighting Mastery III", - "description": "Increases the wielder's Dirty Fighting skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "707", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6254": { - "id": 6254, - "name": "Paragon's Dirty Fighting Mastery IV", - "description": "Increases the wielder's Dirty Fighting skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "707", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6255": { - "id": 6255, - "name": "Paragon's Dirty Fighting Mastery V", - "description": "Increases the wielder's Dirty Fighting skill by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "707", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6256": { - "id": 6256, - "name": "Paragon's Dual Wield Mastery I", - "description": "Increases the wielder's Dual Wield skill by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "708", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6257": { - "id": 6257, - "name": "Paragon's Dual Wield Mastery II", - "description": "Increases the wielder's Dual Wield skill by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "708", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6258": { - "id": 6258, - "name": "Paragon's Dual Wield Mastery III", - "description": "Increases the wielder's Dual Wield skill by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "708", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6259": { - "id": 6259, - "name": "Paragon's Dual Wield Mastery IV", - "description": "Increases the wielder's Dual Wield skill by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "708", - "speed": "0.15", - "target_effect": "20", - "target_mask": "16" - }, - "6260": { - "id": 6260, - "name": "Paragon's Willpower V", - "description": "Increases the wielder's Self by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "726", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "6261": { - "id": 6261, - "name": "Paragon's Coordination I", - "description": "Increases the wielder's Coordination by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "723", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "6262": { - "id": 6262, - "name": "Paragon's Coordination II", - "description": "Increases the wielder's Coordination by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "723", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "6263": { - "id": 6263, - "name": "Paragon's Coordination III", - "description": "Increases the wielder's Coordination by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "723", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "6264": { - "id": 6264, - "name": "Paragon's Coordination IV", - "description": "Increases the wielder's Coordination by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "723", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "6265": { - "id": 6265, - "name": "Paragon's Coordination V", - "description": "Increases the wielder's Coordination by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "723", - "speed": "0.15", - "target_effect": "8", - "target_mask": "16" - }, - "6266": { - "id": 6266, - "name": "Paragon's Endurance I", - "description": "Increases the wielder's Endurance by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "704", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "6267": { - "id": 6267, - "name": "Paragon's Endurance II", - "description": "Increases the wielder's Endurance by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "704", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "6268": { - "id": 6268, - "name": "Paragon's Endurance III", - "description": "Increases the wielder's Endurance by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "704", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "6269": { - "id": 6269, - "name": "Paragon's Endurance IV", - "description": "Increases the wielder's Endurance by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "704", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "6270": { - "id": 6270, - "name": "Paragon's Endurance V", - "description": "Increases the wielder's Endurance by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "704", - "speed": "0.15", - "target_effect": "10", - "target_mask": "16" - }, - "6271": { - "id": 6271, - "name": "Paragon's Focus I", - "description": "Increases the wielder's Focus by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "725", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "6272": { - "id": 6272, - "name": "Paragon's Focus II", - "description": "Increases the wielder's Focus by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "725", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "6273": { - "id": 6273, - "name": "Paragon's Focus III", - "description": "Increases the wielder's Focus by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "725", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "6274": { - "id": 6274, - "name": "Paragon's Focus IV", - "description": "Increases the wielder's Focus by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "725", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "6275": { - "id": 6275, - "name": "Paragon's Focus V", - "description": "Increases the wielder's Focus by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "725", - "speed": "0.15", - "target_effect": "16", - "target_mask": "16" - }, - "6276": { - "id": 6276, - "name": "Paragon Quickness I", - "description": "Increases the wielder's Quickness by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "724", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "6277": { - "id": 6277, - "name": "Paragon Quickness II", - "description": "Increases the wielder's Quickness by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "724", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "6278": { - "id": 6278, - "name": "Paragon Quickness III", - "description": "Increases the wielder's Quickness by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "724", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "6279": { - "id": 6279, - "name": "Paragon Quickness IV", - "description": "Increases the wielder's Quickness by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "724", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "6280": { - "id": 6280, - "name": "Paragon Quickness V", - "description": "Increases the wielder's Quickness by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "724", - "speed": "0.15", - "target_effect": "12", - "target_mask": "16" - }, - "6281": { - "id": 6281, - "name": "Paragon's Strength I", - "description": "Increases the wielder's Strength by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "722", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "6282": { - "id": 6282, - "name": "Paragon's Strength II", - "description": "Increases the wielder's Strength by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "722", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "6283": { - "id": 6283, - "name": "Paragon's Strength III", - "description": "Increases the wielder's Strength by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "722", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "6284": { - "id": 6284, - "name": "Paragon's Strength IV", - "description": "Increases the wielder's Strength by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "722", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "6285": { - "id": 6285, - "name": "Paragon's Strength V", - "description": "Increases the wielder's Strength by 5 points.", - "school": "Creature Enchantment", - "difficulty": "5", - "duration": "5400", - "mana": "80", - "family": "722", - "speed": "0.15", - "target_effect": "6", - "target_mask": "16" - }, - "6286": { - "id": 6286, - "name": "Paragon's Willpower I", - "description": "Increases the wielder's Self by 1 point.", - "school": "Creature Enchantment", - "difficulty": "1", - "duration": "5400", - "mana": "80", - "family": "726", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "6287": { - "id": 6287, - "name": "Paragon's Willpower II", - "description": "Increases the wielder's Self by 2 points.", - "school": "Creature Enchantment", - "difficulty": "2", - "duration": "5400", - "mana": "80", - "family": "726", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "6288": { - "id": 6288, - "name": "Paragon's Willpower III", - "description": "Increases the wielder's Self by 3 points.", - "school": "Creature Enchantment", - "difficulty": "3", - "duration": "5400", - "mana": "80", - "family": "726", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "6289": { - "id": 6289, - "name": "Paragon's Willpower IV", - "description": "Increases the wielder's Self by 4 points.", - "school": "Creature Enchantment", - "difficulty": "4", - "duration": "5400", - "mana": "80", - "family": "726", - "speed": "0.15", - "target_effect": "14", - "target_mask": "16" - }, - "6290": { - "id": 6290, - "name": "Paragon's Stamina V", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "difficulty": "10", - "duration": "5400", - "mana": "70", - "family": "706", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6291": { - "id": 6291, - "name": "Paragon's Critical Boost I", - "description": "The critical damage rating of the wielder is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "5400", - "mana": "70", - "family": "713", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6292": { - "id": 6292, - "name": "Paragon's Critical Damage Boost II", - "description": "The critical damage rating of the wielder is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "713", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6293": { - "id": 6293, - "name": "Paragon's Critical Damage Boost III", - "description": "The critical damage rating of the wielder is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "5400", - "mana": "70", - "family": "713", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6294": { - "id": 6294, - "name": "Paragon's Critical Damage Boost IV", - "description": "The damage rating of the wielder is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "713", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6295": { - "id": 6295, - "name": "Paragon's Critical Damage Boost V", - "description": "The critical damage rating of the wielder is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "5400", - "mana": "70", - "family": "713", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6296": { - "id": 6296, - "name": "Paragon's Critical Damage Reduction I", - "description": "The critical damage reduction rating of the wielder is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "5400", - "mana": "70", - "family": "714", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6297": { - "id": 6297, - "name": "Paragon's Critical Damage Reduction II", - "description": "The critical damage reduction rating of the wielder is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "714", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6298": { - "id": 6298, - "name": "Paragon's Critical Damage Reduction III", - "description": "The critical damage reduction rating of the wielder is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "5400", - "mana": "70", - "family": "714", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6299": { - "id": 6299, - "name": "Paragon's Critical Damage Reduction IV", - "description": "The critical damage reduction rating of the wielder is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "714", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6300": { - "id": 6300, - "name": "Paragon's Critical Damage Reduction V", - "description": "The critical damage reduction rating of the wielder is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "5400", - "mana": "70", - "family": "714", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6301": { - "id": 6301, - "name": "Paragon's Damage Boost I", - "description": "The damage rating of the wielder is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "5400", - "mana": "70", - "family": "711", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6302": { - "id": 6302, - "name": "Paragon's Damage Boost II", - "description": "The damage rating of the wielder is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "711", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6303": { - "id": 6303, - "name": "Paragon's Damage Boost III", - "description": "The damage rating of the wielder is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "5400", - "mana": "70", - "family": "711", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6304": { - "id": 6304, - "name": "Paragon's Damage Boost IV", - "description": "The damage rating of the wielder is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "711", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6305": { - "id": 6305, - "name": "Paragon's Damage Boost V", - "description": "The damage rating of the wielder is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "5400", - "mana": "70", - "family": "711", - "speed": "0.3", - "target_effect": "162", - "target_mask": "16" - }, - "6306": { - "id": 6306, - "name": "Paragon's Damage Reduction I", - "description": "The damage reduction rating of the wielder is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "5400", - "mana": "70", - "family": "712", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6307": { - "id": 6307, - "name": "Paragon's Damage Reduction II", - "description": "The damage reduction rating of the wielder is increased by 2.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "712", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6308": { - "id": 6308, - "name": "Paragon's Damage Reduction III", - "description": "The damage reduction rating of the wielder is increased by 3.", - "school": "Life Magic", - "difficulty": "3", - "duration": "5400", - "mana": "70", - "family": "712", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6309": { - "id": 6309, - "name": "Paragon's Damage Reduction IV", - "description": "The damage reduction rating of the wielder is increased by 4.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "712", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6310": { - "id": 6310, - "name": "Paragon's Damage Reduction V", - "description": "The damage reduction rating of the wielder is increased by 5.", - "school": "Life Magic", - "difficulty": "5", - "duration": "5400", - "mana": "70", - "family": "712", - "speed": "0.3", - "target_effect": "163", - "target_mask": "16" - }, - "6311": { - "id": 6311, - "name": "Paragon's Mana I", - "description": "Increases maximum mana by 2 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "705", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "6312": { - "id": 6312, - "name": "Paragon's Mana II", - "description": "Increases maximum mana by 4 points.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "705", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "6313": { - "id": 6313, - "name": "Paragon's Mana III", - "description": "Increases maximum mana by 6 points.", - "school": "Life Magic", - "difficulty": "6", - "duration": "5400", - "mana": "70", - "family": "705", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "6314": { - "id": 6314, - "name": "Paragon's Mana IV", - "description": "Increases maximum mana by 8 points.", - "school": "Life Magic", - "difficulty": "8", - "duration": "5400", - "mana": "70", - "family": "705", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "6315": { - "id": 6315, - "name": "Paragon's Mana V", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "difficulty": "10", - "duration": "5400", - "mana": "70", - "family": "705", - "speed": "0.3", - "target_effect": "33", - "target_mask": "16" - }, - "6316": { - "id": 6316, - "name": "Paragon's Stamina I", - "description": "Increases maximum stamina by 2 points.", - "school": "Life Magic", - "difficulty": "2", - "duration": "5400", - "mana": "70", - "family": "706", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6317": { - "id": 6317, - "name": "Paragon's Stamina II", - "description": "Increases maximum stamina by 4 points.", - "school": "Life Magic", - "difficulty": "4", - "duration": "5400", - "mana": "70", - "family": "706", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6318": { - "id": 6318, - "name": "Paragon's Stamina III", - "description": "Increases maximum stamina by 6 points.", - "school": "Life Magic", - "difficulty": "6", - "duration": "5400", - "mana": "70", - "family": "706", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6319": { - "id": 6319, - "name": "Paragon's Stamina IV", - "description": "Increases maximum stamina by 8 points.", - "school": "Life Magic", - "difficulty": "8", - "duration": "5400", - "mana": "70", - "family": "706", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6320": { - "id": 6320, - "name": "Ring of Skulls II", - "description": "Shoots eight nether skulls outward from the caster. Each skull does 109-172 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "difficulty": "300", - "duration": "-1", - "mana": "90", - "family": "641", - "speed": "0.2", - "target_effect": "0", - "target_mask": "0" - }, - "6321": { - "id": 6321, - "name": "Viridian Rise Recall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6322": { - "id": 6322, - "name": "Viridian Rise Great Tree Recall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "difficulty": "250", - "duration": "-1", - "mana": "150", - "family": "214", - "speed": "0.25", - "target_effect": "16", - "target_mask": "16" - }, - "6323": { - "id": 6323, - "name": "Gauntlet Imperil Self", - "description": "Decreases the caster's natural armor by 300 points.", - "school": "Life Magic", - "difficulty": "400", - "duration": "1800", - "mana": "80", - "family": "116", - "speed": "0.15", - "target_effect": "56", - "target_mask": "16" - }, - "6324": { - "id": 6324, - "name": "Gauntlet Vulnerability Self", - "description": "Increases damage the caster takes from Fire by 210%.", - "school": "Life Magic", - "difficulty": "400", - "duration": "1800", - "mana": "80", - "family": "110", - "speed": "0.15", - "target_effect": "44", - "target_mask": "16" - }, - "6325": { - "id": 6325, - "name": "Celestial Hand Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Celestial Hand.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "6326": { - "id": 6326, - "name": "Eldrytch Web Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Eldrytch Web.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "6327": { - "id": 6327, - "name": "Radiant Blood Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Radiant Blood.", - "school": "Item Enchantment", - "difficulty": "150", - "duration": "-1", - "mana": "50", - "family": "214", - "speed": "0.25", - "target_effect": "0", - "target_mask": "16" - }, - "6328": { - "id": 6328, - "name": "Gauntlet Critical Damage Boost I", - "description": "Your critical damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "732", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6329": { - "id": 6329, - "name": "Gauntlet Critical Damage Boost II", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "732", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6330": { - "id": 6330, - "name": "Gauntlet Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "729", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6331": { - "id": 6331, - "name": "Gauntlet Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "729", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6332": { - "id": 6332, - "name": "Gauntlet Damage Reduction I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "728", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6333": { - "id": 6333, - "name": "Gauntlet Damage Reduction II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "728", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6334": { - "id": 6334, - "name": "Gauntlet Critical Damage Reduction I", - "description": "Your critical damage reduction rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "733", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6335": { - "id": 6335, - "name": "Gauntlet Critical Damage Reduction II", - "description": "Your critical damage reduction rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "733", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6336": { - "id": 6336, - "name": "Gauntlet Healing Boost I", - "description": "Your healing rating is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "730", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6337": { - "id": 6337, - "name": "Gauntlet Healing Boost II", - "description": "Your healing rating is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "730", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6338": { - "id": 6338, - "name": "Gauntlet Vitality I", - "description": "Your vitality is increased by 1.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "731", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6339": { - "id": 6339, - "name": "Gauntlet Vitality II", - "description": "Your vitality is increased by 2.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "731", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - }, - "6340": { - "id": 6340, - "name": "Gauntlet Vitality III", - "description": "Your vitality is increased by 3.", - "school": "Life Magic", - "difficulty": "1", - "duration": "10800", - "mana": "70", - "family": "731", - "speed": "0.3", - "target_effect": "35", - "target_mask": "16" - } - }, - "source_file": "Spells.csv" - }, - "object_classes": { - "name": "ObjectClass", - "values": { - "0": "Unknown", - "1": "MeleeWeapon", - "2": "Armor", - "3": "Clothing", - "4": "Jewelry", - "5": "Monster", - "6": "Food", - "7": "Money", - "8": "Misc", - "9": "MissileWeapon", - "10": "Container", - "11": "Gem", - "12": "SpellComponent", - "13": "Key", - "14": "Portal", - "15": "TradeNote", - "16": "ManaStone", - "17": "Plant", - "18": "BaseCooking", - "19": "BaseAlchemy", - "20": "BaseFletching", - "21": "CraftedCooking", - "22": "CraftedAlchemy", - "23": "CraftedFletching", - "24": "Player", - "25": "Vendor", - "26": "Door", - "27": "Corpse", - "28": "Lifestone", - "29": "HealingKit", - "30": "Lockpick", - "31": "WandStaffOrb", - "32": "Bundle", - "33": "Book", - "34": "Journal", - "35": "Sign", - "36": "Housing", - "37": "Npc", - "38": "Foci", - "39": "Salvage", - "40": "Ust", - "41": "Services", - "42": "Scroll", - "43": "NumObjectClasses" - }, - "source_file": "ObjectClass.cs" - } -} \ No newline at end of file diff --git a/inventory-service/database.py b/inventory-service/database.py deleted file mode 100644 index 64f3c457..00000000 --- a/inventory-service/database.py +++ /dev/null @@ -1,281 +0,0 @@ -""" -Database models and setup for Inventory Service. - -Normalized schema designed around actual item JSON structure with proper enum translation. -""" - -import sqlalchemy as sa -from sqlalchemy import ( - Column, Integer, String, Float, Boolean, DateTime, BigInteger, Text, JSON, - ForeignKey, Index, UniqueConstraint, CheckConstraint, create_engine, MetaData -) -from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy.dialects.postgresql import JSONB -from sqlalchemy.orm import relationship -from datetime import datetime - -Base = declarative_base() - -class Item(Base): - """Core item identification and basic properties.""" - __tablename__ = 'items' - - id = Column(Integer, primary_key=True) - character_name = Column(String(50), nullable=False, index=True) - item_id = Column(BigInteger, nullable=False) # Game item instance ID - timestamp = Column(DateTime, nullable=False, default=datetime.utcnow) - - # Basic properties (always present) - name = Column(String(200), nullable=False, index=True) - icon = Column(Integer, nullable=False) - object_class = Column(Integer, nullable=False, index=True) - - # Core stats - value = Column(Integer, default=0) - burden = Column(Integer, default=0) - - # Equipment status - current_wielded_location = Column(Integer, default=0, index=True) # 0 = not equipped - - # Item state - bonded = Column(Integer, default=0) # 0=Normal, 1=Bonded, 2=Sticky, 4=Destroy on drop - attuned = Column(Integer, default=0) # 0=Normal, 1=Attuned - unique = Column(Boolean, default=False) - - # Stack/Container properties - stack_size = Column(Integer, default=1) - max_stack_size = Column(Integer, default=1) - items_capacity = Column(Integer) # For containers - containers_capacity = Column(Integer) # For containers - - # Durability - structure = Column(Integer) # Current durability - max_structure = Column(Integer) # Maximum durability - - # Special item flags - rare_id = Column(Integer) # For rare items - lifespan = Column(Integer) # Item decay timer - remaining_lifespan = Column(Integer) # Remaining decay time - - # Metadata flags - has_id_data = Column(Boolean, default=False) - last_id_time = Column(BigInteger, default=0) - - # Unique constraint per character - __table_args__ = ( - UniqueConstraint('character_name', 'item_id', name='uq_char_item'), - Index('ix_items_name_char', 'character_name', 'name'), - Index('ix_items_class_char', 'character_name', 'object_class'), - ) - -class ItemCombatStats(Base): - """Combat-related properties for weapons and armor.""" - __tablename__ = 'item_combat_stats' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - - # Damage properties - max_damage = Column(Integer) - damage = Column(Integer) - damage_type = Column(Integer) - damage_bonus = Column(Float) - elemental_damage_bonus = Column(Integer) - elemental_damage_vs_monsters = Column(Float) - variance = Column(Float) - - # Advanced damage properties - cleaving = Column(Integer) # Cleaving damage - crit_damage_rating = Column(Integer) # Critical damage multiplier - damage_over_time = Column(Integer) # DoT damage - - # Attack properties - attack_bonus = Column(Float) - weapon_time = Column(Integer) - weapon_skill = Column(Integer) - - # Defense properties - armor_level = Column(Integer, index=True) - shield_value = Column(Integer) - melee_defense_bonus = Column(Float) - missile_defense_bonus = Column(Float) - magic_defense_bonus = Column(Float) - - # Resistances - resist_magic = Column(Integer) - crit_resist_rating = Column(Integer) - crit_damage_resist_rating = Column(Integer) - dot_resist_rating = Column(Integer) - life_resist_rating = Column(Integer) - nether_resist_rating = Column(Integer) - - # Healing/Recovery - heal_over_time = Column(Integer) - healing_resist_rating = Column(Integer) - - # Mana properties - mana_conversion_bonus = Column(Float) - - # PvP properties - pk_damage_rating = Column(Integer) - pk_damage_resist_rating = Column(Integer) - gear_pk_damage_rating = Column(Integer) - gear_pk_damage_resist_rating = Column(Integer) - -class ItemRequirements(Base): - """Wield requirements and skill prerequisites.""" - __tablename__ = 'item_requirements' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - - wield_level = Column(Integer, index=True) - wield_requirement = Column(Integer) - skill_level = Column(Integer) - lore_requirement = Column(Integer) - - # String-based requirements (parsed from StringValues) - equip_skill = Column(String(50)) - mastery = Column(String(50)) - -class ItemEnhancements(Base): - """Enhancements, materials, and modifications.""" - __tablename__ = 'item_enhancements' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - - material = Column(String(50), index=True) - imbue = Column(String(50)) - tinks = Column(Integer) - workmanship = Column(Float) - salvage_workmanship = Column(Float) - - # Advanced tinkering - num_times_tinkered = Column(Integer, default=0) - free_tinkers_bitfield = Column(Integer) # Which tinkers are free - num_items_in_material = Column(Integer) # Salvage yield - - # Additional imbue effects - imbue_attempts = Column(Integer, default=0) - imbue_successes = Column(Integer, default=0) - imbued_effect2 = Column(Integer) - imbued_effect3 = Column(Integer) - imbued_effect4 = Column(Integer) - imbued_effect5 = Column(Integer) - imbue_stacking_bits = Column(Integer) # Which imbues stack - - # Set information - item_set = Column(String(100), index=True) - equipment_set_extra = Column(Integer) # Additional set bonuses - - # Special properties - aetheria_bitfield = Column(Integer) # Aetheria slot properties - heritage_specific_armor = Column(Integer) # Heritage armor type - - # Cooldowns - shared_cooldown = Column(Integer) # Cooldown group ID - -class ItemRatings(Base): - """Modern rating system properties.""" - __tablename__ = 'item_ratings' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - - # Damage ratings - damage_rating = Column(Integer) - damage_resist_rating = Column(Integer) - crit_rating = Column(Integer) - crit_resist_rating = Column(Integer) - crit_damage_rating = Column(Integer) - crit_damage_resist_rating = Column(Integer) - - # Utility ratings - heal_boost_rating = Column(Integer) - vitality_rating = Column(Integer) - healing_rating = Column(Integer) # Healing rating (enum 342) - mana_conversion_rating = Column(Integer) - weakness_rating = Column(Integer) # Weakness debuff strength - nether_over_time = Column(Integer) # Nether DoT - - # Resist ratings - healing_resist_rating = Column(Integer) # Healing resist (enum 317) - nether_resist_rating = Column(Integer) # Nether resist (enum 331) - dot_resist_rating = Column(Integer) # DoT resist (enum 350) - life_resist_rating = Column(Integer) # Life resist (enum 351) - - # Specialized ratings - sneak_attack_rating = Column(Integer) # Sneak attack (enum 356) - recklessness_rating = Column(Integer) # Recklessness (enum 357) - deception_rating = Column(Integer) # Deception (enum 358) - - # PvP ratings - pk_damage_rating = Column(Integer) # PvP damage (enum 381) - pk_damage_resist_rating = Column(Integer) # PvP damage resist (enum 382) - gear_pk_damage_rating = Column(Integer) # Gear PvP damage (enum 383) - gear_pk_damage_resist_rating = Column(Integer) # Gear PvP damage resist (enum 384) - - # Gear totals - gear_damage = Column(Integer) # Total gear damage - gear_damage_resist = Column(Integer) # Total gear damage resist - gear_crit = Column(Integer) # Total gear crit - gear_crit_resist = Column(Integer) # Total gear crit resist - gear_crit_damage = Column(Integer) # Total gear crit damage - gear_crit_damage_resist = Column(Integer) # Total gear crit damage resist - gear_healing_boost = Column(Integer) # Total gear healing boost - gear_max_health = Column(Integer) # Total gear max health - gear_nether_resist = Column(Integer) # Total gear nether resist - gear_life_resist = Column(Integer) # Total gear life resist - gear_overpower = Column(Integer) # Total gear overpower - gear_overpower_resist = Column(Integer) # Total gear overpower resist - - # Calculated totals - total_rating = Column(Integer) - -class ItemSpells(Base): - """Spell information for items.""" - __tablename__ = 'item_spells' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - spell_id = Column(Integer, primary_key=True) - is_active = Column(Boolean, default=False) - -class ItemRawData(Base): - """Preserve original raw enum data for completeness.""" - __tablename__ = 'item_raw_data' - - item_id = Column(Integer, ForeignKey('items.id'), primary_key=True) - - # Raw enum collections - int_values = Column(JSONB) - double_values = Column(JSONB) - string_values = Column(JSONB) - bool_values = Column(JSONB) - - # Original full JSON for reference - original_json = Column(JSONB) - -# Database URL configuration -import os -DATABASE_URL = os.getenv("DATABASE_URL", "postgresql://inventory_user:inventory_pass@inventory-db:5432/inventory_db") - -# Create all indexes for performance -def create_indexes(engine): - """Create additional performance indexes.""" - - # Item search indexes - sa.Index('ix_items_search', Item.character_name, Item.name, Item.object_class).create(engine, checkfirst=True) - - # Equipment status index for filtering equipped items - sa.Index('ix_items_equipped', Item.character_name, Item.current_wielded_location).create(engine, checkfirst=True) - - # Combat stats indexes for filtering - sa.Index('ix_combat_damage', ItemCombatStats.max_damage).create(engine, checkfirst=True) - sa.Index('ix_combat_armor', ItemCombatStats.armor_level).create(engine, checkfirst=True) - - # Requirements indexes for filtering - sa.Index('ix_req_level', ItemRequirements.wield_level).create(engine, checkfirst=True) - - # Enhancement indexes - sa.Index('ix_enh_material_set', ItemEnhancements.material, ItemEnhancements.item_set).create(engine, checkfirst=True) - - # JSONB indexes for raw data querying - sa.Index('ix_raw_int_gin', ItemRawData.int_values, postgresql_using='gin').create(engine, checkfirst=True) - sa.Index('ix_raw_original_gin', ItemRawData.original_json, postgresql_using='gin').create(engine, checkfirst=True) \ No newline at end of file diff --git a/inventory-service/enums/BoolValueKey.json b/inventory-service/enums/BoolValueKey.json deleted file mode 100644 index bbde3c8c..00000000 --- a/inventory-service/enums/BoolValueKey.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "BoolValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "Stuck", - "2": "Open", - "3": "Locked", - "4": "RotProof", - "5": "AllegianceUpdateRequest", - "6": "AiUsesMana", - "7": "AiUseHumanMagicAnimations", - "8": "AllowGive", - "9": "CurrentlyAttacking", - "10": "AttackerAi", - "11": "IgnoreCollisions", - "12": "ReportCollisions", - "13": "Ethereal", - "14": "GravityStatus", - "15": "LightsStatus", - "16": "ScriptedCollision", - "17": "Inelastic", - "18": "Visibility", - "19": "Attackable", - "20": "SafeSpellComponents", - "21": "AdvocateState", - "22": "Inscribable", - "23": "DestroyOnSell", - "24": "UiHidden", - "25": "IgnoreHouseBarriers", - "26": "HiddenAdmin", - "27": "PkWounder", - "28": "PkKiller", - "29": "NoCorpse", - "30": "UnderLifestoneProtection", - "31": "ItemManaUpdatePending", - "32": "GeneratorStatus", - "33": "ResetMessagePending", - "34": "DefaultOpen", - "35": "DefaultLocked", - "36": "DefaultOn", - "37": "OpenForBusiness", - "38": "IsFrozen", - "39": "DealMagicalItems", - "40": "LogoffImDead", - "41": "ReportCollisionsAsEnvironment", - "42": "AllowEdgeSlide", - "43": "AdvocateQuest", - "44": "IsAdmin", - "45": "IsArch", - "46": "IsSentinel", - "47": "IsAdvocate", - "48": "CurrentlyPoweringUp", - "49": "GeneratorEnteredWorld", - "50": "NeverFailCasting", - "51": "VendorService", - "52": "AiImmobile", - "53": "DamagedByCollisions", - "54": "IsDynamic", - "55": "IsHot", - "56": "IsAffecting", - "57": "AffectsAis", - "58": "SpellQueueActive", - "59": "GeneratorDisabled", - "60": "IsAcceptingTells", - "61": "LoggingChannel", - "62": "OpensAnyLock", - "63": "UnlimitedUse", - "64": "GeneratedTreasureItem", - "65": "IgnoreMagicResist", - "66": "IgnoreMagicArmor", - "67": "AiAllowTrade", - "68": "SpellComponentsRequired", - "69": "IsSellable", - "70": "IgnoreShieldsBySkill", - "71": "NoDraw", - "72": "ActivationUntargeted", - "73": "HouseHasGottenPriorityBootPos", - "74": "GeneratorAutomaticDestruction", - "75": "HouseHooksVisible", - "76": "HouseRequiresMonarch", - "77": "HouseHooksEnabled", - "78": "HouseNotifiedHudOfHookCount", - "79": "AiAcceptEverything", - "80": "IgnorePortalRestrictions", - "81": "RequiresBackpackSlot", - "82": "DontTurnOrMoveWhenGiving", - "83": "NpcLooksLikeObject", - "84": "IgnoreCloIcons", - "85": "AppraisalHasAllowedWielder", - "86": "ChestRegenOnClose", - "87": "LogoffInMinigame", - "88": "PortalShowDestination", - "89": "PortalIgnoresPkAttackTimer", - "90": "NpcInteractsSilently", - "91": "Retained", - "92": "IgnoreAuthor", - "93": "Limbo", - "94": "AppraisalHasAllowedActivator", - "95": "ExistedBeforeAllegianceXpChanges", - "96": "IsDeaf", - "97": "IsPsr", - "98": "Invincible", - "99": "Ivoryable", - "100": "Dyable", - "101": "CanGenerateRare", - "102": "CorpseGeneratedRare", - "103": "NonProjectileMagicImmune", - "104": "ActdReceivedItems", - "105": "Unknown105", - "106": "FirstEnterWorldDone", - "107": "RecallsDisabled", - "108": "RareUsesTimer", - "109": "ActdPreorderReceivedItems", - "110": "Afk", - "111": "IsGagged", - "112": "ProcSpellSelfTargeted", - "113": "IsAllegianceGagged", - "114": "EquipmentSetTriggerPiece", - "115": "Uninscribe", - "116": "WieldOnUse", - "117": "ChestClearedWhenClosed", - "118": "NeverAttack", - "119": "SuppressGenerateEffect", - "120": "TreasureCorpse", - "121": "EquipmentSetAddLevel", - "122": "BarberActive", - "123": "TopLayerPriority", - "124": "NoHeldItemShown", - "125": "LoginAtLifestone", - "126": "OlthoiPk", - "127": "Account15Days", - "128": "HadNoVitae", - "129": "NoOlthoiTalk", - "130": "AutowieldLeft", - "9001": "LinkedPortalOneSummon", - "9002": "LinkedPortalTwoSummon", - "9003": "HouseEvicted", - "9004": "UntrainedSkills", - "201326592": "Lockable_Decal", - "201326593": "Inscribable_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "BoolValueKey.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/CoverageMask.json b/inventory-service/enums/CoverageMask.json deleted file mode 100644 index 56573c1b..00000000 --- a/inventory-service/enums/CoverageMask.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "CoverageMask": { - "type": "int", - "values": { - "0": "None", - "1": "Unknown", - "2": "UnderwearUpperLegs", - "4": "UnderwearLowerLegs", - "8": "UnderwearChest", - "16": "UnderwearAbdomen", - "32": "UnderwearUpperArms", - "64": "UnderwearLowerArms", - "256": "OuterwearUpperLegs", - "512": "OuterwearLowerLegs", - "1024": "OuterwearChest", - "2048": "OuterwearAbdomen", - "4096": "OuterwearUpperArms", - "8192": "OuterwearLowerArms", - "16384": "Head", - "32768": "Hands", - "65536": "Feet", - "131072": "Cloak" - }, - "comments": { - "Unknown": "Original pants abdomen?", - "UnderwearUpperLegs": "I think... 0x13 = Abdomen/UpperLegs", - "UnderwearLowerLegs": "I think... 0x16 = Abdomen/UpperLegs/LowerLegs", - "UnderwearAbdomen": "Original shirt abdomen?" - }, - "attributes": {}, - "source_file": "CoverageMask.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/DoubleValueKey.json b/inventory-service/enums/DoubleValueKey.json deleted file mode 100644 index d5610446..00000000 --- a/inventory-service/enums/DoubleValueKey.json +++ /dev/null @@ -1,207 +0,0 @@ -{ - "DoubleValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "HeartbeatInterval", - "2": "HeartbeatTimestamp", - "3": "HealthRate", - "4": "StaminaRate", - "5": "ManaRate", - "6": "HealthUponResurrection", - "7": "StaminaUponResurrection", - "8": "ManaUponResurrection", - "9": "StartTime", - "10": "StopTime", - "11": "ResetInterval", - "12": "Shade", - "13": "ArmorModVsSlash", - "14": "ArmorModVsPierce", - "15": "ArmorModVsBludgeon", - "16": "ArmorModVsCold", - "17": "ArmorModVsFire", - "18": "ArmorModVsAcid", - "19": "ArmorModVsElectric", - "20": "CombatSpeed", - "21": "WeaponLength", - "22": "DamageVariance", - "23": "CurrentPowerMod", - "24": "AccuracyMod", - "25": "StrengthMod", - "26": "MaximumVelocity", - "27": "RotationSpeed", - "28": "MotionTimestamp", - "29": "WeaponDefense", - "30": "WimpyLevel", - "31": "VisualAwarenessRange", - "32": "AuralAwarenessRange", - "33": "PerceptionLevel", - "34": "PowerupTime", - "35": "MaxChargeDistance", - "36": "ChargeSpeed", - "37": "BuyPrice", - "38": "SellPrice", - "39": "DefaultScale", - "40": "LockpickMod", - "41": "RegenerationInterval", - "42": "RegenerationTimestamp", - "43": "GeneratorRadius", - "44": "TimeToRot", - "45": "DeathTimestamp", - "46": "PkTimestamp", - "47": "VictimTimestamp", - "48": "LoginTimestamp", - "49": "CreationTimestamp", - "50": "MinimumTimeSincePk", - "51": "DeprecatedHousekeepingPriority", - "52": "AbuseLoggingTimestamp", - "53": "LastPortalTeleportTimestamp", - "54": "UseRadius", - "55": "HomeRadius", - "56": "ReleasedTimestamp", - "57": "MinHomeRadius", - "58": "Facing", - "59": "ResetTimestamp", - "60": "LogoffTimestamp", - "61": "EconRecoveryInterval", - "62": "WeaponOffense", - "63": "DamageMod", - "64": "ResistSlash", - "65": "ResistPierce", - "66": "ResistBludgeon", - "67": "ResistFire", - "68": "ResistCold", - "69": "ResistAcid", - "70": "ResistElectric", - "71": "ResistHealthBoost", - "72": "ResistStaminaDrain", - "73": "ResistStaminaBoost", - "74": "ResistManaDrain", - "75": "ResistManaBoost", - "76": "Translucency", - "77": "PhysicsScriptIntensity", - "78": "Friction", - "79": "Elasticity", - "80": "AiUseMagicDelay", - "81": "ItemMinSpellcraftMod", - "82": "ItemMaxSpellcraftMod", - "83": "ItemRankProbability", - "84": "Shade2", - "85": "Shade3", - "86": "Shade4", - "87": "ItemEfficiency", - "88": "ItemManaUpdateTimestamp", - "89": "SpellGestureSpeedMod", - "90": "SpellStanceSpeedMod", - "91": "AllegianceAppraisalTimestamp", - "92": "PowerLevel", - "93": "AccuracyLevel", - "94": "AttackAngle", - "95": "AttackTimestamp", - "96": "CheckpointTimestamp", - "97": "SoldTimestamp", - "98": "UseTimestamp", - "99": "UseLockTimestamp", - "100": "HealkitMod", - "101": "FrozenTimestamp", - "102": "HealthRateMod", - "103": "AllegianceSwearTimestamp", - "104": "ObviousRadarRange", - "105": "HotspotCycleTime", - "106": "HotspotCycleTimeVariance", - "107": "SpamTimestamp", - "108": "SpamRate", - "109": "BondWieldedTreasure", - "110": "BulkMod", - "111": "SizeMod", - "112": "GagTimestamp", - "113": "GeneratorUpdateTimestamp", - "114": "DeathSpamTimestamp", - "115": "DeathSpamRate", - "116": "WildAttackProbability", - "117": "FocusedProbability", - "118": "CrashAndTurnProbability", - "119": "CrashAndTurnRadius", - "120": "CrashAndTurnBias", - "121": "GeneratorInitialDelay", - "122": "AiAcquireHealth", - "123": "AiAcquireStamina", - "124": "AiAcquireMana", - "125": "ResistHealthDrain", - "126": "LifestoneProtectionTimestamp", - "127": "AiCounteractEnchantment", - "128": "AiDispelEnchantment", - "129": "TradeTimestamp", - "130": "AiTargetedDetectionRadius", - "131": "EmotePriority", - "132": "LastTeleportStartTimestamp", - "133": "EventSpamTimestamp", - "134": "EventSpamRate", - "135": "InventoryOffset", - "136": "CriticalMultiplier", - "137": "ManaStoneDestroyChance", - "138": "SlayerDamageBonus", - "139": "AllegianceInfoSpamTimestamp", - "140": "AllegianceInfoSpamRate", - "141": "NextSpellcastTimestamp", - "142": "AppraisalRequestedTimestamp", - "143": "AppraisalHeartbeatDueTimestamp", - "144": "ManaConversionMod", - "145": "LastPkAttackTimestamp", - "146": "FellowshipUpdateTimestamp", - "147": "CriticalFrequency", - "148": "LimboStartTimestamp", - "149": "WeaponMissileDefense", - "150": "WeaponMagicDefense", - "151": "IgnoreShield", - "152": "ElementalDamageMod", - "153": "StartMissileAttackTimestamp", - "154": "LastRareUsedTimestamp", - "155": "IgnoreArmor", - "156": "ProcSpellRate", - "157": "ResistanceModifier", - "158": "AllegianceGagTimestamp", - "159": "AbsorbMagicDamage", - "160": "CachedMaxAbsorbMagicDamage", - "161": "GagDuration", - "162": "AllegianceGagDuration", - "163": "GlobalXpMod", - "164": "HealingModifier", - "165": "ArmorModVsNether", - "166": "ResistNether", - "167": "CooldownDuration", - "168": "WeaponAuraOffense", - "169": "WeaponAuraDefense", - "170": "WeaponAuraElemental", - "171": "WeaponAuraManaConv", - "8004": "PCAPRecordedWorkmanship", - "8010": "PCAPRecordedVelocityX", - "8011": "PCAPRecordedVelocityY", - "8012": "PCAPRecordedVelocityZ", - "8013": "PCAPRecordedAccelerationX", - "8014": "PCAPRecordedAccelerationY", - "8015": "PCAPRecordedAccelerationZ", - "8016": "PCAPRecordeOmegaX", - "8017": "PCAPRecordeOmegaY", - "8018": "PCAPRecordeOmegaZ", - "167772160": "SlashProt_Decal", - "167772161": "PierceProt_Decal", - "167772162": "BludgeonProt_Decal", - "167772163": "AcidProt_Decal", - "167772164": "LightningProt_Decal", - "167772165": "FireProt_Decal", - "167772166": "ColdProt_Decal", - "167772167": "Heading_Decal", - "167772168": "ApproachDistance_Decal", - "167772169": "SalvageWorkmanship_Decal", - "167772170": "Scale_Decal", - "167772171": "Variance_Decal", - "167772172": "AttackBonus_Decal", - "167772173": "Range_Decal", - "167772174": "DamageBonus_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "DoubleValueKey.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/EquipMask.json b/inventory-service/enums/EquipMask.json deleted file mode 100644 index f76ab1d5..00000000 --- a/inventory-service/enums/EquipMask.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "EquipMask": { - "type": "uint", - "values": { - "0": "None", - "1": "HeadWear", - "2": "ChestWear", - "4": "AbdomenWear", - "8": "UpperArmWear", - "16": "LowerArmWear", - "32": "HandWear", - "64": "UpperLegWear", - "128": "LowerLegWear", - "256": "FootWear", - "512": "ChestArmor", - "1024": "AbdomenArmor", - "2048": "UpperArmArmor", - "4096": "LowerArmArmor", - "8192": "UpperLegArmor", - "16384": "LowerLegArmor", - "32768": "NeckWear", - "65536": "WristWearLeft", - "131072": "WristWearRight", - "262144": "FingerWearLeft", - "524288": "FingerWearRight", - "1048576": "MeleeWeapon", - "2097152": "Shield", - "4194304": "MissileWeapon", - "8388608": "MissileAmmo", - "16777216": "Held", - "33554432": "TwoHanded", - "67108864": "TrinketOne", - "134217728": "Cloak", - "268435456": "SigilOne", - "536870912": "SigilTwo", - "1073741824": "SigilThree", - "EXPR:0x80000000 | HeadWear | ChestWear | AbdomenWear | UpperArmWear | LowerArmWear | HandWear | UpperLegWear | LowerLegWear | FootWear": "Clothing", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor | FootWear": "Armor", - "EXPR:ChestArmor | AbdomenArmor | UpperArmArmor | LowerArmArmor | UpperLegArmor | LowerLegArmor": "ArmorExclusive", - "EXPR:HeadWear | HandWear | FootWear": "Extremity", - "EXPR:NeckWear | WristWearLeft | WristWearRight | FingerWearLeft | FingerWearRight | TrinketOne | Cloak | SigilOne | SigilTwo | SigilThree": "Jewelry", - "EXPR:WristWearLeft | WristWearRight": "WristWear", - "EXPR:FingerWearLeft | FingerWearRight": "FingerWear", - "EXPR:SigilOne | SigilTwo | SigilThree": "Sigil", - "EXPR:Held | TwoHanded | TrinketOne | Cloak | SigilOne | SigilTwo": "ReadySlot", - "EXPR:SigilTwo | TrinketOne | Held": "Weapon", - "EXPR:SigilOne | SigilTwo | TrinketOne | Held": "WeaponReadySlot", - "EXPR:MeleeWeapon | Shield | MissileWeapon | Held | TwoHanded": "Selectable", - "EXPR:Selectable | MissileAmmo": "SelectablePlusAmmo", - "2147483647": "CanGoInReadySlot" - }, - "comments": { - "SigilOne": "Blue", - "SigilTwo": "Yellow", - "SigilThree": "Red" - }, - "attributes": {}, - "source_file": "EquipMask.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/IntValueKey.json b/inventory-service/enums/IntValueKey.json deleted file mode 100644 index c343b4e1..00000000 --- a/inventory-service/enums/IntValueKey.json +++ /dev/null @@ -1,463 +0,0 @@ -{ - "IntValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "ItemType", - "2": "CreatureType", - "3": "PaletteTemplate", - "4": "ClothingPriority", - "5": "EncumbranceVal", - "6": "ItemsCapacity", - "7": "ContainersCapacity", - "8": "Mass", - "9": "ValidLocations", - "10": "CurrentWieldedLocation", - "11": "MaxStackSize", - "12": "StackSize", - "13": "StackUnitEncumbrance", - "14": "StackUnitMass", - "15": "StackUnitValue", - "16": "ItemUseable", - "17": "RareId", - "18": "UiEffects", - "19": "Value", - "20": "CoinValue", - "21": "TotalExperience", - "22": "AvailableCharacter", - "23": "TotalSkillCredits", - "24": "AvailableSkillCredits", - "25": "Level", - "26": "AccountRequirements", - "27": "ArmorType", - "28": "ArmorLevel", - "29": "AllegianceCpPool", - "30": "AllegianceRank", - "31": "ChannelsAllowed", - "32": "ChannelsActive", - "33": "Bonded", - "34": "MonarchsRank", - "35": "AllegianceFollowers", - "36": "ResistMagic", - "37": "ResistItemAppraisal", - "38": "ResistLockpick", - "39": "DeprecatedResistRepair", - "40": "CombatMode", - "41": "CurrentAttackHeight", - "42": "CombatCollisions", - "43": "NumDeaths", - "44": "Damage", - "45": "DamageType", - "46": "DefaultCombatStyle", - "47": "AttackType", - "48": "WeaponSkill", - "49": "WeaponTime", - "50": "AmmoType", - "51": "CombatUse", - "52": "ParentLocation", - "53": "PlacementPosition", - "54": "WeaponEncumbrance", - "55": "WeaponMass", - "56": "ShieldValue", - "57": "ShieldEncumbrance", - "58": "MissileInventoryLocation", - "59": "FullDamageType", - "60": "WeaponRange", - "61": "AttackersSkill", - "62": "DefendersSkill", - "63": "AttackersSkillValue", - "64": "AttackersClass", - "65": "Placement", - "66": "CheckpointStatus", - "67": "Tolerance", - "68": "TargetingTactic", - "69": "CombatTactic", - "70": "HomesickTargetingTactic", - "71": "NumFollowFailures", - "72": "FriendType", - "73": "FoeType", - "74": "MerchandiseItemTypes", - "75": "MerchandiseMinValue", - "76": "MerchandiseMaxValue", - "77": "NumItemsSold", - "78": "NumItemsBought", - "79": "MoneyIncome", - "80": "MoneyOutflow", - "81": "MaxGeneratedObjects", - "82": "InitGeneratedObjects", - "83": "ActivationResponse", - "84": "OriginalValue", - "85": "NumMoveFailures", - "86": "MinLevel", - "87": "MaxLevel", - "88": "LockpickMod", - "89": "BoosterEnum", - "90": "BoostValue", - "91": "MaxStructure", - "92": "Structure", - "93": "PhysicsState", - "94": "TargetType", - "95": "RadarBlipColor", - "96": "EncumbranceCapacity", - "97": "LoginTimestamp", - "98": "CreationTimestamp", - "99": "PkLevelModifier", - "100": "GeneratorType", - "101": "AiAllowedCombatStyle", - "102": "LogoffTimestamp", - "103": "GeneratorDestructionType", - "104": "ActivationCreateClass", - "105": "ItemWorkmanship", - "106": "ItemSpellcraft", - "107": "ItemCurMana", - "108": "ItemMaxMana", - "109": "ItemDifficulty", - "110": "ItemAllegianceRankLimit", - "111": "PortalBitmask", - "112": "AdvocateLevel", - "113": "Gender", - "114": "Attuned", - "115": "ItemSkillLevelLimit", - "116": "GateLogic", - "117": "ItemManaCost", - "118": "Logoff", - "119": "Active", - "120": "AttackHeight", - "121": "NumAttackFailures", - "122": "AiCpThreshold", - "123": "AiAdvancementStrategy", - "124": "Version", - "125": "Age", - "126": "VendorHappyMean", - "127": "VendorHappyVariance", - "128": "CloakStatus", - "129": "VitaeCpPool", - "130": "NumServicesSold", - "131": "MaterialType", - "132": "NumAllegianceBreaks", - "133": "ShowableOnRadar", - "134": "PlayerKillerStatus", - "135": "VendorHappyMaxItems", - "136": "ScorePageNum", - "137": "ScoreConfigNum", - "138": "ScoreNumScores", - "139": "DeathLevel", - "140": "AiOptions", - "141": "OpenToEveryone", - "142": "GeneratorTimeType", - "143": "GeneratorStartTime", - "144": "GeneratorEndTime", - "145": "GeneratorEndDestructionType", - "146": "XpOverride", - "147": "NumCrashAndTurns", - "148": "ComponentWarningThreshold", - "149": "HouseStatus", - "150": "HookPlacement", - "151": "HookType", - "152": "HookItemType", - "153": "AiPpThreshold", - "154": "GeneratorVersion", - "155": "HouseType", - "156": "PickupEmoteOffset", - "157": "WeenieIteration", - "158": "WieldRequirements", - "159": "WieldSkillType", - "160": "WieldDifficulty", - "161": "HouseMaxHooksUsable", - "162": "HouseCurrentHooksUsable", - "163": "AllegianceMinLevel", - "164": "AllegianceMaxLevel", - "165": "HouseRelinkHookCount", - "166": "SlayerCreatureType", - "167": "ConfirmationInProgress", - "168": "ConfirmationTypeInProgress", - "169": "TsysMutationData", - "170": "NumItemsInMaterial", - "171": "NumTimesTinkered", - "172": "AppraisalLongDescDecoration", - "173": "AppraisalLockpickSuccessPercent", - "174": "AppraisalPages", - "175": "AppraisalMaxPages", - "176": "AppraisalItemSkill", - "177": "GemCount", - "178": "GemType", - "179": "ImbuedEffect", - "180": "AttackersRawSkillValue", - "181": "ChessRank", - "182": "ChessTotalGames", - "183": "ChessGamesWon", - "184": "ChessGamesLost", - "185": "TypeOfAlteration", - "186": "SkillToBeAltered", - "187": "SkillAlterationCount", - "188": "HeritageGroup", - "189": "TransferFromAttribute", - "190": "TransferToAttribute", - "191": "AttributeTransferCount", - "192": "FakeFishingSkill", - "193": "NumKeys", - "194": "DeathTimestamp", - "195": "PkTimestamp", - "196": "VictimTimestamp", - "197": "HookGroup", - "198": "AllegianceSwearTimestamp", - "199": "HousePurchaseTimestamp", - "200": "RedirectableEquippedArmorCount", - "201": "MeleeDefenseImbuedEffectTypeCache", - "202": "MissileDefenseImbuedEffectTypeCache", - "203": "MagicDefenseImbuedEffectTypeCache", - "204": "ElementalDamageBonus", - "205": "ImbueAttempts", - "206": "ImbueSuccesses", - "207": "CreatureKills", - "208": "PlayerKillsPk", - "209": "PlayerKillsPkl", - "210": "RaresTierOne", - "211": "RaresTierTwo", - "212": "RaresTierThree", - "213": "RaresTierFour", - "214": "RaresTierFive", - "215": "AugmentationStat", - "216": "AugmentationFamilyStat", - "217": "AugmentationInnateFamily", - "218": "AugmentationInnateStrength", - "219": "AugmentationInnateEndurance", - "220": "AugmentationInnateCoordination", - "221": "AugmentationInnateQuickness", - "222": "AugmentationInnateFocus", - "223": "AugmentationInnateSelf", - "224": "AugmentationSpecializeSalvaging", - "225": "AugmentationSpecializeItemTinkering", - "226": "AugmentationSpecializeArmorTinkering", - "227": "AugmentationSpecializeMagicItemTinkering", - "228": "AugmentationSpecializeWeaponTinkering", - "229": "AugmentationExtraPackSlot", - "230": "AugmentationIncreasedCarryingCapacity", - "231": "AugmentationLessDeathItemLoss", - "232": "AugmentationSpellsRemainPastDeath", - "233": "AugmentationCriticalDefense", - "234": "AugmentationBonusXp", - "235": "AugmentationBonusSalvage", - "236": "AugmentationBonusImbueChance", - "237": "AugmentationFasterRegen", - "238": "AugmentationIncreasedSpellDuration", - "239": "AugmentationResistanceFamily", - "240": "AugmentationResistanceSlash", - "241": "AugmentationResistancePierce", - "242": "AugmentationResistanceBlunt", - "243": "AugmentationResistanceAcid", - "244": "AugmentationResistanceFire", - "245": "AugmentationResistanceFrost", - "246": "AugmentationResistanceLightning", - "247": "RaresTierOneLogin", - "248": "RaresTierTwoLogin", - "249": "RaresTierThreeLogin", - "250": "RaresTierFourLogin", - "251": "RaresTierFiveLogin", - "252": "RaresLoginTimestamp", - "253": "RaresTierSix", - "254": "RaresTierSeven", - "255": "RaresTierSixLogin", - "256": "RaresTierSevenLogin", - "257": "ItemAttributeLimit", - "258": "ItemAttributeLevelLimit", - "259": "ItemAttribute2ndLimit", - "260": "ItemAttribute2ndLevelLimit", - "261": "CharacterTitleId", - "262": "NumCharacterTitles", - "263": "ResistanceModifierType", - "264": "FreeTinkersBitfield", - "265": "EquipmentSetId", - "266": "PetClass", - "267": "Lifespan", - "268": "RemainingLifespan", - "269": "UseCreateQuantity", - "270": "WieldRequirements2", - "271": "WieldSkillType2", - "272": "WieldDifficulty2", - "273": "WieldRequirements3", - "274": "WieldSkillType3", - "275": "WieldDifficulty3", - "276": "WieldRequirements4", - "277": "WieldSkillType4", - "278": "WieldDifficulty4", - "279": "Unique", - "280": "SharedCooldown", - "281": "Faction1Bits", - "282": "Faction2Bits", - "283": "Faction3Bits", - "284": "Hatred1Bits", - "285": "Hatred2Bits", - "286": "Hatred3Bits", - "287": "SocietyRankCelhan", - "288": "SocietyRankEldweb", - "289": "SocietyRankRadblo", - "290": "HearLocalSignals", - "291": "HearLocalSignalsRadius", - "292": "Cleaving", - "293": "AugmentationSpecializeGearcraft", - "294": "AugmentationInfusedCreatureMagic", - "295": "AugmentationInfusedItemMagic", - "296": "AugmentationInfusedLifeMagic", - "297": "AugmentationInfusedWarMagic", - "298": "AugmentationCriticalExpertise", - "299": "AugmentationCriticalPower", - "300": "AugmentationSkilledMelee", - "301": "AugmentationSkilledMissile", - "302": "AugmentationSkilledMagic", - "303": "ImbuedEffect2", - "304": "ImbuedEffect3", - "305": "ImbuedEffect4", - "306": "ImbuedEffect5", - "307": "DamageRating", - "308": "DamageResistRating", - "309": "AugmentationDamageBonus", - "310": "AugmentationDamageReduction", - "311": "ImbueStackingBits", - "312": "HealOverTime", - "313": "CritRating", - "314": "CritDamageRating", - "315": "CritResistRating", - "316": "CritDamageResistRating", - "317": "HealingResistRating", - "318": "DamageOverTime", - "319": "ItemMaxLevel", - "320": "ItemXpStyle", - "321": "EquipmentSetExtra", - "322": "AetheriaBitfield", - "323": "HealingBoostRating", - "324": "HeritageSpecificArmor", - "325": "AlternateRacialSkills", - "326": "AugmentationJackOfAllTrades", - "327": "AugmentationResistanceNether", - "328": "AugmentationInfusedVoidMagic", - "329": "WeaknessRating", - "330": "NetherOverTime", - "331": "NetherResistRating", - "332": "LuminanceAward", - "333": "LumAugDamageRating", - "334": "LumAugDamageReductionRating", - "335": "LumAugCritDamageRating", - "336": "LumAugCritReductionRating", - "337": "LumAugSurgeEffectRating", - "338": "LumAugSurgeChanceRating", - "339": "LumAugItemManaUsage", - "340": "LumAugItemManaGain", - "341": "LumAugVitality", - "342": "LumAugHealingRating", - "343": "LumAugSkilledCraft", - "344": "LumAugSkilledSpec", - "345": "LumAugNoDestroyCraft", - "346": "RestrictInteraction", - "347": "OlthoiLootTimestamp", - "348": "OlthoiLootStep", - "349": "UseCreatesContractId", - "350": "DotResistRating", - "351": "LifeResistRating", - "352": "CloakWeaveProc", - "353": "WeaponType", - "354": "MeleeMastery", - "355": "RangedMastery", - "356": "SneakAttackRating", - "357": "RecklessnessRating", - "358": "DeceptionRating", - "359": "CombatPetRange", - "360": "WeaponAuraDamage", - "361": "WeaponAuraSpeed", - "362": "SummoningMastery", - "363": "HeartbeatLifespan", - "364": "UseLevelRequirement", - "365": "LumAugAllSkills", - "366": "UseRequiresSkill", - "367": "UseRequiresSkillLevel", - "368": "UseRequiresSkillSpec", - "369": "UseRequiresLevel", - "370": "GearDamage", - "371": "GearDamageResist", - "372": "GearCrit", - "373": "GearCritResist", - "374": "GearCritDamage", - "375": "GearCritDamageResist", - "376": "GearHealingBoost", - "377": "GearNetherResist", - "378": "GearLifeResist", - "379": "GearMaxHealth", - "380": "Unknown380", - "381": "PKDamageRating", - "382": "PKDamageResistRating", - "383": "GearPKDamageRating", - "384": "GearPKDamageResistRating", - "385": "Unknown385", - "386": "Overpower", - "387": "OverpowerResist", - "388": "GearOverpower", - "389": "GearOverpowerResist", - "390": "Enlightenment", - "8007": "PCAPRecordedAutonomousMovement", - "8030": "PCAPRecordedMaxVelocityEstimated", - "8041": "PCAPRecordedPlacement", - "8042": "PCAPRecordedAppraisalPages", - "8043": "PCAPRecordedAppraisalMaxPages", - "9008": "CurrentLoyaltyAtLastLogoff", - "9009": "CurrentLeadershipAtLastLogoff", - "9010": "AllegianceOfficerRank", - "9011": "HouseRentTimestamp", - "9012": "Hairstyle", - "9013": "VisualClothingPriority", - "9014": "SquelchGlobal", - "9015": "InventoryOrder", - "218103808": "WeenieClassId_Decal", - "218103809": "Icon_Decal_DID", - "218103810": "Container_Decal_IID", - "218103811": "Landblock_Decal", - "218103812": "ItemSlots_Decal", - "218103813": "PackSlots_Decal", - "218103814": "StackCount_Decal", - "218103815": "StackMax_Decal", - "218103816": "Spell_Decal_DID", - "218103817": "SlotLegacy_Decal", - "218103818": "Wielder_Decal_IID", - "218103819": "WieldingSlot_Decal", - "218103820": "Monarch_Decal_IID", - "218103821": "Coverage_Decal", - "218103822": "EquipableSlots_Decal", - "218103823": "EquipType_Decal", - "218103824": "IconOutline_Decal", - "218103825": "MissileType_Decal", - "218103826": "UsageMask_Decal", - "218103827": "HouseOwner_Decal_IID", - "218103828": "HookMask_Decal", - "218103829": "HookType_Decal", - "218103830": "Setup_Decal_DID", - "218103831": "ObjectDescriptionFlags_Decal", - "218103832": "CreateFlags1_Decal", - "218103833": "CreateFlags2_Decal", - "218103834": "Category_Decal", - "218103835": "Behavior_Decal", - "218103836": "MagicDef_Decal", - "218103837": "SpecialProps_Decal", - "218103838": "SpellCount_Decal", - "218103839": "WeapSpeed_Decal", - "218103840": "EquipSkill_Decal", - "218103841": "DamageType_Decal", - "218103842": "MaxDamage_Decal", - "218103843": "Unknown10_Decal", - "218103844": "Unknown100000_Decal", - "218103845": "Unknown800000_Decal", - "218103846": "Unknown8000000_Decal", - "218103847": "PhysicsDataFlags_Decal", - "218103848": "ActiveSpellCount_Decal", - "218103849": "IconOverlay_Decal_DID", - "218103850": "IconUnderlay_Decal_DID", - "231735296": "Slot_Decal" - }, - "comments": { - "EncumbranceVal": "ENCUMB_VAL_INT,", - "ValidLocations": "LOCATIONS_INT", - "Unknown10_Decal": "CurrentWieldLocation?", - "Unknown100000_Decal": "RadarBlipColor ???" - }, - "attributes": {}, - "source_file": "IntValueKey.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/ItemType.json b/inventory-service/enums/ItemType.json deleted file mode 100644 index b3735c97..00000000 --- a/inventory-service/enums/ItemType.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "ItemType": { - "type": "uint", - "values": { - "0": "None", - "1": "MeleeWeapon", - "2": "Armor", - "4": "Clothing", - "8": "Jewelry", - "16": "Creature", - "32": "Food", - "64": "Money", - "128": "Misc", - "256": "MissileWeapon", - "512": "Container", - "1024": "Useless", - "2048": "Gem", - "4096": "SpellComponents", - "8192": "Writable", - "16384": "Key", - "32768": "Caster", - "65536": "Portal", - "131072": "Lockable", - "262144": "PromissoryNote", - "524288": "ManaStone", - "1048576": "Service", - "2097152": "MagicWieldable", - "4194304": "CraftCookingBase", - "8388608": "CraftAlchemyBase", - "33554432": "CraftFletchingBase", - "67108864": "CraftAlchemyIntermediate", - "134217728": "CraftFletchingIntermediate", - "268435456": "LifeStone", - "536870912": "TinkeringTool", - "1073741824": "TinkeringMaterial", - "2147483648": "Gameboard", - "EXPR:Portal | LifeStone": "PortalMagicTarget", - "EXPR:Misc | Container": "LockableMagicTarget", - "EXPR:Armor | Clothing": "Vestements", - "EXPR:MeleeWeapon | MissileWeapon": "Weapon", - "EXPR:MeleeWeapon | MissileWeapon | Caster": "WeaponOrCaster", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Food | Money | Misc | MissileWeapon | Container |": "Item", - "EXPR:MeleeWeapon | Armor | Clothing | MissileWeapon | Caster": "RedirectableItemEnchantmentTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Jewelry | Misc | MissileWeapon | Container | Gem | Caster | ManaStone": "ItemEnchantableTarget", - "EXPR:MeleeWeapon | Armor | Clothing | Food | Misc | MissileWeapon | Container | Useless | Writable | Key |": "VendorShopKeep", - "EXPR:Food | Container | Writable | Key | PromissoryNote | CraftCookingBase": "VendorGrocer" - }, - "comments": {}, - "attributes": {}, - "source_file": "ItemType.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/MaterialType.json b/inventory-service/enums/MaterialType.json deleted file mode 100644 index 9ec3d28e..00000000 --- a/inventory-service/enums/MaterialType.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "MaterialType": { - "type": "uint", - "values": { - "0": "Unknown", - "1": "Ceramic", - "2": "Porcelain", - "4": "Linen", - "5": "Satin", - "6": "Silk", - "7": "Velvet", - "8": "Wool", - "10": "Agate", - "11": "Amber", - "12": "Amethyst", - "13": "Aquamarine", - "14": "Azurite", - "15": "BlackGarnet", - "16": "BlackOpal", - "17": "Bloodstone", - "18": "Carnelian", - "19": "Citrine", - "20": "Diamond", - "21": "Emerald", - "22": "FireOpal", - "23": "GreenGarnet", - "24": "GreenJade", - "25": "Hematite", - "26": "ImperialTopaz", - "27": "Jet", - "28": "LapisLazuli", - "29": "LavenderJade", - "30": "Malachite", - "31": "Moonstone", - "32": "Onyx", - "33": "Opal", - "34": "Peridot", - "35": "RedGarnet", - "36": "RedJade", - "37": "RoseQuartz", - "38": "Ruby", - "39": "Sapphire", - "40": "SmokeyQuartz", - "41": "Sunstone", - "42": "TigerEye", - "43": "Tourmaline", - "44": "Turquoise", - "45": "WhiteJade", - "46": "WhiteQuartz", - "47": "WhiteSapphire", - "48": "YellowGarnet", - "49": "YellowTopaz", - "50": "Zircon", - "51": "Ivory", - "52": "Leather", - "53": "ArmoredilloHide", - "54": "GromnieHide", - "55": "ReedSharkHide", - "57": "Brass", - "58": "Bronze", - "59": "Copper", - "60": "Gold", - "61": "Iron", - "62": "Pyreal", - "63": "Silver", - "64": "Steel", - "66": "Alabaster", - "67": "Granite", - "68": "Marble", - "69": "Obsidian", - "70": "Sandstone", - "71": "Serpentine", - "73": "Ebony", - "74": "Mahogany", - "75": "Oak", - "76": "Pine", - "77": "Teak" - }, - "comments": {}, - "attributes": {}, - "source_file": "MaterialType.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/QuadValueKey.json b/inventory-service/enums/QuadValueKey.json deleted file mode 100644 index bd28847e..00000000 --- a/inventory-service/enums/QuadValueKey.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "QuadValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "TotalExperience", - "2": "AvailableExperience", - "3": "AugmentationCost", - "4": "ItemTotalXp", - "5": "ItemBaseXp", - "6": "AvailableLuminance", - "7": "MaximumLuminance", - "8": "InteractionReqs", - "9000": "AllegianceXPCached", - "9001": "AllegianceXPGenerated", - "9002": "AllegianceXPReceived", - "9003": "VerifyXp" - }, - "comments": {}, - "attributes": {}, - "source_file": "QuadValueKey.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/Skill.json b/inventory-service/enums/Skill.json deleted file mode 100644 index 27b3b25b..00000000 --- a/inventory-service/enums/Skill.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "Skill": { - "type": "indexed", - "values": { - "0": { - "name": "None", - "status": "Active" - }, - "1": { - "name": "Axe", - "status": "Retired" - }, - "2": { - "name": "Bow", - "status": "Retired" - }, - "3": { - "name": "Crossbow", - "status": "Retired" - }, - "4": { - "name": "Dagger", - "status": "Retired" - }, - "5": { - "name": "Mace", - "status": "Retired" - }, - "6": { - "name": "MeleeDefense", - "status": "Active" - }, - "7": { - "name": "MissileDefense", - "status": "Active" - }, - "8": { - "name": "Sling", - "status": "Retired" - }, - "9": { - "name": "Spear", - "status": "Retired" - }, - "10": { - "name": "Staff", - "status": "Retired" - }, - "11": { - "name": "Sword", - "status": "Retired" - }, - "12": { - "name": "ThrownWeapon", - "status": "Retired" - }, - "13": { - "name": "UnarmedCombat", - "status": "Retired" - }, - "14": { - "name": "ArcaneLore", - "status": "Active" - }, - "15": { - "name": "MagicDefense", - "status": "Active" - }, - "16": { - "name": "ManaConversion", - "status": "Active" - }, - "17": { - "name": "Spellcraft", - "status": "Unimplemented" - }, - "18": { - "name": "ItemTinkering", - "status": "Active" - }, - "19": { - "name": "AssessPerson", - "status": "Active" - }, - "20": { - "name": "Deception", - "status": "Active" - }, - "21": { - "name": "Healing", - "status": "Active" - }, - "22": { - "name": "Jump", - "status": "Active" - }, - "23": { - "name": "Lockpick", - "status": "Active" - }, - "24": { - "name": "Run", - "status": "Active" - }, - "25": { - "name": "Awareness", - "status": "Unimplemented" - }, - "26": { - "name": "ArmsAndArmorRepair", - "status": "Unimplemented" - }, - "27": { - "name": "AssessCreature", - "status": "Active" - }, - "28": { - "name": "WeaponTinkering", - "status": "Active" - }, - "29": { - "name": "ArmorTinkering", - "status": "Active" - }, - "30": { - "name": "MagicItemTinkering", - "status": "Active" - }, - "31": { - "name": "CreatureEnchantment", - "status": "Active" - }, - "32": { - "name": "ItemEnchantment", - "status": "Active" - }, - "33": { - "name": "LifeMagic", - "status": "Active" - }, - "34": { - "name": "WarMagic", - "status": "Active" - }, - "35": { - "name": "Leadership", - "status": "Active" - }, - "36": { - "name": "Loyalty", - "status": "Active" - }, - "37": { - "name": "Fletching", - "status": "Active" - }, - "38": { - "name": "Alchemy", - "status": "Active" - }, - "39": { - "name": "Cooking", - "status": "Active" - }, - "40": { - "name": "Salvaging", - "status": "Active" - }, - "41": { - "name": "TwoHandedCombat", - "status": "Active" - }, - "42": { - "name": "Gearcraft", - "status": "Retired" - }, - "43": { - "name": "VoidMagic", - "status": "Active" - }, - "44": { - "name": "HeavyWeapons", - "status": "Active" - }, - "45": { - "name": "LightWeapons", - "status": "Active" - }, - "46": { - "name": "FinesseWeapons", - "status": "Active" - }, - "47": { - "name": "MissileWeapons", - "status": "Active" - }, - "48": { - "name": "Shield", - "status": "Active" - }, - "49": { - "name": "DualWield", - "status": "Active" - }, - "50": { - "name": "Recklessness", - "status": "Active" - }, - "51": { - "name": "SneakAttack", - "status": "Active" - }, - "52": { - "name": "DirtyFighting", - "status": "Active" - }, - "53": { - "name": "Challenge", - "status": "Unimplemented" - }, - "54": { - "name": "Summoning", - "status": "Active" - } - }, - "source_file": "Skill.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/SpellCategory.json b/inventory-service/enums/SpellCategory.json deleted file mode 100644 index f499dd9a..00000000 --- a/inventory-service/enums/SpellCategory.json +++ /dev/null @@ -1,710 +0,0 @@ -{ - "SpellCategory": { - "type": "int", - "values": { - "0": "Undefined", - "1": "Strength_Raising", - "2": "Strength_Lowering", - "3": "Endurance_Raising", - "4": "Endurance_Lowering", - "5": "Quickness_Raising", - "6": "Quickness_Lowering", - "7": "Coordination_Raising", - "8": "Coordination_Lowering", - "9": "Focus_Raising", - "10": "Focus_Lowering", - "11": "Self_Raising", - "12": "Self_Lowering", - "13": "Focus_Concentration", - "14": "Focus_Disruption", - "15": "Focus_Brilliance", - "16": "Focus_Dullness", - "17": "Axe_Raising", - "18": "Axe_Lowering", - "19": "Bow_Raising", - "20": "Bow_Lowering", - "21": "Crossbow_Raising", - "22": "Crossbow_Lowering", - "23": "Dagger_Raising", - "24": "Dagger_Lowering", - "25": "Mace_Raising", - "26": "Mace_Lowering", - "27": "Spear_Raising", - "28": "Spear_Lowering", - "29": "Staff_Raising", - "30": "Staff_Lowering", - "31": "Sword_Raising", - "32": "Sword_Lowering", - "33": "Thrown_Weapons_Raising", - "34": "Thrown_Weapons_Lowering", - "35": "Unarmed_Combat_Raising", - "36": "Unarmed_Combat_Lowering", - "37": "Melee_Defense_Raising", - "38": "Melee_Defense_Lowering", - "39": "Missile_Defense_Raising", - "40": "Missile_Defense_Lowering", - "41": "Magic_Defense_Raising", - "42": "Magic_Defense_Lowering", - "43": "Creature_Enchantment_Raising", - "44": "Creature_Enchantment_Lowering", - "45": "Item_Enchantment_Raising", - "46": "Item_Enchantment_Lowering", - "47": "Life_Magic_Raising", - "48": "Life_Magic_Lowering", - "49": "War_Magic_Raising", - "50": "War_Magic_Lowering", - "51": "Mana_Conversion_Raising", - "52": "Mana_Conversion_Lowering", - "53": "Arcane_Lore_Raising", - "54": "Arcane_Lore_Lowering", - "55": "Appraise_Armor_Raising", - "56": "Appraise_Armor_Lowering", - "57": "Appraise_Item_Raising", - "58": "Appraise_Item_Lowering", - "59": "Appraise_Magic_Item_Raising", - "60": "Appraise_Magic_Item_Lowering", - "61": "Appraise_Weapon_Raising", - "62": "Appraise_Weapon_Lowering", - "63": "Assess_Monster_Raising", - "64": "Assess_Monster_Lowering", - "65": "Deception_Raising", - "66": "Deception_Lowering", - "67": "Healing_Raising", - "68": "Healing_Lowering", - "69": "Jump_Raising", - "70": "Jump_Lowering", - "71": "Leadership_Raising", - "72": "Leadership_Lowering", - "73": "Lockpick_Raising", - "74": "Lockpick_Lowering", - "75": "Loyalty_Raising", - "76": "Loyalty_Lowering", - "77": "Run_Raising", - "78": "Run_Lowering", - "79": "Health_Raising", - "80": "Health_Lowering", - "81": "Stamina_Raising", - "82": "Stamina_Lowering", - "83": "Mana_Raising", - "84": "Mana_Lowering", - "85": "Mana_Remedy", - "86": "Mana_Malediction", - "87": "Health_Transfer_to_caster", - "88": "Health_Transfer_from_caster", - "89": "Stamina_Transfer_to_caster", - "90": "Stamina_Transfer_from_caster", - "91": "Mana_Transfer_to_caster", - "92": "Mana_Transfer_from_caster", - "93": "Health_Accelerating", - "94": "Health_Decelerating", - "95": "Stamina_Accelerating", - "96": "Stamina_Decelerating", - "97": "Mana_Accelerating", - "98": "Mana_Decelerating", - "99": "Vitae_Raising", - "100": "Vitae_Lowering", - "101": "Acid_Protection", - "102": "Acid_Vulnerability", - "103": "Bludgeon_Protection", - "104": "Bludgeon_Vulnerability", - "105": "Cold_Protection", - "106": "Cold_Vulnerability", - "107": "Electric_Protection", - "108": "Electric_Vulnerability", - "109": "Fire_Protection", - "110": "Fire_Vulnerability", - "111": "Pierce_Protection", - "112": "Pierce_Vulnerability", - "113": "Slash_Protection", - "114": "Slash_Vulnerability", - "115": "Armor_Raising", - "116": "Armor_Lowering", - "117": "Acid_Missile", - "118": "Bludgeoning_Missile", - "119": "Cold_Missile", - "120": "Electric_Missile", - "121": "Fire_Missile", - "122": "Piercing_Missile", - "123": "Slashing_Missile", - "124": "Acid_Seeker", - "125": "Bludgeoning_Seeker", - "126": "Cold_Seeker", - "127": "Electric_Seeker", - "128": "Fire_Seeker", - "129": "Piercing_Seeker", - "130": "Slashing_Seeker", - "131": "Acid_Burst", - "132": "Bludgeoning_Burst", - "133": "Cold_Burst", - "134": "Electric_Burst", - "135": "Fire_Burst", - "136": "Piercing_Burst", - "137": "Slashing_Burst", - "138": "Acid_Blast", - "139": "Bludgeoning_Blast", - "140": "Cold_Blast", - "141": "Electric_Blast", - "142": "Fire_Blast", - "143": "Piercing_Blast", - "144": "Slashing_Blast", - "145": "Acid_Scatter", - "146": "Bludgeoning_Scatter", - "147": "Cold_Scatter", - "148": "Electric_Scatter", - "149": "Fire_Scatter", - "150": "Piercing_Scatter", - "151": "Slashing_Scatter", - "152": "Attack_Mod_Raising", - "153": "Attack_Mod_Lowering", - "154": "Damage_Raising", - "155": "Damage_Lowering", - "156": "Defense_Mod_Raising", - "157": "Defense_Mod_Lowering", - "158": "Weapon_Time_Raising", - "159": "Weapon_Time_Lowering", - "160": "Armor_Value_Raising", - "161": "Armor_Value_Lowering", - "162": "Acid_Resistance_Raising", - "163": "Acid_Resistance_Lowering", - "164": "Bludgeon_Resistance_Raising", - "165": "Bludgeon_Resistance_Lowering", - "166": "Cold_Resistance_Raising", - "167": "Cold_Resistance_Lowering", - "168": "Electric_Resistance_Raising", - "169": "Electric_Resistance_Lowering", - "170": "Fire_Resistance_Raising", - "171": "Fire_Resistance_Lowering", - "172": "Pierce_Resistance_Raising", - "173": "Pierce_Resistance_Lowering", - "174": "Slash_Resistance_Raising", - "175": "Slash_Resistance_Lowering", - "176": "Bludgeoning_Resistance_Raising", - "177": "Bludgeoning_Resistance_Lowering", - "178": "Slashing_Resistance_Raising", - "179": "Slashing_Resistance_Lowering", - "180": "Piercing_Resistance_Raising", - "181": "Piercing_Resistance_Lowering", - "182": "Electrical_Resistance_Raising", - "183": "Electrical_Resistance_Lowering", - "184": "Frost_Resistance_Raising", - "185": "Frost_Resistance_Lowering", - "186": "Flame_Resistance_Raising", - "187": "Flame_Resistance_Lowering", - "188": "Acidic_Resistance_Raising", - "189": "Acidic_Resistance_Lowering", - "190": "Armor_Level_Raising", - "191": "Armor_Level_Lowering", - "192": "Lockpick_Resistance_Raising", - "193": "Lockpick_Resistance_Lowering", - "194": "Appraisal_Resistance_Raising", - "195": "Appraisal_Resistance_Lowering", - "196": "Vision_Raising", - "197": "Vision_Lowering", - "198": "Transparency_Raising", - "199": "Transparency_Lowering", - "200": "Portal_Tie", - "201": "Portal_Recall", - "202": "Portal_Creation", - "203": "Portal_Item_Creation", - "204": "Vitae", - "205": "Assess_Person_Raising", - "206": "Assess_Person_Lowering", - "207": "Acid_Volley", - "208": "Bludgeoning_Volley", - "209": "Frost_Volley", - "210": "Lightning_Volley", - "211": "Flame_Volley", - "212": "Force_Volley", - "213": "Blade_Volley", - "214": "Portal_Sending", - "215": "Lifestone_Sending", - "216": "Cooking_Raising", - "217": "Cooking_Lowering", - "218": "Fletching_Raising", - "219": "Fletching_Lowering", - "220": "Alchemy_Lowering", - "221": "Alchemy_Raising", - "222": "Acid_Ring", - "223": "Bludgeoning_Ring", - "224": "Cold_Ring", - "225": "Electric_Ring", - "226": "Fire_Ring", - "227": "Piercing_Ring", - "228": "Slashing_Ring", - "229": "Acid_Wall", - "230": "Bludgeoning_Wall", - "231": "Cold_Wall", - "232": "Electric_Wall", - "233": "Fire_Wall", - "234": "Piercing_Wall", - "235": "Slashing_Wall", - "236": "Acid_Strike", - "237": "Bludgeoning_Strike", - "238": "Cold_Strike", - "239": "Electric_Strike", - "240": "Fire_Strike", - "241": "Piercing_Strike", - "242": "Slashing_Strike", - "243": "Acid_Streak", - "244": "Bludgeoning_Streak", - "245": "Cold_Streak", - "246": "Electric_Streak", - "247": "Fire_Streak", - "248": "Piercing_Streak", - "249": "Slashing_Streak", - "250": "Dispel", - "251": "Creature_Mystic_Raising", - "252": "Creature_Mystic_Lowering", - "253": "Item_Mystic_Raising", - "254": "Item_Mystic_Lowering", - "255": "War_Mystic_Raising", - "256": "War_Mystic_Lowering", - "257": "Health_Restoring", - "258": "Health_Depleting", - "259": "Mana_Restoring", - "260": "Mana_Depleting", - "261": "Strength_Increase", - "262": "Strength_Decrease", - "263": "Endurance_Increase", - "264": "Endurance_Decrease", - "265": "Quickness_Increase", - "266": "Quickness_Decrease", - "267": "Coordination_Increase", - "268": "Coordination_Decrease", - "269": "Focus_Increase", - "270": "Focus_Decrease", - "271": "Self_Increase", - "272": "Self_Decrease", - "273": "GreatVitality_Raising", - "274": "PoorVitality_Lowering", - "275": "GreatVigor_Raising", - "276": "PoorVigor_Lowering", - "277": "GreaterIntellect_Raising", - "278": "LessorIntellect_Lowering", - "279": "LifeGiver_Raising", - "280": "LifeTaker_Lowering", - "281": "StaminaGiver_Raising", - "282": "StaminaTaker_Lowering", - "283": "ManaGiver_Raising", - "284": "ManaTaker_Lowering", - "285": "Acid_Ward_Protection", - "286": "Acid_Ward_Vulnerability", - "287": "Fire_Ward_Protection", - "288": "Fire_Ward_Vulnerability", - "289": "Cold_Ward_Protection", - "290": "Cold_Ward_Vulnerability", - "291": "Electric_Ward_Protection", - "292": "Electric_Ward_Vulnerability", - "293": "Leadership_Obedience_Raising", - "294": "Leadership_Obedience_Lowering", - "295": "Melee_Defense_Shelter_Raising", - "296": "Melee_Defense_Shelter_Lowering", - "297": "Missile_Defense_Shelter_Raising", - "298": "Missile_Defense_Shelter_Lowering", - "299": "Magic_Defense_Shelter_Raising", - "300": "Magic_Defense_Shelter_Lowering", - "301": "HuntersAcumen_Raising", - "302": "HuntersAcumen_Lowering", - "303": "StillWater_Raising", - "304": "StillWater_Lowering", - "305": "StrengthofEarth_Raising", - "306": "StrengthofEarth_Lowering", - "307": "Torrent_Raising", - "308": "Torrent_Lowering", - "309": "Growth_Raising", - "310": "Growth_Lowering", - "311": "CascadeAxe_Raising", - "312": "CascadeAxe_Lowering", - "313": "CascadeDagger_Raising", - "314": "CascadeDagger_Lowering", - "315": "CascadeMace_Raising", - "316": "CascadeMace_Lowering", - "317": "CascadeSpear_Raising", - "318": "CascadeSpear_Lowering", - "319": "CascadeStaff_Raising", - "320": "CascadeStaff_Lowering", - "321": "StoneCliffs_Raising", - "322": "StoneCliffs_Lowering", - "323": "MaxDamage_Raising", - "324": "MaxDamage_Lowering", - "325": "Bow_Damage_Raising", - "326": "Bow_Damage_Lowering", - "327": "Bow_Range_Raising", - "328": "Bow_Range_Lowering", - "329": "Extra_Defense_Mod_Raising", - "330": "Extra_Defense_Mod_Lowering", - "331": "Extra_Bow_Skill_Raising", - "332": "Extra_Bow_Skill_Lowering", - "333": "Extra_Alchemy_Skill_Raising", - "334": "Extra_Alchemy_Skill_Lowering", - "335": "Extra_Arcane_Lore_Skill_Raising", - "336": "Extra_Arcane_Lore_Skill_Lowering", - "337": "Extra_Appraise_Armor_Skill_Raising", - "338": "Extra_Appraise_Armor_Skill_Lowering", - "339": "Extra_Cooking_Skill_Raising", - "340": "Extra_Cooking_Skill_Lowering", - "341": "Extra_Crossbow_Skill_Raising", - "342": "Extra_Crossbow_Skill_Lowering", - "343": "Extra_Deception_Skill_Raising", - "344": "Extra_Deception_Skill_Lowering", - "345": "Extra_Loyalty_Skill_Raising", - "346": "Extra_Loyalty_Skill_Lowering", - "347": "Extra_Fletching_Skill_Raising", - "348": "Extra_Fletching_Skill_Lowering", - "349": "Extra_Healing_Skill_Raising", - "350": "Extra_Healing_Skill_Lowering", - "351": "Extra_Melee_Defense_Skill_Raising", - "352": "Extra_Melee_Defense_Skill_Lowering", - "353": "Extra_Appraise_Item_Skill_Raising", - "354": "Extra_Appraise_Item_Skill_Lowering", - "355": "Extra_Jumping_Skill_Raising", - "356": "Extra_Jumping_Skill_Lowering", - "357": "Extra_Life_Magic_Skill_Raising", - "358": "Extra_Life_Magic_Skill_Lowering", - "359": "Extra_Lockpick_Skill_Raising", - "360": "Extra_Lockpick_Skill_Lowering", - "361": "Extra_Appraise_Magic_Item_Skill_Raising", - "362": "Extra_Appraise_Magic_Item_Skill_Lowering", - "363": "Extra_Mana_Conversion_Skill_Raising", - "364": "Extra_Mana_Conversion_Skill_Lowering", - "365": "Extra_Assess_Creature_Skill_Raising", - "366": "Extra_Assess_Creature_Skill_Lowering", - "367": "Extra_Assess_Person_Skill_Raising", - "368": "Extra_Assess_Person_Skill_Lowering", - "369": "Extra_Run_Skill_Raising", - "370": "Extra_Run_Skill_Lowering", - "371": "Extra_Sword_Skill_Raising", - "372": "Extra_Sword_Skill_Lowering", - "373": "Extra_Thrown_Weapons_Skill_Raising", - "374": "Extra_Thrown_Weapons_Skill_Lowering", - "375": "Extra_Unarmed_Combat_Skill_Raising", - "376": "Extra_Unarmed_Combat_Skill_Lowering", - "377": "Extra_Appraise_Weapon_Skill_Raising", - "378": "Extra_Appraise_Weapon_Skill_Lowering", - "379": "Armor_Increase", - "380": "Armor_Decrease", - "381": "Extra_Acid_Resistance_Raising", - "382": "Extra_Acid_Resistance_Lowering", - "383": "Extra_Bludgeon_Resistance_Raising", - "384": "Extra_Bludgeon_Resistance_Lowering", - "385": "Extra_Fire_Resistance_Raising", - "386": "Extra_Fire_Resistance_Lowering", - "387": "Extra_Cold_Resistance_Raising", - "388": "Extra_Cold_Resistance_Lowering", - "389": "Extra_Attack_Mod_Raising", - "390": "Extra_Attack_Mod_Lowering", - "391": "Extra_Armor_Value_Raising", - "392": "Extra_Armor_Value_Lowering", - "393": "Extra_Pierce_Resistance_Raising", - "394": "Extra_Pierce_Resistance_Lowering", - "395": "Extra_Slash_Resistance_Raising", - "396": "Extra_Slash_Resistance_Lowering", - "397": "Extra_Electric_Resistance_Raising", - "398": "Extra_Electric_Resistance_Lowering", - "399": "Extra_Weapon_Time_Raising", - "400": "Extra_Weapon_Time_Lowering", - "401": "Bludgeon_Ward_Protection", - "402": "Bludgeon_Ward_Vulnerability", - "403": "Slash_Ward_Protection", - "404": "Slash_Ward_Vulnerability", - "405": "Pierce_Ward_Protection", - "406": "Pierce_Ward_Vulnerability", - "407": "Stamina_Restoring", - "408": "Stamina_Depleting", - "409": "Fireworks", - "410": "Health_Divide", - "411": "Stamina_Divide", - "412": "Mana_Divide", - "413": "Coordination_Increase2", - "414": "Strength_Increase2", - "415": "Focus_Increase2", - "416": "Endurance_Increase2", - "417": "Self_Increase2", - "418": "Melee_Defense_Multiply", - "419": "Missile_Defense_Multiply", - "420": "Magic_Defense_Multiply", - "421": "Attributes_Decrease", - "422": "LifeGiver_Raising2", - "423": "Item_Enchantment_Raising2", - "424": "Skills_Decrease", - "425": "Extra_Mana_Conversion_Bonus", - "426": "War_Mystic_Raising2", - "427": "War_Mystic_Lowering2", - "428": "Magic_Defense_Shelter_Raising2", - "429": "Extra_Life_Magic_Skill_Raising2", - "430": "Creature_Mystic_Raising2", - "431": "Item_Mystic_Raising2", - "432": "Mana_Raising2", - "433": "Self_Raising2", - "434": "CreatureEnchantment_Raising2", - "435": "Salvaging_Raising", - "436": "Extra_Salvaging_Raising", - "437": "Extra_Salvaging_Raising2", - "438": "CascadeAxe_Raising2", - "439": "Extra_Bow_Skill_Raising2", - "440": "Extra_Thrown_Weapons_Skill_Raising2", - "441": "Extra_Crossbow_Skill_Raising2", - "442": "CascadeDagger_Raising2", - "443": "CascadeMace_Raising2", - "444": "Extra_Unarmed_Combat_Skill_Raising2", - "445": "CascadeSpear_Raising2", - "446": "CascadeStaff_Raising2", - "447": "Extra_Sword_Skill_Raising2", - "448": "Acid_Protection_Rare", - "449": "Acid_Resistance_Raising_Rare", - "450": "Alchemy_Raising_Rare", - "451": "Appraisal_Resistance_Lowering_Rare", - "452": "Appraise_Armor_Raising_Rare", - "453": "Appraise_Item_Raising_Rare", - "454": "Appraise_Magic_Item_Raising_Rare", - "455": "Appraise_Weapon_Raising_Rare", - "456": "Arcane_Lore_Raising_Rare", - "457": "Armor_Raising_Rare", - "458": "Armor_Value_Raising_Rare", - "459": "Assess_Monster_Raising_Rare", - "460": "Assess_Person_Raising_Rare", - "461": "Attack_Mod_Raising_Rare", - "462": "Axe_Raising_Rare", - "463": "Bludgeon_Protection_Rare", - "464": "Bludgeon_Resistance_Raising_Rare", - "465": "Bow_Raising_Rare", - "466": "Cold_Protection_Rare", - "467": "Cold_Resistance_Raising_Rare", - "468": "Cooking_Raising_Rare", - "469": "Coordination_Raising_Rare", - "470": "Creature_Enchantment_Raising_Rare", - "471": "Crossbow_Raising_Rare", - "472": "Dagger_Raising_Rare", - "473": "Damage_Raising_Rare", - "474": "Deception_Raising_Rare", - "475": "Defense_Mod_Raising_Rare", - "476": "Electric_Protection_Rare", - "477": "Electric_Resistance_Raising_Rare", - "478": "Endurance_Raising_Rare", - "479": "Fire_Protection_Rare", - "480": "Fire_Resistance_Raising_Rare", - "481": "Fletching_Raising_Rare", - "482": "Focus_Raising_Rare", - "483": "Healing_Raising_Rare", - "484": "Health_Accelerating_Rare", - "485": "Item_Enchantment_Raising_Rare", - "486": "Jump_Raising_Rare", - "487": "Leadership_Raising_Rare", - "488": "Life_Magic_Raising_Rare", - "489": "Lockpick_Raising_Rare", - "490": "Loyalty_Raising_Rare", - "491": "Mace_Raising_Rare", - "492": "Magic_Defense_Raising_Rare", - "493": "Mana_Accelerating_Rare", - "494": "Mana_Conversion_Raising_Rare", - "495": "Melee_Defense_Raising_Rare", - "496": "Missile_Defense_Raising_Rare", - "497": "Pierce_Protection_Rare", - "498": "Pierce_Resistance_Raising_Rare", - "499": "Quickness_Raising_Rare", - "500": "Run_Raising_Rare", - "501": "Self_Raising_Rare", - "502": "Slash_Protection_Rare", - "503": "Slash_Resistance_Raising_Rare", - "504": "Spear_Raising_Rare", - "505": "Staff_Raising_Rare", - "506": "Stamina_Accelerating_Rare", - "507": "Strength_Raising_Rare", - "508": "Sword_Raising_Rare", - "509": "Thrown_Weapons_Raising_Rare", - "510": "Unarmed_Combat_Raising_Rare", - "511": "War_Magic_Raising_Rare", - "512": "Weapon_Time_Raising_Rare", - "513": "Armor_Increase_Inky_Armor", - "514": "Magic_Defense_Shelter_Raising_Fiun", - "515": "Extra_Run_Skill_Raising_Fiun", - "516": "Extra_Mana_Conversion_Skill_Raising_Fiun", - "517": "Attributes_Increase_Cantrip1", - "518": "Extra_Melee_Defense_Skill_Raising2", - "519": "ACTDPurchaseRewardSpell", - "520": "ACTDPurchaseRewardSpellHealth", - "521": "SaltAsh_Attack_Mod_Raising", - "522": "Quickness_Increase2", - "523": "Extra_Alchemy_Skill_Raising2", - "524": "Extra_Cooking_Skill_Raising2", - "525": "Extra_Fletching_Skill_Raising2", - "526": "Extra_Lockpick_Skill_Raising2", - "527": "MucorManaWell", - "528": "Stamina_Restoring2", - "529": "Allegiance_Raising", - "530": "Health_DoT", - "531": "Health_DoT_Secondary", - "532": "Health_DoT_Tertiary", - "533": "Health_HoT", - "534": "Health_HoT_Secondary", - "535": "Health_HoT_Tertiary", - "536": "Health_Divide_Secondary", - "537": "Health_Divide_Tertiary", - "538": "SetSword_Raising", - "539": "SetAxe_Raising", - "540": "SetDagger_Raising", - "541": "SetMace_Raising", - "542": "SetSpear_Raising", - "543": "SetStaff_Raising", - "544": "SetUnarmed_Raising", - "545": "SetBow_Raising", - "546": "SetCrossbow_Raising", - "547": "SetThrown_Raising", - "548": "SetItemEnchantment_Raising", - "549": "SetCreatureEnchantment_Raising", - "550": "SetWarMagic_Raising", - "551": "SetLifeMagic_Raising", - "552": "SetMeleeDefense_Raising", - "553": "SetMissileDefense_Raising", - "554": "SetMagicDefense_Raising", - "555": "SetStamina_Accelerating", - "556": "SetCooking_Raising", - "557": "SetFletching_Raising", - "558": "SetLockpick_Raising", - "559": "SetAlchemy_Raising", - "560": "SetSalvaging_Raising", - "561": "SetArmorExpertise_Raising", - "562": "SetWeaponExpertise_Raising", - "563": "SetItemTinkering_Raising", - "564": "SetMagicItemExpertise_Raising", - "565": "SetLoyalty_Raising", - "566": "SetStrength_Raising", - "567": "SetEndurance_Raising", - "568": "SetCoordination_Raising", - "569": "SetQuickness_Raising", - "570": "SetFocus_Raising", - "571": "SetWillpower_Raising", - "572": "SetHealth_Raising", - "573": "SetStamina_Raising", - "574": "SetMana_Raising", - "575": "SetSprint_Raising", - "576": "SetJumping_Raising", - "577": "SetSlashResistance_Raising", - "578": "SetBludgeonResistance_Raising", - "579": "SetPierceResistance_Raising", - "580": "SetFlameResistance_Raising", - "581": "SetAcidResistance_Raising", - "582": "SetFrostResistance_Raising", - "583": "SetLightningResistance_Raising", - "584": "Crafting_LockPick_Raising", - "585": "Crafting_Fletching_Raising", - "586": "Crafting_Cooking_Raising", - "587": "Crafting_Alchemy_Raising", - "588": "Crafting_ArmorTinkering_Raising", - "589": "Crafting_WeaponTinkering_Raising", - "590": "Crafting_MagicTinkering_Raising", - "591": "Crafting_ItemTinkering_Raising", - "592": "SkillPercent_Alchemy_Raising", - "593": "TwoHanded_Raising", - "594": "TwoHanded_Lowering", - "595": "Extra_TwoHanded_Skill_Raising", - "596": "Extra_TwoHanded_Skill_Lowering", - "597": "Extra_TwoHanded_Skill_Raising2", - "598": "TwoHanded_Raising_Rare", - "599": "SetTwoHanded_Raising", - "600": "GearCraft_Raising", - "601": "GearCraft_Lowering", - "602": "Extra_GearCraft_Skill_Raising", - "603": "Extra_GearCraft_Skill_Lowering", - "604": "Extra_GearCraft_Skill_Raising2", - "605": "GearCraft_Raising_Rare", - "606": "SetGearCraft_Raising", - "607": "LoyaltyMana_Raising", - "608": "LoyaltyStamina_Raising", - "609": "LeadershipHealth_Raising", - "610": "TrinketDamage_Raising", - "611": "TrinketDamage_Lowering", - "612": "TrinketHealth_Raising", - "613": "TrinketStamina_Raising", - "614": "TrinketMana_Raising", - "615": "TrinketXP_Raising", - "616": "DeceptionArcaneLore_Raising", - "617": "HealOverTime_Raising", - "618": "DamageOverTime_Raising", - "619": "HealingResistRating_Raising", - "620": "AetheriaDamageRating_Raising", - "621": "AetheriaDamageReduction_Raising", - "622": "SKIPPED", - "623": "AetheriaHealth_Raising", - "624": "AetheriaStamina_Raising", - "625": "AetheriaMana_Raising", - "626": "AetheriaCriticalDamage_Raising", - "627": "AetheriaHealingAmplification_Raising", - "628": "AetheriaProcDamageRating_Raising", - "629": "AetheriaProcDamageReduction_Raising", - "630": "AetheriaProcHealthOverTime_Raising", - "631": "AetheriaProcDamageOverTime_Raising", - "632": "AetheriaProcHealingReduction_Raising", - "633": "RareDamageRating_Raising", - "634": "RareDamageReductionRating_Raising", - "635": "AetheriaEndurance_Raising", - "636": "NetherDamageOverTime_Raising", - "637": "NetherDamageOverTime_Raising2", - "638": "NetherDamageOverTime_Raising3", - "639": "Nether_Streak", - "640": "Nether_Missile", - "641": "Nether_Ring", - "642": "NetherDamageRating_Lowering", - "643": "NetherDamageHealingReduction_Raising", - "644": "Void_Magic_Lowering", - "645": "Void_Magic_Raising", - "646": "Void_Mystic_Raising", - "647": "SetVoidMagic_Raising", - "648": "Void_Magic_Raising_Rare", - "649": "Void_Mystic_Raising2", - "650": "LuminanceDamageRating_Raising", - "651": "LuminanceDamageReduction_Raising", - "652": "LuminanceHealth_Raising", - "653": "AetheriaCriticalReduction_Raising", - "654": "Extra_Missile_Defense_Skill_Raising", - "655": "Extra_Missile_Defense_Skill_Lowering", - "656": "Extra_Missile_Defense_Skill_Raising2", - "657": "AetheriaHealthResistance_Raising", - "658": "AetheriaDotResistance_Raising", - "659": "Cloak_Skill_Raising", - "660": "Cloak_All_Skill_Raising", - "661": "Cloak_Magic_Defense_Lowering", - "662": "Cloak_Melee_Defense_Lowering", - "663": "Cloak_Missile_Defense_Lowering", - "664": "DirtyFighting_Lowering", - "665": "DirtyFighting_Raising", - "666": "Extra_DirtyFighting_Raising", - "667": "DualWield_Lowering", - "668": "DualWield_Raising", - "669": "Extra_DualWield_Raising", - "670": "Recklessness_Lowering", - "671": "Recklessness_Raising", - "672": "Extra_Recklessness_Raising", - "673": "Shield_Lowering", - "674": "Shield_Raising", - "675": "Extra_Shield_Raising", - "676": "SneakAttack_Lowering", - "677": "SneakAttack_Raising", - "678": "Extra_SneakAttack_Raising", - "679": "Rare_DirtyFighting_Raising", - "680": "Rare_DualWield_Raising", - "681": "Rare_Recklessness_Raising", - "682": "Rare_Shield_Raising", - "683": "Rare_SneakAttack_Raising", - "684": "DF_Attack_Skill_Debuff", - "685": "DF_Bleed_Damage", - "686": "DF_Defense_Skill_Debuff", - "687": "DF_Healing_Debuff", - "688": "SetDirtyFighting_Raising", - "689": "SetDualWield_Raising", - "690": "SetRecklessness_Raising", - "691": "SetShield_Raising", - "692": "SetSneakAttack_Raising", - "693": "LifeGiver_Mhoire", - "694": "RareDamageRating_Raising2", - "695": "Spell_Damage_Raising", - "696": "Summoning_Raising", - "697": "Summoning_Lowering", - "698": "Extra_Summoning_Skill_Raising", - "699": "SetSummoning_Raising" - }, - "comments": {}, - "attributes": {}, - "source_file": "SpellCategory.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/StringValueKey.json b/inventory-service/enums/StringValueKey.json deleted file mode 100644 index fe2b6f8b..00000000 --- a/inventory-service/enums/StringValueKey.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "StringValueKey": { - "type": "int", - "values": { - "0": "Undef", - "1": "Name", - "2": "Title", - "3": "Sex", - "4": "HeritageGroup", - "5": "Template", - "6": "AttackersName", - "7": "Inscription", - "8": "ScribeName", - "9": "VendorsName", - "10": "Fellowship", - "11": "MonarchsName", - "12": "LockCode", - "13": "KeyCode", - "14": "Use", - "15": "ShortDesc", - "16": "LongDesc", - "17": "ActivationTalk", - "18": "UseMessage", - "19": "ItemHeritageGroupRestriction", - "20": "PluralName", - "21": "MonarchsTitle", - "22": "ActivationFailure", - "23": "ScribeAccount", - "24": "TownName", - "25": "CraftsmanName", - "26": "UsePkServerError", - "27": "ScoreCachedText", - "28": "ScoreDefaultEntryFormat", - "29": "ScoreFirstEntryFormat", - "30": "ScoreLastEntryFormat", - "31": "ScoreOnlyEntryFormat", - "32": "ScoreNoEntry", - "33": "Quest", - "34": "GeneratorEvent", - "35": "PatronsTitle", - "36": "HouseOwnerName", - "37": "QuestRestriction", - "38": "AppraisalPortalDestination", - "39": "TinkerName", - "40": "ImbuerName", - "41": "HouseOwnerAccount", - "42": "DisplayName", - "43": "DateOfBirth", - "44": "ThirdPartyApi", - "45": "KillQuest", - "46": "Afk", - "47": "AllegianceName", - "48": "AugmentationAddQuest", - "49": "KillQuest2", - "50": "KillQuest3", - "51": "UseSendsSignal", - "52": "GearPlatingName", - "8006": "PCAPRecordedCurrentMotionState", - "8031": "PCAPRecordedServerName", - "8032": "PCAPRecordedCharacterName", - "9001": "AllegianceMotd", - "9002": "AllegianceMotdSetBy", - "9003": "AllegianceSpeakerTitle", - "9004": "AllegianceSeneschalTitle", - "9005": "AllegianceCastellanTitle", - "9006": "GodState", - "9007": "TinkerLog", - "184549376": "SecondaryName_Decal" - }, - "comments": {}, - "attributes": {}, - "source_file": "StringValueKey.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/WeenieType.json b/inventory-service/enums/WeenieType.json deleted file mode 100644 index 9407f151..00000000 --- a/inventory-service/enums/WeenieType.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "WeenieType": { - "type": "uint", - "values": { - "0": "Undef", - "1": "Generic", - "2": "Clothing", - "3": "MissileLauncher", - "4": "Missile", - "5": "Ammunition", - "6": "MeleeWeapon", - "7": "Portal", - "8": "Book", - "9": "Coin", - "10": "Creature", - "11": "Admin", - "12": "Vendor", - "13": "HotSpot", - "14": "Corpse", - "15": "Cow", - "16": "AI", - "17": "Machine", - "18": "Food", - "19": "Door", - "20": "Chest", - "21": "Container", - "22": "Key", - "23": "Lockpick", - "24": "PressurePlate", - "25": "LifeStone", - "26": "Switch", - "27": "PKModifier", - "28": "Healer", - "29": "LightSource", - "30": "Allegiance", - "31": "UNKNOWN__GUESSEDNAME32", - "32": "SpellComponent", - "33": "ProjectileSpell", - "34": "Scroll", - "35": "Caster", - "36": "Channel", - "37": "ManaStone", - "38": "Gem", - "39": "AdvocateFane", - "40": "AdvocateItem", - "41": "Sentinel", - "42": "GSpellEconomy", - "43": "LSpellEconomy", - "44": "CraftTool", - "45": "LScoreKeeper", - "46": "GScoreKeeper", - "47": "GScoreGatherer", - "48": "ScoreBook", - "49": "EventCoordinator", - "50": "Entity", - "51": "Stackable", - "52": "HUD", - "53": "House", - "54": "Deed", - "55": "SlumLord", - "56": "Hook", - "57": "Storage", - "58": "BootSpot", - "59": "HousePortal", - "60": "Game", - "61": "GamePiece", - "62": "SkillAlterationDevice", - "63": "AttributeTransferDevice", - "64": "Hooker", - "65": "AllegianceBindstone", - "66": "InGameStatKeeper", - "67": "AugmentationDevice", - "68": "SocialManager", - "69": "Pet", - "70": "PetDevice", - "71": "CombatPet" - }, - "comments": { - "UNKNOWN__GUESSEDNAME32": "NOTE: Missing 1" - }, - "attributes": {}, - "source_file": "WeenieType.cs" - } -} \ No newline at end of file diff --git a/inventory-service/enums/WieldRequirement.json b/inventory-service/enums/WieldRequirement.json deleted file mode 100644 index 5ad857d4..00000000 --- a/inventory-service/enums/WieldRequirement.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "WieldRequirement": { - "type": "int", - "values": { - "0": "Invalid", - "1": "Skill", - "2": "RawSkill", - "3": "Attrib", - "4": "RawAttrib", - "5": "SecondaryAttrib", - "6": "RawSecondaryAttrib", - "7": "Level", - "8": "Training", - "9": "IntStat", - "10": "BoolStat", - "11": "CreatureType", - "12": "HeritageType" - }, - "comments": {}, - "attributes": {}, - "source_file": "WieldRequirement.cs" - } -} \ No newline at end of file diff --git a/inventory-service/extract_all_enums.py b/inventory-service/extract_all_enums.py deleted file mode 100644 index 385452e7..00000000 --- a/inventory-service/extract_all_enums.py +++ /dev/null @@ -1,294 +0,0 @@ -#!/usr/bin/env python3 -""" -Comprehensive enum extraction from Mag-Plugins/Shared/Constants directory. - -This script extracts ALL enum definitions from the Mag-Plugins source code -and creates structured JSON mappings for the inventory service. -""" - -import re -import json -import os -from pathlib import Path -from typing import Dict, List, Any, Tuple, Optional - -def extract_enum_from_file(file_path: Path) -> Tuple[str, Dict[str, Any]]: - """Extract enum definition from a C# file.""" - - with open(file_path, 'r', encoding='utf-8') as f: - content = f.read() - - # Find enum declaration - enum_match = re.search(r'public enum (\w+)(?:\s*:\s*(\w+))?\s*{', content) - if not enum_match: - return None, {} - - enum_name = enum_match.group(1) - enum_type = enum_match.group(2) or 'int' - - print(f"Extracting {enum_name} from {file_path.name}") - - # Extract enum entries - entries = {} - comments = {} - attributes = {} - - # Pattern to match enum entries with various formats - # Supports: Name = Value, Name, Name = 0x12345, etc. - pattern = r'^\s*(?:\[([^\]]+)\])?\s*(?:/// \s*([^<]*?)\s*/// \s*)?(?:\[([^\]]+)\])?\s*(\w+)(?:\s*=\s*([^,]+?))?\s*,?\s*(?://\s*(.*))?$' - - lines = content.split('\n') - in_enum = False - current_value = 0 - - for line in lines: - # Check if we're entering the enum - if f'enum {enum_name}' in line: - in_enum = True - continue - - # Check if we're exiting the enum - if in_enum and '}' in line and not line.strip().startswith('//'): - break - - if in_enum: - match = re.match(pattern, line) - if match: - attr1, summary, attr2, name, value, comment = match.groups() - - # Parse value - if value: - value = value.strip() - if value.startswith('0x') and ' ' not in value: - # Simple hex value - parsed_value = int(value, 16) - elif value.isdigit(): - # Simple integer - parsed_value = int(value) - elif '|' in value or '<<' in value or '+' in value: - # Complex expression - store as string for now - parsed_value = f"EXPR:{value}" - else: - # Try simple conversion - try: - parsed_value = int(value) - except ValueError: - parsed_value = f"VALUE:{value}" - else: - parsed_value = current_value - - entries[parsed_value] = name - - # Update current_value for auto-increment - if isinstance(parsed_value, int): - current_value = parsed_value + 1 - else: - # For non-numeric values, increment anyway for next entry - current_value += 1 - - # Store metadata - if summary: - comments[name] = summary.strip() - if comment: - comments[name] = comment.strip() - if attr1 or attr2: - attributes[name] = (attr1 or '') + ' ' + (attr2 or '') - - return enum_name, { - 'type': enum_type, - 'values': entries, - 'comments': comments, - 'attributes': attributes, - 'source_file': file_path.name - } - -def extract_skill_names(): - """Extract skill names with their indices from Skill.cs""" - skill_file = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared/Constants/Skill.cs') - - with open(skill_file, 'r') as f: - content = f.read() - - skills = {} - lines = content.split('\n') - in_enum = False - index = 0 - - for line in lines: - if 'enum Skill' in line: - in_enum = True - continue - - if in_enum and '}' in line: - break - - if in_enum: - # Match skill entries like "None," or "Axe, /* Retired */" - match = re.match(r'^\s*(\w+),?\s*(?:/\*\s*([^*]*)\s*\*/)?', line) - if match: - skill_name = match.group(1) - status = match.group(2) or "Active" - skills[index] = { - 'name': skill_name, - 'status': status.strip() - } - index += 1 - - return skills - -def categorize_enums(): - """Create logical categories for different enum types.""" - return { - 'item_properties': { - 'description': 'Item property value keys for different data types', - 'enums': ['IntValueKey', 'DoubleValueKey', 'StringValueKey', 'BoolValueKey', 'QuadValueKey'] - }, - 'item_classification': { - 'description': 'Item type and material classification', - 'enums': ['ItemType', 'MaterialType', 'WeenieType'] - }, - 'game_mechanics': { - 'description': 'Skills, spells, and game system enums', - 'enums': ['Skill', 'SpellCategory', 'WieldRequirement'] - }, - 'technical': { - 'description': 'Technical flags and masks for game engine', - 'enums': ['CoverageMask', 'EquipMask'] - } - } - -def create_translation_mappings(): - """Create user-friendly translations for important enum values.""" - - # Map IntValueKey values to more descriptive names - int_value_translations = { - 5: 'Encumbrance', - 19: 'Value (Pyreals)', - 25: 'Level', - 28: 'Armor Level', - 44: 'Base Damage', - 45: 'Damage Type', - 48: 'Weapon Skill', - 158: 'Wield Requirements', - 160: 'Wield Difficulty', - 218103842: 'Maximum Damage', - 218103849: 'Icon Overlay', - 218103850: 'Icon Underlay' - } - - # Material type friendly names - material_translations = { - 0: 'Unknown', - 1: 'Ceramic', - 20: 'Diamond', - 21: 'Emerald', - 31: 'Ruby', - 32: 'Sapphire' - } - - return { - 'int_values': int_value_translations, - 'materials': material_translations - } - -def main(): - """Main extraction process.""" - - constants_dir = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared/Constants') - output_dir = Path('/home/erik/MosswartOverlord/inventory-service') - - # Ensure output directory exists - output_dir.mkdir(exist_ok=True) - - print("Starting comprehensive enum extraction from Mag-Plugins/Shared/Constants...") - - # Extract all enum files - all_enums = {} - enum_files = list(constants_dir.glob('*.cs')) - - for enum_file in enum_files: - if enum_file.name == 'Dictionaries.cs': # Skip non-enum files - continue - - enum_name, enum_data = extract_enum_from_file(enum_file) - if enum_name and enum_data: - all_enums[enum_name] = enum_data - - # Special handling for Skills (has complex structure) - skill_data = extract_skill_names() - all_enums['Skill'] = { - 'type': 'indexed', - 'values': skill_data, - 'source_file': 'Skill.cs' - } - - # Create categorized structure - categories = categorize_enums() - translations = create_translation_mappings() - - # Save complete enum database - complete_data = { - 'metadata': { - 'extracted_at': '2025-06-10', - 'source': 'Mag-Plugins/Shared/Constants', - 'total_enums': len(all_enums), - 'version': '1.0.0' - }, - 'categories': categories, - 'translations': translations, - 'enums': all_enums - } - - # Save main database - main_output = output_dir / 'complete_enum_database.json' - with open(main_output, 'w') as f: - json.dump(complete_data, f, indent=2) - - print(f"Saved complete enum database to {main_output}") - - # Save individual enum files for backward compatibility - individual_dir = output_dir / 'enums' - individual_dir.mkdir(exist_ok=True) - - for enum_name, enum_data in all_enums.items(): - enum_file = individual_dir / f'{enum_name}.json' - with open(enum_file, 'w') as f: - json.dump({enum_name: enum_data}, f, indent=2) - - # Update existing files for backward compatibility - if 'IntValueKey' in all_enums: - legacy_int_file = output_dir / 'int_value_enums.json' - with open(legacy_int_file, 'w') as f: - json.dump(all_enums['IntValueKey']['values'], f, indent=2) - print(f"Updated legacy file: {legacy_int_file}") - - # Create comprehensive summary - print("\n" + "="*60) - print("EXTRACTION SUMMARY") - print("="*60) - - for enum_name, enum_data in all_enums.items(): - value_count = len(enum_data.get('values', {})) - enum_type = enum_data.get('type', 'unknown') - print(f"{enum_name:20} | {value_count:4} values | Type: {enum_type}") - - print(f"\nTotal enums extracted: {len(all_enums)}") - print(f"Files created:") - print(f" - {main_output}") - print(f" - {len(all_enums)} individual enum files in {individual_dir}/") - - # Show sample translations - print("\nSample enum translations:") - for enum_name in ['IntValueKey', 'MaterialType', 'ItemType', 'Skill']: - if enum_name in all_enums: - values = all_enums[enum_name]['values'] - if isinstance(values, dict): - sample_keys = list(values.keys())[:3] - for key in sample_keys: - if isinstance(values[key], dict): - print(f" {enum_name}[{key}] = {values[key].get('name', values[key])}") - else: - print(f" {enum_name}[{key}] = {values[key]}") - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/inventory-service/extract_all_missing_enums.py b/inventory-service/extract_all_missing_enums.py deleted file mode 100644 index 98e1411c..00000000 --- a/inventory-service/extract_all_missing_enums.py +++ /dev/null @@ -1,87 +0,0 @@ -#!/usr/bin/env python3 -""" -Comprehensive enum extraction from ALL Mag-Plugins Constants files. -This script extracts ALL missing enum values to complete our enum database. -""" -import json -import re -import os -from pathlib import Path - -def extract_coverage_mask(): - """Extract complete CoverageMask enum with ALL values.""" - file_path = "../unused/Mag-Plugins/Shared/Constants/CoverageMask.cs" - - coverage_values = {} - - with open(file_path, 'r') as f: - content = f.read() - - # Extract enum values using regex - enum_pattern = r'(\w+)\s*=\s*0x([0-9A-Fa-f]+)' - matches = re.findall(enum_pattern, content) - - for name, hex_value in matches: - decimal_value = int(hex_value, 16) - coverage_values[str(decimal_value)] = name - - return { - "name": "CoverageMask", - "values": coverage_values, - "source_file": "CoverageMask.cs" - } - -def extract_bool_value_key(): - """Extract BoolValueKey enum (currently missing).""" - file_path = "../unused/Mag-Plugins/Shared/Constants/BoolValueKey.cs" - - bool_values = {} - - with open(file_path, 'r') as f: - content = f.read() - - # Extract enum values - enum_pattern = r'(\w+)\s*=\s*(\d+)' - matches = re.findall(enum_pattern, content) - - for name, value in matches: - bool_values[value] = name - - return { - "name": "BoolValueKey", - "values": bool_values, - "source_file": "BoolValueKey.cs" - } - -def load_current_database(): - """Load current enum database.""" - with open('comprehensive_enum_database_v2.json', 'r') as f: - return json.load(f) - -def update_enum_database(): - """Update the enum database with ALL missing values.""" - print("Loading current enum database...") - db = load_current_database() - - print("Extracting complete CoverageMask...") - complete_coverage = extract_coverage_mask() - db['enums']['CoverageMask'] = complete_coverage - - print("Extracting BoolValueKey...") - bool_values = extract_bool_value_key() - db['enums']['BoolValueKey'] = bool_values - - # Update metadata - db['metadata']['last_updated'] = "2025-06-12" - db['metadata']['notes'] = "COMPLETE extraction: Added missing CoverageMask values (1,2,4,16,etc) and BoolValueKey enum" - - print("Saving updated database...") - with open('comprehensive_enum_database_v2.json', 'w') as f: - json.dump(db, f, indent=2) - - print("โœ… Enum database updated successfully!") - print(f"โœ… CoverageMask now has {len(complete_coverage['values'])} values") - print(f"โœ… BoolValueKey now has {len(bool_values['values'])} values") - -if __name__ == "__main__": - update_enum_database() \ No newline at end of file diff --git a/inventory-service/extract_comprehensive_enums.py b/inventory-service/extract_comprehensive_enums.py deleted file mode 100644 index 9f50b7d9..00000000 --- a/inventory-service/extract_comprehensive_enums.py +++ /dev/null @@ -1,268 +0,0 @@ -#!/usr/bin/env python3 -""" -Comprehensive enum extraction from Mag-Plugins/Shared directory. -Extracts all enums, dictionaries, and data needed for rich tooltip display. -""" - -import json -import re -import csv -from pathlib import Path -from typing import Dict, Any - -def extract_csharp_enum(file_path: Path) -> Dict[str, Any]: - """Extract enum definition from C# file.""" - try: - content = file_path.read_text(encoding='utf-8') - - # Find enum declaration - enum_match = re.search(r'public enum (\w+)(?:\s*:\s*\w+)?\s*{([^}]+)}', content, re.DOTALL) - if not enum_match: - return {} - - enum_name = enum_match.group(1) - enum_body = enum_match.group(2) - - values = {} - for line in enum_body.split('\n'): - line = line.strip() - if not line or line.startswith('//'): - continue - - # Parse enum values (handle various formats) - if '=' in line: - parts = line.split('=') - if len(parts) >= 2: - name = parts[0].strip().rstrip(',') - value_part = parts[1].strip().rstrip(',') - - # Handle hex values - if value_part.startswith('0x'): - try: - value = int(value_part, 16) - values[str(value)] = name - except ValueError: - pass - # Handle decimal values - elif value_part.isdigit(): - values[value_part] = name - # Handle expressions (for flags) - elif '|' in value_part: - values[f"EXPR:{value_part}"] = name - else: - # Auto-increment enum - name = line.rstrip(',').strip() - if name and not name.startswith('//'): - values[str(len(values))] = name - - return { - 'name': enum_name, - 'values': values, - 'source_file': str(file_path.name) - } - except Exception as e: - print(f"Error extracting enum from {file_path}: {e}") - return {} - -def extract_dictionaries_cs(file_path: Path) -> Dict[str, Any]: - """Extract dictionary mappings from Dictionaries.cs file.""" - try: - content = file_path.read_text(encoding='utf-8') - dictionaries = {} - - # Look for dictionary definitions with various patterns - dict_patterns = [ - r'public static readonly Dictionary (\w+) = new Dictionary\s*\n\s*{([^}]+)}', - r'public static readonly Dictionary (\w+) = new Dictionary\(\)\s*\n\s*{([^}]+)}' - ] - - for pattern in dict_patterns: - for match in re.finditer(pattern, content, re.DOTALL): - dict_name = match.group(1) - dict_body = match.group(2) - - values = {} - for line in dict_body.split('\n'): - line = line.strip() - if not line or line.startswith('//'): - continue - - # Parse dictionary entries: { 0x1, "value" } or { 1, "value" } - entry_patterns = [ - r'{\s*0x([0-9A-Fa-f]+),\s*"([^"]+)"\s*}', # Hex format - r'{\s*(\d+),\s*"([^"]+)"\s*}' # Decimal format - ] - - for entry_pattern in entry_patterns: - entry_match = re.search(entry_pattern, line) - if entry_match: - key_str = entry_match.group(1) - value = entry_match.group(2) - - # Convert hex to decimal if needed - if 'x' in entry_pattern: - key = str(int(key_str, 16)) - else: - key = key_str - - values[key] = value - break - - if values: - dictionaries[dict_name] = { - 'name': dict_name, - 'values': values, - 'source_file': 'Dictionaries.cs' - } - - return dictionaries - except Exception as e: - print(f"Error extracting dictionaries: {e}") - return {} - -def extract_spells_csv(file_path: Path) -> Dict[str, Any]: - """Extract spell data from Spells.csv.""" - try: - spells = {} - # Try different encodings - for encoding in ['utf-8', 'latin1', 'cp1252']: - try: - with open(file_path, 'r', encoding=encoding) as f: - reader = csv.DictReader(f) - for row in reader: - spell_id = row.get('Id', '').strip() - if spell_id and spell_id.isdigit(): - spells[spell_id] = { - 'id': int(spell_id), - 'name': row.get('Name', '').strip(), - 'description': row.get('Description', '').strip(), - 'school': row.get('School', '').strip(), - 'difficulty': row.get('Difficulty', '').strip(), - 'duration': row.get('Duration', '').strip(), - 'mana': row.get('Mana', '').strip(), - 'family': row.get('Family', '').strip(), - 'speed': row.get('Speed', '').strip(), - 'target_effect': row.get('TargetEffect', '').strip(), - 'target_mask': row.get('TargetMask', '').strip() - } - break - except UnicodeDecodeError: - continue - - return { - 'name': 'Spells', - 'values': spells, - 'source_file': 'Spells.csv' - } - except Exception as e: - print(f"Error extracting spells: {e}") - return {} - -def extract_object_class_cs(file_path: Path) -> Dict[str, Any]: - """Extract ObjectClass enum specifically.""" - try: - content = file_path.read_text(encoding='utf-8') - - # Find ObjectClass enum - enum_match = re.search(r'public enum ObjectClass\s*{([^}]+)}', content, re.DOTALL) - if not enum_match: - return {} - - enum_body = enum_match.group(1) - values = {} - current_value = 0 - - for line in enum_body.split('\n'): - line = line.strip() - if not line or line.startswith('//'): - continue - - if '=' in line: - parts = line.split('=') - if len(parts) >= 2: - name = parts[0].strip().rstrip(',') - value_str = parts[1].strip().rstrip(',') - try: - current_value = int(value_str) - values[str(current_value)] = name - current_value += 1 - except ValueError: - pass - else: - name = line.rstrip(',').strip() - if name and not name.startswith('//'): - values[str(current_value)] = name - current_value += 1 - - return { - 'name': 'ObjectClass', - 'values': values, - 'source_file': 'ObjectClass.cs' - } - except Exception as e: - print(f"Error extracting ObjectClass: {e}") - return {} - -def main(): - base_path = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared') - constants_path = base_path / 'Constants' - spells_path = base_path / 'Spells' - - comprehensive_database = { - 'metadata': { - 'extracted_at': '2025-06-10', - 'source': 'Mag-Plugins/Shared (comprehensive)', - 'version': '2.0.0' - }, - 'enums': {}, - 'dictionaries': {}, - 'spells': {}, - 'object_classes': {} - } - - # Extract all constant enums - for cs_file in constants_path.glob('*.cs'): - if cs_file.name in ['Dictionaries.cs']: - continue # Handle separately - - enum_data = extract_csharp_enum(cs_file) - if enum_data: - comprehensive_database['enums'][enum_data['name']] = enum_data - print(f"โœ“ Extracted enum: {enum_data['name']} ({len(enum_data['values'])} values)") - - # Extract ObjectClass enum - object_class_file = base_path / 'ObjectClass.cs' - if object_class_file.exists(): - object_class_data = extract_object_class_cs(object_class_file) - if object_class_data: - comprehensive_database['object_classes'] = object_class_data - print(f"โœ“ Extracted ObjectClass: {len(object_class_data['values'])} values") - - # Extract dictionaries - dict_file = constants_path / 'Dictionaries.cs' - if dict_file.exists(): - dict_data = extract_dictionaries_cs(dict_file) - comprehensive_database['dictionaries'] = dict_data - print(f"โœ“ Extracted dictionaries: {len(dict_data)} dictionaries") - - # Extract spells - spells_file = spells_path / 'Spells.csv' - if spells_file.exists(): - spell_data = extract_spells_csv(spells_file) - if spell_data: - comprehensive_database['spells'] = spell_data - print(f"โœ“ Extracted spells: {len(spell_data['values'])} spells") - - # Save comprehensive database - output_file = Path('/home/erik/MosswartOverlord/inventory-service/comprehensive_enum_database_v2.json') - with open(output_file, 'w') as f: - json.dump(comprehensive_database, f, indent=2) - - print(f"\nโœ… Comprehensive enum database saved to: {output_file}") - print(f"๐Ÿ“Š Total enums: {len(comprehensive_database['enums'])}") - print(f"๐Ÿ“Š Total dictionaries: {len(comprehensive_database['dictionaries'])}") - print(f"๐Ÿ“Š Total spells: {len(comprehensive_database['spells'].get('values', {}))}") - print(f"๐Ÿ“Š Object classes: {len(comprehensive_database['object_classes'].get('values', {}))}") - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/inventory-service/extract_dictionaries.py b/inventory-service/extract_dictionaries.py deleted file mode 100644 index 92cf3e0e..00000000 --- a/inventory-service/extract_dictionaries.py +++ /dev/null @@ -1,135 +0,0 @@ -#\!/usr/bin/env python3 -"""Extract dictionaries from Mag-Plugins Dictionaries.cs file.""" - -import re -import json - -def extract_attribute_set_info(): - """Extract AttributeSetInfo dictionary from Dictionaries.cs.""" - with open('/home/erik/MosswartOverlord/unused/Mag-Plugins/Shared/Constants/Dictionaries.cs', 'r') as f: - content = f.read() - - # Find the AttributeSetInfo dictionary - pattern = r'AttributeSetInfo\s*=\s*new\s+Dictionary\s*\{([^}]+)\}' - match = re.search(pattern, content, re.DOTALL) - - if not match: - print("AttributeSetInfo not found\!") - return {} - - dict_content = match.group(1) - - # Extract entries - entry_pattern = r'\{\s*(\d+),\s*"([^"]+)"\s*\}' - entries = re.findall(entry_pattern, dict_content) - - attribute_sets = {} - for set_id, set_name in entries: - attribute_sets[set_id] = set_name - - return attribute_sets - -def extract_material_info(): - """Extract MaterialInfo dictionary from Dictionaries.cs.""" - with open('/home/erik/MosswartOverlord/unused/Mag-Plugins/Shared/Constants/Dictionaries.cs', 'r') as f: - content = f.read() - - # Find the MaterialInfo dictionary - pattern = r'MaterialInfo\s*=\s*new\s+Dictionary\s*\{([^}]+)\}' - match = re.search(pattern, content, re.DOTALL) - - if not match: - print("MaterialInfo not found\!") - return {} - - dict_content = match.group(1) - - # Extract entries - entry_pattern = r'\{\s*(\d+),\s*"([^"]+)"\s*\}' - entries = re.findall(entry_pattern, dict_content) - - materials = {} - for mat_id, mat_name in entries: - materials[mat_id] = mat_name - - return materials - -def extract_skill_info(): - """Extract SkillInfo dictionary from Dictionaries.cs.""" - with open('/home/erik/MosswartOverlord/unused/Mag-Plugins/Shared/Constants/Dictionaries.cs', 'r') as f: - content = f.read() - - # Find the SkillInfo dictionary - pattern = r'SkillInfo\s*=\s*new\s+Dictionary\s*\{([^}]+)\}' - match = re.search(pattern, content, re.DOTALL) - - if not match: - print("SkillInfo not found\!") - return {} - - dict_content = match.group(1) - - # Extract entries - handle hex values - entry_pattern = r'\{\s*(0x[0-9A-Fa-f]+ < /dev/null | \d+),\s*"([^"]+)"\s*\}' - entries = re.findall(entry_pattern, dict_content) - - skills = {} - for skill_id, skill_name in entries: - # Convert hex to decimal if needed - if skill_id.startswith('0x'): - skill_id = str(int(skill_id, 16)) - skills[skill_id] = skill_name - - return skills - -def extract_mastery_info(): - """Extract MasteryInfo dictionary from Dictionaries.cs.""" - with open('/home/erik/MosswartOverlord/unused/Mag-Plugins/Shared/Constants/Dictionaries.cs', 'r') as f: - content = f.read() - - # Find the MasteryInfo dictionary - pattern = r'MasteryInfo\s*=\s*new\s+Dictionary\s*\{([^}]+)\}' - match = re.search(pattern, content, re.DOTALL) - - if not match: - print("MasteryInfo not found\!") - return {} - - dict_content = match.group(1) - - # Extract entries - entry_pattern = r'\{\s*(\d+),\s*"([^"]+)"\s*\}' - entries = re.findall(entry_pattern, dict_content) - - masteries = {} - for mastery_id, mastery_name in entries: - masteries[mastery_id] = mastery_name - - return masteries - -def main(): - """Extract all dictionaries and save to JSON.""" - dictionaries = { - 'AttributeSetInfo': extract_attribute_set_info(), - 'MaterialInfo': extract_material_info(), - 'SkillInfo': extract_skill_info(), - 'MasteryInfo': extract_mastery_info() - } - - # Print summary - for dict_name, dict_data in dictionaries.items(): - print(f"{dict_name}: {len(dict_data)} entries") - if dict_data and dict_name == 'AttributeSetInfo': - # Show some equipment set examples - for set_id in ['13', '14', '16', '21']: - if set_id in dict_data: - print(f" {set_id} -> {dict_data[set_id]}") - - # Save to file - with open('extracted_dictionaries.json', 'w') as f: - json.dump(dictionaries, f, indent=2) - - print("\nDictionaries saved to extracted_dictionaries.json") - -if __name__ == "__main__": - main() diff --git a/inventory-service/extract_dictionaries_v2.py b/inventory-service/extract_dictionaries_v2.py deleted file mode 100644 index 5449701d..00000000 --- a/inventory-service/extract_dictionaries_v2.py +++ /dev/null @@ -1,60 +0,0 @@ -#\!/usr/bin/env python3 -"""Extract dictionaries from Mag-Plugins Dictionaries.cs file.""" - -import re -import json - -def extract_dictionary(dict_name): - """Extract a dictionary from Dictionaries.cs by name.""" - with open('/home/erik/MosswartOverlord/unused/Mag-Plugins/Shared/Constants/Dictionaries.cs', 'r') as f: - content = f.read() - - # Find the dictionary - handle multiline definitions - pattern = rf'{dict_name}\s*=\s*new\s+Dictionary\s*\{{(.*?)^\s*\}};' - match = re.search(pattern, content, re.DOTALL < /dev/null | re.MULTILINE) - - if not match: - print(f"{dict_name} not found\!") - return {} - - dict_content = match.group(1) - - # Extract entries - handle both decimal and hex values - entry_pattern = r'\{\s*(0x[0-9A-Fa-f]+|\d+),\s*"([^"]+)"\s*\}' - entries = re.findall(entry_pattern, dict_content) - - result = {} - for key, value in entries: - # Convert hex to decimal if needed - if key.startswith('0x'): - key = str(int(key, 16)) - result[key] = value - - return result - -def main(): - """Extract all dictionaries and save to JSON.""" - dictionaries = { - 'AttributeSetInfo': extract_dictionary('AttributeSetInfo'), - 'MaterialInfo': extract_dictionary('MaterialInfo'), - 'SkillInfo': extract_dictionary('SkillInfo'), - 'MasteryInfo': extract_dictionary('MasteryInfo') - } - - # Print summary - for dict_name, dict_data in dictionaries.items(): - print(f"{dict_name}: {len(dict_data)} entries") - if dict_data and dict_name == 'AttributeSetInfo': - # Show some equipment set examples - for set_id in ['13', '14', '16', '21']: - if set_id in dict_data: - print(f" {set_id} -> {dict_data[set_id]}") - - # Save to file - with open('extracted_dictionaries.json', 'w') as f: - json.dump(dictionaries, f, indent=2) - - print("\nDictionaries saved to extracted_dictionaries.json") - -if __name__ == "__main__": - main() diff --git a/inventory-service/extract_enums.py b/inventory-service/extract_enums.py deleted file mode 100644 index 3b92a40c..00000000 --- a/inventory-service/extract_enums.py +++ /dev/null @@ -1,130 +0,0 @@ -#!/usr/bin/env python3 -""" -Extract enum definitions from Mag-Plugins C# files into JSON mappings. - -This script parses the IntValueKey.cs file to create a mapping between -numeric enum values and their human-readable names for inventory processing. -""" - -import re -import json -import os -from pathlib import Path - -def extract_int_value_enums(cs_file_path): - """Extract IntValueKey enum definitions from C# file.""" - - with open(cs_file_path, 'r') as f: - content = f.read() - - # Pattern to match enum entries: EnumName = Value, - pattern = r'^\s*(?:\[[^\]]+\])?\s*(\w+)\s*=\s*(\d+),?\s*(?://.*)?$' - - enums = {} - in_enum = False - - for line in content.split('\n'): - # Check if we're entering the enum - if 'enum IntValueKey' in line: - in_enum = True - continue - - # Check if we're exiting the enum - if in_enum and line.strip() == '}': - break - - # Parse enum entries - if in_enum: - match = re.match(pattern, line) - if match: - name = match.group(1) - value = int(match.group(2)) - enums[value] = name - - return enums - -def create_property_mappings(): - """Create organized property mappings for different item aspects.""" - - # Based on analysis of the enum values and common item properties - property_categories = { - 'basic': { - 5: 'encumbrance', # EncumbranceVal - 19: 'value', # Value - 25: 'level', # Level - 28: 'armor_level', # ArmorLevel - 44: 'damage', # Damage - 45: 'damage_type', # DamageType - }, - - 'requirements': { - 158: 'wield_requirement', # Common wield requirement key (from JSON data) - 160: 'wield_level', # Common wield level key (from JSON data) - 48: 'weapon_skill', # WeaponSkill - }, - - 'combat': { - 218103842: 'max_damage', # MaxDamage_Decal - 36: 'resist_magic', # ResistMagic - 56: 'shield_value', # ShieldValue - }, - - 'display': { - 218103809: 'icon', # Icon_Decal_DID - 218103849: 'icon_overlay', # IconOverlay_Decal_DID - 218103850: 'icon_underlay', # IconUnderlay_Decal_DID - }, - - 'metadata': { - 218103808: 'weenie_class_id', # WeenieClassId_Decal - 218103847: 'physics_data_flags', # PhysicsDataFlags_Decal - 218103831: 'object_desc_flags', # ObjectDescriptionFlags_Decal - } - } - - return property_categories - -def main(): - """Main extraction process.""" - - # Paths - mag_plugins_path = Path('/home/erik/MosswartOverlord/Mag-Plugins') - int_value_key_path = mag_plugins_path / 'Shared' / 'Constants' / 'IntValueKey.cs' - output_dir = Path('/home/erik/MosswartOverlord/inventory-service') - - # Create output directory - output_dir.mkdir(exist_ok=True) - - # Extract all enum values - print("Extracting IntValueKey enums...") - int_enums = extract_int_value_enums(int_value_key_path) - print(f"Found {len(int_enums)} enum definitions") - - # Create property categories - property_categories = create_property_mappings() - - # Save complete enum mapping - enum_output = output_dir / 'int_value_enums.json' - with open(enum_output, 'w') as f: - json.dump(int_enums, f, indent=2) - print(f"Saved complete enum mapping to {enum_output}") - - # Save categorized mappings - categories_output = output_dir / 'property_categories.json' - with open(categories_output, 'w') as f: - json.dump(property_categories, f, indent=2) - print(f"Saved property categories to {categories_output}") - - # Print some interesting findings - print("\nKey mappings found:") - interesting_keys = [5, 19, 28, 44, 158, 160, 218103809, 218103842, 218103847, 218103849] - for key in interesting_keys: - if key in int_enums: - print(f" {key}: {int_enums[key]}") - - print(f"\nFiles created in {output_dir}/") - print("- int_value_enums.json: Complete enum mapping") - print("- property_categories.json: Organized property categories") - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/inventory-service/extract_spell_names.py b/inventory-service/extract_spell_names.py deleted file mode 100644 index 7505b1f4..00000000 --- a/inventory-service/extract_spell_names.py +++ /dev/null @@ -1,121 +0,0 @@ -#!/usr/bin/env python3 -""" -Extract spell names from Mag-Plugins/Shared/Spells/Spells.csv for spell ID translation. -""" - -import csv -import json -from pathlib import Path - -def extract_spell_names(): - """Extract spell ID to name mappings from Spells.csv.""" - - csv_path = Path('/home/erik/MosswartOverlord/Mag-Plugins/Shared/Spells/Spells.csv') - - if not csv_path.exists(): - print(f"โŒ Spells.csv not found at {csv_path}") - return {} - - spell_mappings = {} - - # Try different encodings - encodings = ['utf-8', 'latin-1', 'windows-1252', 'utf-8-sig'] - - for encoding in encodings: - try: - with open(csv_path, 'r', encoding=encoding) as f: - reader = csv.DictReader(f) - print(f"โœ“ Successfully opened with {encoding} encoding") - - for row in reader: - try: - spell_id = int(row['Id']) - spell_name = row['Name'].strip() - spell_description = row.get('Description', '').strip() - spell_school = row.get('School', '').strip() - spell_family = row.get('Family', '').strip() - spell_difficulty = row.get('Difficulty', '').strip() - spell_duration = row.get('Duration', '').strip() - spell_mana = row.get('Mana', '').strip() - - # Create comprehensive spell data - spell_data = { - 'name': spell_name, - 'description': spell_description, - 'school': spell_school, - 'family': spell_family, - 'difficulty': spell_difficulty, - 'duration': spell_duration, - 'mana': spell_mana - } - - spell_mappings[spell_id] = spell_data - - except (ValueError, KeyError) as e: - print(f"โš ๏ธ Skipping invalid row: {e}") - continue - - # If we get here successfully, we're done - break - - except Exception as e: - print(f"โŒ Error with {encoding} encoding: {e}") - continue - - if spell_mappings: - print(f"โœ“ Extracted {len(spell_mappings)} spell entries") - else: - print("โŒ Failed to extract spells with any encoding") - - return spell_mappings - -def save_spell_database(spell_mappings): - """Save spell mappings to JSON file.""" - - output_path = Path('/home/erik/MosswartOverlord/inventory-service/spell_database.json') - - spell_database = { - 'metadata': { - 'version': '1.0.0', - 'source': 'Mag-Plugins/Shared/Spells/Spells.csv', - 'total_spells': len(spell_mappings), - 'description': 'Spell ID to name/data mappings for Asheron\'s Call' - }, - 'spells': spell_mappings - } - - try: - with open(output_path, 'w', encoding='utf-8') as f: - json.dump(spell_database, f, indent=2, ensure_ascii=False) - - print(f"โœ“ Spell database saved to {output_path}") - return True - - except Exception as e: - print(f"โŒ Error saving spell database: {e}") - return False - -def main(): - """Main extraction process.""" - print("Extracting spell names from Spells.csv...") - - # Extract spell mappings - spell_mappings = extract_spell_names() - - if not spell_mappings: - print("โŒ No spells extracted") - return - - # Save to JSON file - if save_spell_database(spell_mappings): - # Show some sample spells - print("\nSample spell entries:") - for spell_id, spell_data in list(spell_mappings.items())[:5]: - print(f" {spell_id}: {spell_data['name']} ({spell_data['school']})") - - print(f"\nโœ“ Successfully processed {len(spell_mappings)} spells") - else: - print("โŒ Failed to save spell database") - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/inventory-service/extracted_dictionaries.json b/inventory-service/extracted_dictionaries.json deleted file mode 100644 index b76ef7c1..00000000 --- a/inventory-service/extracted_dictionaries.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "AttributeSetInfo": {}, - "MaterialInfo": {}, - "SkillInfo": {}, - "MasteryInfo": {} -} \ No newline at end of file diff --git a/inventory-service/init_db.py b/inventory-service/init_db.py deleted file mode 100644 index a8c915fe..00000000 --- a/inventory-service/init_db.py +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env python3 -""" -Initialize the inventory service database. -Creates all tables and performs initial setup. -""" - -import asyncio -import logging -import os -import sqlalchemy as sa -from database import Base, DATABASE_URL, create_indexes - -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -async def init_database(): - """Initialize database tables and indexes.""" - try: - # Create engine - engine = sa.create_engine(DATABASE_URL) - - # Create all tables - logger.info("Creating database tables...") - Base.metadata.create_all(engine) - - # Create indexes - logger.info("Creating performance indexes...") - create_indexes(engine) - - logger.info("Database initialization completed successfully") - - except Exception as e: - logger.error(f"Database initialization failed: {e}") - raise - -if __name__ == "__main__": - asyncio.run(init_database()) \ No newline at end of file diff --git a/inventory-service/int_value_enums.json b/inventory-service/int_value_enums.json deleted file mode 100644 index fe096f71..00000000 --- a/inventory-service/int_value_enums.json +++ /dev/null @@ -1,450 +0,0 @@ -{ - "0": "Undef", - "1": "ItemType", - "2": "CreatureType", - "3": "PaletteTemplate", - "4": "ClothingPriority", - "5": "EncumbranceVal", - "6": "ItemsCapacity", - "7": "ContainersCapacity", - "8": "Mass", - "9": "ValidLocations", - "10": "CurrentWieldedLocation", - "11": "MaxStackSize", - "12": "StackSize", - "13": "StackUnitEncumbrance", - "14": "StackUnitMass", - "15": "StackUnitValue", - "16": "ItemUseable", - "17": "RareId", - "18": "UiEffects", - "19": "Value", - "20": "CoinValue", - "21": "TotalExperience", - "22": "AvailableCharacter", - "23": "TotalSkillCredits", - "24": "AvailableSkillCredits", - "25": "Level", - "26": "AccountRequirements", - "27": "ArmorType", - "28": "ArmorLevel", - "29": "AllegianceCpPool", - "30": "AllegianceRank", - "31": "ChannelsAllowed", - "32": "ChannelsActive", - "33": "Bonded", - "34": "MonarchsRank", - "35": "AllegianceFollowers", - "36": "ResistMagic", - "37": "ResistItemAppraisal", - "38": "ResistLockpick", - "39": "DeprecatedResistRepair", - "40": "CombatMode", - "41": "CurrentAttackHeight", - "42": "CombatCollisions", - "43": "NumDeaths", - "44": "Damage", - "45": "DamageType", - "46": "DefaultCombatStyle", - "47": "AttackType", - "48": "WeaponSkill", - "49": "WeaponTime", - "50": "AmmoType", - "51": "CombatUse", - "52": "ParentLocation", - "53": "PlacementPosition", - "54": "WeaponEncumbrance", - "55": "WeaponMass", - "56": "ShieldValue", - "57": "ShieldEncumbrance", - "58": "MissileInventoryLocation", - "59": "FullDamageType", - "60": "WeaponRange", - "61": "AttackersSkill", - "62": "DefendersSkill", - "63": "AttackersSkillValue", - "64": "AttackersClass", - "65": "Placement", - "66": "CheckpointStatus", - "67": "Tolerance", - "68": "TargetingTactic", - "69": "CombatTactic", - "70": "HomesickTargetingTactic", - "71": "NumFollowFailures", - "72": "FriendType", - "73": "FoeType", - "74": "MerchandiseItemTypes", - "75": "MerchandiseMinValue", - "76": "MerchandiseMaxValue", - "77": "NumItemsSold", - "78": "NumItemsBought", - "79": "MoneyIncome", - "80": "MoneyOutflow", - "81": "MaxGeneratedObjects", - "82": "InitGeneratedObjects", - "83": "ActivationResponse", - "84": "OriginalValue", - "85": "NumMoveFailures", - "86": "MinLevel", - "87": "MaxLevel", - "88": "LockpickMod", - "89": "BoosterEnum", - "90": "BoostValue", - "91": "MaxStructure", - "92": "Structure", - "93": "PhysicsState", - "94": "TargetType", - "95": "RadarBlipColor", - "96": "EncumbranceCapacity", - "97": "LoginTimestamp", - "98": "CreationTimestamp", - "99": "PkLevelModifier", - "100": "GeneratorType", - "101": "AiAllowedCombatStyle", - "102": "LogoffTimestamp", - "103": "GeneratorDestructionType", - "104": "ActivationCreateClass", - "105": "ItemWorkmanship", - "106": "ItemSpellcraft", - "107": "ItemCurMana", - "108": "ItemMaxMana", - "109": "ItemDifficulty", - "110": "ItemAllegianceRankLimit", - "111": "PortalBitmask", - "112": "AdvocateLevel", - "113": "Gender", - "114": "Attuned", - "115": "ItemSkillLevelLimit", - "116": "GateLogic", - "117": "ItemManaCost", - "118": "Logoff", - "119": "Active", - "120": "AttackHeight", - "121": "NumAttackFailures", - "122": "AiCpThreshold", - "123": "AiAdvancementStrategy", - "124": "Version", - "125": "Age", - "126": "VendorHappyMean", - "127": "VendorHappyVariance", - "128": "CloakStatus", - "129": "VitaeCpPool", - "130": "NumServicesSold", - "131": "MaterialType", - "132": "NumAllegianceBreaks", - "133": "ShowableOnRadar", - "134": "PlayerKillerStatus", - "135": "VendorHappyMaxItems", - "136": "ScorePageNum", - "137": "ScoreConfigNum", - "138": "ScoreNumScores", - "139": "DeathLevel", - "140": "AiOptions", - "141": "OpenToEveryone", - "142": "GeneratorTimeType", - "143": "GeneratorStartTime", - "144": "GeneratorEndTime", - "145": "GeneratorEndDestructionType", - "146": "XpOverride", - "147": "NumCrashAndTurns", - "148": "ComponentWarningThreshold", - "149": "HouseStatus", - "150": "HookPlacement", - "151": "HookType", - "152": "HookItemType", - "153": "AiPpThreshold", - "154": "GeneratorVersion", - "155": "HouseType", - "156": "PickupEmoteOffset", - "157": "WeenieIteration", - "158": "WieldRequirements", - "159": "WieldSkillType", - "160": "WieldDifficulty", - "161": "HouseMaxHooksUsable", - "162": "HouseCurrentHooksUsable", - "163": "AllegianceMinLevel", - "164": "AllegianceMaxLevel", - "165": "HouseRelinkHookCount", - "166": "SlayerCreatureType", - "167": "ConfirmationInProgress", - "168": "ConfirmationTypeInProgress", - "169": "TsysMutationData", - "170": "NumItemsInMaterial", - "171": "NumTimesTinkered", - "172": "AppraisalLongDescDecoration", - "173": "AppraisalLockpickSuccessPercent", - "174": "AppraisalPages", - "175": "AppraisalMaxPages", - "176": "AppraisalItemSkill", - "177": "GemCount", - "178": "GemType", - "179": "ImbuedEffect", - "180": "AttackersRawSkillValue", - "181": "ChessRank", - "182": "ChessTotalGames", - "183": "ChessGamesWon", - "184": "ChessGamesLost", - "185": "TypeOfAlteration", - "186": "SkillToBeAltered", - "187": "SkillAlterationCount", - "188": "HeritageGroup", - "189": "TransferFromAttribute", - "190": "TransferToAttribute", - "191": "AttributeTransferCount", - "192": "FakeFishingSkill", - "193": "NumKeys", - "194": "DeathTimestamp", - "195": "PkTimestamp", - "196": "VictimTimestamp", - "197": "HookGroup", - "198": "AllegianceSwearTimestamp", - "199": "HousePurchaseTimestamp", - "200": "RedirectableEquippedArmorCount", - "201": "MeleeDefenseImbuedEffectTypeCache", - "202": "MissileDefenseImbuedEffectTypeCache", - "203": "MagicDefenseImbuedEffectTypeCache", - "204": "ElementalDamageBonus", - "205": "ImbueAttempts", - "206": "ImbueSuccesses", - "207": "CreatureKills", - "208": "PlayerKillsPk", - "209": "PlayerKillsPkl", - "210": "RaresTierOne", - "211": "RaresTierTwo", - "212": "RaresTierThree", - "213": "RaresTierFour", - "214": "RaresTierFive", - "215": "AugmentationStat", - "216": "AugmentationFamilyStat", - "217": "AugmentationInnateFamily", - "218": "AugmentationInnateStrength", - "219": "AugmentationInnateEndurance", - "220": "AugmentationInnateCoordination", - "221": "AugmentationInnateQuickness", - "222": "AugmentationInnateFocus", - "223": "AugmentationInnateSelf", - "224": "AugmentationSpecializeSalvaging", - "225": "AugmentationSpecializeItemTinkering", - "226": "AugmentationSpecializeArmorTinkering", - "227": "AugmentationSpecializeMagicItemTinkering", - "228": "AugmentationSpecializeWeaponTinkering", - "229": "AugmentationExtraPackSlot", - "230": "AugmentationIncreasedCarryingCapacity", - "231": "AugmentationLessDeathItemLoss", - "232": "AugmentationSpellsRemainPastDeath", - "233": "AugmentationCriticalDefense", - "234": "AugmentationBonusXp", - "235": "AugmentationBonusSalvage", - "236": "AugmentationBonusImbueChance", - "237": "AugmentationFasterRegen", - "238": "AugmentationIncreasedSpellDuration", - "239": "AugmentationResistanceFamily", - "240": "AugmentationResistanceSlash", - "241": "AugmentationResistancePierce", - "242": "AugmentationResistanceBlunt", - "243": "AugmentationResistanceAcid", - "244": "AugmentationResistanceFire", - "245": "AugmentationResistanceFrost", - "246": "AugmentationResistanceLightning", - "247": "RaresTierOneLogin", - "248": "RaresTierTwoLogin", - "249": "RaresTierThreeLogin", - "250": "RaresTierFourLogin", - "251": "RaresTierFiveLogin", - "252": "RaresLoginTimestamp", - "253": "RaresTierSix", - "254": "RaresTierSeven", - "255": "RaresTierSixLogin", - "256": "RaresTierSevenLogin", - "257": "ItemAttributeLimit", - "258": "ItemAttributeLevelLimit", - "259": "ItemAttribute2ndLimit", - "260": "ItemAttribute2ndLevelLimit", - "261": "CharacterTitleId", - "262": "NumCharacterTitles", - "263": "ResistanceModifierType", - "264": "FreeTinkersBitfield", - "265": "EquipmentSetId", - "266": "PetClass", - "267": "Lifespan", - "268": "RemainingLifespan", - "269": "UseCreateQuantity", - "270": "WieldRequirements2", - "271": "WieldSkillType2", - "272": "WieldDifficulty2", - "273": "WieldRequirements3", - "274": "WieldSkillType3", - "275": "WieldDifficulty3", - "276": "WieldRequirements4", - "277": "WieldSkillType4", - "278": "WieldDifficulty4", - "279": "Unique", - "280": "SharedCooldown", - "281": "Faction1Bits", - "282": "Faction2Bits", - "283": "Faction3Bits", - "284": "Hatred1Bits", - "285": "Hatred2Bits", - "286": "Hatred3Bits", - "287": "SocietyRankCelhan", - "288": "SocietyRankEldweb", - "289": "SocietyRankRadblo", - "290": "HearLocalSignals", - "291": "HearLocalSignalsRadius", - "292": "Cleaving", - "293": "AugmentationSpecializeGearcraft", - "294": "AugmentationInfusedCreatureMagic", - "295": "AugmentationInfusedItemMagic", - "296": "AugmentationInfusedLifeMagic", - "297": "AugmentationInfusedWarMagic", - "298": "AugmentationCriticalExpertise", - "299": "AugmentationCriticalPower", - "300": "AugmentationSkilledMelee", - "301": "AugmentationSkilledMissile", - "302": "AugmentationSkilledMagic", - "303": "ImbuedEffect2", - "304": "ImbuedEffect3", - "305": "ImbuedEffect4", - "306": "ImbuedEffect5", - "307": "DamageRating", - "308": "DamageResistRating", - "309": "AugmentationDamageBonus", - "310": "AugmentationDamageReduction", - "311": "ImbueStackingBits", - "312": "HealOverTime", - "313": "CritRating", - "314": "CritDamageRating", - "315": "CritResistRating", - "316": "CritDamageResistRating", - "317": "HealingResistRating", - "318": "DamageOverTime", - "319": "ItemMaxLevel", - "320": "ItemXpStyle", - "321": "EquipmentSetExtra", - "322": "AetheriaBitfield", - "323": "HealingBoostRating", - "324": "HeritageSpecificArmor", - "325": "AlternateRacialSkills", - "326": "AugmentationJackOfAllTrades", - "327": "AugmentationResistanceNether", - "328": "AugmentationInfusedVoidMagic", - "329": "WeaknessRating", - "330": "NetherOverTime", - "331": "NetherResistRating", - "332": "LuminanceAward", - "333": "LumAugDamageRating", - "334": "LumAugDamageReductionRating", - "335": "LumAugCritDamageRating", - "336": "LumAugCritReductionRating", - "337": "LumAugSurgeEffectRating", - "338": "LumAugSurgeChanceRating", - "339": "LumAugItemManaUsage", - "340": "LumAugItemManaGain", - "341": "LumAugVitality", - "342": "LumAugHealingRating", - "343": "LumAugSkilledCraft", - "344": "LumAugSkilledSpec", - "345": "LumAugNoDestroyCraft", - "346": "RestrictInteraction", - "347": "OlthoiLootTimestamp", - "348": "OlthoiLootStep", - "349": "UseCreatesContractId", - "350": "DotResistRating", - "351": "LifeResistRating", - "352": "CloakWeaveProc", - "353": "WeaponType", - "354": "MeleeMastery", - "355": "RangedMastery", - "356": "SneakAttackRating", - "357": "RecklessnessRating", - "358": "DeceptionRating", - "359": "CombatPetRange", - "360": "WeaponAuraDamage", - "361": "WeaponAuraSpeed", - "362": "SummoningMastery", - "363": "HeartbeatLifespan", - "364": "UseLevelRequirement", - "365": "LumAugAllSkills", - "366": "UseRequiresSkill", - "367": "UseRequiresSkillLevel", - "368": "UseRequiresSkillSpec", - "369": "UseRequiresLevel", - "370": "GearDamage", - "371": "GearDamageResist", - "372": "GearCrit", - "373": "GearCritResist", - "374": "GearCritDamage", - "375": "GearCritDamageResist", - "376": "GearHealingBoost", - "377": "GearNetherResist", - "378": "GearLifeResist", - "379": "GearMaxHealth", - "380": "Unknown380", - "381": "PKDamageRating", - "382": "PKDamageResistRating", - "383": "GearPKDamageRating", - "384": "GearPKDamageResistRating", - "385": "Unknown385", - "386": "Overpower", - "387": "OverpowerResist", - "388": "GearOverpower", - "389": "GearOverpowerResist", - "390": "Enlightenment", - "8007": "PCAPRecordedAutonomousMovement", - "8030": "PCAPRecordedMaxVelocityEstimated", - "8041": "PCAPRecordedPlacement", - "8042": "PCAPRecordedAppraisalPages", - "8043": "PCAPRecordedAppraisalMaxPages", - "9008": "CurrentLoyaltyAtLastLogoff", - "9009": "CurrentLeadershipAtLastLogoff", - "9010": "AllegianceOfficerRank", - "9011": "HouseRentTimestamp", - "9012": "Hairstyle", - "9013": "VisualClothingPriority", - "9014": "SquelchGlobal", - "9015": "InventoryOrder", - "218103808": "WeenieClassId_Decal", - "218103809": "Icon_Decal_DID", - "218103810": "Container_Decal_IID", - "218103811": "Landblock_Decal", - "218103812": "ItemSlots_Decal", - "218103813": "PackSlots_Decal", - "218103814": "StackCount_Decal", - "218103815": "StackMax_Decal", - "218103816": "Spell_Decal_DID", - "218103817": "SlotLegacy_Decal", - "218103818": "Wielder_Decal_IID", - "218103819": "WieldingSlot_Decal", - "218103820": "Monarch_Decal_IID", - "218103821": "Coverage_Decal", - "218103822": "EquipableSlots_Decal", - "218103823": "EquipType_Decal", - "218103824": "IconOutline_Decal", - "218103825": "MissileType_Decal", - "218103826": "UsageMask_Decal", - "218103827": "HouseOwner_Decal_IID", - "218103828": "HookMask_Decal", - "218103829": "HookType_Decal", - "218103830": "Setup_Decal_DID", - "218103831": "ObjectDescriptionFlags_Decal", - "218103832": "CreateFlags1_Decal", - "218103833": "CreateFlags2_Decal", - "218103834": "Category_Decal", - "218103835": "Behavior_Decal", - "218103836": "MagicDef_Decal", - "218103837": "SpecialProps_Decal", - "218103838": "SpellCount_Decal", - "218103839": "WeapSpeed_Decal", - "218103840": "EquipSkill_Decal", - "218103841": "DamageType_Decal", - "218103842": "MaxDamage_Decal", - "218103843": "Unknown10_Decal", - "218103844": "Unknown100000_Decal", - "218103845": "Unknown800000_Decal", - "218103846": "Unknown8000000_Decal", - "218103847": "PhysicsDataFlags_Decal", - "218103848": "ActiveSpellCount_Decal", - "218103849": "IconOverlay_Decal_DID", - "218103850": "IconUnderlay_Decal_DID", - "231735296": "Slot_Decal" -} \ No newline at end of file diff --git a/inventory-service/main.py b/inventory-service/main.py deleted file mode 100644 index ecf300be..00000000 --- a/inventory-service/main.py +++ /dev/null @@ -1,6273 +0,0 @@ -""" -Inventory Service - Separate microservice for item data processing and queries. - -Handles enum translation, data normalization, and provides structured item data APIs. -""" - -import json -import time -import logging -from pathlib import Path -from typing import Dict, List, Optional, Any -from datetime import datetime - -from fastapi import FastAPI, HTTPException, Depends, Query, Request -from fastapi.middleware.cors import CORSMiddleware -from fastapi.responses import JSONResponse, StreamingResponse -from sse_starlette.sse import EventSourceResponse -from pydantic import BaseModel -import databases -import sqlalchemy as sa - -from database import ( - Base, Item, ItemCombatStats, ItemRequirements, ItemEnhancements, - ItemRatings, ItemSpells, ItemRawData, DATABASE_URL, create_indexes -) - -# Import helpers to share enum mappings -import helpers - -# Configure logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -# Import suitbuilder router - after logger is defined -try: - from suitbuilder import router as suitbuilder_router, set_database_connection - SUITBUILDER_AVAILABLE = True - logger.info("Suitbuilder module imported successfully") -except ImportError as e: - logger.warning(f"Suitbuilder module not available: {e}") - SUITBUILDER_AVAILABLE = False - set_database_connection = None - -# FastAPI app with comprehensive OpenAPI documentation -app = FastAPI( - title="Inventory Service API", - description=""" - ## Comprehensive Inventory Management API for Asheron's Call - - This service provides powerful search and data processing capabilities for game item inventories. - - ### Key Features - - **Item Search**: Advanced filtering across 40+ parameters including spells, stats, sets, and more - - **Character Management**: Multi-character inventory tracking and processing - - **Equipment Optimization**: Integration with suitbuilder for optimal equipment combinations - - **Real-time Processing**: Live inventory data ingestion and normalization - - **Comprehensive Filtering**: Support for armor, jewelry, weapons, clothing, and spell-based searches - - ### Main Endpoints - - `/search/items` - Advanced item search with extensive filtering options - - `/process-inventory` - Process and normalize raw inventory data - - `/inventory/{character}` - Get character-specific inventory data - - `/suitbuilder/search` - Equipment optimization and suit building - - ### Search Parameters - The search endpoint supports comprehensive filtering including: - - **Text Search**: Item names, descriptions, properties - - **Character Filtering**: Specific characters or cross-character search - - **Equipment Status**: Equipped, unequipped, or all items - - **Item Categories**: Armor, jewelry, weapons, clothing filters - - **Combat Properties**: Damage, armor, attack bonuses, ratings - - **Spell Filtering**: Specific spells, cantrips, legendary effects - - **Requirements**: Level, skill requirements - - **Enhancements**: Materials, workmanship, item sets, tinkering - - **Item State**: Bonded, attuned, condition, rarity - - **Sorting & Pagination**: Flexible result ordering and pagination - """, - version="1.0.0", - contact={ - "name": "Dereth Tracker", - "url": "https://github.com/your-repo/dereth-tracker", - }, - license_info={ - "name": "MIT", - }, -) - -# Configure CORS -app.add_middleware( - CORSMiddleware, - allow_origins=["*"], # Allow all origins for development - allow_credentials=True, - allow_methods=["*"], - allow_headers=["*"], -) - -# Include suitbuilder router -if SUITBUILDER_AVAILABLE: - app.include_router(suitbuilder_router, prefix="/suitbuilder", tags=["suitbuilder"]) - logger.info("Suitbuilder endpoints included at /suitbuilder") - -# Database connection -database = databases.Database(DATABASE_URL) -engine = sa.create_engine(DATABASE_URL) - -# Load comprehensive enum mappings -def load_comprehensive_enums(): - """Load complete enum database with all translations.""" - logger.info("Loading comprehensive enum database...") - try: - # Try new comprehensive database first - logger.info("Attempting to load comprehensive_enum_database_v2.json") - with open('comprehensive_enum_database_v2.json', 'r') as f: - enum_db = json.load(f) - logger.info("Successfully loaded comprehensive_enum_database_v2.json") - except FileNotFoundError: - logger.warning("comprehensive_enum_database_v2.json not found, trying fallback") - try: - with open('complete_enum_database.json', 'r') as f: - enum_db = json.load(f) - logger.info("Successfully loaded complete_enum_database.json") - except FileNotFoundError as e: - logger.error(f"No enum database found: {e}") - return {'int_values': {}, 'materials': {}, 'item_types': {}, 'skills': {}, 'spell_categories': {}, 'spells': {}, 'object_classes': {}, 'coverage_masks': {}} - except Exception as e: - logger.error(f"Error reading enum database file: {e}") - return {'int_values': {}, 'materials': {}, 'item_types': {}, 'skills': {}, 'spell_categories': {}, 'spells': {}, 'object_classes': {}, 'coverage_masks': {}} - - # Extract specific enum mappings for easy access from new format - logger.info("Processing loaded enum database...") - enums = enum_db.get('enums', {}) - spells_data = enum_db.get('spells', {}) - object_classes_data = enum_db.get('object_classes', {}) - - # Convert IntValueKey to integer-keyed dict for fast lookup - int_values = {} - if 'IntValueKey' in enums: - for k, v in enums['IntValueKey']['values'].items(): - try: - int_values[int(k)] = v - except (ValueError, TypeError): - pass # Skip non-numeric keys - - # Material types mapping - materials = {} - if 'MaterialType' in enums: - for k, v in enums['MaterialType']['values'].items(): - try: - materials[int(k)] = v - except (ValueError, TypeError): - pass - - # Item types mapping - item_types = {} - if 'ItemType' in enums: - for k, v in enums['ItemType']['values'].items(): - try: - item_types[int(k)] = v - except (ValueError, TypeError): - pass - - # Skills mapping - skills = {} - if 'Skill' in enums: - skill_data = enums['Skill']['values'] - for k, v in skill_data.items(): - try: - if isinstance(v, dict): - skills[int(k)] = v.get('name', str(v)) - else: - skills[int(k)] = str(v) - except (ValueError, TypeError): - pass - - # Spell categories mapping - spell_categories = {} - if 'SpellCategory' in enums: - for k, v in enums['SpellCategory']['values'].items(): - try: - spell_categories[int(k)] = v - except (ValueError, TypeError): - pass - - # Coverage mask mapping - coverage_masks = {} - if 'CoverageMask' in enums: - for k, v in enums['CoverageMask']['values'].items(): - try: - coverage_masks[int(k)] = v - except (ValueError, TypeError): - pass - - # Object classes mapping - object_classes = {} - if object_classes_data and 'values' in object_classes_data: - for k, v in object_classes_data['values'].items(): - try: - object_classes[int(k)] = v - except (ValueError, TypeError): - pass - - # Spells mapping - spells = {} - if spells_data and 'values' in spells_data: - spells = {int(k): v for k, v in spells_data['values'].items() if k.isdigit()} - - # AttributeSetInfo - Equipment Set Names (CRITICAL for armor set detection) - attribute_sets = {} - # Check in dictionaries section first, then enums as fallback - if 'dictionaries' in enum_db and 'AttributeSetInfo' in enum_db['dictionaries']: - for k, v in enum_db['dictionaries']['AttributeSetInfo']['values'].items(): - attribute_sets[k] = v # String key - try: - attribute_sets[int(k)] = v # Also int key - except (ValueError, TypeError): - pass - elif 'AttributeSetInfo' in enums: - for k, v in enums['AttributeSetInfo']['values'].items(): - attribute_sets[k] = v # String key - try: - attribute_sets[int(k)] = v # Also int key - except (ValueError, TypeError): - pass - - logger.info(f"Enum database loaded successfully: {len(int_values)} int values, {len(spells)} spells, {len(object_classes)} object classes, {len(attribute_sets)} equipment sets") - - return { - 'int_values': int_values, - 'materials': materials, - 'item_types': item_types, - 'skills': skills, - 'spell_categories': spell_categories, - 'coverage_masks': coverage_masks, - 'object_classes': object_classes, - 'spells': spells, - 'equipment_sets': attribute_sets, # Backward compatibility - 'dictionaries': { - 'AttributeSetInfo': {'values': attribute_sets} - }, - 'AttributeSetInfo': {'values': attribute_sets}, # Also add in the format expected by the endpoint - 'full_database': enum_db - } - -ENUM_MAPPINGS = load_comprehensive_enums() - -# Share enum mappings with helpers module for suitbuilder -helpers.set_enum_mappings(ENUM_MAPPINGS) - -# Pydantic models -class InventoryItem(BaseModel): - """Raw inventory item from plugin.""" - character_name: str - timestamp: datetime - items: List[Dict[str, Any]] - -class ProcessedItem(BaseModel): - """Processed item with translated properties.""" - name: str - icon: int - object_class: int - value: int - burden: int - # Add other fields as needed - -# Response Models for API Documentation -class ItemSearchResponse(BaseModel): - """Response model for item search endpoint.""" - items: List[Dict[str, Any]] - total_count: int - page: int - limit: int - has_next: bool - has_previous: bool - - class Config: - schema_extra = { - "example": { - "items": [ - { - "name": "Gold Celdon Girth", - "character_name": "Megamula XXXIII", - "armor_level": 320, - "crit_damage_rating": 2, - "set_name": "Soldier's", - "material_name": "Gold", - "equipped": False, - "spells": ["Legendary Strength", "Legendary Endurance"] - } - ], - "total_count": 1247, - "page": 1, - "limit": 200, - "has_next": True, - "has_previous": False - } - } - -class ProcessingStats(BaseModel): - """Response model for inventory processing results.""" - processed_count: int - error_count: int - character_name: str - timestamp: datetime - errors: Optional[List[str]] = None - - class Config: - schema_extra = { - "example": { - "processed_count": 186, - "error_count": 22, - "character_name": "Megamula XXXIII", - "timestamp": "2024-01-15T10:30:00Z", - "errors": ["Item ID 12345: SQL type error", "Item ID 67890: Missing required field"] - } - } - -class SetListResponse(BaseModel): - """Response model for equipment sets list.""" - sets: List[Dict[str, Any]] - - class Config: - schema_extra = { - "example": { - "sets": [ - {"set_name": "Soldier's", "item_count": 847, "set_id": 13}, - {"set_name": "Adept's", "item_count": 623, "set_id": 14}, - {"set_name": "Hearty", "item_count": 1205, "set_id": 42} - ] - } - } - -class HealthResponse(BaseModel): - """Response model for health check.""" - status: str - timestamp: datetime - database_connected: bool - version: str - - class Config: - schema_extra = { - "example": { - "status": "healthy", - "timestamp": "2024-01-15T10:30:00Z", - "database_connected": True, - "version": "1.0.0" - } - } - -# Startup/shutdown events -@app.on_event("startup") -async def startup(): - """Initialize database connection and create tables.""" - await database.connect() - - # Share database connection with suitbuilder - if SUITBUILDER_AVAILABLE and set_database_connection: - set_database_connection(database) - - # Create tables if they don't exist - Base.metadata.create_all(engine) - - # Create performance indexes - create_indexes(engine) - - logger.info("Inventory service started successfully") - -@app.on_event("shutdown") -async def shutdown(): - """Close database connection.""" - await database.disconnect() - -# Enhanced translation functions -def translate_int_values(int_values: Dict[str, int]) -> Dict[str, Any]: - """Translate IntValues enum keys to human-readable names using comprehensive database.""" - translated = {} - int_enum_map = ENUM_MAPPINGS.get('int_values', {}) - - for key_str, value in int_values.items(): - try: - key_int = int(key_str) - if key_int in int_enum_map: - enum_name = int_enum_map[key_int] - translated[enum_name] = value - else: - # Keep unknown keys with numeric identifier - translated[f"unknown_{key_int}"] = value - except ValueError: - # Skip non-numeric keys - translated[key_str] = value - - return translated - -def translate_material_type(material_id: int) -> str: - """Translate material type ID to human-readable name.""" - materials = ENUM_MAPPINGS.get('materials', {}) - return materials.get(material_id, f"Unknown_Material_{material_id}") - -def translate_item_type(item_type_id: int) -> str: - """Translate item type ID to human-readable name.""" - item_types = ENUM_MAPPINGS.get('item_types', {}) - return item_types.get(item_type_id, f"Unknown_ItemType_{item_type_id}") - -def derive_item_type_from_object_class(object_class: int, item_data: dict = None) -> str: - """Derive ItemType from ObjectClass using the object_classes enum.""" - # Use the object_classes enum directly for accurate classifications - object_classes = ENUM_MAPPINGS.get('object_classes', {}) - item_type = object_classes.get(object_class) - - if item_type: - return item_type - else: - # Fallback to "Misc" if ObjectClass not found in enum - return "Misc" - -def translate_equipment_set_id(set_id: str) -> str: - """Translate equipment set ID to set name using comprehensive database.""" - dictionaries = ENUM_MAPPINGS.get('dictionaries', {}) - attribute_set_info = dictionaries.get('AttributeSetInfo', {}).get('values', {}) - set_name = attribute_set_info.get(str(set_id)) - if set_name: - return set_name - else: - # Fallback to just return the ID as string (matches database storage fallback) - return str(set_id) - -def translate_object_class(object_class_id: int, item_data: dict = None) -> str: - """Translate object class ID to human-readable name with context-aware detection.""" - # Use the extracted ObjectClass enum first - object_classes = ENUM_MAPPINGS.get('object_classes', {}) - if object_class_id in object_classes: - base_name = object_classes[object_class_id] - - # Context-aware classification for Gem class (ID 11) - if base_name == "Gem" and object_class_id == 11 and item_data: - # Check item name and properties to distinguish types - item_name = item_data.get('Name', '').lower() - - # Mana stones and crystals - if any(keyword in item_name for keyword in ['mana stone', 'crystal', 'gem']): - if 'mana stone' in item_name: - return "Mana Stone" - elif 'crystal' in item_name: - return "Crystal" - else: - return "Gem" - - # Aetheria detection - check for specific properties - int_values = item_data.get('IntValues', {}) - if isinstance(int_values, dict): - # Check for Aetheria-specific properties - has_item_set = '265' in int_values or 265 in int_values # EquipmentSetId - has_aetheria_level = '218103840' in int_values or 218103840 in int_values # ItemMaxLevel - - if has_item_set or has_aetheria_level or 'aetheria' in item_name: - return "Aetheria" - - # Default to Gem for other items in this class - return "Gem" - - return base_name - - # Fallback to WeenieType enum - weenie_types = {} - if 'WeenieType' in ENUM_MAPPINGS.get('full_database', {}).get('enums', {}): - weenie_data = ENUM_MAPPINGS['full_database']['enums']['WeenieType']['values'] - for k, v in weenie_data.items(): - try: - weenie_types[int(k)] = v - except (ValueError, TypeError): - pass - - return weenie_types.get(object_class_id, f"Unknown_ObjectClass_{object_class_id}") - -def translate_skill(skill_id: int) -> str: - """Translate skill ID to skill name.""" - skills = ENUM_MAPPINGS.get('skills', {}) - return skills.get(skill_id, f"Unknown_Skill_{skill_id}") - -def translate_spell_category(category_id: int) -> str: - """Translate spell category ID to spell category name.""" - spell_categories = ENUM_MAPPINGS.get('spell_categories', {}) - return spell_categories.get(category_id, f"Unknown_SpellCategory_{category_id}") - -def translate_spell(spell_id: int) -> Dict[str, Any]: - """Translate spell ID to spell data including name, description, school, etc.""" - spells = ENUM_MAPPINGS.get('spells', {}) - spell_data = spells.get(spell_id) - - if spell_data: - return { - 'id': spell_id, - 'name': spell_data.get('name', f'Unknown_Spell_{spell_id}'), - 'description': spell_data.get('description', ''), - 'school': spell_data.get('school', ''), - 'difficulty': spell_data.get('difficulty', ''), - 'duration': spell_data.get('duration', ''), - 'mana': spell_data.get('mana', ''), - 'family': spell_data.get('family', '') - } - else: - return { - 'id': spell_id, - 'name': f'Unknown_Spell_{spell_id}', - 'description': '', - 'school': '', - 'difficulty': '', - 'duration': '', - 'mana': '', - 'family': '' - } - -def translate_coverage_mask(coverage_value: int) -> List[str]: - """Translate coverage mask value to list of body parts covered.""" - coverage_masks = ENUM_MAPPINGS.get('coverage_masks', {}) - covered_parts = [] - - # Coverage masks are flags, so we need to check each bit - for mask_value, part_name in coverage_masks.items(): - if coverage_value & mask_value: - # Convert technical names to display names - display_name = part_name.replace('Outerwear', '').replace('Underwear', '').strip() - if display_name and display_name not in covered_parts: - covered_parts.append(display_name) - - # Map technical names to user-friendly names - name_mapping = { - 'UpperLegs': 'Upper Legs', - 'LowerLegs': 'Lower Legs', - 'UpperArms': 'Upper Arms', - 'LowerArms': 'Lower Arms', - 'Abdomen': 'Abdomen', - 'Chest': 'Chest', - 'Head': 'Head', - 'Hands': 'Hands', - 'Feet': 'Feet', - 'Cloak': 'Cloak', - 'Robe': 'Robe' - } - - return [name_mapping.get(part, part) for part in covered_parts if part] - -def get_total_bits_set(value: int) -> int: - """Count the number of bits set in a value.""" - bits_set = 0 - while value != 0: - if (value & 1) == 1: - bits_set += 1 - value >>= 1 - return bits_set - -def is_body_armor_equip_mask(value: int) -> bool: - """Check if EquipMask value represents body armor.""" - return (value & 0x00007F21) != 0 - -def is_body_armor_coverage_mask(value: int) -> bool: - """Check if CoverageMask value represents body armor.""" - return (value & 0x0001FF00) != 0 - -def get_coverage_reduction_options(coverage_value: int) -> list: - """ - Get the reduction options for a coverage mask, based on Mag-SuitBuilder logic. - This determines which individual slots a multi-slot armor piece can be tailored to fit. - """ - # CoverageMask values from Mag-Plugins - OuterwearUpperArms = 4096 # 0x00001000 - OuterwearLowerArms = 8192 # 0x00002000 - OuterwearUpperLegs = 256 # 0x00000100 - OuterwearLowerLegs = 512 # 0x00000200 - OuterwearChest = 1024 # 0x00000400 - OuterwearAbdomen = 2048 # 0x00000800 - Head = 16384 # 0x00004000 - Hands = 32768 # 0x00008000 - Feet = 65536 # 0x00010000 - - options = [] - - # If single bit or not body armor, return as-is - if get_total_bits_set(coverage_value) <= 1 or not is_body_armor_coverage_mask(coverage_value): - options.append(coverage_value) - else: - # Implement Mag-SuitBuilder reduction logic - if coverage_value == (OuterwearUpperArms | OuterwearLowerArms): - options.extend([OuterwearUpperArms, OuterwearLowerArms]) - elif coverage_value == (OuterwearUpperLegs | OuterwearLowerLegs): - options.extend([OuterwearUpperLegs, OuterwearLowerLegs]) - elif coverage_value == (OuterwearLowerLegs | Feet): - options.append(Feet) - elif coverage_value == (OuterwearChest | OuterwearAbdomen): - options.append(OuterwearChest) - elif coverage_value == (OuterwearChest | OuterwearAbdomen | OuterwearUpperArms): - options.append(OuterwearChest) - elif coverage_value == (OuterwearChest | OuterwearUpperArms | OuterwearLowerArms): - options.append(OuterwearChest) - elif coverage_value == (OuterwearChest | OuterwearUpperArms): - options.append(OuterwearChest) - elif coverage_value == (OuterwearAbdomen | OuterwearUpperLegs | OuterwearLowerLegs): - options.extend([OuterwearAbdomen, OuterwearUpperLegs, OuterwearLowerLegs]) - elif coverage_value == (OuterwearChest | OuterwearAbdomen | OuterwearUpperArms | OuterwearLowerArms): - options.append(OuterwearChest) - elif coverage_value == (OuterwearAbdomen | OuterwearUpperLegs): - # Pre-2010 retail guidelines - assume abdomen reduction only - options.append(OuterwearAbdomen) - else: - # If no specific reduction pattern, return original - options.append(coverage_value) - - return options - -def coverage_to_equip_mask(coverage_value: int) -> int: - """Convert a CoverageMask value to its corresponding EquipMask slot.""" - # Coverage to EquipMask mapping from Mag-SuitBuilder - coverage_to_slot = { - 16384: 1, # Head -> HeadWear - 1024: 512, # OuterwearChest -> ChestArmor - 4096: 2048, # OuterwearUpperArms -> UpperArmArmor - 8192: 4096, # OuterwearLowerArms -> LowerArmArmor - 32768: 32, # Hands -> HandWear - 2048: 1024, # OuterwearAbdomen -> AbdomenArmor - 256: 8192, # OuterwearUpperLegs -> UpperLegArmor - 512: 16384, # OuterwearLowerLegs -> LowerLegArmor - 65536: 256, # Feet -> FootWear - } - return coverage_to_slot.get(coverage_value, coverage_value) - -def get_sophisticated_slot_options(equippable_slots: int, coverage_value: int, has_material: bool = True) -> list: - """ - Get sophisticated slot options using Mag-SuitBuilder logic. - This handles armor reduction for tailorable pieces. - """ - # Special case: shoes that cover feet + lower legs but only go in feet slot - LowerLegWear = 128 - FootWear = 256 - if equippable_slots == (LowerLegWear | FootWear): - return [FootWear] - - # If it's body armor with multiple slots - if is_body_armor_equip_mask(equippable_slots) and get_total_bits_set(equippable_slots) > 1: - if not has_material: - # Can't reduce non-loot gen pieces, return all slots - return [equippable_slots] - else: - # Use coverage reduction options - reduction_options = get_coverage_reduction_options(coverage_value) - slot_options = [] - for option in reduction_options: - equip_slot = coverage_to_equip_mask(option) - slot_options.append(equip_slot) - return slot_options if slot_options else [equippable_slots] - else: - # Single slot or non-armor - return [equippable_slots] - -def convert_slot_name_to_friendly(slot_name: str) -> str: - """Convert technical slot names to user-friendly names.""" - name_mapping = { - 'HeadWear': 'Head', - 'ChestWear': 'Chest', - 'ChestArmor': 'Chest', - 'AbdomenWear': 'Abdomen', - 'AbdomenArmor': 'Abdomen', - 'UpperArmWear': 'Upper Arms', - 'UpperArmArmor': 'Upper Arms', - 'LowerArmWear': 'Lower Arms', - 'LowerArmArmor': 'Lower Arms', - 'HandWear': 'Hands', - 'UpperLegWear': 'Upper Legs', - 'UpperLegArmor': 'Upper Legs', - 'LowerLegWear': 'Lower Legs', - 'LowerLegArmor': 'Lower Legs', - 'FootWear': 'Feet', - 'NeckWear': 'Neck', - 'WristWearLeft': 'Left Wrist', - 'WristWearRight': 'Right Wrist', - 'FingerWearLeft': 'Left Ring', - 'FingerWearRight': 'Right Ring', - 'MeleeWeapon': 'Melee Weapon', - 'Shield': 'Shield', - 'MissileWeapon': 'Missile Weapon', - 'MissileAmmo': 'Ammo', - 'Held': 'Held', - 'TwoHanded': 'Two-Handed', - 'TrinketOne': 'Trinket', - 'Cloak': 'Cloak', - 'Robe': 'Robe', - 'SigilOne': 'Aetheria Blue', - 'SigilTwo': 'Aetheria Yellow', - 'SigilThree': 'Aetheria Red' - } - return name_mapping.get(slot_name, slot_name) - -def translate_equipment_slot(wielded_location: int) -> str: - """Translate equipment slot mask to human-readable slot name(s), handling bit flags.""" - if wielded_location == 0: - return "Inventory" - - # Get EquipMask enum from database - equip_mask_map = {} - if 'EquipMask' in ENUM_MAPPINGS.get('full_database', {}).get('enums', {}): - equip_data = ENUM_MAPPINGS['full_database']['enums']['EquipMask']['values'] - for k, v in equip_data.items(): - try: - # Skip expression values (EXPR:...) - if not k.startswith('EXPR:'): - equip_mask_map[int(k)] = v - except (ValueError, TypeError): - pass - - # Check for exact match first - if wielded_location in equip_mask_map: - slot_name = equip_mask_map[wielded_location] - # Convert technical names to user-friendly names - name_mapping = { - 'HeadWear': 'Head', - 'ChestWear': 'Chest', - 'ChestArmor': 'Chest', - 'AbdomenWear': 'Abdomen', - 'AbdomenArmor': 'Abdomen', - 'UpperArmWear': 'Upper Arms', - 'UpperArmArmor': 'Upper Arms', - 'LowerArmWear': 'Lower Arms', - 'LowerArmArmor': 'Lower Arms', - 'HandWear': 'Hands', - 'UpperLegWear': 'Upper Legs', - 'UpperLegArmor': 'Upper Legs', - 'LowerLegWear': 'Lower Legs', - 'LowerLegArmor': 'Lower Legs', - 'FootWear': 'Feet', - 'NeckWear': 'Neck', - 'WristWearLeft': 'Left Wrist', - 'WristWearRight': 'Right Wrist', - 'FingerWearLeft': 'Left Ring', - 'FingerWearRight': 'Right Ring', - 'MeleeWeapon': 'Melee Weapon', - 'Shield': 'Shield', - 'MissileWeapon': 'Missile Weapon', - 'MissileAmmo': 'Ammo', - 'Held': 'Held', - 'TwoHanded': 'Two-Handed', - 'TrinketOne': 'Trinket', - 'Cloak': 'Cloak', - 'Robe': 'Robe' - } - return name_mapping.get(slot_name, slot_name) - - # Handle common equipment slots that may be missing from enum database - common_slots = { - 30: "Shirt", # ChestWear + AbdomenWear + UpperArmWear + LowerArmWear for shirts - 786432: "Left Ring, Right Ring", # 262144 + 524288 for rings that can go in either slot - 262144: "Left Ring", - 524288: "Right Ring" - } - - if wielded_location in common_slots: - return common_slots[wielded_location] - - # If no exact match, decode bit flags - slot_parts = [] - for mask_value, slot_name in equip_mask_map.items(): - if mask_value > 0 and (wielded_location & mask_value) == mask_value: - slot_parts.append(slot_name) - - if slot_parts: - # Convert technical names to user-friendly names - name_mapping = { - 'HeadWear': 'Head', - 'ChestWear': 'Chest', - 'ChestArmor': 'Chest', - 'AbdomenWear': 'Abdomen', - 'AbdomenArmor': 'Abdomen', - 'UpperArmWear': 'Upper Arms', - 'UpperArmArmor': 'Upper Arms', - 'LowerArmWear': 'Lower Arms', - 'LowerArmArmor': 'Lower Arms', - 'HandWear': 'Hands', - 'UpperLegWear': 'Upper Legs', - 'UpperLegArmor': 'Upper Legs', - 'LowerLegWear': 'Lower Legs', - 'LowerLegArmor': 'Lower Legs', - 'FootWear': 'Feet', - 'NeckWear': 'Neck', - 'WristWearLeft': 'Left Wrist', - 'WristWearRight': 'Right Wrist', - 'FingerWearLeft': 'Left Ring', - 'FingerWearRight': 'Right Ring', - 'MeleeWeapon': 'Melee Weapon', - 'Shield': 'Shield', - 'MissileWeapon': 'Missile Weapon', - 'MissileAmmo': 'Ammo', - 'Held': 'Held', - 'TwoHanded': 'Two-Handed', - 'TrinketOne': 'Trinket', - 'Cloak': 'Cloak', - 'Robe': 'Robe' - } - - translated_parts = [name_mapping.get(part, part) for part in slot_parts] - return ', '.join(translated_parts) - - # Handle special cases for high values (like Aetheria slots) - if wielded_location >= 268435456: # 2^28 and higher - likely Aetheria or special slots - if wielded_location == 268435456: - return "Aetheria Blue" - elif wielded_location == 536870912: - return "Aetheria Yellow" - elif wielded_location == 1073741824: - return "Aetheria Red" - else: - return f"Special Slot ({wielded_location})" - - return "-" - -def translate_workmanship(workmanship_value: int) -> str: - """Translate workmanship value to descriptive text.""" - if workmanship_value <= 0: - return "" - elif workmanship_value == 1: - return "Pitiful (1)" - elif workmanship_value == 2: - return "Poor (2)" - elif workmanship_value == 3: - return "Below Average (3)" - elif workmanship_value == 4: - return "Average (4)" - elif workmanship_value == 5: - return "Above Average (5)" - elif workmanship_value == 6: - return "Nearly flawless (6)" - elif workmanship_value == 7: - return "Flawless (7)" - elif workmanship_value >= 8: - return "Utterly flawless (8)" - else: - return f"Quality ({workmanship_value})" - -def format_damage_resistance(armor_level: int, damage_type: str) -> str: - """Format damage resistance values with descriptive text.""" - if armor_level <= 0: - return "" - - # Rough categorization based on armor level - if armor_level < 200: - category = "Poor" - elif armor_level < 300: - category = "Below Average" - elif armor_level < 400: - category = "Average" - elif armor_level < 500: - category = "Above Average" - elif armor_level < 600: - category = "Excellent" - else: - category = "Superior" - - return f"{category} ({armor_level})" - -def get_damage_range_and_type(item_data: Dict[str, Any]) -> Dict[str, Any]: - """Calculate damage range and determine damage type for weapons.""" - damage_info = {} - - int_values = item_data.get('IntValues', {}) - double_values = item_data.get('DoubleValues', {}) - - # Max damage - max_damage = None - if '218103842' in int_values: - max_damage = int_values['218103842'] - elif 218103842 in int_values: - max_damage = int_values[218103842] - - # Variance for damage range calculation - variance = None - if '167772171' in double_values: - variance = double_values['167772171'] - elif 167772171 in double_values: - variance = double_values[167772171] - - # Damage bonus - damage_bonus = None - if '167772174' in double_values: - damage_bonus = double_values['167772174'] - elif 167772174 in double_values: - damage_bonus = double_values[167772174] - - if max_damage and variance: - # Calculate min damage: max_damage * (2 - variance) / 2 - min_damage = max_damage * (2 - variance) / 2 - damage_info['damage_range'] = f"{min_damage:.2f} - {max_damage}" - damage_info['min_damage'] = min_damage - damage_info['max_damage'] = max_damage - elif max_damage: - damage_info['damage_range'] = str(max_damage) - damage_info['max_damage'] = max_damage - - # Determine damage type from item name or properties - item_name = item_data.get('Name', '').lower() - if 'flaming' in item_name or 'fire' in item_name: - damage_info['damage_type'] = 'Fire' - elif 'frost' in item_name or 'ice' in item_name: - damage_info['damage_type'] = 'Cold' - elif 'lightning' in item_name or 'electric' in item_name: - damage_info['damage_type'] = 'Electrical' - elif 'acid' in item_name: - damage_info['damage_type'] = 'Acid' - else: - # Check for elemental damage bonus - elemental_bonus = None - if '204' in int_values: - elemental_bonus = int_values['204'] - elif 204 in int_values: - elemental_bonus = int_values[204] - - if elemental_bonus and elemental_bonus > 0: - damage_info['damage_type'] = 'Elemental' - else: - damage_info['damage_type'] = 'Physical' - - return damage_info - -def get_weapon_speed(item_data: Dict[str, Any]) -> Dict[str, Any]: - """Get weapon speed information.""" - speed_info = {} - - int_values = item_data.get('IntValues', {}) - - # Weapon speed (check multiple possible keys) - speed_value = None - speed_keys = ['169', 169, 'WeapSpeed_Decal'] - for key in speed_keys: - if key in int_values: - speed_value = int_values[key] - break - - # Also check translated enum properties for speed - translated_ints = translate_int_values(int_values) - if 'WeaponSpeed' in translated_ints: - speed_value = translated_ints['WeaponSpeed'] - elif 'WeapSpeed' in translated_ints: - speed_value = translated_ints['WeapSpeed'] - elif 'WeapSpeed_Decal' in translated_ints: - speed_value = translated_ints['WeapSpeed_Decal'] - - if speed_value: - speed_info['speed_value'] = speed_value - - # Convert to descriptive text - if speed_value <= 20: - speed_info['speed_text'] = f"Very Fast ({speed_value})" - elif speed_value <= 30: - speed_info['speed_text'] = f"Fast ({speed_value})" - elif speed_value <= 40: - speed_info['speed_text'] = f"Average ({speed_value})" - elif speed_value <= 50: - speed_info['speed_text'] = f"Slow ({speed_value})" - else: - speed_info['speed_text'] = f"Very Slow ({speed_value})" - - return speed_info - -def get_mana_and_spellcraft(item_data: Dict[str, Any]) -> Dict[str, Any]: - """Get mana and spellcraft information for items.""" - mana_info = {} - - int_values = item_data.get('IntValues', {}) - - # Get translated enum properties first - translated_ints = translate_int_values(int_values) - - # Current mana - check translated properties first - current_mana = None - if 'ItemCurMana' in translated_ints: - current_mana = translated_ints['ItemCurMana'] - elif '73' in int_values: - current_mana = int_values['73'] - elif 73 in int_values: - current_mana = int_values[73] - - # Max mana - check translated properties first - max_mana = None - if 'ItemMaxMana' in translated_ints: - max_mana = translated_ints['ItemMaxMana'] - elif '72' in int_values: - max_mana = int_values['72'] - elif 72 in int_values: - max_mana = int_values[72] - - # Spellcraft - check translated properties first - spellcraft = None - if 'ItemSpellcraft' in translated_ints: - spellcraft = translated_ints['ItemSpellcraft'] - elif '106' in int_values: - spellcraft = int_values['106'] - elif 106 in int_values: - spellcraft = int_values[106] - - if current_mana is not None and max_mana is not None: - mana_info['mana_display'] = f"{current_mana} / {max_mana}" - mana_info['current_mana'] = current_mana - mana_info['max_mana'] = max_mana - - if spellcraft: - mana_info['spellcraft'] = spellcraft - - return mana_info - -def get_comprehensive_translations(item_data: Dict[str, Any]) -> Dict[str, Any]: - """Get comprehensive translations for all aspects of an item.""" - translations = {} - - # Translate IntValues - int_values = item_data.get('IntValues', {}) - if int_values: - translations['int_properties'] = translate_int_values(int_values) - - # Translate material if present (check multiple locations) - material_id = item_data.get('MaterialType') - if material_id is None: - # Check IntValues for material (key 131) - int_values = item_data.get('IntValues', {}) - if isinstance(int_values, dict) and '131' in int_values: - material_id = int_values['131'] - elif isinstance(int_values, dict) and 131 in int_values: - material_id = int_values[131] - - if material_id is not None and material_id != 0: - translations['material_name'] = translate_material_type(material_id) - translations['material_id'] = material_id - - # Translate item type if present (check ItemType field or IntValues[1]) - item_type_id = item_data.get('ItemType') - if item_type_id is None: - # Check IntValues for ItemType (key 1) - int_values = item_data.get('IntValues', {}) - if isinstance(int_values, dict): - item_type_id = int_values.get('1', int_values.get(1)) - - if item_type_id is not None: - translations['item_type_name'] = translate_item_type(item_type_id) - else: - # Fallback: derive ItemType from ObjectClass - object_class = item_data.get('ObjectClass') - if object_class is not None: - translations['item_type_name'] = derive_item_type_from_object_class(object_class, item_data) - - # Translate object class using WeenieType enum - object_class = item_data.get('ObjectClass') - if object_class is not None: - translations['object_class_name'] = translate_object_class(object_class, item_data) - - return translations - -def extract_item_properties(item_data: Dict[str, Any]) -> Dict[str, Any]: - """Extract and categorize item properties from raw JSON.""" - - # Get raw values for comprehensive extraction - int_values = item_data.get('IntValues', {}) - double_values = item_data.get('DoubleValues', {}) - - # Start with processed fields (if available) - properties = { - 'basic': { - 'name': item_data.get('Name', ''), - 'icon': item_data.get('Icon', 0), - 'object_class': item_data.get('ObjectClass', 0), - 'value': item_data.get('Value', 0), - 'burden': item_data.get('Burden', 0), - 'has_id_data': item_data.get('HasIdData', False), - - # Equipment status - handle string keys properly - 'current_wielded_location': int(int_values.get('10', int_values.get(10, '0'))), - - # Item state - 'bonded': int_values.get('33', int_values.get(33, 0)), - 'attuned': int_values.get('114', int_values.get(114, 0)), - 'unique': bool(int_values.get('279', int_values.get(279, 0))), - - # Stack/Container properties - 'stack_size': int_values.get('12', int_values.get(12, 1)), - 'max_stack_size': int_values.get('11', int_values.get(11, 1)), - 'items_capacity': int_values.get('6', int_values.get(6, -1)), - 'containers_capacity': int_values.get('7', int_values.get(7, -1)), - - # Durability - 'structure': int_values.get('92', int_values.get(92, -1)), - 'max_structure': int_values.get('91', int_values.get(91, -1)), - - # Special item flags - 'rare_id': int_values.get('17', int_values.get(17, -1)), - 'lifespan': int_values.get('267', int_values.get(267, -1)), - 'remaining_lifespan': int_values.get('268', int_values.get(268, -1)), - }, - 'combat': { - 'max_damage': item_data.get('MaxDamage', -1), - 'armor_level': item_data.get('ArmorLevel', -1), - 'damage_bonus': item_data.get('DamageBonus', -1.0), - 'attack_bonus': item_data.get('AttackBonus', -1.0), - - # Defense bonuses from raw values - 'melee_defense_bonus': double_values.get('29', double_values.get(29, -1.0)), - 'magic_defense_bonus': double_values.get('150', double_values.get(150, -1.0)), - 'missile_defense_bonus': double_values.get('149', double_values.get(149, -1.0)), - 'elemental_damage_vs_monsters': double_values.get('152', double_values.get(152, -1.0)), - 'mana_conversion_bonus': double_values.get('144', double_values.get(144, -1.0)), - - # Advanced damage properties - 'cleaving': int_values.get('292', int_values.get(292, -1)), - 'elemental_damage_bonus': int_values.get('204', int_values.get(204, -1)), - 'crit_damage_rating': int_values.get('314', int_values.get(314, -1)), - 'damage_over_time': int_values.get('318', int_values.get(318, -1)), - - # Resistances - 'resist_magic': int_values.get('36', int_values.get(36, -1)), - 'crit_resist_rating': int_values.get('315', int_values.get(315, -1)), - 'crit_damage_resist_rating': int_values.get('316', int_values.get(316, -1)), - 'dot_resist_rating': int_values.get('350', int_values.get(350, -1)), - 'life_resist_rating': int_values.get('351', int_values.get(351, -1)), - 'nether_resist_rating': int_values.get('331', int_values.get(331, -1)), - - # Healing/Recovery - 'heal_over_time': int_values.get('312', int_values.get(312, -1)), - 'healing_resist_rating': int_values.get('317', int_values.get(317, -1)), - - # PvP properties - 'pk_damage_rating': int_values.get('381', int_values.get(381, -1)), - 'pk_damage_resist_rating': int_values.get('382', int_values.get(382, -1)), - 'gear_pk_damage_rating': int_values.get('383', int_values.get(383, -1)), - 'gear_pk_damage_resist_rating': int_values.get('384', int_values.get(384, -1)), - }, - 'requirements': { - 'wield_level': item_data.get('WieldLevel', -1), - 'skill_level': item_data.get('SkillLevel', -1), - 'lore_requirement': item_data.get('LoreRequirement', -1), - 'equip_skill': item_data.get('EquipSkill'), - }, - 'enhancements': { - 'material': None, # Will be set below with proper logic - 'imbue': item_data.get('Imbue'), - 'tinks': item_data.get('Tinks', -1), - 'workmanship': item_data.get('Workmanship', -1.0), - 'item_set': None, # Will be set below with translation - - # Advanced tinkering - 'num_times_tinkered': int_values.get('171', int_values.get(171, -1)), - 'free_tinkers_bitfield': int_values.get('264', int_values.get(264, -1)), - 'num_items_in_material': int_values.get('170', int_values.get(170, -1)), - - # Additional imbue effects - 'imbue_attempts': int_values.get('205', int_values.get(205, -1)), - 'imbue_successes': int_values.get('206', int_values.get(206, -1)), - 'imbued_effect2': int_values.get('303', int_values.get(303, -1)), - 'imbued_effect3': int_values.get('304', int_values.get(304, -1)), - 'imbued_effect4': int_values.get('305', int_values.get(305, -1)), - 'imbued_effect5': int_values.get('306', int_values.get(306, -1)), - 'imbue_stacking_bits': int_values.get('311', int_values.get(311, -1)), - - # Set information - 'equipment_set_extra': int_values.get('321', int_values.get(321, -1)), - - # Special properties - 'aetheria_bitfield': int_values.get('322', int_values.get(322, -1)), - 'heritage_specific_armor': int_values.get('324', int_values.get(324, -1)), - - # Cooldowns - 'shared_cooldown': int_values.get('280', int_values.get(280, -1)), - }, - 'ratings': { - 'damage_rating': int_values.get('307', int_values.get(307, -1)), # DamageRating - 'crit_rating': int_values.get('313', int_values.get(313, -1)), # CritRating - 'crit_damage_rating': int_values.get('314', int_values.get(314, -1)), # CritDamageRating - 'heal_boost_rating': int_values.get('323', int_values.get(323, -1)), # HealingBoostRating - - # Missing critical ratings - 'damage_resist_rating': int_values.get('308', int_values.get(308, -1)), # DamageResistRating - 'crit_resist_rating': int_values.get('315', int_values.get(315, -1)), # CritResistRating - 'crit_damage_resist_rating': int_values.get('316', int_values.get(316, -1)), # CritDamageResistRating - 'healing_resist_rating': int_values.get('317', int_values.get(317, -1)), # HealingResistRating - 'nether_resist_rating': int_values.get('331', int_values.get(331, -1)), # NetherResistRating - 'vitality_rating': int_values.get('341', int_values.get(341, -1)), # VitalityRating - 'healing_rating': int_values.get('342', int_values.get(342, -1)), # LumAugHealingRating - 'dot_resist_rating': int_values.get('350', int_values.get(350, -1)), # DotResistRating - 'life_resist_rating': int_values.get('351', int_values.get(351, -1)), # LifeResistRating - - # Specialized ratings - 'sneak_attack_rating': int_values.get('356', int_values.get(356, -1)), # SneakAttackRating - 'recklessness_rating': int_values.get('357', int_values.get(357, -1)), # RecklessnessRating - 'deception_rating': int_values.get('358', int_values.get(358, -1)), # DeceptionRating - - # PvP ratings - 'pk_damage_rating': int_values.get('381', int_values.get(381, -1)), # PKDamageRating - 'pk_damage_resist_rating': int_values.get('382', int_values.get(382, -1)), # PKDamageResistRating - 'gear_pk_damage_rating': int_values.get('383', int_values.get(383, -1)), # GearPKDamageRating - 'gear_pk_damage_resist_rating': int_values.get('384', int_values.get(384, -1)), # GearPKDamageResistRating - - # Additional ratings - 'weakness_rating': int_values.get('329', int_values.get(329, -1)), - 'nether_over_time': int_values.get('330', int_values.get(330, -1)), - - # Gear totals - 'gear_damage': int_values.get('370', int_values.get(370, -1)), - 'gear_damage_resist': int_values.get('371', int_values.get(371, -1)), - 'gear_crit': int_values.get('372', int_values.get(372, -1)), - 'gear_crit_resist': int_values.get('373', int_values.get(373, -1)), - 'gear_crit_damage': int_values.get('374', int_values.get(374, -1)), - 'gear_crit_damage_resist': int_values.get('375', int_values.get(375, -1)), - 'gear_healing_boost': int_values.get('376', int_values.get(376, -1)), - 'gear_max_health': int_values.get('379', int_values.get(379, -1)), - 'gear_nether_resist': int_values.get('377', int_values.get(377, -1)), - 'gear_life_resist': int_values.get('378', int_values.get(378, -1)), - 'gear_overpower': int_values.get('388', int_values.get(388, -1)), - 'gear_overpower_resist': int_values.get('389', int_values.get(389, -1)), - } - } - - # Handle material field properly - check if already translated or needs translation - material_field = item_data.get('Material') - if material_field and isinstance(material_field, str): - # Material is already a translated string (like "Gold", "Iron", "Brass") - properties['enhancements']['material'] = material_field - else: - # Material needs translation from IntValues[131] - material_id = int_values.get('131', int_values.get(131)) - if material_id: - material_name = translate_material_type(material_id) - # Only store if translation succeeded (not "Unknown_Material_*") - if not material_name.startswith('Unknown_Material_'): - properties['enhancements']['material'] = material_name - - # Translate item_set ID to name for database storage - item_set_id = int_values.get('265', int_values.get(265)) - if item_set_id: - dictionaries = ENUM_MAPPINGS.get('dictionaries', {}) - attribute_set_info = dictionaries.get('AttributeSetInfo', {}).get('values', {}) - set_name = attribute_set_info.get(str(item_set_id)) - if set_name: - properties['enhancements']['item_set'] = set_name - else: - # Fallback to just store the ID as string - properties['enhancements']['item_set'] = str(item_set_id) - - # Get comprehensive translations - translations = get_comprehensive_translations(item_data) - if translations: - properties['translations'] = translations - - # Translate raw enum values if available - int_values = item_data.get('IntValues', {}) - if int_values: - translated_ints = translate_int_values(int_values) - properties['translated_ints'] = translated_ints - - # Extract spell information - spells = item_data.get('Spells', []) - active_spells = item_data.get('ActiveSpells', []) - - # Translate spell IDs to spell data - translated_spells = [] - for spell_id in spells: - translated_spells.append(translate_spell(spell_id)) - - translated_active_spells = [] - for spell_id in active_spells: - translated_active_spells.append(translate_spell(spell_id)) - - # Get spell-related properties from IntValues - int_values = item_data.get('IntValues', {}) - spell_info = { - 'spell_ids': spells, - 'active_spell_ids': active_spells, - 'spell_count': len(spells), - 'active_spell_count': len(active_spells), - 'spells': translated_spells, - 'active_spells': translated_active_spells - } - - # Extract spell-related IntValues - for key_str, value in int_values.items(): - key_int = int(key_str) if key_str.isdigit() else None - if key_int: - # Check for spell-related properties - if key_int == 94: # TargetType/SpellDID - spell_info['spell_target_type'] = value - elif key_int == 106: # ItemSpellcraft - spell_info['item_spellcraft'] = value - elif key_int in [218103816, 218103838, 218103848]: # Spell decals - spell_info[f'spell_decal_{key_int}'] = value - - properties['spells'] = spell_info - - # Add weapon-specific information - damage_info = get_damage_range_and_type(item_data) - if damage_info: - properties['weapon_damage'] = damage_info - - speed_info = get_weapon_speed(item_data) - if speed_info: - properties['weapon_speed'] = speed_info - - mana_info = get_mana_and_spellcraft(item_data) - if mana_info: - properties['mana_info'] = mana_info - - return properties - -# API endpoints -@app.post("/process-inventory", - response_model=ProcessingStats, - summary="Process Raw Inventory Data", - description=""" - **Process and normalize raw inventory data from game plugins.** - - This endpoint receives raw inventory JSON data from game plugins and processes it - into normalized database tables with comprehensive enum translation and validation. - - ### Processing Steps: - 1. **Data Validation**: Validate incoming JSON structure and required fields - 2. **Enum Translation**: Convert game IDs to human-readable names using comprehensive enum database - 3. **Normalization**: Split item data into related tables (combat stats, spells, enhancements, etc.) - 4. **Error Handling**: Track and report any processing errors with detailed error messages - 5. **Statistics**: Return comprehensive processing statistics - - ### Database Schema: - - **items**: Core item properties (name, icon, value, etc.) - - **item_combat_stats**: Armor level, damage bonuses, attack ratings - - **item_enhancements**: Material, workmanship, item sets, tinkering - - **item_spells**: Spell names and categories - - **item_requirements**: Level and skill requirements - - **item_ratings**: All rating values (crit damage, damage resist, etc.) - - **item_raw_data**: Original JSON for complex queries - - ### Error Handling: - Returns detailed error information for items that fail to process, - including SQL type errors, missing fields, and validation failures. - """, - tags=["Data Processing"]) -async def process_inventory(inventory: InventoryItem): - """Process raw inventory data and store in normalized database format.""" - - processed_count = 0 - error_count = 0 - processing_errors = [] - - async with database.transaction(): - # First, delete all existing items for this character from all related tables - # Get item IDs to delete - item_ids_query = "SELECT id FROM items WHERE character_name = :character_name" - item_ids = await database.fetch_all(item_ids_query, {"character_name": inventory.character_name}) - - if item_ids: - id_list = [str(row['id']) for row in item_ids] - id_placeholder = ','.join(id_list) - - # Delete from all related tables first - await database.execute(f"DELETE FROM item_raw_data WHERE item_id IN ({id_placeholder})") - await database.execute(f"DELETE FROM item_combat_stats WHERE item_id IN ({id_placeholder})") - await database.execute(f"DELETE FROM item_requirements WHERE item_id IN ({id_placeholder})") - await database.execute(f"DELETE FROM item_enhancements WHERE item_id IN ({id_placeholder})") - await database.execute(f"DELETE FROM item_ratings WHERE item_id IN ({id_placeholder})") - await database.execute(f"DELETE FROM item_spells WHERE item_id IN ({id_placeholder})") - - # Finally delete from main items table - await database.execute( - "DELETE FROM items WHERE character_name = :character_name", - {"character_name": inventory.character_name} - ) - - # Then insert the new complete inventory - for item_data in inventory.items: - try: - # Extract properties - properties = extract_item_properties(item_data) - - # Create core item record - item_id = item_data.get('Id') - if item_id is None: - logger.warning(f"Skipping item without ID: {item_data.get('Name', 'Unknown')}") - error_count += 1 - continue - - # Insert or update core item (handle timezone-aware timestamps) - timestamp = inventory.timestamp - if timestamp.tzinfo is not None: - timestamp = timestamp.replace(tzinfo=None) - - # Simple INSERT since we cleared the table first - basic = properties['basic'] - - # Debug logging for problematic items - if item_id in [-2133380247, -2144880287, -2136150336]: - logger.info(f"Debug item {item_id}: basic={basic}") - logger.info(f"Debug item {item_id}: name='{basic['name']}' type={type(basic['name'])}") - logger.info(f"Debug item {item_id}: current_wielded_location={basic['current_wielded_location']} type={type(basic['current_wielded_location'])}") - logger.info(f"Debug item {item_id}: enhancements={properties['enhancements']}") - - item_stmt = sa.insert(Item).values( - character_name=inventory.character_name, - item_id=item_id, - timestamp=timestamp, - name=basic['name'], - icon=basic['icon'], - object_class=basic['object_class'], - value=basic['value'], - burden=basic['burden'], - has_id_data=basic['has_id_data'], - last_id_time=item_data.get('LastIdTime', 0), - - # Equipment status - current_wielded_location=basic['current_wielded_location'], - - # Item state - bonded=basic['bonded'], - attuned=basic['attuned'], - unique=basic['unique'], - - # Stack/Container properties - stack_size=basic['stack_size'], - max_stack_size=basic['max_stack_size'], - items_capacity=basic['items_capacity'] if basic['items_capacity'] != -1 else None, - containers_capacity=basic['containers_capacity'] if basic['containers_capacity'] != -1 else None, - - # Durability - structure=basic['structure'] if basic['structure'] != -1 else None, - max_structure=basic['max_structure'] if basic['max_structure'] != -1 else None, - - # Special item flags - rare_id=basic['rare_id'] if basic['rare_id'] != -1 else None, - lifespan=basic['lifespan'] if basic['lifespan'] != -1 else None, - remaining_lifespan=basic['remaining_lifespan'] if basic['remaining_lifespan'] != -1 else None, - ).returning(Item.id) - - result = await database.fetch_one(item_stmt) - db_item_id = result['id'] - - # Store combat stats if applicable - combat = properties['combat'] - if any(v != -1 and v != -1.0 for v in combat.values()): - combat_stmt = sa.dialects.postgresql.insert(ItemCombatStats).values( - item_id=db_item_id, - **{k: v if v != -1 and v != -1.0 else None for k, v in combat.items()} - ).on_conflict_do_update( - index_elements=['item_id'], - set_=dict(**{k: v if v != -1 and v != -1.0 else None for k, v in combat.items()}) - ) - await database.execute(combat_stmt) - - # Store requirements if applicable - requirements = properties['requirements'] - if any(v not in [-1, None, ''] for v in requirements.values()): - req_stmt = sa.dialects.postgresql.insert(ItemRequirements).values( - item_id=db_item_id, - **{k: v if v not in [-1, None, ''] else None for k, v in requirements.items()} - ).on_conflict_do_update( - index_elements=['item_id'], - set_=dict(**{k: v if v not in [-1, None, ''] else None for k, v in requirements.items()}) - ) - await database.execute(req_stmt) - - # Store enhancements - always create record to capture item_set data - enhancements = properties['enhancements'] - enh_stmt = sa.dialects.postgresql.insert(ItemEnhancements).values( - item_id=db_item_id, - **{k: v if v not in [-1, -1.0, None, ''] else None for k, v in enhancements.items()} - ).on_conflict_do_update( - index_elements=['item_id'], - set_=dict(**{k: v if v not in [-1, -1.0, None, ''] else None for k, v in enhancements.items()}) - ) - await database.execute(enh_stmt) - - # Store ratings if applicable - ratings = properties['ratings'] - if any(v not in [-1, -1.0, None] for v in ratings.values()): - rat_stmt = sa.dialects.postgresql.insert(ItemRatings).values( - item_id=db_item_id, - **{k: v if v not in [-1, -1.0, None] else None for k, v in ratings.items()} - ).on_conflict_do_update( - index_elements=['item_id'], - set_=dict(**{k: v if v not in [-1, -1.0, None] else None for k, v in ratings.items()}) - ) - await database.execute(rat_stmt) - - # Store spell data if applicable - spells = item_data.get('Spells', []) - active_spells = item_data.get('ActiveSpells', []) - all_spells = set(spells + active_spells) - - if all_spells: - # First delete existing spells for this item - await database.execute( - "DELETE FROM item_spells WHERE item_id = :item_id", - {"item_id": db_item_id} - ) - - # Insert all spells for this item - for spell_id in all_spells: - is_active = spell_id in active_spells - spell_stmt = sa.dialects.postgresql.insert(ItemSpells).values( - item_id=db_item_id, - spell_id=spell_id, - is_active=is_active - ).on_conflict_do_nothing() - await database.execute(spell_stmt) - - # Store raw data for completeness - raw_stmt = sa.dialects.postgresql.insert(ItemRawData).values( - item_id=db_item_id, - int_values=item_data.get('IntValues', {}), - double_values=item_data.get('DoubleValues', {}), - string_values=item_data.get('StringValues', {}), - bool_values=item_data.get('BoolValues', {}), - original_json=item_data - ).on_conflict_do_update( - index_elements=['item_id'], - set_=dict( - int_values=item_data.get('IntValues', {}), - double_values=item_data.get('DoubleValues', {}), - string_values=item_data.get('StringValues', {}), - bool_values=item_data.get('BoolValues', {}), - original_json=item_data - ) - ) - await database.execute(raw_stmt) - - processed_count += 1 - - except Exception as e: - error_msg = f"Error processing item {item_data.get('Id', 'unknown')}: {e}" - logger.error(error_msg) - processing_errors.append(error_msg) - error_count += 1 - - logger.info(f"Inventory processing complete for {inventory.character_name}: {processed_count} processed, {error_count} errors, {len(inventory.items)} total items received") - - return ProcessingStats( - processed_count=processed_count, - error_count=error_count, - character_name=inventory.character_name, - timestamp=inventory.timestamp, - errors=processing_errors if processing_errors else None - ) - -@app.get("/inventory/{character_name}", - summary="Get Character Inventory", - description="Retrieve processed inventory data for a specific character with normalized item properties.", - tags=["Character Data"]) -async def get_character_inventory( - character_name: str, - limit: int = Query(1000, le=5000), - offset: int = Query(0, ge=0) -): - """Get processed inventory for a character with structured data and comprehensive translations.""" - - query = """ - SELECT - i.id, i.name, i.icon, i.object_class, i.value, i.burden, - i.has_id_data, i.timestamp, - cs.max_damage, cs.armor_level, cs.damage_bonus, cs.attack_bonus, - r.wield_level, r.skill_level, r.equip_skill, r.lore_requirement, - e.material, e.imbue, e.item_set, e.tinks, e.workmanship, - rt.damage_rating, rt.crit_rating, rt.heal_boost_rating, - rd.int_values, rd.double_values, rd.string_values, rd.bool_values, rd.original_json - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_requirements r ON i.id = r.item_id - LEFT JOIN item_enhancements e ON i.id = e.item_id - LEFT JOIN item_ratings rt ON i.id = rt.item_id - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - WHERE i.character_name = :character_name - ORDER BY i.name - LIMIT :limit OFFSET :offset - """ - - items = await database.fetch_all(query, { - "character_name": character_name, - "limit": limit, - "offset": offset - }) - - if not items: - raise HTTPException(status_code=404, detail=f"No inventory found for {character_name}") - - # Convert to structured format with enhanced translations - processed_items = [] - for item in items: - processed_item = dict(item) - - # Get comprehensive translations from original_json - if processed_item.get('original_json'): - original_json = processed_item['original_json'] - # Handle case where original_json might be stored as string - if isinstance(original_json, str): - try: - original_json = json.loads(original_json) - except (json.JSONDecodeError, TypeError): - original_json = {} - - if original_json: - # Extract properties and get translations - properties = extract_item_properties(original_json) - - # Add translated properties to the item - processed_item['translated_properties'] = properties - - # Add material name - use material directly if it's already a string - if processed_item.get('material'): - if isinstance(processed_item['material'], str): - processed_item['material_name'] = processed_item['material'] - else: - processed_item['material_name'] = translate_material_type(processed_item['material']) - - # Add object class translation - if processed_item.get('object_class'): - processed_item['object_class_name'] = translate_object_class(processed_item['object_class'], original_json) - - # Add skill translation - if processed_item.get('equip_skill'): - processed_item['equip_skill_name'] = translate_skill(processed_item['equip_skill']) - - # Flatten the structure - move translated properties to top level - if 'translated_properties' in processed_item: - translated_props = processed_item.pop('translated_properties') - - # Move spells to top level - if 'spells' in translated_props: - processed_item['spells'] = translated_props['spells'] - - # Move translated_ints to top level for enhanced tooltips - if 'translated_ints' in translated_props: - processed_item['enhanced_properties'] = translated_props['translated_ints'] - - # Add weapon damage information - if 'weapon_damage' in translated_props: - weapon_damage = translated_props['weapon_damage'] - if weapon_damage.get('damage_range'): - processed_item['damage_range'] = weapon_damage['damage_range'] - if weapon_damage.get('damage_type'): - processed_item['damage_type'] = weapon_damage['damage_type'] - if weapon_damage.get('min_damage'): - processed_item['min_damage'] = weapon_damage['min_damage'] - - # Add weapon speed information - if 'weapon_speed' in translated_props: - speed_info = translated_props['weapon_speed'] - if speed_info.get('speed_text'): - processed_item['speed_text'] = speed_info['speed_text'] - if speed_info.get('speed_value'): - processed_item['speed_value'] = speed_info['speed_value'] - - # Add mana and spellcraft information - if 'mana_info' in translated_props: - mana_info = translated_props['mana_info'] - if mana_info.get('mana_display'): - processed_item['mana_display'] = mana_info['mana_display'] - if mana_info.get('spellcraft'): - processed_item['spellcraft'] = mana_info['spellcraft'] - if mana_info.get('current_mana'): - processed_item['current_mana'] = mana_info['current_mana'] - if mana_info.get('max_mana'): - processed_item['max_mana'] = mana_info['max_mana'] - - # Add icon overlay/underlay information from translated properties - if 'translated_ints' in translated_props: - translated_ints = translated_props['translated_ints'] - - # Icon overlay - check for the proper property name - if 'IconOverlay_Decal_DID' in translated_ints and translated_ints['IconOverlay_Decal_DID'] > 0: - processed_item['icon_overlay_id'] = translated_ints['IconOverlay_Decal_DID'] - - # Icon underlay - check for the proper property name - if 'IconUnderlay_Decal_DID' in translated_ints and translated_ints['IconUnderlay_Decal_DID'] > 0: - processed_item['icon_underlay_id'] = translated_ints['IconUnderlay_Decal_DID'] - - # Add comprehensive combat stats - if 'combat' in translated_props: - combat_stats = translated_props['combat'] - if combat_stats.get('max_damage', -1) != -1: - processed_item['max_damage'] = combat_stats['max_damage'] - if combat_stats.get('armor_level', -1) != -1: - processed_item['armor_level'] = combat_stats['armor_level'] - if combat_stats.get('damage_bonus', -1.0) != -1.0: - processed_item['damage_bonus'] = combat_stats['damage_bonus'] - if combat_stats.get('attack_bonus', -1.0) != -1.0: - processed_item['attack_bonus'] = combat_stats['attack_bonus'] - # Add missing combat bonuses - if combat_stats.get('melee_defense_bonus', -1.0) != -1.0: - processed_item['melee_defense_bonus'] = combat_stats['melee_defense_bonus'] - if combat_stats.get('magic_defense_bonus', -1.0) != -1.0: - processed_item['magic_defense_bonus'] = combat_stats['magic_defense_bonus'] - if combat_stats.get('missile_defense_bonus', -1.0) != -1.0: - processed_item['missile_defense_bonus'] = combat_stats['missile_defense_bonus'] - if combat_stats.get('elemental_damage_vs_monsters', -1.0) != -1.0: - processed_item['elemental_damage_vs_monsters'] = combat_stats['elemental_damage_vs_monsters'] - if combat_stats.get('mana_conversion_bonus', -1.0) != -1.0: - processed_item['mana_conversion_bonus'] = combat_stats['mana_conversion_bonus'] - - # Add comprehensive requirements - if 'requirements' in translated_props: - requirements = translated_props['requirements'] - if requirements.get('wield_level', -1) != -1: - processed_item['wield_level'] = requirements['wield_level'] - if requirements.get('skill_level', -1) != -1: - processed_item['skill_level'] = requirements['skill_level'] - if requirements.get('lore_requirement', -1) != -1: - processed_item['lore_requirement'] = requirements['lore_requirement'] - if requirements.get('equip_skill'): - processed_item['equip_skill'] = requirements['equip_skill'] - - # Add comprehensive enhancements - if 'enhancements' in translated_props: - enhancements = translated_props['enhancements'] - if enhancements.get('material'): - processed_item['material'] = enhancements['material'] - - # Add material information from translations - if 'translations' in translated_props: - trans = translated_props['translations'] - if trans.get('material_name'): - processed_item['material_name'] = trans['material_name'] - if trans.get('material_id'): - processed_item['material_id'] = trans['material_id'] - if trans.get('item_type_name'): - processed_item['item_type_name'] = trans['item_type_name'] - - # Continue with other enhancements - if 'enhancements' in translated_props: - enhancements = translated_props['enhancements'] - if enhancements.get('imbue'): - processed_item['imbue'] = enhancements['imbue'] - if enhancements.get('tinks', -1) != -1: - processed_item['tinks'] = enhancements['tinks'] - if enhancements.get('workmanship', -1.0) != -1.0: - processed_item['workmanship'] = enhancements['workmanship'] - processed_item['workmanship_text'] = translate_workmanship(int(enhancements['workmanship'])) - if enhancements.get('item_set'): - processed_item['item_set'] = enhancements['item_set'] - # Add equipment set name translation - set_id = str(enhancements['item_set']).strip() - dictionaries = ENUM_MAPPINGS.get('dictionaries', {}) - attribute_set_info = dictionaries.get('AttributeSetInfo', {}).get('values', {}) - if set_id in attribute_set_info: - processed_item['item_set_name'] = attribute_set_info[set_id] - else: - processed_item['item_set_name'] = f"Set {set_id}" - - # Add comprehensive ratings (use gear totals as fallback for armor/clothing) - if 'ratings' in translated_props: - ratings = translated_props['ratings'] - - # Damage rating: use individual rating or gear total - if ratings.get('damage_rating', -1) != -1: - processed_item['damage_rating'] = ratings['damage_rating'] - elif ratings.get('gear_damage', -1) > 0: - processed_item['damage_rating'] = ratings['gear_damage'] - - # Crit rating - if ratings.get('crit_rating', -1) != -1: - processed_item['crit_rating'] = ratings['crit_rating'] - elif ratings.get('gear_crit', -1) > 0: - processed_item['crit_rating'] = ratings['gear_crit'] - - # Crit damage rating: use individual rating or gear total - if ratings.get('crit_damage_rating', -1) != -1: - processed_item['crit_damage_rating'] = ratings['crit_damage_rating'] - elif ratings.get('gear_crit_damage', -1) > 0: - processed_item['crit_damage_rating'] = ratings['gear_crit_damage'] - - # Heal boost rating: use individual rating or gear total - if ratings.get('heal_boost_rating', -1) != -1: - processed_item['heal_boost_rating'] = ratings['heal_boost_rating'] - elif ratings.get('gear_healing_boost', -1) > 0: - processed_item['heal_boost_rating'] = ratings['gear_healing_boost'] - - # Apply material prefix to item name if material exists - if processed_item.get('material_name') and processed_item.get('name'): - original_name = processed_item['name'] - material_name = processed_item['material_name'] - - # Don't add prefix if name already starts with the material - if not original_name.lower().startswith(material_name.lower()): - processed_item['name'] = f"{material_name} {original_name}" - processed_item['original_name'] = original_name # Preserve original for reference - - # Remove raw data from response (keep clean output) - processed_item.pop('int_values', None) - processed_item.pop('double_values', None) - processed_item.pop('string_values', None) - processed_item.pop('bool_values', None) - processed_item.pop('original_json', None) - - # Remove null values for cleaner response - processed_item = {k: v for k, v in processed_item.items() if v is not None} - processed_items.append(processed_item) - - return { - "character_name": character_name, - "item_count": len(processed_items), - "items": processed_items - } - -@app.get("/health", - response_model=HealthResponse, - summary="Service Health Check", - description="Returns service health status, database connectivity, and version information.", - tags=["System"]) -async def health_check(): - """Health check endpoint with comprehensive status information.""" - try: - # Test database connectivity - await database.fetch_one("SELECT 1") - db_connected = True - except: - db_connected = False - - return HealthResponse( - status="healthy" if db_connected else "degraded", - timestamp=datetime.now(), - database_connected=db_connected, - version="1.0.0" - ) - -@app.get("/sets/list", - response_model=SetListResponse, - summary="List Equipment Sets", - description=""" - **Get all unique equipment set names with item counts.** - - Returns a list of all equipment sets found in the database along with - the number of items available for each set. Useful for understanding - available equipment options and set coverage. - - ### Common Set IDs: - - **13**: Soldier's (combat-focused armor) - - **14**: Adept's (magical armor) - - **42**: Hearty (health/vitality focused) - - **21**: Wise (mana-focused) - - **40**: Heroic Protector - - **41**: Heroic Destroyer - """, - tags=["Equipment Sets"]) -async def list_equipment_sets(): - """Get all unique equipment set names with item counts from the database.""" - try: - # Get equipment set IDs (the numeric collection sets) - query = """ - SELECT DISTINCT enh.item_set, COUNT(*) as item_count - FROM item_enhancements enh - WHERE enh.item_set IS NOT NULL AND enh.item_set != '' - GROUP BY enh.item_set - ORDER BY item_count DESC, enh.item_set - """ - rows = await database.fetch_all(query) - - # Get AttributeSetInfo mapping from enum database - attribute_set_info = ENUM_MAPPINGS.get('AttributeSetInfo', {}).get('values', {}) - - # Map equipment sets to proper names - equipment_sets = [] - for row in rows: - set_id = row["item_set"] - item_count = row["item_count"] - - # Get proper name from AttributeSetInfo mapping - set_name = attribute_set_info.get(set_id, f"Unknown Set {set_id}") - - equipment_sets.append({ - "id": set_id, - "name": set_name, - "item_count": item_count - }) - - return SetListResponse( - sets=equipment_sets - ) - - except Exception as e: - logger.error(f"Failed to list equipment sets: {e}") - raise HTTPException(status_code=500, detail="Failed to list equipment sets") - - -@app.get("/enum-info", - summary="Get Enum Information", - description="Get comprehensive information about available enum translations and database statistics.", - tags=["System"]) -async def get_enum_info(): - """Get information about available enum translations.""" - if ENUM_MAPPINGS is None: - return {"error": "Enum database not loaded"} - - return { - "available_enums": list(ENUM_MAPPINGS.keys()), - "int_values_count": len(ENUM_MAPPINGS.get('int_values', {})), - "materials_count": len(ENUM_MAPPINGS.get('materials', {})), - "item_types_count": len(ENUM_MAPPINGS.get('item_types', {})), - "skills_count": len(ENUM_MAPPINGS.get('skills', {})), - "spell_categories_count": len(ENUM_MAPPINGS.get('spell_categories', {})), - "spells_count": len(ENUM_MAPPINGS.get('spells', {})), - "object_classes_count": len(ENUM_MAPPINGS.get('object_classes', {})), - "coverage_masks_count": len(ENUM_MAPPINGS.get('coverage_masks', {})), - "database_version": ENUM_MAPPINGS.get('full_database', {}).get('metadata', {}).get('version', 'unknown') - } - -@app.get("/translate/{enum_type}/{value}", - summary="Translate Enum Value", - description="Translate a specific enum value to human-readable name using the comprehensive enum database.", - tags=["System"]) -async def translate_enum_value(enum_type: str, value: int): - """Translate a specific enum value to human-readable name.""" - - if enum_type == "material": - return {"translation": translate_material_type(value)} - elif enum_type == "item_type": - return {"translation": translate_item_type(value)} - elif enum_type == "skill": - return {"translation": translate_skill(value)} - elif enum_type == "spell_category": - return {"translation": translate_spell_category(value)} - elif enum_type == "spell": - return {"translation": translate_spell(value)} - elif enum_type == "int_value": - int_enums = ENUM_MAPPINGS.get('int_values', {}) - return {"translation": int_enums.get(value, f"unknown_{value}")} - else: - raise HTTPException(status_code=400, detail=f"Unknown enum type: {enum_type}") - -@app.get("/inventory/{character_name}/raw") -async def get_character_inventory_raw(character_name: str): - """Get raw inventory data including comprehensive translations.""" - - query = """ - SELECT - i.name, i.icon, i.object_class, i.value, i.burden, i.timestamp, - rd.int_values, rd.double_values, rd.string_values, rd.bool_values, - rd.original_json - FROM items i - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - WHERE i.character_name = :character_name - ORDER BY i.name - LIMIT 100 - """ - - items = await database.fetch_all(query, {"character_name": character_name}) - - if not items: - raise HTTPException(status_code=404, detail=f"No inventory found for {character_name}") - - # Process items with comprehensive translations - processed_items = [] - for item in items: - item_dict = dict(item) - - # Add comprehensive translations for raw data - if item_dict.get('original_json'): - original_json = item_dict['original_json'] - # Handle case where original_json might be stored as string - if isinstance(original_json, str): - try: - original_json = json.loads(original_json) - except (json.JSONDecodeError, TypeError): - logger.warning(f"Failed to parse original_json as JSON for item") - original_json = {} - - if original_json: - translations = get_comprehensive_translations(original_json) - item_dict['comprehensive_translations'] = translations - - processed_items.append(item_dict) - - return { - "character_name": character_name, - "item_count": len(processed_items), - "items": processed_items - } - - -# =================================================================== -# INVENTORY SEARCH API ENDPOINTS -# =================================================================== - -@app.get("/search/items", - response_model=ItemSearchResponse, - summary="Advanced Item Search", - description=""" - **Comprehensive item search with extensive filtering capabilities.** - - This endpoint provides powerful search functionality across all character inventories - with support for 40+ filter parameters including text search, equipment categories, - combat properties, spells, requirements, and more. - - ### Example Searches: - - **Basic Text Search**: `?text=Celdon` - Find all items with "Celdon" in name - - **Character Specific**: `?character=Megamula%20XXXIII` - Items from one character - - **Multi-Character**: `?characters=Char1,Char2,Char3` - Items from specific characters - - **Set-Based**: `?item_set=13&min_crit_damage_rating=2` - Soldier's set with CD2+ - - **Spell Search**: `?legendary_cantrips=Legendary%20Strength,Legendary%20Endurance` - - **Category Filter**: `?armor_only=true&min_armor=300` - High-level armor only - - **Equipment Status**: `?equipment_status=unequipped` - Only inventory items - - ### Advanced Filtering: - - **Combat Properties**: Filter by damage, armor, attack bonuses, ratings - - **Spell Effects**: Search for specific cantrips, wards, or legendary effects - - **Item Categories**: Armor, jewelry, weapons, clothing with sub-categories - - **Enhancement Data**: Material types, workmanship, item sets, tinkering - - **Requirements**: Level, skill requirements for wielding - - **Item State**: Bonded, attuned, condition, rarity filters - - ### Response Format: - Returns paginated results with item details including translated properties, - combat stats, spell information, and character ownership data. - """, - tags=["Search"]) -async def search_items( - # Text search - text: str = Query(None, description="Search item names, descriptions, or properties", example="Celdon"), - character: str = Query(None, description="Limit search to specific character", example="Megamula XXXIII"), - characters: str = Query(None, description="Comma-separated list of character names", example="Char1,Char2,Char3"), - include_all_characters: bool = Query(False, description="Search across all characters"), - - # Equipment filtering - equipment_status: str = Query(None, description="Filter by equipment status: 'equipped', 'unequipped', or omit for all", example="unequipped"), - equipment_slot: int = Query(None, description="Equipment slot mask (1=head, 2=neck, 4=chest, 8=abdomen, 16=upper_arms, 32=lower_arms, 64=hands, 128=upper_legs, 256=lower_legs, 512=feet, 1024=chest2, 2048=bracelet, 4096=ring)", example=4), - slot_names: str = Query(None, description="Comma-separated list of slot names", example="Head,Chest,Ring"), - - # Item category filtering - armor_only: bool = Query(False, description="Show only armor items"), - jewelry_only: bool = Query(False, description="Show only jewelry items"), - weapon_only: bool = Query(False, description="Show only weapon items"), - clothing_only: bool = Query(False, description="Show only clothing items (shirts/pants)"), - shirt_only: bool = Query(False, description="Show only shirt underclothes"), - pants_only: bool = Query(False, description="Show only pants underclothes"), - underwear_only: bool = Query(False, description="Show all underclothes (shirts and pants)"), - - # Spell filtering - has_spell: str = Query(None, description="Must have this specific spell (by name)", example="Legendary Strength"), - spell_contains: str = Query(None, description="Spell name contains this text", example="Legendary"), - legendary_cantrips: str = Query(None, description="Comma-separated list of legendary cantrip names", example="Legendary Strength,Legendary Endurance"), - - # Combat properties - min_damage: int = Query(None, description="Minimum damage"), - max_damage: int = Query(None, description="Maximum damage"), - min_armor: int = Query(None, description="Minimum armor level"), - max_armor: int = Query(None, description="Maximum armor level"), - min_attack_bonus: float = Query(None, description="Minimum attack bonus"), - min_crit_damage_rating: int = Query(None, description="Minimum critical damage rating (0-2)", example=2), - min_damage_rating: int = Query(None, description="Minimum damage rating (0-3)", example=3), - min_heal_boost_rating: int = Query(None, description="Minimum heal boost rating"), - min_vitality_rating: int = Query(None, description="Minimum vitality rating"), - min_damage_resist_rating: int = Query(None, description="Minimum damage resist rating"), - min_crit_resist_rating: int = Query(None, description="Minimum crit resist rating"), - min_crit_damage_resist_rating: int = Query(None, description="Minimum crit damage resist rating"), - min_healing_resist_rating: int = Query(None, description="Minimum healing resist rating"), - min_nether_resist_rating: int = Query(None, description="Minimum nether resist rating"), - min_healing_rating: int = Query(None, description="Minimum healing rating"), - min_dot_resist_rating: int = Query(None, description="Minimum DoT resist rating"), - min_life_resist_rating: int = Query(None, description="Minimum life resist rating"), - min_sneak_attack_rating: int = Query(None, description="Minimum sneak attack rating"), - min_recklessness_rating: int = Query(None, description="Minimum recklessness rating"), - min_deception_rating: int = Query(None, description="Minimum deception rating"), - min_pk_damage_rating: int = Query(None, description="Minimum PvP damage rating"), - min_pk_damage_resist_rating: int = Query(None, description="Minimum PvP damage resist rating"), - min_gear_pk_damage_rating: int = Query(None, description="Minimum gear PvP damage rating"), - min_gear_pk_damage_resist_rating: int = Query(None, description="Minimum gear PvP damage resist rating"), - - # Requirements - max_level: int = Query(None, description="Maximum wield level requirement"), - min_level: int = Query(None, description="Minimum wield level requirement"), - - # Enhancements - material: str = Query(None, description="Material type (partial match)", example="Gold"), - min_workmanship: float = Query(None, description="Minimum workmanship", example=9.5), - has_imbue: bool = Query(None, description="Has imbue effects"), - item_set: str = Query(None, description="Item set ID (single set)", example="13"), - item_sets: str = Query(None, description="Comma-separated list of item set IDs", example="13,14,42"), - min_tinks: int = Query(None, description="Minimum tinker count", example=3), - - # Item state - bonded: bool = Query(None, description="Bonded status"), - attuned: bool = Query(None, description="Attuned status"), - unique: bool = Query(None, description="Unique item status"), - is_rare: bool = Query(None, description="Rare item status"), - min_condition: int = Query(None, description="Minimum condition percentage"), - - # Value/utility - min_value: int = Query(None, description="Minimum item value"), - max_value: int = Query(None, description="Maximum item value"), - max_burden: int = Query(None, description="Maximum burden"), - - # Sorting and pagination - sort_by: str = Query("name", description="Sort field: name, value, damage, armor, workmanship, damage_rating, crit_damage_rating, level"), - sort_dir: str = Query("asc", description="Sort direction: asc or desc"), - page: int = Query(1, ge=1, description="Page number"), - limit: int = Query(200, ge=1, le=10000, description="Items per page") -): - """ - Search items across characters with comprehensive filtering options. - """ - try: - # Initialize underwear filter type - underwear_filter_type = None - if shirt_only: - underwear_filter_type = "shirts" - elif pants_only: - underwear_filter_type = "pants" - elif underwear_only: - underwear_filter_type = "all_underwear" - - # Build base query with CTE for computed slot names - query_parts = [""" - WITH items_with_slots AS ( - SELECT DISTINCT - i.id as db_item_id, - i.character_name, - i.name, - i.icon, - i.object_class, - i.value, - i.burden, - i.current_wielded_location, - i.bonded, - i.attuned, - i.unique, - i.stack_size, - i.max_stack_size, - i.structure, - i.max_structure, - i.rare_id, - i.timestamp as last_updated, - COALESCE(cs.max_damage, -1) as max_damage, - COALESCE(cs.armor_level, -1) as armor_level, - COALESCE(cs.attack_bonus, -1.0) as attack_bonus, - GREATEST( - COALESCE((rd.int_values->>'314')::int, -1), - COALESCE((rd.int_values->>'374')::int, -1) - ) as crit_damage_rating, - GREATEST( - COALESCE((rd.int_values->>'307')::int, -1), - COALESCE((rd.int_values->>'370')::int, -1) - ) as damage_rating, - GREATEST( - COALESCE((rd.int_values->>'323')::int, -1), - COALESCE((rd.int_values->>'376')::int, -1) - ) as heal_boost_rating, - COALESCE((rd.int_values->>'379')::int, -1) as vitality_rating, - GREATEST( - COALESCE((rd.int_values->>'308')::int, -1), - COALESCE((rd.int_values->>'371')::int, -1) - ) as damage_resist_rating, - COALESCE((rd.int_values->>'315')::int, -1) as crit_resist_rating, - GREATEST( - COALESCE((rd.int_values->>'316')::int, -1), - COALESCE((rd.int_values->>'375')::int, -1) - ) as crit_damage_resist_rating, - COALESCE((rd.int_values->>'317')::int, -1) as healing_resist_rating, - COALESCE((rd.int_values->>'331')::int, -1) as nether_resist_rating, - COALESCE((rd.int_values->>'342')::int, -1) as healing_rating, - COALESCE((rd.int_values->>'350')::int, -1) as dot_resist_rating, - COALESCE((rd.int_values->>'351')::int, -1) as life_resist_rating, - COALESCE((rd.int_values->>'356')::int, -1) as sneak_attack_rating, - COALESCE((rd.int_values->>'357')::int, -1) as recklessness_rating, - COALESCE((rd.int_values->>'358')::int, -1) as deception_rating, - COALESCE((rd.int_values->>'381')::int, -1) as pk_damage_rating, - COALESCE((rd.int_values->>'382')::int, -1) as pk_damage_resist_rating, - COALESCE((rd.int_values->>'383')::int, -1) as gear_pk_damage_rating, - COALESCE((rd.int_values->>'384')::int, -1) as gear_pk_damage_resist_rating, - COALESCE(req.wield_level, -1) as wield_level, - COALESCE(enh.material, '') as material, - COALESCE(enh.workmanship, -1.0) as workmanship, - COALESCE(enh.imbue, '') as imbue, - COALESCE(enh.tinks, -1) as tinks, - COALESCE(enh.item_set, '') as item_set, - rd.original_json, - COALESCE((rd.int_values->>'218103821')::int, 0) as coverage_mask, - - -- Compute slot_name in SQL - CASE - -- ARMOR/CLOTHING: Use EquipableSlots_Decal from JSON - WHEN rd.original_json IS NOT NULL - AND rd.original_json->'IntValues'->>'218103822' IS NOT NULL - AND (rd.original_json->'IntValues'->>'218103822')::int > 0 - THEN - -- Translate equippable slots to readable names - CASE (rd.original_json->'IntValues'->>'218103822')::int - WHEN 1 THEN 'Head' - WHEN 2 THEN 'Neck' - WHEN 4 THEN 'Shirt' - WHEN 16 THEN 'Chest' - WHEN 32 THEN 'Hands' - WHEN 256 THEN 'Feet' - WHEN 512 THEN 'Chest' - WHEN 1024 THEN 'Abdomen' - WHEN 2048 THEN 'Upper Arms' - WHEN 4096 THEN 'Lower Arms' - WHEN 8192 THEN 'Upper Legs' - WHEN 16384 THEN 'Lower Legs' - WHEN 33554432 THEN 'Shield' - -- Multi-slot combinations - WHEN 15 THEN 'Chest, Abdomen, Upper Arms, Lower Arms' -- Robes - WHEN 30 THEN 'Shirt' -- Full shirts - WHEN 14336 THEN 'Chest, Abdomen, Upper Arms, Lower Arms' -- Hauberks - WHEN 25600 THEN 'Abdomen, Upper Legs, Lower Legs' -- Tassets - ELSE - -- For other combinations, decode bit flags - CONCAT_WS(', ', - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 1 = 1 THEN 'Head' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 512 = 512 THEN 'Chest' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 1024 = 1024 THEN 'Abdomen' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 2048 = 2048 THEN 'Upper Arms' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 4096 = 4096 THEN 'Lower Arms' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 32 = 32 THEN 'Hands' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 8192 = 8192 THEN 'Upper Legs' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 16384 = 16384 THEN 'Lower Legs' END, - CASE WHEN (rd.original_json->'IntValues'->>'218103822')::int & 256 = 256 THEN 'Feet' END - ) - END - - -- JEWELRY: Check wielded location first, then name patterns - WHEN i.object_class = 4 THEN - CASE - -- Use wielded location if equipped - WHEN i.current_wielded_location = 32768 THEN 'Neck' - WHEN i.current_wielded_location = 262144 THEN 'Left Ring' - WHEN i.current_wielded_location = 524288 THEN 'Right Ring' - WHEN i.current_wielded_location = 786432 THEN 'Left Ring, Right Ring' - WHEN i.current_wielded_location = 131072 THEN 'Left Wrist' - WHEN i.current_wielded_location = 1048576 THEN 'Right Wrist' - WHEN i.current_wielded_location = 1179648 THEN 'Left Wrist, Right Wrist' - -- Fallback to name patterns for unequipped - WHEN i.name ILIKE '%amulet%' OR i.name ILIKE '%necklace%' OR i.name ILIKE '%gorget%' THEN 'Neck' - WHEN i.name ILIKE '%ring%' AND i.name NOT ILIKE '%keyring%' AND i.name NOT ILIKE '%signet%' THEN 'Left Ring, Right Ring' - WHEN i.name ILIKE '%bracelet%' THEN 'Left Wrist, Right Wrist' - WHEN i.name ILIKE '%trinket%' THEN 'Trinket' - ELSE 'Jewelry' - END - - -- WEAPONS: Use object class - WHEN i.object_class = 6 THEN 'Melee Weapon' - WHEN i.object_class = 7 THEN 'Missile Weapon' - WHEN i.object_class = 8 THEN 'Held' - - -- Check wielded location for two-handed weapons - WHEN i.current_wielded_location = 67108864 THEN 'Two-Handed' - - -- DEFAULT - ELSE '-' - END as computed_slot_name - - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_requirements req ON i.id = req.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_ratings rt ON i.id = rt.item_id - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - ) - SELECT * FROM items_with_slots - """] - - # Apply underwear filtering by modifying the CTE query - if underwear_filter_type: - # Insert WHERE clause into the CTE before the closing parenthesis - cte_where_clause = None - if underwear_filter_type == "shirts": - # Shirts: ObjectClass 3 with UnderwearChest (8) but NOT pants patterns - # Exclude items that have both UnderwearUpperLegs (2) and UnderwearLowerLegs (4) which indicate pants - cte_where_clause = """WHERE i.object_class = 3 - AND ((rd.int_values->>'218103821')::int & 8) > 0 - AND NOT ((rd.int_values->>'218103821')::int & 6) = 6 - AND i.name NOT ILIKE '%robe%' - AND i.name NOT ILIKE '%cloak%' - AND i.name NOT ILIKE '%pallium%' - AND i.name NOT ILIKE '%armet%' - AND i.name NOT ILIKE '%pants%' - AND i.name NOT ILIKE '%breeches%'""" - elif underwear_filter_type == "pants": - # Pants: ObjectClass 3 with UnderwearUpperLegs (2) - covers both pants and breeches - # Include both full pants (2&4) and breeches (2 only) - cte_where_clause = """WHERE i.object_class = 3 - AND ((rd.int_values->>'218103821')::int & 2) = 2 - AND i.name NOT ILIKE '%robe%' - AND i.name NOT ILIKE '%cloak%' - AND i.name NOT ILIKE '%pallium%' - AND i.name NOT ILIKE '%armet%'""" - elif underwear_filter_type == "all_underwear": - # All underwear: ObjectClass 3 with any underwear bits (2,4,8,16) - cte_where_clause = """WHERE i.object_class = 3 - AND ((rd.int_values->>'218103821')::int & 30) > 0 - AND i.name NOT ILIKE '%robe%' - AND i.name NOT ILIKE '%cloak%' - AND i.name NOT ILIKE '%pallium%' - AND i.name NOT ILIKE '%armet%'""" - - if cte_where_clause: - # Insert the WHERE clause before the closing parenthesis of the CTE - query_parts[0] = query_parts[0].replace( - "LEFT JOIN item_raw_data rd ON i.id = rd.item_id\n )", - f"LEFT JOIN item_raw_data rd ON i.id = rd.item_id\n {cte_where_clause}\n )" - ) - - conditions = [] - params = {} - - # Character filtering - if character: - conditions.append("character_name = :character") - params["character"] = character - elif characters: - # Handle comma-separated list of characters - character_list = [char.strip() for char in characters.split(',') if char.strip()] - if character_list: - # Create parameterized IN clause - char_params = [] - for i, char_name in enumerate(character_list): - param_name = f"char_{i}" - char_params.append(f":{param_name}") - params[param_name] = char_name - conditions.append(f"character_name IN ({', '.join(char_params)})") - else: - return { - "error": "Empty characters list provided", - "items": [], - "total_count": 0 - } - elif not include_all_characters: - # Default to requiring character parameter if not searching all - return { - "error": "Must specify character, characters, or set include_all_characters=true", - "items": [], - "total_count": 0 - } - - # Text search (name with material support) - if text: - # Search both the concatenated material+name and base name - # This handles searches like "Silver Celdon Girth" or just "silver" for material - conditions.append("""( - CONCAT(COALESCE(material, ''), ' ', name) ILIKE :text OR - name ILIKE :text OR - COALESCE(material, '') ILIKE :text - )""") - params["text"] = f"%{text}%" - - # Item category filtering - if armor_only: - # Armor: ObjectClass 2 (Armor) with armor_level > 0 - conditions.append("(object_class = 2 AND COALESCE(armor_level, 0) > 0)") - elif jewelry_only: - # Jewelry: ObjectClass 4 (Jewelry) - rings, bracelets, necklaces, amulets - conditions.append("object_class = 4") - elif weapon_only: - # Weapons: ObjectClass 6 (MeleeWeapon), 7 (MissileWeapon), 8 (Caster) with max_damage > 0 - conditions.append("(object_class IN (6, 7, 8) AND COALESCE(max_damage, 0) > 0)") - elif clothing_only: - # Clothing: ObjectClass 3 (Clothing) - shirts and pants only, exclude cloaks and robes - # Focus on underclothes: shirts, pants, breeches, etc. - conditions.append("""(object_class = 3 AND - name NOT ILIKE '%cloak%' AND - name NOT ILIKE '%robe%' AND - name NOT ILIKE '%pallium%' AND - name NOT ILIKE '%armet%' AND - (name ILIKE '%shirt%' OR name ILIKE '%pants%' OR name ILIKE '%breeches%' OR name ILIKE '%baggy%' OR name ILIKE '%tunic%'))""") - # Underwear filtering is handled in the CTE modification above - - # Spell filtering - need to join with item_spells and use spell database - spell_join_added = False - if has_spell or spell_contains or legendary_cantrips: - query_parts[0] = query_parts[0].replace( - "LEFT JOIN item_ratings rt ON i.id = rt.item_id", - """LEFT JOIN item_ratings rt ON i.id = rt.item_id - LEFT JOIN item_spells sp ON i.id = sp.item_id""" - ) - spell_join_added = True - - spell_conditions = [] - - if has_spell: - # Look up spell ID by exact name match in ENUM_MAPPINGS - spell_id = None - spells = ENUM_MAPPINGS.get('spells', {}) - for sid, spell_data in spells.items(): - if isinstance(spell_data, dict) and spell_data.get('name', '').lower() == has_spell.lower(): - spell_id = sid - break - - if spell_id: - spell_conditions.append("sp.spell_id = :has_spell_id") - params["has_spell_id"] = spell_id - else: - # If spell not found by exact name, no results - conditions.append("1 = 0") - - if spell_contains: - # Find all spell IDs that contain the text - matching_spell_ids = [] - spells = ENUM_MAPPINGS.get('spells', {}) - for sid, spell_data in spells.items(): - if isinstance(spell_data, dict): - spell_name = spell_data.get('name', '').lower() - if spell_contains.lower() in spell_name: - matching_spell_ids.append(sid) - - if matching_spell_ids: - spell_conditions.append(f"sp.spell_id IN ({','.join(map(str, matching_spell_ids))})") - else: - # If no spells found containing the text, no results - conditions.append("1 = 0") - - if legendary_cantrips: - # Parse comma-separated list of cantrip names - cantrip_names = [name.strip() for name in legendary_cantrips.split(',')] - matching_spell_ids = [] - spells = ENUM_MAPPINGS.get('spells', {}) - - logger.info(f"Looking for cantrips: {cantrip_names}") - - for cantrip_name in cantrip_names: - found_match = False - for sid, spell_data in spells.items(): - if isinstance(spell_data, dict): - spell_name = spell_data.get('name', '').lower() - # Match cantrip name (flexible matching) - if cantrip_name.lower() in spell_name or spell_name in cantrip_name.lower(): - matching_spell_ids.append(sid) - found_match = True - logger.info(f"Found spell match: {spell_name} (ID: {sid}) for cantrip: {cantrip_name}") - - if not found_match: - logger.warning(f"No spell found matching cantrip: {cantrip_name}") - - if matching_spell_ids: - # Remove duplicates - matching_spell_ids = list(set(matching_spell_ids)) - - # CONSTRAINT SATISFACTION: Items must have ALL selected spells (AND logic) - # Use EXISTS subquery to ensure all required spells are present - num_required_spells = len(cantrip_names) # Number of different cantrips user selected - spell_conditions.append(f"""( - SELECT COUNT(DISTINCT sp2.spell_id) - FROM item_spells sp2 - WHERE sp2.item_id = db_item_id - AND sp2.spell_id IN ({','.join(map(str, matching_spell_ids))}) - ) >= {num_required_spells}""") - logger.info(f"Constraint satisfaction: Items must have ALL {num_required_spells} cantrips from IDs: {matching_spell_ids}") - else: - # If no matching cantrips found, this will return no results - logger.warning("No matching spells found for any cantrips - search will return empty results") - spell_conditions.append("1 = 0") # Use impossible condition - - # Add spell constraints (now using AND logic for constraint satisfaction) - if spell_conditions: - conditions.extend(spell_conditions) - - # Equipment status - if equipment_status == "equipped": - conditions.append("current_wielded_location > 0") - elif equipment_status == "unequipped": - conditions.append("current_wielded_location = 0") - - # Equipment slot - if equipment_slot is not None: - conditions.append("current_wielded_location = :equipment_slot") - params["equipment_slot"] = equipment_slot - - # Slot names filtering - use multiple approaches for better coverage - if slot_names: - slot_list = [slot.strip() for slot in slot_names.split(',') if slot.strip()] - if slot_list: - slot_conditions = [] - for i, slot_name in enumerate(slot_list): - param_name = f"slot_{i}" - - # Multiple filtering approaches for better coverage - slot_approaches = [] - - # Approach 1: Check computed_slot_name - if slot_name.lower() == 'ring': - slot_approaches.append("(computed_slot_name ILIKE '%Ring%')") - elif slot_name.lower() in ['bracelet', 'wrist']: - slot_approaches.append("(computed_slot_name ILIKE '%Wrist%')") - else: - slot_approaches.append(f"(computed_slot_name ILIKE :{param_name})") - params[param_name] = f"%{slot_name}%" - - # Approach 2: Specific jewelry logic for common cases - if slot_name.lower() == 'neck': - # For neck: object_class = 4 (jewelry) with amulet/necklace/gorget names - slot_approaches.append("(object_class = 4 AND (name ILIKE '%amulet%' OR name ILIKE '%necklace%' OR name ILIKE '%gorget%'))") - elif slot_name.lower() == 'ring': - # For rings: object_class = 4 with ring in name (excluding keyrings) - slot_approaches.append("(object_class = 4 AND name ILIKE '%ring%' AND name NOT ILIKE '%keyring%' AND name NOT ILIKE '%signet%')") - elif slot_name.lower() in ['bracelet', 'wrist']: - # For bracelets: object_class = 4 with bracelet in name - slot_approaches.append("(object_class = 4 AND name ILIKE '%bracelet%')") - elif slot_name.lower() == 'trinket': - # For trinkets: multiple approaches - # 1. Equipped trinkets have specific wielded_location - slot_approaches.append("(current_wielded_location = 67108864)") - # 2. Jewelry with trinket-related names - slot_approaches.append("(object_class = 4 AND (name ILIKE '%trinket%' OR name ILIKE '%compass%' OR name ILIKE '%goggles%'))") - # 3. Gems with trinket names - slot_approaches.append("(object_class = 11 AND name ILIKE '%trinket%')") - # 4. Jewelry fallback: items that don't match other jewelry patterns - slot_approaches.append("(object_class = 4 AND name NOT ILIKE '%ring%' AND name NOT ILIKE '%bracelet%' AND name NOT ILIKE '%amulet%' AND name NOT ILIKE '%necklace%' AND name NOT ILIKE '%gorget%')") - - # Combine approaches with OR (any approach can match) - if slot_approaches: - slot_conditions.append(f"({' OR '.join(slot_approaches)})") - - # Use OR logic for slots (items matching ANY selected slot) - if slot_conditions: - conditions.append(f"({' OR '.join(slot_conditions)})") - logger.info(f"Slot filtering: Looking for items with slots: {slot_list}") - - # Combat properties - if min_damage is not None: - conditions.append("max_damage >= :min_damage") - params["min_damage"] = min_damage - if max_damage is not None: - conditions.append("max_damage <= :max_damage") - params["max_damage"] = max_damage - if min_armor is not None: - conditions.append("armor_level >= :min_armor") - params["min_armor"] = min_armor - if max_armor is not None: - conditions.append("armor_level <= :max_armor") - params["max_armor"] = max_armor - if min_attack_bonus is not None: - conditions.append("attack_bonus >= :min_attack_bonus") - params["min_attack_bonus"] = min_attack_bonus - if min_crit_damage_rating is not None: - conditions.append("crit_damage_rating >= :min_crit_damage_rating") - params["min_crit_damage_rating"] = min_crit_damage_rating - if min_damage_rating is not None: - conditions.append("damage_rating >= :min_damage_rating") - params["min_damage_rating"] = min_damage_rating - if min_heal_boost_rating is not None: - conditions.append("heal_boost_rating >= :min_heal_boost_rating") - params["min_heal_boost_rating"] = min_heal_boost_rating - if min_vitality_rating is not None: - conditions.append("vitality_rating >= :min_vitality_rating") - params["min_vitality_rating"] = min_vitality_rating - if min_damage_resist_rating is not None: - conditions.append("damage_resist_rating >= :min_damage_resist_rating") - params["min_damage_resist_rating"] = min_damage_resist_rating - if min_crit_resist_rating is not None: - conditions.append("crit_resist_rating >= :min_crit_resist_rating") - params["min_crit_resist_rating"] = min_crit_resist_rating - if min_crit_damage_resist_rating is not None: - conditions.append("crit_damage_resist_rating >= :min_crit_damage_resist_rating") - params["min_crit_damage_resist_rating"] = min_crit_damage_resist_rating - if min_healing_resist_rating is not None: - conditions.append("healing_resist_rating >= :min_healing_resist_rating") - params["min_healing_resist_rating"] = min_healing_resist_rating - if min_nether_resist_rating is not None: - conditions.append("nether_resist_rating >= :min_nether_resist_rating") - params["min_nether_resist_rating"] = min_nether_resist_rating - if min_healing_rating is not None: - conditions.append("healing_rating >= :min_healing_rating") - params["min_healing_rating"] = min_healing_rating - if min_dot_resist_rating is not None: - conditions.append("dot_resist_rating >= :min_dot_resist_rating") - params["min_dot_resist_rating"] = min_dot_resist_rating - if min_life_resist_rating is not None: - conditions.append("life_resist_rating >= :min_life_resist_rating") - params["min_life_resist_rating"] = min_life_resist_rating - if min_sneak_attack_rating is not None: - conditions.append("sneak_attack_rating >= :min_sneak_attack_rating") - params["min_sneak_attack_rating"] = min_sneak_attack_rating - if min_recklessness_rating is not None: - conditions.append("recklessness_rating >= :min_recklessness_rating") - params["min_recklessness_rating"] = min_recklessness_rating - if min_deception_rating is not None: - conditions.append("deception_rating >= :min_deception_rating") - params["min_deception_rating"] = min_deception_rating - if min_pk_damage_rating is not None: - conditions.append("pk_damage_rating >= :min_pk_damage_rating") - params["min_pk_damage_rating"] = min_pk_damage_rating - if min_pk_damage_resist_rating is not None: - conditions.append("pk_damage_resist_rating >= :min_pk_damage_resist_rating") - params["min_pk_damage_resist_rating"] = min_pk_damage_resist_rating - if min_gear_pk_damage_rating is not None: - conditions.append("gear_pk_damage_rating >= :min_gear_pk_damage_rating") - params["min_gear_pk_damage_rating"] = min_gear_pk_damage_rating - if min_gear_pk_damage_resist_rating is not None: - conditions.append("gear_pk_damage_resist_rating >= :min_gear_pk_damage_resist_rating") - params["min_gear_pk_damage_resist_rating"] = min_gear_pk_damage_resist_rating - - # Requirements - if max_level is not None: - conditions.append("(wield_level <= :max_level OR wield_level IS NULL)") - params["max_level"] = max_level - if min_level is not None: - conditions.append("wield_level >= :min_level") - params["min_level"] = min_level - - # Enhancements - if material: - conditions.append("material ILIKE :material") - params["material"] = f"%{material}%" - if min_workmanship is not None: - conditions.append("workmanship >= :min_workmanship") - params["min_workmanship"] = min_workmanship - if has_imbue is not None: - if has_imbue: - conditions.append("imbue IS NOT NULL AND imbue != ''") - else: - conditions.append("(imbue IS NULL OR imbue = '')") - if item_set: - # Translate set ID to set name for database matching - set_name = translate_equipment_set_id(item_set) - logger.info(f"Translated equipment set ID '{item_set}' to name '{set_name}'") - conditions.append("item_set = :item_set") - params["item_set"] = set_name - elif item_sets: - # Handle comma-separated list of item set IDs - set_list = [set_id.strip() for set_id in item_sets.split(',') if set_id.strip()] - if set_list: - # CONSTRAINT SATISFACTION: Multiple equipment sets - if len(set_list) > 1: - # IMPOSSIBLE CONSTRAINT: Item cannot be in multiple sets simultaneously - logger.info(f"Multiple equipment sets selected: {set_list} - This is impossible, returning no results") - conditions.append("1 = 0") # No results for impossible constraint - else: - # Single set selection - normal behavior - set_id = set_list[0] - set_name = translate_equipment_set_id(set_id) - logger.info(f"Translated equipment set ID '{set_id}' to name '{set_name}'") - conditions.append("item_set = :item_set") - params["item_set"] = set_name - else: - # Empty sets list - no results - conditions.append("1 = 0") - if min_tinks is not None: - conditions.append("tinks >= :min_tinks") - params["min_tinks"] = min_tinks - - # Item state - if bonded is not None: - conditions.append("bonded > 0" if bonded else "bonded = 0") - if attuned is not None: - conditions.append("attuned > 0" if attuned else "attuned = 0") - if unique is not None: - conditions.append("unique = :unique") - params["unique"] = unique - if is_rare is not None: - if is_rare: - conditions.append("rare_id IS NOT NULL AND rare_id > 0") - else: - conditions.append("(rare_id IS NULL OR rare_id <= 0)") - if min_condition is not None: - conditions.append("((structure * 100.0 / NULLIF(max_structure, 0)) >= :min_condition OR max_structure IS NULL)") - params["min_condition"] = min_condition - - # Value/utility - if min_value is not None: - conditions.append("value >= :min_value") - params["min_value"] = min_value - if max_value is not None: - conditions.append("value <= :max_value") - params["max_value"] = max_value - if max_burden is not None: - conditions.append("burden <= :max_burden") - params["max_burden"] = max_burden - - # Build WHERE clause - if conditions: - query_parts.append("WHERE " + " AND ".join(conditions)) - - # Add ORDER BY - sort_mapping = { - "name": "name", - "value": "value", - "damage": "max_damage", - "armor": "armor_level", - "workmanship": "workmanship", - "level": "wield_level", - "damage_rating": "damage_rating", - "crit_damage_rating": "crit_damage_rating", - "heal_boost_rating": "heal_boost_rating", - "vitality_rating": "vitality_rating", - "damage_resist_rating": "damage_resist_rating", - "crit_damage_resist_rating": "crit_damage_resist_rating" - } - sort_field = sort_mapping.get(sort_by, "name") - sort_direction = "DESC" if sort_dir.lower() == "desc" else "ASC" - query_parts.append(f"ORDER BY {sort_field} {sort_direction}") - - # Add pagination - offset = (page - 1) * limit - query_parts.append(f"LIMIT {limit} OFFSET {offset}") - - # Execute query - query = "\n".join(query_parts) - rows = await database.fetch_all(query, params) - - # Get total count for pagination - use same CTE structure - count_query_parts = [""" - WITH items_with_slots AS ( - SELECT DISTINCT - i.id as db_item_id, - i.character_name, - i.name, - i.object_class, - i.value, - i.burden, - i.current_wielded_location, - i.bonded, - i.attuned, - i.unique, - i.structure, - i.max_structure, - i.rare_id, - COALESCE(cs.max_damage, -1) as max_damage, - COALESCE(cs.armor_level, -1) as armor_level, - GREATEST( - COALESCE((rd.int_values->>'314')::int, -1), - COALESCE((rd.int_values->>'374')::int, -1) - ) as crit_damage_rating, - GREATEST( - COALESCE((rd.int_values->>'307')::int, -1), - COALESCE((rd.int_values->>'370')::int, -1) - ) as damage_rating, - GREATEST( - COALESCE((rd.int_values->>'323')::int, -1), - COALESCE((rd.int_values->>'376')::int, -1) - ) as heal_boost_rating, - COALESCE((rd.int_values->>'379')::int, -1) as vitality_rating, - GREATEST( - COALESCE((rd.int_values->>'308')::int, -1), - COALESCE((rd.int_values->>'371')::int, -1) - ) as damage_resist_rating, - COALESCE((rd.int_values->>'315')::int, -1) as crit_resist_rating, - GREATEST( - COALESCE((rd.int_values->>'316')::int, -1), - COALESCE((rd.int_values->>'375')::int, -1) - ) as crit_damage_resist_rating, - COALESCE((rd.int_values->>'317')::int, -1) as healing_resist_rating, - COALESCE((rd.int_values->>'331')::int, -1) as nether_resist_rating, - COALESCE((rd.int_values->>'350')::int, -1) as dot_resist_rating, - COALESCE((rd.int_values->>'351')::int, -1) as life_resist_rating, - COALESCE(req.wield_level, -1) as wield_level, - COALESCE(enh.material, '') as material, - COALESCE(enh.workmanship, -1.0) as workmanship, - COALESCE(enh.imbue, '') as imbue, - COALESCE(enh.tinks, -1) as tinks, - COALESCE(enh.item_set, '') as item_set, - - -- Same computed slot logic for count query - CASE - WHEN rd.original_json IS NOT NULL - AND rd.original_json->'IntValues'->>'218103822' IS NOT NULL - AND (rd.original_json->'IntValues'->>'218103822')::int > 0 - THEN - CASE (rd.original_json->'IntValues'->>'218103822')::int - WHEN 1 THEN 'Head' - WHEN 2 THEN 'Neck' - WHEN 4 THEN 'Shirt' - WHEN 16 THEN 'Chest' - WHEN 32 THEN 'Hands' - WHEN 256 THEN 'Feet' - WHEN 512 THEN 'Chest' - WHEN 1024 THEN 'Abdomen' - WHEN 2048 THEN 'Upper Arms' - WHEN 4096 THEN 'Lower Arms' - WHEN 8192 THEN 'Upper Legs' - WHEN 16384 THEN 'Lower Legs' - WHEN 33554432 THEN 'Shield' - ELSE 'Armor' - END - WHEN i.object_class = 4 THEN - CASE - WHEN i.current_wielded_location = 32768 THEN 'Neck' - WHEN i.current_wielded_location IN (262144, 524288, 786432) THEN 'Ring' - WHEN i.current_wielded_location IN (131072, 1048576, 1179648) THEN 'Bracelet' - WHEN i.name ILIKE '%amulet%' OR i.name ILIKE '%necklace%' OR i.name ILIKE '%gorget%' THEN 'Neck' - WHEN i.name ILIKE '%ring%' AND i.name NOT ILIKE '%keyring%' AND i.name NOT ILIKE '%signet%' THEN 'Ring' - WHEN i.name ILIKE '%bracelet%' THEN 'Bracelet' - WHEN i.name ILIKE '%trinket%' THEN 'Trinket' - ELSE 'Jewelry' - END - WHEN i.object_class = 6 THEN 'Melee Weapon' - WHEN i.object_class = 7 THEN 'Missile Weapon' - WHEN i.object_class = 8 THEN 'Held' - ELSE '-' - END as computed_slot_name - - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_requirements req ON i.id = req.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_ratings rt ON i.id = rt.item_id - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - """] - - # Add spell join to count query if needed - if spell_join_added: - count_query_parts.append("LEFT JOIN item_spells sp ON i.id = sp.item_id") - - count_query_parts.append(""" - ) - SELECT COUNT(DISTINCT db_item_id) FROM items_with_slots - """) - - if conditions: - count_query_parts.append("WHERE " + " AND ".join(conditions)) - - count_query = "\n".join(count_query_parts) - - count_result = await database.fetch_one(count_query, params) - total_count = int(count_result[0]) if count_result else 0 - - # Format results with comprehensive translations (like individual inventory endpoint) - items = [] - for row in rows: - item = dict(row) - - # Add computed properties - item['is_equipped'] = item['current_wielded_location'] > 0 - item['is_bonded'] = item['bonded'] > 0 - item['is_attuned'] = item['attuned'] > 0 - item['is_rare'] = (item['rare_id'] or 0) > 0 - - # Calculate condition percentage - if item['max_structure'] and item['max_structure'] > 0: - item['condition_percent'] = round((item['structure'] or 0) * 100.0 / item['max_structure'], 1) - else: - item['condition_percent'] = None - - # Apply comprehensive translations from original_json (like individual inventory endpoint) - if item.get('original_json'): - original_json = item['original_json'] - # Handle case where original_json might be stored as string - if isinstance(original_json, str): - try: - original_json = json.loads(original_json) - except (json.JSONDecodeError, TypeError): - original_json = {} - - if original_json: - # Extract properties and get comprehensive translations - properties = extract_item_properties(original_json) - - # Add material translation and prefixing - if item.get('material') or properties.get('translations', {}).get('material_name'): - material_name = None - if item.get('material'): - # Check if material is already a string or needs translation - if isinstance(item['material'], str): - material_name = item['material'] - else: - material_name = translate_material_type(item['material']) - elif properties.get('translations', {}).get('material_name'): - material_name = properties['translations']['material_name'] - - if material_name and not material_name.startswith('Unknown_Material_'): - item['material_name'] = material_name - # Apply material prefix to item name - original_name = item['name'] - if not original_name.lower().startswith(material_name.lower()): - item['name'] = f"{material_name} {original_name}" - item['original_name'] = original_name - - # Add object class translation - if item.get('object_class'): - item['object_class_name'] = translate_object_class(item['object_class'], original_json) - - # Add item type translation - if properties.get('translations', {}).get('item_type_name'): - item['item_type_name'] = properties['translations']['item_type_name'] - elif item.get('object_class'): - # Fallback: derive ItemType from object_class when translation is missing - item['item_type_name'] = derive_item_type_from_object_class(item['object_class'], {'Name': item.get('name', '')}) - - # Add spell information - if 'spells' in properties: - spell_info = properties['spells'] - if spell_info.get('spells'): - item['spells'] = spell_info['spells'] - item['spell_names'] = [spell.get('name', '') for spell in spell_info['spells'] if spell.get('name')] - if spell_info.get('active_spells'): - item['active_spells'] = spell_info['active_spells'] - - # Add coverage calculation from coverage mask - int_values = original_json.get('IntValues', {}) - coverage_value = None - - # Check for coverage mask in correct location (218103821 = Coverage_Decal) - if '218103821' in int_values: - coverage_value = int_values['218103821'] - elif 218103821 in int_values: - coverage_value = int_values[218103821] - - if coverage_value and coverage_value > 0: - coverage_parts = translate_coverage_mask(coverage_value) - if coverage_parts: - item['coverage'] = ', '.join(coverage_parts) - else: - item['coverage'] = f"Coverage_{coverage_value}" - # Add raw coverage mask for armor reduction system - item['coverage_mask'] = coverage_value - else: - item['coverage'] = None - item['coverage_mask'] = 0 - - # Add sophisticated equipment slot translation using Mag-SuitBuilder logic - # Use both EquipableSlots_Decal and Coverage for armor reduction - if original_json and 'IntValues' in original_json: - equippable_slots = int_values.get('218103822', int_values.get(218103822, 0)) - coverage_value = int_values.get('218103821', int_values.get(218103821, 0)) - - # Add debug info to help troubleshoot slot translation issues - if 'legging' in item['name'].lower() or 'greave' in item['name'].lower(): - item['debug_slot_info'] = { - 'equippable_slots': equippable_slots, - 'coverage_value': coverage_value, - 'current_wielded_location': item.get('current_wielded_location', 0) - } - - if equippable_slots and int(equippable_slots) > 0: - # Check if item has material (can be tailored) - has_material = bool(item.get('material_name') and item.get('material_name') != '') - - # Get sophisticated slot options using Mag-SuitBuilder logic - slot_options = get_sophisticated_slot_options( - int(equippable_slots), - int(coverage_value) if coverage_value else 0, - has_material - ) - - # Translate all slot options to friendly names - slot_names = [] - for slot_option in slot_options: - slot_name = translate_equipment_slot(slot_option) - if slot_name and slot_name not in slot_names: - slot_names.append(slot_name) - - # Debug logging for slot issues - if not slot_names and equippable_slots in [30, 786432]: - logger.warning(f"No slot names found for item '{item['name']}' with equippable_slots={equippable_slots}, slot_options={slot_options}") - - item['slot_name'] = ', '.join(slot_names) if slot_names else "-" - else: - item['slot_name'] = "-" - else: - item['slot_name'] = "-" - - # Use gear totals as display ratings when individual ratings don't exist - # For armor/clothing, ratings are often stored as gear totals (370, 372, 374) - if item.get('damage_rating', -1) == -1 and 'gear_damage' in properties.get('ratings', {}): - gear_damage = properties['ratings'].get('gear_damage', -1) - if gear_damage > 0: - item['damage_rating'] = gear_damage - else: - item['damage_rating'] = None - elif item.get('damage_rating', -1) == -1: - item['damage_rating'] = None - - if item.get('crit_damage_rating', -1) == -1 and 'gear_crit_damage' in properties.get('ratings', {}): - gear_crit_damage = properties['ratings'].get('gear_crit_damage', -1) - if gear_crit_damage > 0: - item['crit_damage_rating'] = gear_crit_damage - else: - item['crit_damage_rating'] = None - elif item.get('crit_damage_rating', -1) == -1: - item['crit_damage_rating'] = None - - if item.get('heal_boost_rating', -1) == -1 and 'gear_healing_boost' in properties.get('ratings', {}): - gear_healing_boost = properties['ratings'].get('gear_healing_boost', -1) - if gear_healing_boost > 0: - item['heal_boost_rating'] = gear_healing_boost - else: - item['heal_boost_rating'] = None - elif item.get('heal_boost_rating', -1) == -1: - item['heal_boost_rating'] = None - - # Add equipment set name translation - if item.get('item_set') and str(item['item_set']).strip(): - set_id = str(item['item_set']).strip() - # Get dictionary from enum database - dictionaries = ENUM_MAPPINGS.get('dictionaries', {}) - attribute_set_info = dictionaries.get('AttributeSetInfo', {}).get('values', {}) - if set_id in attribute_set_info: - item['item_set_name'] = attribute_set_info[set_id] - else: - # Try checking if it's in the alternative location (equipment_sets) - equipment_sets = ENUM_MAPPINGS.get('equipment_sets', {}) - if set_id in equipment_sets: - item['item_set_name'] = equipment_sets[set_id] - else: - item['item_set_name'] = f"Set {set_id}" - - # Clean up - remove raw data from response - item.pop('original_json', None) - item.pop('db_item_id', None) - - items.append(item) - - return ItemSearchResponse( - items=items, - total_count=total_count, - page=page, - limit=limit, - has_next=page * limit < total_count, - has_previous=page > 1 - ) - - except Exception as e: - logger.error(f"Search error: {e}", exc_info=True) - raise HTTPException(status_code=500, detail=f"Search failed: {str(e)}") - - -@app.get("/search/equipped/{character_name}") -async def search_equipped_items( - character_name: str, - slot: int = Query(None, description="Specific equipment slot mask") -): - """Get all equipped items for a character, optionally filtered by slot.""" - try: - conditions = ["i.character_name = :character_name", "i.current_wielded_location > 0"] - params = {"character_name": character_name} - - if slot is not None: - conditions.append("i.current_wielded_location = :slot") - params["slot"] = slot - - query = """ - SELECT - i.*, - COALESCE(cs.max_damage, -1) as max_damage, - COALESCE(cs.armor_level, -1) as armor_level, - COALESCE(cs.attack_bonus, -1.0) as attack_bonus, - COALESCE(req.wield_level, -1) as wield_level, - COALESCE(enh.material, '') as material, - COALESCE(enh.workmanship, -1.0) as workmanship, - COALESCE(enh.item_set, '') as item_set - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_requirements req ON i.id = req.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - WHERE """ + " AND ".join(conditions) + """ - ORDER BY i.current_wielded_location, i.name - """ - - rows = await database.fetch_all(query, params) - - # Load EquipMask enum for slot names - equip_mask_map = {} - if 'EquipMask' in ENUM_MAPPINGS.get('full_database', {}).get('enums', {}): - equip_data = ENUM_MAPPINGS['full_database']['enums']['EquipMask']['values'] - for k, v in equip_data.items(): - try: - equip_mask_map[int(k)] = v - except (ValueError, TypeError): - pass - - items = [] - for row in rows: - item = dict(row) - item['slot_name'] = equip_mask_map.get(item['current_wielded_location'], f"Slot_{item['current_wielded_location']}") - items.append(item) - - return { - "character_name": character_name, - "equipped_items": items, - "slot_filter": slot, - "item_count": len(items) - } - - except Exception as e: - logger.error(f"Equipped items search error: {e}", exc_info=True) - raise HTTPException(status_code=500, detail=f"Equipped items search failed: {str(e)}") - - -@app.get("/search/upgrades/{character_name}/{slot}") -async def find_equipment_upgrades( - character_name: str, - slot: int, - upgrade_type: str = Query("damage", description="What to optimize for: damage, armor, workmanship, value") -): - """Find potential equipment upgrades for a specific slot.""" - try: - # Get currently equipped item in this slot - current_query = """ - SELECT i.*, cs.max_damage, cs.armor_level, enh.workmanship - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - WHERE i.character_name = :character_name - AND i.current_wielded_location = :slot - """ - - current_item = await database.fetch_one(current_query, { - "character_name": character_name, - "slot": slot - }) - - # Find all unequipped items that could be equipped in this slot - # Check ValidLocations or infer from similar equipped items - upgrade_query = """ - SELECT DISTINCT - i.character_name, - i.name, - i.value, - i.burden, - COALESCE(cs.max_damage, -1) as max_damage, - COALESCE(cs.armor_level, -1) as armor_level, - COALESCE(enh.workmanship, -1.0) as workmanship, - COALESCE(req.wield_level, -1) as wield_level - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_requirements req ON i.id = req.item_id - WHERE i.current_wielded_location = 0 - AND i.object_class = :object_class - """ - - params = {} - if current_item: - params["object_class"] = current_item["object_class"] - - # Add upgrade criteria based on current item - if upgrade_type == "damage" and current_item.get("max_damage", -1) > 0: - upgrade_query += " AND cs.max_damage > :current_damage" - params["current_damage"] = current_item["max_damage"] - elif upgrade_type == "armor" and current_item.get("armor_level", -1) > 0: - upgrade_query += " AND cs.armor_level > :current_armor" - params["current_armor"] = current_item["armor_level"] - elif upgrade_type == "workmanship" and current_item.get("workmanship", -1) > 0: - upgrade_query += " AND enh.workmanship > :current_workmanship" - params["current_workmanship"] = current_item["workmanship"] - elif upgrade_type == "value": - upgrade_query += " AND i.value > :current_value" - params["current_value"] = current_item["value"] - else: - # No current item, show all available items for this slot type - # We'll need to infer object class from slot - this is a simplified approach - params["object_class"] = 1 # Default to generic - - # Add sorting based on upgrade type - if upgrade_type == "damage": - upgrade_query += " ORDER BY cs.max_damage DESC" - elif upgrade_type == "armor": - upgrade_query += " ORDER BY cs.armor_level DESC" - elif upgrade_type == "workmanship": - upgrade_query += " ORDER BY enh.workmanship DESC" - else: - upgrade_query += " ORDER BY i.value DESC" - - upgrade_query += " LIMIT 20" # Limit to top 20 upgrades - - upgrades = await database.fetch_all(upgrade_query, params) - - return { - "character_name": character_name, - "slot": slot, - "upgrade_type": upgrade_type, - "current_item": dict(current_item) if current_item else None, - "potential_upgrades": [dict(row) for row in upgrades], - "upgrade_count": len(upgrades) - } - - except Exception as e: - logger.error(f"Equipment upgrades search error: {e}", exc_info=True) - raise HTTPException(status_code=500, detail=f"Equipment upgrades search failed: {str(e)}") - - -@app.get("/characters/list", - summary="List Characters", - description="Get a list of all characters that have inventory data in the database.", - tags=["Character Data"]) -async def list_inventory_characters(): - """List all characters that have inventory data.""" - try: - query = """ - SELECT character_name, COUNT(*) as item_count, MAX(timestamp) as last_updated - FROM items - GROUP BY character_name - ORDER BY character_name - """ - rows = await database.fetch_all(query) - - characters = [] - for row in rows: - characters.append({ - "character_name": row["character_name"], - "item_count": row["item_count"], - "last_updated": row["last_updated"] - }) - - return { - "characters": characters, - "total_characters": len(characters) - } - - except Exception as e: - logger.error(f"Failed to list inventory characters: {e}") - raise HTTPException(status_code=500, detail="Failed to list inventory characters") - - -@app.get("/search/by-slot") -async def search_items_by_slot( - slot: str = Query(..., description="Slot to search for (e.g., 'Head', 'Chest', 'Hands')"), - characters: str = Query(None, description="Comma-separated list of character names"), - include_all_characters: bool = Query(False, description="Include all characters"), - - # Equipment type - armor_only: bool = Query(True, description="Show only armor items"), - - # Pagination - limit: int = Query(100, le=1000), - offset: int = Query(0, ge=0) -): - """Search for items that can be equipped in a specific slot.""" - try: - # Build query - conditions = [] - params = {} - - # TODO: Implement slot filtering once we have slot_name in DB - # For now, return message about missing implementation - if slot: - return { - "error": "Slot-based search not yet implemented", - "message": f"Cannot search for slot '{slot}' - slot_name field needs to be added to database", - "suggestion": "Use regular /search/items endpoint with filters for now" - } - - # Character filtering - if not include_all_characters and characters: - char_list = [c.strip() for c in characters.split(',') if c.strip()] - if char_list: - placeholders = [f":char_{i}" for i in range(len(char_list))] - conditions.append(f"character_name IN ({', '.join(placeholders)})") - for i, char in enumerate(char_list): - params[f"char_{i}"] = char - - # Armor only filter - if armor_only: - conditions.append("(object_class IN (2, 3))") - - # Build final query - where_clause = " AND ".join(conditions) if conditions else "1=1" - - query = f""" - SELECT i.id, i.character_name, i.name, i.icon, i.object_class, - i.current_wielded_location, - CASE WHEN i.current_wielded_location > 0 THEN true ELSE false END as is_equipped - FROM items i - WHERE {where_clause} - ORDER BY i.character_name, i.name - LIMIT :limit OFFSET :offset - """ - - params['limit'] = limit - params['offset'] = offset - - # Execute query - rows = await database.fetch_all(query, params) - - # Count total - count_query = f"SELECT COUNT(*) as total FROM items i WHERE {where_clause}" - count_params = {k: v for k, v in params.items() if k not in ['limit', 'offset', 'slot_requested']} - count_result = await database.fetch_one(count_query, count_params) - total = count_result[0] if count_result else 0 - - # Process results - items = [] - for row in rows: - items.append(dict(row)) - - return { - "items": items, - "total_count": total or 0, - "slot_searched": slot, - "limit": limit, - "offset": offset - } - - except Exception as e: - logger.error(f"Error in slot search: {str(e)}") - raise HTTPException(status_code=500, detail=str(e)) - - -@app.get("/analyze/sets") -async def analyze_set_combinations( - characters: str = Query(None, description="Comma-separated list of character names"), - include_all_characters: bool = Query(False, description="Include all characters"), - primary_set: int = Query(..., description="Primary set ID (needs 5 pieces)"), - secondary_set: int = Query(..., description="Secondary set ID (needs 4 pieces)"), - primary_count: int = Query(5, description="Number of primary set pieces needed"), - secondary_count: int = Query(4, description="Number of secondary set pieces needed") -): - """Analyze set combinations for valid 5+4 equipment builds.""" - try: - # Simplified approach - just count items by set for each character - # This uses the same pattern as existing working queries - - if include_all_characters: - # Query all characters - char_filter = "1=1" - query_params = [] - elif characters: - # Query specific characters - character_list = [c.strip() for c in characters.split(',') if c.strip()] - char_placeholders = ','.join(['%s'] * len(character_list)) - char_filter = f"i.character_name IN ({char_placeholders})" - query_params = character_list - else: - raise HTTPException(status_code=400, detail="Must specify characters or include_all_characters") - - # Query for primary set - primary_query = f""" - SELECT - i.character_name, - i.name, - i.current_wielded_location - FROM items i - LEFT JOIN item_raw_data ird ON i.id = ird.item_id - WHERE {char_filter} - AND i.object_class IN (2, 3) - AND ird.int_values ? '265' - AND (ird.int_values->>'265')::int = :primary_set_id - """ - - # Query for secondary set - secondary_query = f""" - SELECT - i.character_name, - i.name, - i.current_wielded_location - FROM items i - LEFT JOIN item_raw_data ird ON i.id = ird.item_id - WHERE {char_filter} - AND i.object_class IN (2, 3) - AND ird.int_values ? '265' - AND (ird.int_values->>'265')::int = :secondary_set_id - """ - - # Build parameter dictionaries - if include_all_characters: - primary_params = {"primary_set_id": primary_set} - secondary_params = {"secondary_set_id": secondary_set} - else: - # For character filtering, we need to embed character names directly in query - # because using named parameters with IN clauses is complex - character_list = [c.strip() for c in characters.split(',') if c.strip()] - char_names = "', '".join(character_list) - - primary_query = primary_query.replace(char_filter, f"i.character_name IN ('{char_names}')") - secondary_query = secondary_query.replace(char_filter, f"i.character_name IN ('{char_names}')") - - primary_params = {"primary_set_id": primary_set} - secondary_params = {"secondary_set_id": secondary_set} - - # Execute queries - primary_result = await database.fetch_all(primary_query, primary_params) - secondary_result = await database.fetch_all(secondary_query, secondary_params) - - # Process results by character - primary_by_char = {} - secondary_by_char = {} - - for row in primary_result: - char = row['character_name'] - if char not in primary_by_char: - primary_by_char[char] = [] - primary_by_char[char].append({ - 'name': row['name'], - 'equipped': row['current_wielded_location'] > 0 - }) - - for row in secondary_result: - char = row['character_name'] - if char not in secondary_by_char: - secondary_by_char[char] = [] - secondary_by_char[char].append({ - 'name': row['name'], - 'equipped': row['current_wielded_location'] > 0 - }) - - # Analyze combinations - analysis_results = [] - all_characters = set(primary_by_char.keys()) | set(secondary_by_char.keys()) - - for char in all_characters: - primary_items = primary_by_char.get(char, []) - secondary_items = secondary_by_char.get(char, []) - - primary_available = len(primary_items) - secondary_available = len(secondary_items) - - can_build = (primary_available >= primary_count and - secondary_available >= secondary_count) - - analysis_results.append({ - 'character_name': char, - 'primary_set_available': primary_available, - 'primary_set_needed': primary_count, - 'secondary_set_available': secondary_available, - 'secondary_set_needed': secondary_count, - 'can_build_combination': can_build, - 'primary_items': primary_items[:primary_count] if can_build else primary_items, - 'secondary_items': secondary_items[:secondary_count] if can_build else secondary_items - }) - - # Sort by characters who can build first - analysis_results.sort(key=lambda x: (not x['can_build_combination'], x['character_name'])) - - # Get set names for response - attribute_set_info = ENUM_MAPPINGS.get('AttributeSetInfo', {}).get('values', {}) - primary_set_name = attribute_set_info.get(str(primary_set), f"Set {primary_set}") - secondary_set_name = attribute_set_info.get(str(secondary_set), f"Set {secondary_set}") - - return { - 'primary_set': { - 'id': primary_set, - 'name': primary_set_name, - 'pieces_needed': primary_count - }, - 'secondary_set': { - 'id': secondary_set, - 'name': secondary_set_name, - 'pieces_needed': secondary_count - }, - 'character_analysis': analysis_results, - 'total_characters': len(analysis_results), - 'characters_can_build': len([r for r in analysis_results if r['can_build_combination']]) - } - - except Exception as e: - logger.error(f"Error in set combination analysis: {str(e)}") - raise HTTPException(status_code=500, detail=str(e)) - - -@app.get("/slots/available") -async def get_available_items_by_slot( - characters: str = Query(None, description="Comma-separated list of character names"), - include_all_characters: bool = Query(False, description="Include all characters"), - equipment_sets: str = Query(None, description="Comma-separated equipment set IDs to filter by"), - legendary_cantrips: str = Query(None, description="Comma-separated legendary cantrips to filter by"), - min_crit_damage_rating: int = Query(None, description="Minimum crit damage rating"), - min_damage_rating: int = Query(None, description="Minimum damage rating"), - min_armor_level: int = Query(None, description="Minimum armor level") -): - """Get available items organized by equipment slot across multiple characters.""" - try: - # Build character filter - if include_all_characters: - char_filter = "1=1" - query_params = {} - elif characters: - character_list = [c.strip() for c in characters.split(',') if c.strip()] - char_names = "', '".join(character_list) - char_filter = f"i.character_name IN ('{char_names}')" - query_params = {} - else: - raise HTTPException(status_code=400, detail="Must specify characters or include_all_characters") - - # Build constraints - only filter if we have specific constraints - constraints = [] - if equipment_sets or legendary_cantrips or min_crit_damage_rating or min_damage_rating or min_armor_level: - # Only filter by object class if we have other filters - constraints.append("i.object_class IN (2, 3, 4)") # Armor and jewelry - else: - # For general slot queries, include more object classes but focus on equipment - constraints.append("i.object_class IN (1, 2, 3, 4, 6, 7, 8)") # All equipment types - - # Equipment set filtering - if equipment_sets: - set_ids = [s.strip() for s in equipment_sets.split(',') if s.strip()] - set_filter = " OR ".join([f"(ird.int_values->>'265')::int = {set_id}" for set_id in set_ids]) - constraints.append(f"ird.int_values ? '265' AND ({set_filter})") - - # Rating filters using gear totals - if min_crit_damage_rating: - constraints.append(f"COALESCE((ird.int_values->>'370')::int, 0) >= {min_crit_damage_rating}") - if min_damage_rating: - constraints.append(f"COALESCE((ird.int_values->>'372')::int, 0) >= {min_damage_rating}") - if min_armor_level: - constraints.append(f"COALESCE((ird.int_values->>'28')::int, 0) >= {min_armor_level}") - - # Build WHERE clause properly - where_parts = [char_filter] - if constraints: - where_parts.extend(constraints) - where_clause = " AND ".join(where_parts) - - # Debug: let's see how many items Barris actually has first - debug_query = f"SELECT COUNT(*) as total FROM items WHERE {char_filter}" - debug_result = await database.fetch_one(debug_query, query_params) - print(f"DEBUG: Total items for query: {debug_result['total']}") - - # Main query to get items with slot information - query = f""" - SELECT DISTINCT - i.id, - i.character_name, - i.name, - i.object_class, - i.current_wielded_location, - CASE - WHEN ird.int_values ? '9' THEN (ird.int_values->>'9')::int - ELSE 0 - END as valid_locations, - CASE - WHEN ird.int_values ? '218103822' THEN (ird.int_values->>'218103822')::int - WHEN ird.int_values ? '218103821' THEN (ird.int_values->>'218103821')::int - ELSE 0 - END as coverage_mask, - CASE - WHEN ird.int_values ? '265' THEN (ird.int_values->>'265')::int - ELSE NULL - END as item_set_id, - CASE - WHEN ird.int_values ? '28' THEN (ird.int_values->>'28')::int - ELSE 0 - END as armor_level, - CASE - WHEN ird.int_values ? '370' THEN (ird.int_values->>'370')::int - ELSE 0 - END as crit_damage_rating, - CASE - WHEN ird.int_values ? '372' THEN (ird.int_values->>'372')::int - ELSE 0 - END as damage_rating, - CASE - WHEN ird.int_values ? '16' THEN (ird.int_values->>'16')::int - ELSE NULL - END as material_type - FROM items i - LEFT JOIN item_raw_data ird ON i.id = ird.item_id - WHERE {where_clause} - ORDER BY i.character_name, i.name - """ - - # Cantrip filtering if requested - if legendary_cantrips: - cantrip_list = [c.strip() for c in legendary_cantrips.split(',') if c.strip()] - # Get spell IDs for the requested cantrips - cantrip_spell_ids = [] - spells_data = ENUM_MAPPINGS.get('spells', {}).get('values', {}) - for cantrip in cantrip_list: - for spell_id, spell_name in spells_data.items(): - if cantrip.lower() in spell_name.lower(): - cantrip_spell_ids.append(int(spell_id)) - - if cantrip_spell_ids: - # Add JOIN to filter by spells - spell_placeholders = ','.join(map(str, cantrip_spell_ids)) - query = query.replace("FROM items i", f""" - FROM items i - INNER JOIN item_spells isp ON i.id = isp.item_id - AND isp.spell_id IN ({spell_placeholders}) - """) - - # Execute query - rows = await database.fetch_all(query, query_params) - - # Organize items by slot - slots_data = {} - - # Define the 9 armor slots we care about - armor_slots = { - 1: "Head", - 512: "Chest", - 2048: "Upper Arms", - 4096: "Lower Arms", - 32: "Hands", - 1024: "Abdomen", - 8192: "Upper Legs", - 16384: "Lower Legs", - 256: "Feet" - } - - # Jewelry slots - jewelry_slots = { - "Neck": "Neck", - "Left Ring": "Left Ring", - "Right Ring": "Right Ring", - "Left Wrist": "Left Wrist", - "Right Wrist": "Right Wrist" - } - - # Initialize all slots - for slot_name in armor_slots.values(): - slots_data[slot_name] = [] - for slot_name in jewelry_slots.values(): - slots_data[slot_name] = [] - - # Process each item - for row in rows: - item_data = { - "id": row['id'], - "character_name": row['character_name'], - "name": row['name'], - "is_equipped": row['current_wielded_location'] > 0, - "armor_level": row['armor_level'], - "crit_damage_rating": row['crit_damage_rating'], - "damage_rating": row['damage_rating'], - "item_set_id": row['item_set_id'] - } - - # Add material name if available - if row['material_type']: - material_name = ENUM_MAPPINGS.get('materials', {}).get(str(row['material_type']), '') - if material_name and not row['name'].lower().startswith(material_name.lower()): - item_data['name'] = f"{material_name} {row['name']}" - - # Add set name if available - if row['item_set_id']: - attribute_set_info = ENUM_MAPPINGS.get('AttributeSetInfo', {}).get('values', {}) - set_name = attribute_set_info.get(str(row['item_set_id']), '') - if set_name: - item_data['set_name'] = set_name - - # Use the same slot computation logic as the search endpoint - equippable_slots = row['valid_locations'] - coverage_value = row['coverage_mask'] - slot_names = [] - - if equippable_slots and equippable_slots > 0: - # Get sophisticated slot options (handles armor reduction) - has_material = row['material_type'] is not None - slot_options = get_sophisticated_slot_options(equippable_slots, coverage_value, has_material) - - # Convert slot options to friendly slot names - for slot_option in slot_options: - slot_name = translate_equipment_slot(slot_option) - if slot_name and slot_name not in slot_names: - slot_names.append(slot_name) - - # Add item to each computed slot - for slot_name in slot_names: - if slot_name in slots_data: - slots_data[slot_name].append(item_data.copy()) - - # Handle jewelry separately if armor logic didn't work - if row['object_class'] == 4 and not slot_names: # Jewelry - item_name = row['name'].lower() - - if 'ring' in item_name: - slots_data["Left Ring"].append(item_data.copy()) - slots_data["Right Ring"].append(item_data.copy()) - elif any(word in item_name for word in ['bracelet', 'wrist']): - slots_data["Left Wrist"].append(item_data.copy()) - slots_data["Right Wrist"].append(item_data.copy()) - elif any(word in item_name for word in ['necklace', 'amulet', 'gorget']): - slots_data["Neck"].append(item_data.copy()) - - # Sort items within each slot by character name, then by name - for slot in slots_data: - slots_data[slot].sort(key=lambda x: (x['character_name'], x['name'])) - - return { - "slots": slots_data, - "total_items": sum(len(items) for items in slots_data.values()), - "constraints_applied": { - "equipment_sets": equipment_sets.split(',') if equipment_sets else None, - "legendary_cantrips": legendary_cantrips.split(',') if legendary_cantrips else None, - "min_crit_damage_rating": min_crit_damage_rating, - "min_damage_rating": min_damage_rating, - "min_armor_level": min_armor_level - } - } - - except Exception as e: - logger.error(f"Error in slots/available endpoint: {str(e)}") - raise HTTPException(status_code=500, detail=str(e)) - - -@app.post("/optimize/suits") -async def optimize_suits( - # Character selection - characters: str = Query(None, description="Comma-separated list of character names"), - include_all_characters: bool = Query(False, description="Search across all characters"), - - # Equipment sets (primary/secondary requirements) - primary_set: str = Query(None, description="Primary equipment set ID (requires 5 pieces)"), - secondary_set: str = Query(None, description="Secondary equipment set ID (requires 4 pieces)"), - - # Spell requirements - legendary_cantrips: str = Query(None, description="Comma-separated list of required legendary cantrips"), - legendary_wards: str = Query(None, description="Comma-separated list of required legendary wards"), - - # Rating requirements - min_armor: int = Query(None, description="Minimum total armor level"), - max_armor: int = Query(None, description="Maximum total armor level"), - min_crit_damage: int = Query(None, description="Minimum total crit damage rating"), - max_crit_damage: int = Query(None, description="Maximum total crit damage rating"), - min_damage_rating: int = Query(None, description="Minimum total damage rating"), - max_damage_rating: int = Query(None, description="Maximum total damage rating"), - - # Equipment status - include_equipped: bool = Query(True, description="Include equipped items"), - include_inventory: bool = Query(True, description="Include inventory items"), - - # Locked slots (exclude from optimization) - locked_slots: str = Query(None, description="Comma-separated list of locked slot names"), - - # Result options - max_results: int = Query(10, ge=1, le=50, description="Maximum number of suit results to return") -): - """ - MagSuitbuilder-inspired constraint solver for optimal equipment combinations. - - Uses two-phase algorithm: ArmorSearcher with strict set filtering, then AccessorySearcher for spells. - """ - try: - # Parse character selection - char_list = [] - if include_all_characters: - # Get all unique character names - query = "SELECT DISTINCT character_name FROM items ORDER BY character_name" - async with database.transaction(): - rows = await database.fetch_all(query) - char_list = [row['character_name'] for row in rows] - elif characters: - char_list = [c.strip() for c in characters.split(',') if c.strip()] - - if not char_list: - return { - "suits": [], - "message": "No characters specified", - "total_found": 0 - } - - # Determine equipment status filtering logic - equipment_status_filter = None - if include_equipped and include_inventory: - equipment_status_filter = "both" # Mix equipped and inventory items - elif include_equipped: - equipment_status_filter = "equipped_only" # Only currently equipped items - elif include_inventory: - equipment_status_filter = "inventory_only" # Only unequipped items - else: - return { - "suits": [], - "message": "Must include either equipped or inventory items", - "total_found": 0 - } - - # Build constraints dictionary - constraints = { - 'primary_set': int(primary_set) if primary_set else None, - 'secondary_set': int(secondary_set) if secondary_set else None, - 'min_armor': min_armor or 0, - 'min_crit_damage': min_crit_damage or 0, - 'min_damage_rating': min_damage_rating or 0, - 'min_heal_boost': 0, - 'legendary_cantrips': [c.strip() for c in legendary_cantrips.split(',') if c.strip()] if legendary_cantrips else [], - 'protection_spells': [w.strip() for w in legendary_wards.split(',') if w.strip()] if legendary_wards else [], - 'equipment_status_filter': equipment_status_filter - } - - # Initialize MagSuitbuilder-inspired solver - solver = ConstraintSatisfactionSolver(char_list, constraints) - - # Execute two-phase search algorithm - results = await solver.find_optimal_suits() - - return { - "suits": results["suits"], - "total_found": results["total_found"], - "armor_items_available": results.get("armor_items_available", 0), - "accessory_items_available": results.get("accessory_items_available", 0), - "message": results.get("message", "Search completed successfully"), - "constraints": constraints, - "characters_searched": char_list - } - - except Exception as e: - logger.error(f"Error in optimize/suits endpoint: {str(e)}") - raise HTTPException(status_code=500, detail=str(e)) - - -@app.get("/debug/available-sets") -async def get_available_sets(characters: str = Query(..., description="Comma-separated character names")): - """Debug endpoint to see what equipment sets are available""" - character_list = [c.strip() for c in characters.split(',') if c.strip()] - - query = """ - SELECT DISTINCT enh.item_set, COUNT(*) as item_count - FROM items i - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - WHERE i.character_name = ANY(:characters) - AND cs.armor_level > 0 - AND enh.item_set IS NOT NULL - GROUP BY enh.item_set - ORDER BY item_count DESC - """ - - async with database.transaction(): - rows = await database.fetch_all(query, {"characters": character_list}) - - return {"available_sets": [{"set_id": row["item_set"], "armor_count": row["item_count"]} for row in rows]} - -@app.get("/debug/test-simple-search") -async def test_simple_search(characters: str = Query(..., description="Comma-separated character names")): - """Test endpoint to find suits with NO constraints""" - character_list = [c.strip() for c in characters.split(',') if c.strip()] - - # Create minimal constraints (no set requirements, no cantrip requirements) - constraints = { - 'primary_set': None, - 'secondary_set': None, - 'min_armor': 0, - 'min_crit_damage': 0, - 'min_damage_rating': 0, - 'min_heal_boost': 0, - 'legendary_cantrips': [], - 'protection_spells': [], - 'equipment_status_filter': 'both' - } - - try: - solver = ConstraintSatisfactionSolver(character_list, constraints) - result = await solver.find_optimal_suits() - - return { - "message": "Simple search (no constraints) completed", - "suits_found": result.get("total_found", 0), - "armor_items_available": result.get("armor_items_available", 0), - "accessory_items_available": result.get("accessory_items_available", 0), - "sample_suits": result.get("suits", [])[:3] # First 3 suits - } - except Exception as e: - logger.error(f"Error in simple search: {e}") - return {"error": str(e)} - -@app.get("/optimize/suits/stream") -async def stream_optimize_suits( - request: Request, # Add request to detect client disconnection - characters: str = Query(..., description="Comma-separated character names"), - primary_set: Optional[int] = Query(None, description="Primary set ID requirement"), - secondary_set: Optional[int] = Query(None, description="Secondary set ID requirement"), - min_armor: Optional[int] = Query(None, description="Minimum armor requirement"), - min_crit_damage: Optional[int] = Query(None, description="Minimum crit damage requirement"), - min_damage_rating: Optional[int] = Query(None, description="Minimum damage rating requirement"), - legendary_cantrips: Optional[str] = Query(None, description="Comma-separated legendary cantrips"), - legendary_wards: Optional[str] = Query(None, description="Comma-separated protection spells"), - include_equipped: bool = Query(True, description="Include equipped items"), - include_inventory: bool = Query(True, description="Include inventory items"), - search_depth: str = Query("balanced", description="Search depth: quick, balanced, deep, exhaustive") -): - """Stream suit optimization results progressively using Server-Sent Events""" - - # Validate input - if not characters: - raise HTTPException(status_code=400, detail="No characters specified") - - # Split character names - character_list = [c.strip() for c in characters.split(',') if c.strip()] - - # Determine equipment status filter - if include_equipped and include_inventory: - equipment_status_filter = "both" - elif include_equipped: - equipment_status_filter = "equipped_only" - elif include_inventory: - equipment_status_filter = "inventory_only" - else: - raise HTTPException(status_code=400, detail="Must include either equipped or inventory items") - - # Build constraints - constraints = { - 'primary_set': primary_set, - 'secondary_set': secondary_set, - 'min_armor': min_armor or 0, - 'min_crit_damage': min_crit_damage or 0, - 'min_damage_rating': min_damage_rating or 0, - 'min_heal_boost': 0, - 'legendary_cantrips': [c.strip() for c in legendary_cantrips.split(',') if c.strip()] if legendary_cantrips else [], - 'protection_spells': [w.strip() for w in legendary_wards.split(',') if w.strip()] if legendary_wards else [], - 'equipment_status_filter': equipment_status_filter - } - - async def generate_suits(): - """Generator that yields suits progressively""" - solver = ConstraintSatisfactionSolver(character_list, constraints) - - # Configure search depth - search_limits = { - "quick": {"max_combinations": 10, "time_limit": 2}, - "balanced": {"max_combinations": 50, "time_limit": 10}, - "deep": {"max_combinations": 200, "time_limit": 30}, - "exhaustive": {"max_combinations": 1000, "time_limit": 120} - } - - limit_config = search_limits.get(search_depth, search_limits["balanced"]) - solver.max_combinations = limit_config["max_combinations"] - - # Start search - start_time = time.time() - found_count = 0 - - try: - # Phase 1: Get armor items - logger.info(f"Starting search with constraints: {constraints}") - armor_items = await solver._get_armor_items_with_set_filtering() - logger.info(f"Found {len(armor_items)} armor items") - if not armor_items: - logger.warning("No armor items found matching set requirements") - yield { - "event": "error", - "data": json.dumps({"message": "No armor items found matching set requirements"}) - } - return - - # Phase 2: Get accessories - accessory_items = await solver._get_accessory_items() - logger.info(f"Found {len(accessory_items)} accessory items") - - # Yield initial status - yield { - "event": "status", - "data": json.dumps({ - "armor_items": len(armor_items), - "accessory_items": len(accessory_items), - "search_depth": search_depth - }) - } - - # Phase 3: Generate combinations progressively - armor_combinations = solver._generate_armor_combinations(armor_items) - logger.info(f"Generated {len(armor_combinations)} armor combinations") - - for i, armor_combo in enumerate(armor_combinations): - # Check for client disconnection - if await request.is_disconnected(): - logger.info("Client disconnected, stopping search") - yield { - "event": "cancelled", - "data": json.dumps({"message": "Search cancelled by client"}) - } - return - - # Check time limit - if time.time() - start_time > limit_config["time_limit"]: - yield { - "event": "timeout", - "data": json.dumps({"message": f"Search time limit reached ({limit_config['time_limit']}s)"}) - } - break - - # Complete suit with accessories - complete_suit = solver._complete_suit_with_accessories(armor_combo, accessory_items) - if complete_suit: - # Score the suit - scored_suits = solver._score_suits([complete_suit]) - if scored_suits: - logger.info(f"Combination {i}: scored {scored_suits[0]['score']}") - if scored_suits[0]["score"] > 0: - found_count += 1 - - # Yield the suit - yield { - "event": "suit", - "data": json.dumps(scored_suits[0]) - } - - # Yield progress update - if found_count % 5 == 0: - yield { - "event": "progress", - "data": json.dumps({ - "found": found_count, - "checked": i + 1, - "elapsed": round(time.time() - start_time, 1) - }) - } - else: - logger.info(f"Combination {i}: suit scored 0, skipping") - else: - logger.info(f"Combination {i}: no scored suits returned") - else: - logger.info(f"Combination {i}: no complete suit generated") - - # Also check for disconnection every 10 iterations - if i % 10 == 0 and await request.is_disconnected(): - logger.info("Client disconnected during search") - yield { - "event": "cancelled", - "data": json.dumps({"message": "Search cancelled by client"}) - } - return - - # Final status - yield { - "event": "complete", - "data": json.dumps({ - "total_found": found_count, - "combinations_checked": len(armor_combinations), - "total_time": round(time.time() - start_time, 1) - }) - } - - except Exception as e: - logger.error(f"Error in streaming search: {e}") - yield { - "event": "error", - "data": json.dumps({"message": str(e)}) - } - - return EventSourceResponse(generate_suits()) - - -async def organize_items_by_slot(rows, locked_slots_str=None): - """ - Organize items by their possible equipment slots. - """ - locked_slots = set(locked_slots_str.split(',')) if locked_slots_str else set() - - # Define all possible equipment slots - armor_slots = ["Head", "Chest", "Upper Arms", "Lower Arms", "Hands", - "Abdomen", "Upper Legs", "Lower Legs", "Feet"] - jewelry_slots = ["Neck", "Left Ring", "Right Ring", "Left Wrist", "Right Wrist", "Trinket"] - clothing_slots = ["Shirt", "Pants"] - - all_slots = armor_slots + jewelry_slots + clothing_slots - - # Initialize slot dictionary - items_by_slot = {slot: [] for slot in all_slots if slot not in locked_slots} - - # Debug: Track slot assignment for troubleshooting - debug_slot_assignments = {} - - for row in rows: - # Convert row to item dict - item = { - "item_id": row["item_id"], - "character_name": row["character_name"], - "name": row["name"], - "icon": row["icon"], - "object_class": row["object_class"], - "is_equipped": row["current_wielded_location"] > 0, - "armor_level": row["armor_level"], - "crit_damage_rating": row["crit_damage_rating"], - "damage_rating": row["damage_rating"], - "item_set_id": row["item_set_id"], - "spell_names": row["spell_names"] or [], - "valid_locations": row["valid_locations"], - "coverage_mask": row["coverage_mask"] - } - - # Determine which slots this item can go in - possible_slots = determine_item_slots(item) - - # Debug: Log slot assignment - debug_slot_assignments[item["name"]] = { - "coverage_mask": row["coverage_mask"], - "possible_slots": possible_slots, - "is_equipped": item["is_equipped"], - "item_set_id": row["item_set_id"] - } - - # Add item to each possible slot (excluding locked slots) - for slot in possible_slots: - if slot in items_by_slot: # Skip locked slots - items_by_slot[slot].append(item.copy()) - - # Debug: Log slot assignment summary for Barris - if any("Barris" in row["character_name"] for row in rows): - logger.info(f"DEBUG: Barris slot assignments: {debug_slot_assignments}") - - return items_by_slot - - -def decode_valid_locations_to_jewelry_slots(valid_locations): - """ - Decode ValidLocations bitmask to jewelry slot names. - Based on EquipMask enum from Mag-Plugins. - """ - slots = [] - - # Jewelry slot mappings (EquipMask values) - jewelry_location_map = { - 0x00000001: "Head", # HeadWear - 0x00000008: "Neck", # Necklace - 0x00000010: "Chest", # ChestArmor - 0x00000080: "Abdomen", # AbdomenArmor - 0x00000020: "Upper Arms", # UpperArmArmor - 0x00000040: "Lower Arms", # LowerArmArmor - 0x00000002: "Hands", # HandWear - 0x00000100: "Left Ring", # LeftFinger - 0x00000200: "Right Ring", # RightFinger - 0x00000400: "Left Wrist", # LeftWrist - 0x00000800: "Right Wrist", # RightWrist - 0x00000004: "Feet", # FootWear - 0x00001000: "Upper Legs", # UpperLegArmor - 0x00002000: "Lower Legs", # LowerLegArmor - 0x00008000: "Trinket" # TrinketOne - } - - # Check each jewelry-relevant bit - jewelry_bits = { - 0x00000008: "Neck", # Necklace - 0x00000100: "Left Ring", # LeftFinger - 0x00000200: "Right Ring", # RightFinger - 0x00000400: "Left Wrist", # LeftWrist - 0x00000800: "Right Wrist", # RightWrist - 0x00008000: "Trinket" # TrinketOne - } - - for bit_value, slot_name in jewelry_bits.items(): - if valid_locations & bit_value: - slots.append(slot_name) - - return slots - - -def detect_jewelry_slots_by_name(item_name): - """ - Fallback jewelry slot detection based on item name patterns. - """ - slots = [] - - if "ring" in item_name: - slots.extend(["Left Ring", "Right Ring"]) - elif any(word in item_name for word in ["bracelet", "wrist"]): - slots.extend(["Left Wrist", "Right Wrist"]) - elif any(word in item_name for word in ["necklace", "amulet", "gorget"]): - slots.append("Neck") - elif any(word in item_name for word in ["trinket", "compass", "goggles"]): - slots.append("Trinket") - else: - # Default jewelry fallback - slots.append("Trinket") - - return slots - - -def determine_item_slots(item): - """ - Determine which equipment slots an item can be equipped to. - """ - slots = [] - - # Handle jewelry by ValidLocations and name patterns - if item["object_class"] == 4: # Jewelry - valid_locations = item.get("valid_locations", 0) - item_name = item["name"].lower() - - # Use ValidLocations bitmask if available (more accurate) - if valid_locations and valid_locations > 0: - jewelry_slots = decode_valid_locations_to_jewelry_slots(valid_locations) - if jewelry_slots: - slots.extend(jewelry_slots) - else: - # Fallback to name-based detection - slots.extend(detect_jewelry_slots_by_name(item_name)) - else: - # Fallback to name-based detection - slots.extend(detect_jewelry_slots_by_name(item_name)) - - # Handle armor/clothing by coverage mask or name patterns - elif item["object_class"] in [2, 3]: # Armor (2) or Clothing (3) - coverage = item.get("coverage_mask", item.get("coverage", 0)) - item_name = item["name"].lower() - - # Name-based detection for clothing items first (for ObjectClass 3) - if item["object_class"] == 3: - if any(word in item_name for word in ["pants", "breeches", "baggy"]): - slots.append("Pants") - return slots - elif any(word in item_name for word in ["shirt", "tunic"]): - slots.append("Shirt") - return slots - - # Use coverage mask if available - if coverage and coverage > 0: - slots.extend(decode_coverage_to_slots(coverage, item["object_class"], item["name"])) - else: - # Fallback to name-based detection - if any(word in item_name for word in ["helm", "cap", "hat", "circlet", "crown"]): - slots.append("Head") - elif any(word in item_name for word in ["robe", "pallium", "robes"]): - slots.append("Robe") # Robes have their own dedicated slot - elif any(word in item_name for word in ["chest", "cuirass", "hauberk"]): - slots.append("Chest") - elif item["object_class"] == 3: # Handle ObjectClass 3 items (clothing and robes) - # Use coverage mask detection for all ObjectClass 3 items - slots.extend(decode_coverage_to_slots(coverage, item["object_class"], item["name"])) - elif any(word in item_name for word in ["gauntlet", "glove"]): - slots.append("Hands") - elif any(word in item_name for word in ["boot", "shoe", "slipper"]): - slots.append("Feet") - elif any(word in item_name for word in ["pant", "trouser", "legging"]): - # Armor leggings (ObjectClass 2) - slots.extend(["Abdomen", "Upper Legs", "Lower Legs"]) - elif "bracer" in item_name: - slots.append("Lower Arms") - elif "pauldron" in item_name: - slots.append("Upper Arms") - elif "cloak" in item_name: - slots.append("Cloak") # Cloaks have their own dedicated slot - - return slots if slots else ["Trinket"] # Default fallback - - -def decode_coverage_to_slots(coverage_mask, object_class=None, item_name=''): - """ - Convert coverage mask to equipment slot names, including clothing. - Only classify as clothing if ObjectClass is 3 (Clothing). - """ - slots = [] - - # Only check for clothing patterns if this is actually a clothing item (ObjectClass 3) - if object_class == 3: - # Check coverage mask patterns for underclothes first - # Shirts: UnderwearChest (8) OR UnderwearAbdomen (16) = mask & 24 > 0 - if coverage_mask & 24: # 8 + 16 = 24 - slots.append("Shirt") - return slots - - # Pants: UnderwearUpperLegs (2) AND UnderwearLowerLegs (4) = mask & 6 = 6 - if (coverage_mask & 6) == 6: # Both bits 2 and 4 must be set - slots.append("Pants") - return slots - # Check for clothing patterns based on actual inventory data - # Specific coverage patterns for ObjectClass 3 clothing items: - - # Shirt pattern: OuterwearChest + OuterwearUpperArms + OuterwearLowerArms = 1024 + 4096 + 8192 = 13312 - shirt_pattern = (coverage_mask & 1024) and (coverage_mask & 4096) and (coverage_mask & 8192) - if shirt_pattern: - slots.append("Shirt") - return slots # Return early for clothing to avoid adding armor slots - - # Pants pattern: OuterwearUpperLegs + OuterwearLowerLegs + OuterwearAbdomen = 256 + 512 + 2048 = 2816 - pants_pattern = (coverage_mask & 256) and (coverage_mask & 512) and (coverage_mask & 2048) - if pants_pattern: - slots.append("Pants") - return slots # Return early for clothing to avoid adding armor slots - - # Check for underwear patterns (theoretical) - # Shirt = UnderwearChest (8) + UnderwearAbdomen (16) = 24 - if coverage_mask & 8 and coverage_mask & 16: # UnderwearChest + UnderwearAbdomen - slots.append("Shirt") - return slots - - # Pants = UnderwearUpperLegs (2) + UnderwearLowerLegs (4) + UnderwearAbdomen (16) = 22 - if coverage_mask & 2 and coverage_mask & 4 and coverage_mask & 16: # Full pants pattern - slots.append("Pants") - return slots - # Also check for simple pants pattern without abdomen - elif coverage_mask & 2 and coverage_mask & 4: # UnderwearUpperLegs + UnderwearLowerLegs - slots.append("Pants") - return slots - - # Cloak = 131072 - Exclude cloaks from suit building - if coverage_mask & 131072: - slots.append("Cloak") # Cloaks have their own dedicated slot - return slots - - # Robe detection - Check for robe patterns that might differ from shirt patterns - # If an item has chest coverage but is ObjectClass 3 and doesn't match shirt patterns, - # and has name indicators, classify as robe - if (coverage_mask & 1024) and any(word in item_name.lower() for word in ['robe', 'pallium']): - slots.append("Robe") # Robes have their own dedicated slot - return slots - - # Armor coverage bit mappings - armor_coverage_map = { - 1: "Head", - 256: "Upper Legs", # OuterwearUpperLegs - 512: "Lower Legs", # OuterwearLowerLegs - 1024: "Chest", # OuterwearChest - 2048: "Abdomen", # OuterwearAbdomen - 4096: "Upper Arms", # OuterwearUpperArms - 8192: "Lower Arms", # OuterwearLowerArms - 16384: "Head", # Head - 32768: "Hands", # Hands - 65536: "Feet", # Feet - } - - # Jewelry coverage bit mappings - jewelry_coverage_map = { - 262144: "Neck", # Necklace coverage - 524288: "Left Ring", # Ring coverage - 1048576: "Right Ring", # Ring coverage - 2097152: "Left Wrist", # Wrist coverage - 4194304: "Right Wrist", # Wrist coverage - 8388608: "Trinket" # Trinket coverage - } - - # Check armor coverage bits - for bit_value, slot_name in armor_coverage_map.items(): - if coverage_mask & bit_value: - slots.append(slot_name) - - # Check jewelry coverage bits - for bit_value, slot_name in jewelry_coverage_map.items(): - if coverage_mask & bit_value: - slots.append(slot_name) - - return list(set(slots)) # Remove duplicates - - - -def categorize_items_by_set(items): - """Categorize items by equipment set for efficient set-based optimization.""" - items_by_set = {} - for item in items: - set_id = item.get("item_set_id") - if set_id: - if set_id not in items_by_set: - items_by_set[set_id] = [] - items_by_set[set_id].append(item) - return items_by_set - - -def categorize_items_by_spell(items, required_spells): - """Categorize items by spells for efficient spell-based optimization.""" - items_by_spell = {spell: [] for spell in required_spells} - - for item in items: - item_spells = item.get("spell_names", []) - for spell in required_spells: - if spell in item_spells: - items_by_spell[spell].append(item) - - return items_by_spell - - -def build_suit_set_priority(items_by_set, items_by_spell, items_by_slot, - primary_set, secondary_set, required_spells): - """Build suit prioritizing equipment set requirements first.""" - suit = { - "items": {}, - "stats": {"primary_set_count": 0, "secondary_set_count": 0, "required_spells_found": 0}, - "missing": [], - "notes": [] - } - used_items = set() - - # Priority 1: Place primary set items - if primary_set and int(primary_set) in items_by_set: - primary_items = sorted(items_by_set[int(primary_set)], - key=lambda x: x.get("armor_level", 0), reverse=True) - placed = place_set_items_optimally(suit, primary_items, 5, used_items, items_by_slot) - suit["stats"]["primary_set_count"] = placed - - # Priority 2: Place secondary set items - if secondary_set and int(secondary_set) in items_by_set: - secondary_items = sorted(items_by_set[int(secondary_set)], - key=lambda x: x.get("armor_level", 0), reverse=True) - placed = place_set_items_optimally(suit, secondary_items, 4, used_items, items_by_slot) - suit["stats"]["secondary_set_count"] = placed - - # Priority 3: Fill remaining slots with best available items - fill_remaining_slots_optimally(suit, items_by_slot, used_items, required_spells) - - return suit - - -def build_suit_spell_priority(items_by_set, items_by_spell, items_by_slot, - primary_set, secondary_set, required_spells): - """Build suit prioritizing spell requirements first.""" - suit = { - "items": {}, - "stats": {"primary_set_count": 0, "secondary_set_count": 0, "required_spells_found": 0}, - "missing": [], - "notes": [] - } - used_items = set() - - # Priority 1: Place items with required spells - for spell in required_spells: - if spell in items_by_spell and items_by_spell[spell]: - spell_items = sorted(items_by_spell[spell], - key=lambda x: x.get("armor_level", 0), reverse=True) - for item in spell_items[:2]: # Limit to prevent spell hogging - if item["item_id"] not in used_items: - slots = determine_item_slots(item) - for slot in slots: - if slot not in suit["items"]: - suit["items"][slot] = item - used_items.add(item["item_id"]) - suit["stats"]["required_spells_found"] += 1 - break - - # Priority 2: Add set items to remaining slots - if primary_set and int(primary_set) in items_by_set: - primary_items = items_by_set[int(primary_set)] - placed = place_set_items_optimally(suit, primary_items, 5, used_items, items_by_slot, replace_ok=False) - suit["stats"]["primary_set_count"] = placed - - if secondary_set and int(secondary_set) in items_by_set: - secondary_items = items_by_set[int(secondary_set)] - placed = place_set_items_optimally(suit, secondary_items, 4, used_items, items_by_slot, replace_ok=False) - suit["stats"]["secondary_set_count"] = placed - - # Priority 3: Fill remaining slots - fill_remaining_slots_optimally(suit, items_by_slot, used_items, required_spells) - - return suit - - -def build_suit_balanced(items_by_set, items_by_spell, items_by_slot, - primary_set, secondary_set, required_spells): - """Build suit using balanced approach between sets and spells.""" - suit = { - "items": {}, - "stats": {"primary_set_count": 0, "secondary_set_count": 0, "required_spells_found": 0}, - "missing": [], - "notes": [] - } - used_items = set() - - # Interleave set and spell placement - armor_slots = ["Head", "Chest", "Upper Arms", "Lower Arms", "Hands", - "Abdomen", "Upper Legs", "Lower Legs", "Feet"] - jewelry_slots = ["Neck", "Left Ring", "Right Ring", "Left Wrist", "Right Wrist", "Trinket"] - clothing_slots = ["Shirt", "Pants"] - - set_items = [] - if primary_set and int(primary_set) in items_by_set: - set_items.extend(items_by_set[int(primary_set)][:5]) - if secondary_set and int(secondary_set) in items_by_set: - set_items.extend(items_by_set[int(secondary_set)][:4]) - - # Sort all candidate items by combined value (armor + spell count) - def item_value(item): - spell_bonus = len([s for s in item.get("spell_names", []) if s in required_spells]) * 100 - return item.get("armor_level", 0) + spell_bonus - - all_candidates = [] - for slot_items in items_by_slot.values(): - all_candidates.extend(slot_items) - - # Remove duplicates and sort by value - unique_candidates = {item["item_id"]: item for item in all_candidates}.values() - sorted_candidates = sorted(unique_candidates, key=item_value, reverse=True) - - # Place items greedily by value - for item in sorted_candidates: - if item["item_id"] in used_items: - continue - - slots = determine_item_slots(item) - for slot in slots: - if slot not in suit["items"]: - suit["items"][slot] = item - used_items.add(item["item_id"]) - - # Update stats - item_set = item.get("item_set_id") - if primary_set and item_set == int(primary_set): - suit["stats"]["primary_set_count"] += 1 - elif secondary_set and item_set == int(secondary_set): - suit["stats"]["secondary_set_count"] += 1 - - item_spells = item.get("spell_names", []) - for spell in required_spells: - if spell in item_spells: - suit["stats"]["required_spells_found"] += 1 - break - - return suit - - -def place_set_items_optimally(suit, set_items, target_count, used_items, items_by_slot, replace_ok=True): - """Place set items optimally in available slots.""" - placed_count = 0 - - # Sort items by value (armor level, spell count, etc.) - def item_value(item): - return item.get("armor_level", 0) + len(item.get("spell_names", [])) * 10 - - sorted_items = sorted(set_items, key=item_value, reverse=True) - - for item in sorted_items: - if placed_count >= target_count: - break - - if item["item_id"] in used_items: - continue - - slots = determine_item_slots(item) - placed = False - - for slot in slots: - # Try to place in empty slot first - if slot not in suit["items"]: - suit["items"][slot] = item - used_items.add(item["item_id"]) - placed_count += 1 - placed = True - break - # If replace_ok and this item is better, replace existing - elif replace_ok and item_value(item) > item_value(suit["items"][slot]): - old_item = suit["items"][slot] - used_items.discard(old_item["item_id"]) - suit["items"][slot] = item - used_items.add(item["item_id"]) - placed = True - break - - if placed: - continue - - return placed_count - - -def fill_remaining_slots_optimally(suit, items_by_slot, used_items, required_spells): - """Fill remaining empty slots with best available items.""" - armor_slots = ["Head", "Chest", "Upper Arms", "Lower Arms", "Hands", - "Abdomen", "Upper Legs", "Lower Legs", "Feet"] - jewelry_slots = ["Neck", "Left Ring", "Right Ring", "Left Wrist", "Right Wrist", "Trinket"] - clothing_slots = ["Shirt", "Pants"] - - for slot in armor_slots + jewelry_slots + clothing_slots: - if slot in suit["items"]: # Slot already filled - continue - - if slot not in items_by_slot or not items_by_slot[slot]: - continue - - # Find best available item for this slot - available_items = [item for item in items_by_slot[slot] - if item["item_id"] not in used_items] - - if available_items: - # Score items by armor + spell value - def item_value(item): - spell_bonus = len([s for s in item.get("spell_names", []) if s in required_spells]) * 50 - return item.get("armor_level", 0) + spell_bonus - - best_item = max(available_items, key=item_value) - suit["items"][slot] = best_item - used_items.add(best_item["item_id"]) - - -def is_duplicate_suit(new_suit, existing_suits): - """Check if this suit is substantially the same as an existing one.""" - new_items = set(item["item_id"] for item in new_suit["items"].values()) - - for existing_suit in existing_suits: - existing_items = set(item["item_id"] for item in existing_suit["items"].values()) - - # If 80% or more items are the same, consider it a duplicate - if len(new_items & existing_items) / max(len(new_items), 1) >= 0.8: - return True - - return False - - -def calculate_suit_stats(suit, primary_set, secondary_set, required_spells): - """Calculate comprehensive statistics for a suit.""" - suit["stats"] = { - "total_armor": 0, - "total_crit_damage": 0, - "total_damage_rating": 0, - "primary_set_count": 0, - "secondary_set_count": 0, - "required_spells_found": 0 - } - - found_spells = set() - - for item in suit["items"].values(): - # Accumulate stats - suit["stats"]["total_armor"] += item.get("armor_level", 0) - suit["stats"]["total_crit_damage"] += item.get("crit_damage_rating", 0) - suit["stats"]["total_damage_rating"] += item.get("damage_rating", 0) - - # Count set pieces - item_set = item.get("item_set_id") - if primary_set and item_set == int(primary_set): - suit["stats"]["primary_set_count"] += 1 - if secondary_set and item_set == int(secondary_set): - suit["stats"]["secondary_set_count"] += 1 - - # Count unique required spells - item_spells = item.get("spell_names", []) - for spell in required_spells: - if spell in item_spells: - found_spells.add(spell) - - suit["stats"]["required_spells_found"] = len(found_spells) - - -class ConstraintSatisfactionSolver: - """ - MagSuitbuilder-inspired two-phase constraint satisfaction solver. - - Phase 1: ArmorSearcher - Strict set filtering for armor pieces - Phase 2: AccessorySearcher - Spell optimization for jewelry/clothing - """ - - def __init__(self, characters, constraints): - self.characters = characters - self.constraints = constraints - self.primary_set = constraints.get('primary_set') - self.secondary_set = constraints.get('secondary_set') - self.min_armor = constraints.get('min_armor', 0) - self.min_crit_damage = constraints.get('min_crit_damage', 0) - self.min_damage_rating = constraints.get('min_damage_rating', 0) - self.min_heal_boost = constraints.get('min_heal_boost', 0) - self.legendary_cantrips = constraints.get('legendary_cantrips', []) - self.protection_spells = constraints.get('protection_spells', []) - self.equipment_status_filter = constraints.get('equipment_status_filter', 'both') - - - async def find_optimal_suits(self): - """Find optimal equipment combinations using MagSuitbuilder's two-phase algorithm""" - try: - # Phase 1: ArmorSearcher - Get armor pieces with strict set filtering - armor_items = await self._get_armor_items_with_set_filtering() - - if not armor_items: - return { - "suits": [], - "message": "No armor items found matching set requirements", - "total_found": 0 - } - - # Phase 2: AccessorySearcher - Get jewelry/clothing (no set restrictions) - accessory_items = await self._get_accessory_items() - - # Generate armor combinations (9 slots max) - armor_combinations = self._generate_armor_combinations(armor_items) - - # For each viable armor combination, find best accessories - suits = [] - for armor_combo in armor_combinations[:100]: # Limit to prevent timeout - complete_suit = self._complete_suit_with_accessories(armor_combo, accessory_items) - if complete_suit: - suits.append(complete_suit) - - # Score and rank suits - scored_suits = self._score_suits(suits) - - return { - "suits": scored_suits[:20], - "total_found": len(scored_suits), - "armor_items_available": len(armor_items), - "accessory_items_available": len(accessory_items) - } - - except Exception as e: - print(f"Error in constraint solver: {e}") - return { - "suits": [], - "message": f"Error: {str(e)}", - "total_found": 0 - } - - def _item_meets_constraints(self, item): - """Check if an item contributes to meeting the specified constraints""" - # Convert item data for consistency - item_spells = item.get("spell_names", "") - if isinstance(item_spells, str): - item_spell_list = [s.strip() for s in item_spells.split(",") if s.strip()] - else: - item_spell_list = item_spells or [] - - item_armor = item.get("armor_level", 0) or 0 - item_crit = int(item.get("gear_crit_damage", 0) or 0) - item_damage = int(item.get("gear_damage_rating", 0) or 0) - item_heal = int(item.get("gear_heal_boost", 0) or 0) - item_set = int(item.get("item_set_id", 0) or 0) - - # If no constraints specified, item is useful if it has any meaningful stats - has_any_constraints = ( - self.primary_set or self.secondary_set or - self.legendary_cantrips or self.protection_spells or - self.min_armor > 0 or self.min_crit_damage > 0 or - self.min_damage_rating > 0 or self.min_heal_boost > 0 - ) - - if not has_any_constraints: - # No constraints specified - any item with decent stats is useful - return item_armor > 0 or item_crit > 0 or item_damage > 0 or item_heal > 0 - - # Check if item contributes to any constraint - contributes_to_constraint = False - - # Set constraints - if self.primary_set and item_set == self.primary_set: - contributes_to_constraint = True - if self.secondary_set and item_set == self.secondary_set: - contributes_to_constraint = True - - # Spell constraints - required_spell_names = self.legendary_cantrips + self.protection_spells - if required_spell_names: - for required_spell in required_spell_names: - for item_spell in item_spell_list: - # Fuzzy matching like in scoring - spell_words = item_spell.lower().split() - required_words = required_spell.lower().split() - matches_all_words = all(any(req_word in spell_word for spell_word in spell_words) - for req_word in required_words) - if matches_all_words: - contributes_to_constraint = True - break - if contributes_to_constraint: - break - - # Stat constraints - item helps if it has meaningful amounts of required stats - if self.min_armor > 0 and item_armor >= 100: # Meaningful armor contribution - contributes_to_constraint = True - if self.min_crit_damage > 0 and item_crit >= 5: # Meaningful crit contribution - contributes_to_constraint = True - if self.min_damage_rating > 0 and item_damage >= 5: # Meaningful damage contribution - contributes_to_constraint = True - if self.min_heal_boost > 0 and item_heal >= 5: # Meaningful heal contribution - contributes_to_constraint = True - - return contributes_to_constraint - - async def _get_armor_items_with_set_filtering(self): - """Phase 1: ArmorSearcher - Get armor with strict constraint filtering""" - query = """ - SELECT DISTINCT i.id, i.character_name, i.item_id, i.name, i.icon, i.object_class, - i.current_wielded_location, i.timestamp, - enh.item_set as item_set_id, - cs.armor_level, - rd.int_values->>'374' as gear_crit_damage, - rd.int_values->>'370' as gear_damage_rating, - rd.int_values->>'372' as gear_heal_boost, - COALESCE((rd.int_values->>'218103821')::int, 0) as coverage, - string_agg(isp.spell_id::text, ',') as spell_ids - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - LEFT JOIN item_spells isp ON i.id = isp.item_id - WHERE i.character_name = ANY(:characters) - AND cs.armor_level > 0 - """ - - logger.info(f"Filtering armor for constraints: primary_set={self.primary_set}, secondary_set={self.secondary_set}, cantrips={self.legendary_cantrips}, wards={self.protection_spells}") - - # Apply set filtering if any sets are specified - set_filters = [] - params = {"characters": self.characters} - - if self.primary_set: - set_filters.append("enh.item_set = :primary_set") - params["primary_set"] = str(self.primary_set) - - if self.secondary_set: - set_filters.append("enh.item_set = :secondary_set") - params["secondary_set"] = str(self.secondary_set) - - if set_filters: - query += f" AND ({' OR '.join(set_filters)})" - logger.info(f"Applied set filtering: {' OR '.join(set_filters)}") - else: - logger.info("No set filtering applied - will use all armor items") - - # Apply equipment status filtering - if self.equipment_status_filter == "equipped_only": - query += " AND i.current_wielded_location > 0" - elif self.equipment_status_filter == "inventory_only": - query += " AND i.current_wielded_location = 0" - # "both" requires no additional filter - - query += """ - GROUP BY i.id, i.character_name, i.item_id, i.name, i.icon, i.object_class, - i.current_wielded_location, i.timestamp, - enh.item_set, cs.armor_level, rd.int_values->>'374', rd.int_values->>'370', rd.int_values->>'372', rd.int_values->>'218103821' - ORDER BY cs.armor_level DESC - """ - - async with database.transaction(): - rows = await database.fetch_all(query, params) - - items = [] - spells_enum = ENUM_MAPPINGS.get('spells', {}) - - for row in rows: - item = dict(row) - # Apply proper slot detection (including clothing) - item_for_slots = { - "object_class": item.get("object_class"), - "coverage_mask": item.get("coverage", 0), - "name": item.get("name", ""), - "valid_locations": item.get("valid_locations", 0) - } - slots = determine_item_slots(item_for_slots) - item["slot_name"] = ", ".join(slots) - - # Convert spell IDs to spell names - spell_ids_str = item.get("spell_ids", "") - spell_names = [] - if spell_ids_str: - spell_ids = [int(sid.strip()) for sid in spell_ids_str.split(',') if sid.strip()] - for spell_id in spell_ids: - spell_data = spells_enum.get(spell_id) - if spell_data and isinstance(spell_data, dict): - spell_name = spell_data.get('name', f'Unknown Spell {spell_id}') - spell_names.append(spell_name) - elif spell_data: - spell_names.append(str(spell_data)) - - item["spell_names"] = ", ".join(spell_names) - - # CRITICAL: Only include items that contribute to constraints - if self._item_meets_constraints(item): - items.append(item) - logger.debug(f"Included armor: {item['name']} (set: {item.get('item_set_id')}, spells: {item['spell_names'][:50]}...)") - else: - logger.debug(f"Filtered out armor: {item['name']} (set: {item.get('item_set_id')}, spells: {item['spell_names'][:50]}...) - doesn't meet constraints") - - logger.info(f"Armor filtering: {len(items)} items meet constraints out of {len(rows)} total armor items") - return items - - async def _get_accessory_items(self): - """Phase 2: AccessorySearcher - Get jewelry/clothing with constraint filtering""" - query = """ - SELECT DISTINCT i.id, i.character_name, i.item_id, i.name, i.icon, i.object_class, - i.current_wielded_location, i.timestamp, - enh.item_set as item_set_id, - cs.armor_level, - COALESCE((rd.int_values->>'218103821')::int, 0) as coverage, - COALESCE((rd.int_values->>'9')::int, 0) as valid_locations, - COALESCE((rd.int_values->>'374')::int, 0) as gear_crit_damage, - COALESCE((rd.int_values->>'370')::int, 0) as gear_damage_rating, - COALESCE((rd.int_values->>'372')::int, 0) as gear_heal_boost, - string_agg(isp.spell_id::text, ',') as spell_ids - FROM items i - LEFT JOIN item_combat_stats cs ON i.id = cs.item_id - LEFT JOIN item_enhancements enh ON i.id = enh.item_id - LEFT JOIN item_raw_data rd ON i.id = rd.item_id - LEFT JOIN item_spells isp ON i.id = isp.item_id - WHERE i.character_name = ANY(:characters) - AND (i.object_class = 4 -- Jewelry (ObjectClass 4) - OR (i.object_class = 3 AND ( - ((rd.int_values->>'218103821')::int & 1024 = 1024 AND (rd.int_values->>'218103821')::int & 4096 = 4096 AND (rd.int_values->>'218103821')::int & 8192 = 8192) -- Shirt pattern (13312) - OR ((rd.int_values->>'218103821')::int & 256 = 256 AND (rd.int_values->>'218103821')::int & 512 = 512 AND (rd.int_values->>'218103821')::int & 2048 = 2048) -- Pants pattern (2816) - OR (rd.int_values->>'218103821')::int & 24 = 24 -- Underwear Shirt - OR (rd.int_values->>'218103821')::int & 6 = 6 -- Underwear Pants - ) AND LOWER(i.name) NOT LIKE '%robe%' AND LOWER(i.name) NOT LIKE '%pallium%')) -- Exclude robes and palliums from suit building - """ - - # Apply equipment status filtering - if self.equipment_status_filter == "equipped_only": - query += " AND i.current_wielded_location > 0" - elif self.equipment_status_filter == "inventory_only": - query += " AND i.current_wielded_location = 0" - # "both" requires no additional filter - - query += """ - GROUP BY i.id, i.character_name, i.item_id, i.name, i.icon, i.object_class, - i.current_wielded_location, i.timestamp, - enh.item_set, cs.armor_level, rd.int_values->>'218103821', - rd.int_values->>'9', rd.int_values->>'374', - rd.int_values->>'370', rd.int_values->>'372' - ORDER BY cs.armor_level DESC - """ - - params = {"characters": self.characters} - - async with database.transaction(): - rows = await database.fetch_all(query, params) - - items = [] - spells_enum = ENUM_MAPPINGS.get('spells', {}) - - for row in rows: - item = dict(row) - # Apply proper slot detection (including clothing) - item_for_slots = { - "object_class": item.get("object_class"), - "coverage_mask": item.get("coverage", 0), - "name": item.get("name", ""), - "valid_locations": item.get("valid_locations", 0) - } - slots = determine_item_slots(item_for_slots) - item["slot_name"] = ", ".join(slots) - - # Convert spell IDs to spell names - spell_ids_str = item.get("spell_ids", "") - spell_names = [] - if spell_ids_str: - spell_ids = [int(sid.strip()) for sid in spell_ids_str.split(',') if sid.strip()] - for spell_id in spell_ids: - spell_data = spells_enum.get(spell_id) - if spell_data and isinstance(spell_data, dict): - spell_name = spell_data.get('name', f'Unknown Spell {spell_id}') - spell_names.append(spell_name) - elif spell_data: - spell_names.append(str(spell_data)) - - item["spell_names"] = ", ".join(spell_names) - - # CRITICAL: Only include accessories that contribute to constraints - if self._item_meets_constraints(item): - items.append(item) - logger.debug(f"Included accessory: {item['name']} (spells: {item['spell_names'][:50]}..., crit: {item.get('gear_crit_damage', 0)}, damage: {item.get('gear_damage_rating', 0)})") - else: - logger.debug(f"Filtered out accessory: {item['name']} (spells: {item['spell_names'][:50]}...) - doesn't meet constraints") - - logger.info(f"Accessory filtering: {len(items)} items meet constraints out of {len(rows)} total accessory items") - return items - - def _generate_armor_combinations(self, armor_items): - """Generate ALL viable armor combinations using MagSuitbuilder's recursive approach""" - if not armor_items: - logger.warning("No armor items provided to _generate_armor_combinations") - return [] - - # Group armor by slot - armor_by_slot = {} - for item in armor_items: - slots = item.get("slot_name", "").split(", ") - for slot in slots: - slot = slot.strip() - if slot and slot not in ["Neck", "Left Ring", "Right Ring", "Left Wrist", "Right Wrist", "Trinket"]: - if slot not in armor_by_slot: - armor_by_slot[slot] = [] - armor_by_slot[slot].append(item) - - logger.info(f"Armor grouped by slot: {[(slot, len(items)) for slot, items in armor_by_slot.items()]}") - - # Sort slots by number of items (least first for faster pruning) - slot_list = sorted(armor_by_slot.items(), key=lambda x: len(x[1])) - - # Initialize search state - self.combinations_found = [] - self.best_scores = {} # Track best scores to prune bad branches - self.max_combinations = 20 # Limit to prevent timeout - - # Start recursive search - current_combo = {} - self._recursive_armor_search(slot_list, 0, current_combo, set()) - - logger.info(f"Generated {len(self.combinations_found)} armor combinations") - - # Return unique combinations sorted by score - return self.combinations_found[:self.max_combinations] - - def _recursive_armor_search(self, slot_list, index, current_combo, used_items): - """Recursive backtracking search (MagSuitbuilder approach)""" - # Base case: we've processed all slots - if index >= len(slot_list): - if current_combo: - # Calculate combo score - combo_score = self._calculate_combo_score(current_combo) - - # Only keep if it's a good combination - if combo_score >= 50: # Minimum threshold - # Check if we already have a similar combo - if not self._is_duplicate_combo(current_combo): - self.combinations_found.append(dict(current_combo)) - # Sort by score to keep best ones - self.combinations_found.sort( - key=lambda x: self._calculate_combo_score(x), - reverse=True - ) - # Keep only top combinations - if len(self.combinations_found) > self.max_combinations * 2: - self.combinations_found = self.combinations_found[:self.max_combinations] - return - - # Stop if we've found enough good combinations - if len(self.combinations_found) >= self.max_combinations: - return - - slot_name, items = slot_list[index] - - # Try each item in this slot - for item in items[:5]: # Limit items per slot to prevent explosion - if item["item_id"] not in used_items: - # Check if this item would help meet set requirements - if self._should_try_item(item, current_combo): - # Push: Add item to current combination - current_combo[slot_name] = item - used_items.add(item["item_id"]) - - # Recurse to next slot - self._recursive_armor_search(slot_list, index + 1, current_combo, used_items) - - # Pop: Remove item (backtrack) - del current_combo[slot_name] - used_items.remove(item["item_id"]) - - # Also try skipping this slot entirely (empty slot) - self._recursive_armor_search(slot_list, index + 1, current_combo, used_items) - - def _calculate_combo_score(self, combo): - """Quick score calculation for pruning""" - primary_set_int = int(self.primary_set) if self.primary_set else None - secondary_set_int = int(self.secondary_set) if self.secondary_set else None - - primary_count = sum(1 for item in combo.values() - if int(item.get("item_set_id", 0) or 0) == primary_set_int) - secondary_count = sum(1 for item in combo.values() - if int(item.get("item_set_id", 0) or 0) == secondary_set_int) - - score = 0 - if primary_count >= 5: - score += 50 - else: - score += primary_count * 8 - - if secondary_count >= 4: - score += 40 - else: - score += secondary_count * 8 - - return score - - def _should_try_item(self, item, current_combo): - """Check if item is worth trying - must meet constraints and set logic""" - # CRITICAL: Item must meet constraints to be considered - if not self._item_meets_constraints(item): - return False - - primary_set_int = int(self.primary_set) if self.primary_set else None - secondary_set_int = int(self.secondary_set) if self.secondary_set else None - item_set_int = int(item.get("item_set_id", 0) or 0) - - # Count current sets - primary_count = sum(1 for i in current_combo.values() - if int(i.get("item_set_id", 0) or 0) == primary_set_int) - secondary_count = sum(1 for i in current_combo.values() - if int(i.get("item_set_id", 0) or 0) == secondary_set_int) - - # Apply MagSuitbuilder's logic but with constraint checking - if item_set_int == primary_set_int and primary_count < 5: - return True - elif item_set_int == secondary_set_int and secondary_count < 4: - return True - elif not item_set_int: # Non-set items allowed if we have room and they meet constraints - return len(current_combo) < 9 - else: # Wrong set item - return False - - def _is_duplicate_combo(self, combo): - """Check if we already have this combination""" - combo_items = set(item["item_id"] for item in combo.values()) - - for existing in self.combinations_found: - existing_items = set(item["item_id"] for item in existing.values()) - if combo_items == existing_items: - return True - return False - - def _build_optimal_combination(self, armor_by_slot, strategy="balanced"): - """Build a single combination using specified strategy""" - combination = {} - primary_count = 0 - secondary_count = 0 - - primary_set_int = int(self.primary_set) if self.primary_set else None - secondary_set_int = int(self.secondary_set) if self.secondary_set else None - - # Process slots in order - for slot, items in armor_by_slot.items(): - best_item = None - best_score = -1 - - for item in items: - item_set_int = int(item.get("item_set_id", 0) or 0) - score = 0 - - if strategy == "armor": - # Prioritize armor level - score = item.get("armor_level", 0) - if item_set_int == primary_set_int: - score += 50 - elif item_set_int == secondary_set_int: - score += 30 - - elif strategy == "primary": - # Maximize primary set - if item_set_int == primary_set_int and primary_count < 5: - score = 1000 - elif item_set_int == secondary_set_int and secondary_count < 4: - score = 500 - else: - score = item.get("armor_level", 0) - - elif strategy == "balanced": - # Balance sets according to requirements - if item_set_int == primary_set_int and primary_count < 5: - score = 800 - elif item_set_int == secondary_set_int and secondary_count < 4: - score = 600 - else: - score = item.get("armor_level", 0) / 10 - - if score > best_score: - best_item = item - best_score = score - - if best_item: - combination[slot] = best_item - item_set_int = int(best_item.get("item_set_id", 0) or 0) - if item_set_int == primary_set_int: - primary_count += 1 - elif item_set_int == secondary_set_int: - secondary_count += 1 - - return combination if combination else None - - def _build_equipped_preferred_combination(self, armor_by_slot): - """Build combination preferring currently equipped items""" - combination = {} - - for slot, items in armor_by_slot.items(): - # Prefer equipped items - equipped_items = [item for item in items if item.get("current_wielded_location", 0) > 0] - if equipped_items: - # Take the best equipped item for this slot - combination[slot] = max(equipped_items, key=lambda x: x.get("armor_level", 0)) - elif items: - # Fall back to best available - combination[slot] = items[0] - - return combination if combination else None - - def _complete_suit_with_accessories(self, armor_combo, accessory_items): - """Complete armor combination with systematic jewelry optimization""" - complete_suit = {"items": dict(armor_combo)} - - # Only optimize accessories if there are accessory-related constraints - has_accessory_constraints = ( - self.legendary_cantrips or - self.protection_spells or - self.min_crit_damage > 0 or - self.min_damage_rating > 0 or - self.min_heal_boost > 0 - ) - - if has_accessory_constraints: - # Systematically optimize jewelry slots - jewelry_items = [item for item in accessory_items if item.get("object_class") == 4] - self._optimize_jewelry_systematically(complete_suit, jewelry_items) - - # Also optimize clothing slots - clothing_items = [item for item in accessory_items if item.get("object_class") == 3] - self._optimize_clothing_systematically(complete_suit, clothing_items) - - return complete_suit - - def _optimize_jewelry_systematically(self, suit, jewelry_items): - """ - Systematically optimize all 6 jewelry slots for maximum benefit. - Phase 3D.2 implementation. - """ - # Group jewelry by slot - jewelry_by_slot = self._group_jewelry_by_slot(jewelry_items) - - # Define jewelry slot priority (amulets often have best spells) - jewelry_slot_priority = [ - "Neck", # Amulets/necklaces often have legendary cantrips - "Left Ring", # Rings often have high ratings - "Right Ring", - "Left Wrist", # Bracelets - "Right Wrist", - "Trinket" # Special items - ] - - # Track spells already covered by armor - covered_spells = set() - for item in suit["items"].values(): - item_spells = item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - covered_spells.update(item_spells.split(", ")) - elif isinstance(item_spells, list): - covered_spells.update(item_spells) - - # Optimize each jewelry slot - for slot in jewelry_slot_priority: - if slot in jewelry_by_slot and jewelry_by_slot[slot]: - best_item = self._find_best_jewelry_for_slot( - slot, jewelry_by_slot[slot], suit, covered_spells - ) - if best_item: - suit["items"][slot] = best_item - - # Update covered spells - item_spells = best_item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - covered_spells.update(item_spells.split(", ")) - elif isinstance(item_spells, list): - covered_spells.update(item_spells) - - def _group_jewelry_by_slot(self, jewelry_items): - """Group jewelry items by their possible slots""" - jewelry_by_slot = { - "Neck": [], "Left Ring": [], "Right Ring": [], - "Left Wrist": [], "Right Wrist": [], "Trinket": [] - } - - for item in jewelry_items: - possible_slots = determine_item_slots(item) - for slot in possible_slots: - if slot in jewelry_by_slot: - jewelry_by_slot[slot].append(item) - - return jewelry_by_slot - - def _find_best_jewelry_for_slot(self, slot, slot_items, current_suit, covered_spells): - """Find the best jewelry item for a specific slot""" - if not slot_items: - return None - - required_spells = self.legendary_cantrips + self.protection_spells - best_item = None - best_score = -1 - - for item in slot_items: - score = self._calculate_jewelry_item_score(item, required_spells, covered_spells) - if score > best_score: - best_score = score - best_item = item - - # CRITICAL: Only return item if it has a meaningful score (contributes to constraints) - # Score of 0 means it doesn't meet constraints, don't use it - if best_score <= 0: - return None - - return best_item - - def _optimize_clothing_systematically(self, suit, clothing_items): - """ - Systematically optimize clothing slots (Shirt and Pants) for maximum benefit. - Similar to jewelry optimization but for clothing items. - """ - # Group clothing by slot - clothing_by_slot = self._group_clothing_by_slot(clothing_items) - - # Define clothing slot priority - clothing_slot_priority = ["Shirt", "Pants"] - - # Track spells already covered by armor and jewelry - covered_spells = set() - for item in suit["items"].values(): - item_spells = item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - covered_spells.update(item_spells.split(", ")) - elif isinstance(item_spells, list): - covered_spells.update(item_spells) - - # Optimize each clothing slot - for slot in clothing_slot_priority: - if slot in clothing_by_slot and clothing_by_slot[slot]: - best_item = self._find_best_clothing_for_slot( - slot, clothing_by_slot[slot], suit, covered_spells - ) - if best_item: - suit["items"][slot] = best_item - - # Update covered spells - item_spells = best_item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - covered_spells.update(item_spells.split(", ")) - elif isinstance(item_spells, list): - covered_spells.update(item_spells) - - def _group_clothing_by_slot(self, clothing_items): - """Group clothing items by their possible slots""" - clothing_by_slot = {"Shirt": [], "Pants": []} - - for item in clothing_items: - possible_slots = determine_item_slots(item) - for slot in possible_slots: - if slot in clothing_by_slot: - clothing_by_slot[slot].append(item) - - return clothing_by_slot - - def _find_best_clothing_for_slot(self, slot, slot_items, current_suit, covered_spells): - """Find the best clothing item for a specific slot""" - if not slot_items: - return None - - required_spells = self.legendary_cantrips + self.protection_spells - best_item = None - best_score = -1 - - for item in slot_items: - score = self._calculate_clothing_item_score(item, required_spells, covered_spells) - if score > best_score: - best_score = score - best_item = item - - # CRITICAL: Only return item if it has a meaningful score (contributes to constraints) - # Score of 0 means it doesn't meet constraints, don't use it - if best_score <= 0: - return None - - return best_item - - def _calculate_clothing_item_score(self, item, required_spells, covered_spells): - """Calculate optimization score for a clothing item""" - # CRITICAL: Items that don't meet constraints get score 0 - if not self._item_meets_constraints(item): - return 0 - - score = 0 - - # Get item spells - item_spells = set() - spell_data = item.get("spell_names", "") - if spell_data: - if isinstance(spell_data, str): - item_spells.update(spell_data.split(", ")) - elif isinstance(spell_data, list): - item_spells.update(spell_data) - - # High bonus for required spells that aren't covered yet - for spell in required_spells: - for item_spell in item_spells: - if spell.lower() in item_spell.lower() and item_spell not in covered_spells: - score += 100 # Very high bonus for uncovered required spells - - # Bonus for any legendary spells - for spell in item_spells: - if "legendary" in spell.lower(): - score += 20 - - # Rating bonuses (clothing can have ratings too, only count if meeting constraints) - score += (item.get("gear_crit_damage", 0) or 0) * 2 - score += (item.get("gear_damage_rating", 0) or 0) * 2 - score += (item.get("gear_heal_boost", 0) or 0) * 1 - - # Prefer unequipped items slightly - if item.get("current_wielded_location", 0) == 0: - score += 5 - - return score - - def _calculate_jewelry_item_score(self, item, required_spells, covered_spells): - """Calculate optimization score for a jewelry item""" - # CRITICAL: Items that don't meet constraints get score 0 - if not self._item_meets_constraints(item): - return 0 - - score = 0 - - # Get item spells - item_spells = set() - spell_data = item.get("spell_names", "") - if spell_data: - if isinstance(spell_data, str): - item_spells.update(spell_data.split(", ")) - elif isinstance(spell_data, list): - item_spells.update(spell_data) - - # High bonus for required spells that aren't covered yet - for spell in required_spells: - for item_spell in item_spells: - if spell.lower() in item_spell.lower() and item_spell not in covered_spells: - score += 100 # Very high bonus for uncovered required spells - - # Bonus for any legendary spells - for spell in item_spells: - if "legendary" in spell.lower(): - score += 20 - - # Rating bonuses (only count if meeting constraints) - score += (item.get("gear_crit_damage", 0) or 0) * 2 - score += (item.get("gear_damage_rating", 0) or 0) * 2 - score += (item.get("gear_heal_boost", 0) or 0) * 1 - - # Prefer unequipped items slightly (so we don't disrupt current builds) - if item.get("current_wielded_location", 0) == 0: - score += 5 - - return score - - def _calculate_jewelry_score_bonus(self, items): - """ - Calculate scoring bonus for jewelry optimization. - Phase 3D.3 implementation. - """ - jewelry_slots = ["Neck", "Left Ring", "Right Ring", "Left Wrist", "Right Wrist", "Trinket"] - jewelry_items = [item for slot, item in items.items() if slot in jewelry_slots] - - bonus = 0 - - # Slot coverage bonus - 2 points per jewelry slot filled - bonus += len(jewelry_items) * 2 - - # Rating bonus from jewelry (jewelry often has high ratings) - for item in jewelry_items: - bonus += int(item.get("gear_crit_damage", 0) or 0) * 0.1 # 0.1 points per crit damage point - bonus += int(item.get("gear_damage_rating", 0) or 0) * 0.1 # 0.1 points per damage rating point - bonus += int(item.get("gear_heal_boost", 0) or 0) * 0.05 # 0.05 points per heal boost point - - # Spell diversity bonus from jewelry - jewelry_spells = set() - for item in jewelry_items: - item_spells = item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - jewelry_spells.update(item_spells.split(", ")) - elif isinstance(item_spells, list): - jewelry_spells.update(item_spells) - - # Bonus for legendary spells from jewelry - legendary_count = sum(1 for spell in jewelry_spells if "legendary" in spell.lower()) - bonus += legendary_count * 3 # 3 points per legendary spell from jewelry - - # Bonus for spell diversity from jewelry - bonus += min(5, len(jewelry_spells) * 0.5) # Up to 5 points for jewelry spell diversity - - return bonus - - def _create_disqualified_suit_result(self, index, items, reason): - """Create a result for a disqualified suit (overlapping cantrips)""" - # Extract basic info for display - primary_set_int = int(self.primary_set) if self.primary_set else None - secondary_set_int = int(self.secondary_set) if self.secondary_set else None - - primary_count = sum(1 for item in items.values() - if int(item.get("item_set_id", 0) or 0) == primary_set_int) - secondary_count = sum(1 for item in items.values() - if int(item.get("item_set_id", 0) or 0) == secondary_set_int) - - return { - "id": index + 1, - "score": 0, # Disqualified suits get 0 score - "disqualified": True, - "disqualification_reason": reason, - "primary_set": self._get_set_name(self.primary_set) if self.primary_set else None, - "primary_set_count": primary_count, - "secondary_set": self._get_set_name(self.secondary_set) if self.secondary_set else None, - "secondary_set_count": secondary_count, - "spell_coverage": 0, - "total_armor": sum(item.get("armor_level", 0) or 0 for item in items.values()), - "stats": { - "primary_set_count": primary_count, - "secondary_set_count": secondary_count, - "required_spells_found": 0, - "total_armor": sum(item.get("armor_level", 0) or 0 for item in items.values()), - "total_crit_damage": sum(int(item.get("gear_crit_damage", 0) or 0) for item in items.values()), - "total_damage_rating": sum(int(item.get("gear_damage_rating", 0) or 0) for item in items.values()), - "total_heal_boost": sum(int(item.get("gear_heal_boost", 0) or 0) for item in items.values()) - }, - "items": { - slot: { - "character_name": item["character_name"], - "name": item["name"], - "item_set_id": item.get("item_set_id"), - "item_set_name": self._get_set_name(item.get("item_set_id")), - "armor_level": item.get("armor_level", 0), - "crit_damage_rating": item.get("gear_crit_damage", 0), - "damage_rating": item.get("gear_damage_rating", 0), - "heal_boost": item.get("gear_heal_boost", 0), - "spell_names": item.get("spell_names", "").split(", ") if item.get("spell_names") else [], - "slot_name": item.get("slot_name", slot) - } - for slot, item in items.items() - } - } - - def _score_suits(self, suits): - """Score suits using proper ranking priorities""" - scored_suits = [] - - for i, suit in enumerate(suits): - items = suit["items"] - - # FIRST: Check for overlapping REQUESTED cantrips (HARD REQUIREMENT) - requested_cantrips = self.legendary_cantrips # Only the cantrips user asked for - all_cantrips = [] - cantrip_sources = {} # Track which item has which requested cantrip - has_overlap = False - overlap_reason = "" - - # DEBUG: Log suit evaluation - logger.info(f"Evaluating suit {i}: {len(items)} items") - for slot, item in items.items(): - logger.info(f" {slot}: {item.get('name', 'Unknown')} (set: {item.get('item_set_id', 'None')}) spells: {item.get('spell_names', 'None')}") - - # Track overlaps but don't disqualify - just note them for scoring penalties - overlap_penalty = 0 - overlap_notes = [] - - if requested_cantrips: - logger.info(f"Checking for overlapping cantrips: {requested_cantrips}") - - # Define ward spells that are allowed to overlap (protection is stackable) - ward_spells = { - "legendary flame ward", "legendary frost ward", "legendary acid ward", - "legendary storm ward", "legendary slashing ward", "legendary piercing ward", - "legendary bludgeoning ward", "legendary armor" - } - - for slot, item in items.items(): - item_spells = item.get("spell_names", []) - if isinstance(item_spells, str): - item_spells = item_spells.split(", ") - - for spell in item_spells: - # Check if this spell is one of the REQUESTED cantrips - for requested in requested_cantrips: - # More precise matching - check if the requested cantrip is part of the spell name - spell_words = spell.lower().split() - requested_words = requested.lower().split() - - # Check if all words in the requested cantrip appear in the spell - matches_all_words = all(any(req_word in spell_word for spell_word in spell_words) - for req_word in requested_words) - - if matches_all_words: - logger.info(f" Found match: '{requested}' matches '{spell}' on {slot}") - - # Check if this is a ward spell (protection) - these are allowed to overlap - is_ward_spell = requested.lower() in ward_spells - - if requested in cantrip_sources and cantrip_sources[requested] != slot: - if is_ward_spell: - # Ward spells are allowed to overlap - no penalty - logger.info(f" Ward overlap allowed: {requested} on {cantrip_sources[requested]} and {slot}") - else: - # Non-ward spells overlapping - apply penalty but don't disqualify - overlap_penalty += 50 # 50 point penalty per overlap - overlap_note = f"Overlapping {requested} on {cantrip_sources[requested]} and {slot}" - overlap_notes.append(overlap_note) - logger.warning(f" OVERLAP PENALTY: {overlap_note}") - cantrip_sources[requested] = slot - - # Also track all legendary cantrips for bonus scoring - if "legendary" in spell.lower(): - all_cantrips.append(spell) - else: - # No cantrip constraints - just collect all legendary cantrips for bonus scoring - for slot, item in items.items(): - item_spells = item.get("spell_names", []) - if isinstance(item_spells, str): - item_spells = item_spells.split(", ") - - for spell in item_spells: - if "legendary" in spell.lower(): - all_cantrips.append(spell) - - # Proceed with scoring (including any overlap penalties) - score = 0 - - # Count set pieces - primary_set_int = int(self.primary_set) if self.primary_set else None - secondary_set_int = int(self.secondary_set) if self.secondary_set else None - - primary_count = sum(1 for item in items.values() - if int(item.get("item_set_id", 0) or 0) == primary_set_int) - secondary_count = sum(1 for item in items.values() - if int(item.get("item_set_id", 0) or 0) == secondary_set_int) - - # PRIORITY 1: Equipment Set Completion (300-500 points) - only if sets requested - if self.primary_set: - if primary_count >= 5: - score += 300 # Full primary set - else: - score += primary_count * 50 # 50 points per piece - - if self.secondary_set: - if secondary_count >= 4: - score += 200 # Full secondary set - else: - score += secondary_count * 40 # 40 points per piece - - # Calculate total ratings - total_armor = sum(item.get("armor_level", 0) or 0 for item in items.values()) - total_crit_damage = sum(int(item.get("gear_crit_damage", 0) or 0) for item in items.values()) - total_damage_rating = sum(int(item.get("gear_damage_rating", 0) or 0) for item in items.values()) - total_heal_boost = sum(int(item.get("gear_heal_boost", 0) or 0) for item in items.values()) - - # PRIORITY 2: Crit Damage Rating (10 points per point) - only if requested - if self.min_crit_damage > 0: - score += total_crit_damage * 10 - else: - score += total_crit_damage * 1 # Minor bonus if not specifically requested - - # PRIORITY 3: Damage Rating (8 points per point) - only if requested - if self.min_damage_rating > 0: - score += total_damage_rating * 8 - else: - score += total_damage_rating * 1 # Minor bonus if not specifically requested - - # BONUS: Required spell coverage (up to 50 points) - all_spells = set() - for item in items.values(): - item_spells = item.get("spell_names", "") - if item_spells: - if isinstance(item_spells, str): - all_spells.update(item_spells.split(", ")) - else: - all_spells.update(item_spells) - - required_spells = self.legendary_cantrips + self.protection_spells - if required_spells: - # Use fuzzy matching for spell coverage like we do for overlap detection - spell_coverage_count = 0 - for required in required_spells: - for actual_spell in all_spells: - # More precise matching - check if the requested cantrip is part of the spell name - spell_words = actual_spell.lower().split() - required_words = required.lower().split() - - # Check if all words in the requested cantrip appear in the spell - matches_all_words = all(any(req_word in spell_word for spell_word in spell_words) - for req_word in required_words) - - if matches_all_words: - spell_coverage_count += 1 - break # Found this required spell, move to next - - logger.info(f"Spell coverage: {spell_coverage_count}/{len(required_spells)} required spells found") - score += (spell_coverage_count / len(required_spells)) * 50 - - # BONUS: Total unique cantrips (2 points each) - score += len(all_cantrips) * 2 - - # BONUS: Total armor level (only if armor minimum requested) - if self.min_armor > 0: - score += total_armor * 0.1 # Higher bonus if specifically requested - else: - score += total_armor * 0.01 # Minor bonus for general armor - - # BONUS: Meeting minimum requirements (10 points each) - armor_req_met = self.min_armor > 0 and total_armor >= self.min_armor - crit_req_met = self.min_crit_damage > 0 and total_crit_damage >= self.min_crit_damage - damage_req_met = self.min_damage_rating > 0 and total_damage_rating >= self.min_damage_rating - - if armor_req_met: - score += 10 - if crit_req_met: - score += 10 - if damage_req_met: - score += 10 - - # Apply overlap penalty - score -= overlap_penalty - - # CRITICAL: Heavy penalty for not meeting required minimums - if self.min_armor > 0 and total_armor < self.min_armor: - score -= 200 # Heavy penalty for not meeting armor requirement - if self.min_crit_damage > 0 and total_crit_damage < self.min_crit_damage: - score -= 200 # Heavy penalty for not meeting crit requirement - if self.min_damage_rating > 0 and total_damage_rating < self.min_damage_rating: - score -= 200 # Heavy penalty for not meeting damage requirement - if self.min_heal_boost > 0 and total_heal_boost < self.min_heal_boost: - score -= 200 # Heavy penalty for not meeting heal requirement - - # CRITICAL: Heavy penalty for not getting required set counts - if self.primary_set and primary_count < 5: - score -= (5 - primary_count) * 30 # 30 point penalty per missing primary set piece - if self.secondary_set and secondary_count < 4: - score -= (4 - secondary_count) * 25 # 25 point penalty per missing secondary set piece - - logger.info(f"Suit {i} final score: {int(score)} (primary: {primary_count}, secondary: {secondary_count}, armor: {total_armor}, crit: {total_crit_damage}, damage: {total_damage_rating}, overlap_penalty: {overlap_penalty})") - - # Create suit result - suit_result = { - "id": i + 1, - "score": int(score), - "primary_set": self._get_set_name(self.primary_set) if self.primary_set else None, - "primary_set_count": primary_count, - "secondary_set": self._get_set_name(self.secondary_set) if self.secondary_set else None, - "secondary_set_count": secondary_count, - "spell_coverage": len(all_spells), - "total_armor": total_armor, - "stats": { - "primary_set_count": primary_count, - "secondary_set_count": secondary_count, - "required_spells_found": len([spell for spell in self.legendary_cantrips + self.protection_spells if spell in all_spells]), - "total_armor": total_armor, - "total_crit_damage": total_crit_damage, - "total_damage_rating": total_damage_rating, - "total_heal_boost": total_heal_boost - }, - "items": { - slot: { - "character_name": item["character_name"], - "name": item["name"], - "item_set_id": item.get("item_set_id"), - "item_set_name": self._get_set_name(item.get("item_set_id")), - "armor_level": item.get("armor_level", 0), - "crit_damage_rating": item.get("gear_crit_damage", 0), - "damage_rating": item.get("gear_damage_rating", 0), - "heal_boost": item.get("gear_heal_boost", 0), - "spell_names": item.get("spell_names", "").split(", ") if item.get("spell_names") else [], - "slot_name": item.get("slot_name", slot) - } - for slot, item in items.items() - }, - "notes": overlap_notes if overlap_notes else [] - } - - # Add comprehensive constraint analysis - add_suit_analysis(suit_result, self.primary_set, self.secondary_set, - self.legendary_cantrips + self.protection_spells, - self.min_armor, self.min_crit_damage, self.min_damage_rating, self.min_heal_boost) - - scored_suits.append(suit_result) - - # Sort by score descending - scored_suits.sort(key=lambda x: x["score"], reverse=True) - return scored_suits - - def _get_set_name(self, set_id): - """Get human-readable set name from set ID""" - if not set_id: - return "No Set" - - set_id_str = str(set_id) - dictionaries = ENUM_MAPPINGS.get('dictionaries', {}) - attribute_set_info = dictionaries.get('AttributeSetInfo', {}).get('values', {}) - - if set_id_str in attribute_set_info: - return attribute_set_info[set_id_str] - else: - return f"Unknown Set ({set_id})" - - - def solve(self, max_results, max_iterations=1000): - """ - Solve the constraint satisfaction problem using iterative search. - - Returns the top solutions found within the iteration limit. - """ - logger.info(f"CSP Solver: Starting search with {len(self.candidate_items)} items, {max_iterations} max iterations") - - solutions = [] - iteration = 0 - - # Strategy 1: Set-First Greedy Search (50% of iterations) - for i in range(max_iterations // 2): - solution = self._solve_set_first_greedy() - if solution and self._is_unique_solution(solution, solutions): - solutions.append(solution) - if len(solutions) >= max_results * 2: # Get extra solutions for ranking - break - iteration += 1 - - # Strategy 2: Backtracking Search (30% of iterations) - for i in range(max_iterations * 3 // 10): - solution = self._solve_backtracking() - if solution and self._is_unique_solution(solution, solutions): - solutions.append(solution) - if len(solutions) >= max_results * 2: - break - iteration += 1 - - # Strategy 3: Random Restarts (20% of iterations) - for i in range(max_iterations // 5): - solution = self._solve_random_restart() - if solution and self._is_unique_solution(solution, solutions): - solutions.append(solution) - if len(solutions) >= max_results * 2: - break - iteration += 1 - - logger.info(f"CSP Solver: Found {len(solutions)} solutions in {iteration} iterations") - - # Score and rank all solutions - for solution in solutions: - self._calculate_solution_stats(solution) - solution["score"] = self._calculate_solution_score(solution) - solution["id"] = solutions.index(solution) + 1 - self._add_solution_analysis(solution) - - # Return top solutions - solutions.sort(key=lambda x: x["score"], reverse=True) - return solutions[:max_results] - - def _solve_set_first_greedy(self): - """ - Greedy algorithm that prioritizes set requirements first. - """ - solution = {"items": {}, "stats": {}} - used_items = set() - - # Phase 1: Place primary set items - primary_placed = 0 - if self.primary_set and self.primary_set in self.items_by_set: - primary_items = sorted(self.items_by_set[self.primary_set], - key=lambda x: self._item_value(x, solution), reverse=True) - - for item in primary_items: - if primary_placed >= 5: # Only need 5 for primary set - break - if item["item_id"] in used_items: - continue - - # Find best slot for this item - possible_slots = self._get_item_slots(item) - best_slot = self._find_best_available_slot(possible_slots, solution["items"]) - - if best_slot: - solution["items"][best_slot] = item - used_items.add(item["item_id"]) - primary_placed += 1 - - # Phase 2: Place secondary set items - secondary_placed = 0 - if self.secondary_set and self.secondary_set in self.items_by_set: - secondary_items = sorted(self.items_by_set[self.secondary_set], - key=lambda x: self._item_value(x, solution), reverse=True) - - for item in secondary_items: - if secondary_placed >= 4: # Only need 4 for secondary set - break - if item["item_id"] in used_items: - continue - - possible_slots = self._get_item_slots(item) - best_slot = self._find_best_available_slot(possible_slots, solution["items"]) - - if best_slot: - solution["items"][best_slot] = item - used_items.add(item["item_id"]) - secondary_placed += 1 - - # Phase 3: Place items with required spells - for spell in self.required_spells: - if spell in self.items_with_spells: - spell_items = sorted(self.items_with_spells[spell], - key=lambda x: self._item_value(x), reverse=True) - - # Try to place at least one item with this spell - placed_spell = False - for item in spell_items: - if item["item_id"] in used_items: - continue - - possible_slots = self._get_item_slots(item) - best_slot = self._find_best_available_slot(possible_slots, solution["items"]) - - if best_slot: - # Check if replacing existing item is beneficial - existing_item = solution["items"].get(best_slot) - if existing_item is None or self._should_replace_item(existing_item, item): - if existing_item: - used_items.discard(existing_item["item_id"]) - solution["items"][best_slot] = item - used_items.add(item["item_id"]) - placed_spell = True - break - - # Phase 4: Optimally fill remaining slots to maximize set bonuses - self._optimize_remaining_slots(solution, used_items) - - return solution if solution["items"] else None - - def _optimize_remaining_slots(self, solution, used_items): - """Optimally fill remaining slots to maximize constraint satisfaction.""" - # Calculate current set counts - primary_count = sum(1 for item in solution["items"].values() - if item.get("item_set_id") == self.primary_set) - secondary_count = sum(1 for item in solution["items"].values() - if item.get("item_set_id") == self.secondary_set) - - # Fill slots prioritizing most needed sets - for slot in self.all_slots: - if slot in solution["items"]: - continue # Already filled - - if slot not in self.items_by_slot: - continue - - available_items = [item for item in self.items_by_slot[slot] - if item["item_id"] not in used_items] - - if not available_items: - continue - - # Find best item for this slot based on current needs - best_item = None - best_value = -1 - - for item in available_items: - item_value = self._item_value(item, solution) - - # Bonus for items that help with our priority sets - item_set = item.get("item_set_id") - if self.primary_set and item_set == self.primary_set and primary_count < 5: - item_value += 2000 # Very high bonus for needed primary pieces - elif self.secondary_set and item_set == self.secondary_set and secondary_count < 4: - item_value += 1500 # High bonus for needed secondary pieces - - if item_value > best_value: - best_value = item_value - best_item = item - - if best_item: - solution["items"][slot] = best_item - used_items.add(best_item["item_id"]) - - # Update counts for next iteration - if best_item.get("item_set_id") == self.primary_set: - primary_count += 1 - elif best_item.get("item_set_id") == self.secondary_set: - secondary_count += 1 - - def _solve_backtracking(self): - """ - Backtracking algorithm that explores solution space systematically. - """ - solution = {"items": {}, "stats": {}} - used_items = set() - - # Create ordered list of (slot, constraints) for systematic search - slot_constraints = self._create_slot_constraints() - - # Attempt backtracking search - if self._backtrack_search(solution, used_items, slot_constraints, 0): - return solution - return None - - def _solve_random_restart(self): - """ - Random restart algorithm for exploring different parts of solution space. - """ - import random - - solution = {"items": {}, "stats": {}} - used_items = set() - - # Randomly order slots and items for different exploration paths - random_slots = self.all_slots.copy() - random.shuffle(random_slots) - - for slot in random_slots: - if slot not in self.items_by_slot: - continue - - available_items = [item for item in self.items_by_slot[slot] - if item["item_id"] not in used_items] - - if available_items: - # Add some randomness to item selection while still preferring better items - weights = [self._item_value(item) + random.randint(0, 100) for item in available_items] - max_weight = max(weights) - best_items = [item for i, item in enumerate(available_items) - if weights[i] >= max_weight * 0.8] # Top 20% with randomness - - selected_item = random.choice(best_items) - solution["items"][slot] = selected_item - used_items.add(selected_item["item_id"]) - - return solution if solution["items"] else None - - def _item_value(self, item, current_solution=None): - """Calculate the value/priority of an item for constraint satisfaction.""" - value = 0 - - # Get current set counts if solution provided - primary_count = 0 - secondary_count = 0 - if current_solution: - for existing_item in current_solution.get("items", {}).values(): - existing_set = existing_item.get("item_set_id") - if self.primary_set and existing_set == self.primary_set: - primary_count += 1 - if self.secondary_set and existing_set == self.secondary_set: - secondary_count += 1 - - # Dynamic set bonus value based on current needs - item_set = item.get("item_set_id") - if self.primary_set and item_set == self.primary_set: - # Primary set priority decreases as we get closer to 5 pieces - if primary_count < 5: - value += 1000 + (5 - primary_count) * 100 # Higher priority when we need more - else: - value += 500 # Lower priority when we have enough - - if self.secondary_set and item_set == self.secondary_set: - # Secondary set priority increases when primary is satisfied - if secondary_count < 4: - if primary_count >= 4: # If primary is mostly satisfied, prioritize secondary - value += 1200 + (4 - secondary_count) * 150 # Very high priority - else: - value += 800 + (4 - secondary_count) * 100 # High priority - else: - value += 400 # Lower priority when we have enough - - # Spell bonus value - item_spells = item.get("spell_names", []) - for spell in self.required_spells: - if spell in item_spells: - value += 500 # High priority for required spells - - # Rating value - value += item.get("armor_level", 0) - value += item.get("crit_damage_rating", 0) * 10 - value += item.get("damage_rating", 0) * 10 - - return value - - def _get_item_slots(self, item): - """Get list of slots this item can be equipped to.""" - return determine_item_slots(item) - - def _find_best_available_slot(self, possible_slots, current_items): - """Find the best available slot from possible slots.""" - for slot in possible_slots: - if slot not in current_items: - return slot - return None - - def _should_replace_item(self, existing_item, new_item): - """Determine if new item should replace existing item.""" - existing_value = self._item_value(existing_item) - new_value = self._item_value(new_item) - return new_value > existing_value * 1.2 # 20% better to replace - - def _create_slot_constraints(self): - """Create ordered list of slot constraints for backtracking.""" - # This is a simplified version - full implementation would be more sophisticated - return [(slot, []) for slot in self.all_slots] - - def _backtrack_search(self, solution, used_items, slot_constraints, slot_index): - """Recursive backtracking search.""" - if slot_index >= len(slot_constraints): - return True # Found complete solution - - slot, constraints = slot_constraints[slot_index] - - if slot not in self.items_by_slot: - return self._backtrack_search(solution, used_items, slot_constraints, slot_index + 1) - - # Try each item for this slot - available_items = [item for item in self.items_by_slot[slot] - if item["item_id"] not in used_items] - - # Sort by value for better pruning - available_items.sort(key=lambda x: self._item_value(x), reverse=True) - - for item in available_items[:5]: # Limit search to top 5 items per slot - # Try placing this item - solution["items"][slot] = item - used_items.add(item["item_id"]) - - # Recursive search - if self._backtrack_search(solution, used_items, slot_constraints, slot_index + 1): - return True - - # Backtrack - del solution["items"][slot] - used_items.remove(item["item_id"]) - - # Try leaving slot empty - return self._backtrack_search(solution, used_items, slot_constraints, slot_index + 1) - - def _is_unique_solution(self, solution, existing_solutions): - """Check if solution is substantially different from existing ones.""" - if not existing_solutions: - return True - - solution_items = set(item["item_id"] for item in solution["items"].values()) - - for existing in existing_solutions: - existing_items = set(item["item_id"] for item in existing["items"].values()) - overlap = len(solution_items & existing_items) / max(len(solution_items), 1) - if overlap > 0.7: # 70% overlap = too similar - return False - - return True - - def _calculate_solution_stats(self, solution): - """Calculate comprehensive statistics for solution.""" - calculate_suit_stats(solution, self.primary_set, self.secondary_set, self.required_spells) - - def _calculate_solution_score(self, solution): - """Calculate constraint satisfaction score for solution.""" - return calculate_suit_score(solution, self.primary_set, self.secondary_set, self.required_spells, - self.min_armor, self.min_crit_damage, self.min_damage_rating) - - def _add_solution_analysis(self, solution): - """Add analysis of what's missing or achieved.""" - add_suit_analysis(solution, self.primary_set, self.secondary_set, self.required_spells, - self.min_armor, self.min_crit_damage, self.min_damage_rating, self.min_heal_boost) - - -def generate_optimal_suits(items_by_slot, primary_set, secondary_set, required_spells, - min_armor, min_crit_damage, min_damage_rating, max_results): - """ - Generate optimal equipment suit combinations using iterative constraint satisfaction. - """ - # Convert items_by_slot to flat item list for easier processing - all_candidate_items = [] - for slot_items in items_by_slot.values(): - all_candidate_items.extend(slot_items) - - # Remove duplicates (same item might be valid for multiple slots) - unique_items = {item["item_id"]: item for item in all_candidate_items} - candidate_items = list(unique_items.values()) - - # Initialize constraint satisfaction solver - solver = ConstraintSatisfactionSolver(candidate_items, items_by_slot, - primary_set, secondary_set, required_spells, - min_armor, min_crit_damage, min_damage_rating) - - # Generate solutions using iterative constraint satisfaction - suits = solver.solve(max_results, max_iterations=1000) - - return suits - - -def calculate_suit_score(suit, primary_set, secondary_set, required_spells, - min_armor, min_crit_damage, min_damage_rating): - """ - Calculate a score for how well a suit satisfies the constraints. - """ - score = 0 - stats = suit["stats"] - - # Set bonus scoring (most important) - if primary_set: - primary_target = 5 - primary_actual = stats["primary_set_count"] - if primary_actual >= primary_target: - score += 40 # Full primary set bonus - else: - score += (primary_actual / primary_target) * 30 # Partial credit - - if secondary_set: - secondary_target = 4 - secondary_actual = stats["secondary_set_count"] - if secondary_actual >= secondary_target: - score += 30 # Full secondary set bonus - else: - score += (secondary_actual / secondary_target) * 20 # Partial credit - - # Required spells scoring - if required_spells: - spell_ratio = min(1.0, stats["required_spells_found"] / len(required_spells)) - score += spell_ratio * 20 - - # Rating requirements scoring - if min_armor and stats["total_armor"] >= min_armor: - score += 5 - if min_crit_damage and stats["total_crit_damage"] >= min_crit_damage: - score += 5 - if min_damage_rating and stats["total_damage_rating"] >= min_damage_rating: - score += 5 - - return int(score) - - -def add_suit_analysis(suit, primary_set, secondary_set, required_spells, - min_armor=0, min_crit_damage=0, min_damage_rating=0, min_heal_boost=0): - """ - Add comprehensive analysis of missing constraints and achievements in the suit. - """ - stats = suit["stats"] - missing = [] - notes = [] - - # Get set names for display - set_names = { - 13: "Soldier's Set", 14: "Adept's Set", 16: "Defender's Set", 21: "Wise Set", - 40: "Heroic Protector", 41: "Heroic Destroyer", 46: "Relic Alduressa", - 47: "Ancient Relic", 48: "Noble Relic", 15: "Archer's Set", 19: "Hearty Set", - 20: "Dexterous Set", 22: "Swift Set", 24: "Reinforced Set", 26: "Flame Proof Set", - 29: "Lightning Proof Set" - } - - # Check primary set requirements - if primary_set: - primary_set_int = int(primary_set) - set_name = set_names.get(primary_set_int, f"Set {primary_set}") - needed = 5 - stats.get("primary_set_count", 0) - if needed > 0: - missing.append(f"Need {needed} more {set_name} pieces") - else: - notes.append(f"โœ… {set_name} (5/5)") - - # Check secondary set requirements - if secondary_set: - secondary_set_int = int(secondary_set) - set_name = set_names.get(secondary_set_int, f"Set {secondary_set}") - needed = 4 - stats.get("secondary_set_count", 0) - if needed > 0: - missing.append(f"Need {needed} more {set_name} pieces") - else: - notes.append(f"โœ… {set_name} (4/4)") - - # Check legendary cantrips/spells requirements - if required_spells: - found = stats.get("required_spells_found", 0) - total = len(required_spells) - if found < total: - missing_count = total - found - missing_spells = [] - - # Determine which specific spells are missing - suit_spells = set() - for item in suit["items"].values(): - if "spell_names" in item and item["spell_names"]: - if isinstance(item["spell_names"], str): - suit_spells.update(spell.strip() for spell in item["spell_names"].split(",")) - elif isinstance(item["spell_names"], list): - suit_spells.update(item["spell_names"]) - - for req_spell in required_spells: - found_match = False - for suit_spell in suit_spells: - if req_spell.lower() in suit_spell.lower() or suit_spell.lower() in req_spell.lower(): - found_match = True - break - if not found_match: - missing_spells.append(req_spell) - - if missing_spells: - missing.append(f"Missing: {', '.join(missing_spells[:3])}{'...' if len(missing_spells) > 3 else ''}") - else: - missing.append(f"Need {missing_count} more required spells") - else: - notes.append(f"โœ… All {total} required spells found") - - # Check armor level requirements - if min_armor > 0: - current_armor = stats.get("total_armor", 0) - if current_armor < min_armor: - shortfall = min_armor - current_armor - missing.append(f"Armor: {current_armor}/{min_armor} (-{shortfall})") - else: - notes.append(f"โœ… Armor: {current_armor} (โ‰ฅ{min_armor})") - - # Check crit damage rating requirements - if min_crit_damage > 0: - current_crit = stats.get("total_crit_damage", 0) - if current_crit < min_crit_damage: - shortfall = min_crit_damage - current_crit - missing.append(f"Crit Dmg: {current_crit}/{min_crit_damage} (-{shortfall})") - else: - notes.append(f"โœ… Crit Dmg: {current_crit} (โ‰ฅ{min_crit_damage})") - - # Check damage rating requirements - if min_damage_rating > 0: - current_dmg = stats.get("total_damage_rating", 0) - if current_dmg < min_damage_rating: - shortfall = min_damage_rating - current_dmg - missing.append(f"Dmg Rating: {current_dmg}/{min_damage_rating} (-{shortfall})") - else: - notes.append(f"โœ… Dmg Rating: {current_dmg} (โ‰ฅ{min_damage_rating})") - - # Check heal boost requirements - if min_heal_boost > 0: - current_heal = stats.get("total_heal_boost", 0) - if current_heal < min_heal_boost: - shortfall = min_heal_boost - current_heal - missing.append(f"Heal Boost: {current_heal}/{min_heal_boost} (-{shortfall})") - else: - notes.append(f"โœ… Heal Boost: {current_heal} (โ‰ฅ{min_heal_boost})") - - # Add slot coverage analysis - armor_slots_filled = sum(1 for slot in ["Head", "Chest", "Upper Arms", "Lower Arms", "Hands", - "Abdomen", "Upper Legs", "Lower Legs", "Feet"] - if slot in suit["items"]) - jewelry_slots_filled = sum(1 for slot in ["Neck", "Left Ring", "Right Ring", - "Left Wrist", "Right Wrist", "Trinket"] - if slot in suit["items"]) - clothing_slots_filled = sum(1 for slot in ["Shirt", "Pants"] - if slot in suit["items"]) - - if armor_slots_filled < 9: - missing.append(f"{9 - armor_slots_filled} armor slots empty") - else: - notes.append("โœ… All 9 armor slots filled") - - if jewelry_slots_filled > 0: - notes.append(f"๐Ÿ“ฟ {jewelry_slots_filled}/6 jewelry slots filled") - - if clothing_slots_filled > 0: - notes.append(f"๐Ÿ‘• {clothing_slots_filled}/2 clothing slots filled") - - suit["missing"] = missing - suit["notes"] = notes - - -if __name__ == "__main__": - import uvicorn - uvicorn.run(app, host="0.0.0.0", port=8000) diff --git a/inventory-service/property_categories.json b/inventory-service/property_categories.json deleted file mode 100644 index 40949270..00000000 --- a/inventory-service/property_categories.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "basic": { - "5": "encumbrance", - "19": "value", - "25": "level", - "28": "armor_level", - "44": "damage", - "45": "damage_type" - }, - "requirements": { - "158": "wield_requirement", - "160": "wield_level", - "48": "weapon_skill" - }, - "combat": { - "218103842": "max_damage", - "36": "resist_magic", - "56": "shield_value" - }, - "display": { - "218103809": "icon", - "218103849": "icon_overlay", - "218103850": "icon_underlay" - }, - "metadata": { - "218103808": "weenie_class_id", - "218103847": "physics_data_flags", - "218103831": "object_desc_flags" - } -} \ No newline at end of file diff --git a/inventory-service/requirements.txt b/inventory-service/requirements.txt deleted file mode 100644 index 420a72f0..00000000 --- a/inventory-service/requirements.txt +++ /dev/null @@ -1,10 +0,0 @@ -fastapi==0.104.1 -uvicorn[standard]==0.24.0 -sqlalchemy==1.4.53 -asyncpg==0.29.0 -databases[postgresql]==0.8.0 -pydantic==2.5.0 -python-multipart==0.0.6 -python-json-logger==2.0.7 -psycopg2-binary==2.9.9 -sse-starlette==1.8.2 \ No newline at end of file diff --git a/inventory-service/spell_database.json b/inventory-service/spell_database.json deleted file mode 100644 index 906ac4e0..00000000 --- a/inventory-service/spell_database.json +++ /dev/null @@ -1,56404 +0,0 @@ -{ - "metadata": { - "version": "1.0.0", - "source": "Mag-Plugins/Shared/Spells/Spells.csv", - "total_spells": 6266, - "description": "Spell ID to name/data mappings for Asheron's Call" - }, - "spells": { - "1": { - "name": "Strength Other I", - "description": "Increases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "2": { - "name": "Strength Self I", - "description": "Increases the caster's Strength by 10 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "3": { - "name": "Weakness Other I", - "description": "Decreases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "4": { - "name": "Weakness Self I", - "description": "Decrease the caster's Strength by 10 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "5": { - "name": "Heal Other I", - "description": "Restores 10-25 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "6": { - "name": "Heal Self I", - "description": "Restores 10-25 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "7": { - "name": "Harm Other I", - "description": "Drains 4-6 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "8": { - "name": "Harm Self I", - "description": "Drains 4-6 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "15", - "duration": "-1", - "mana": "15" - }, - "9": { - "name": "Infuse Mana Other I", - "description": "Drains one-quarter of the caster's Mana and gives 75% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "15": { - "name": "Vulnerability Other I", - "description": "Decrease the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "16": { - "name": "Vulnerability Self I", - "description": "Decrease the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "17": { - "name": "Invulnerability Other I", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "18": { - "name": "Invulnerability Self I", - "description": "Increases the caster's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "19": { - "name": "Fire Protection Other I", - "description": "Reduces damage the target takes from fire by 9%.", - "school": "Life Magic", - "family": "109", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "20": { - "name": "Fire Protection Self I", - "description": "Reduces damage the caster takes from Fire by 9%.", - "school": "Life Magic", - "family": "109", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "21": { - "name": "Fire Vulnerability Other I", - "description": "Increases damage the target takes from Fire by 10%.", - "school": "Life Magic", - "family": "110", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "22": { - "name": "Fire Vulnerability Self I", - "description": "Increases damage the caster takes from Fire by 10%.", - "school": "Life Magic", - "family": "110", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "23": { - "name": "Armor Other I", - "description": "Increases the target's natural armor by 20 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "24": { - "name": "Armor Self I", - "description": "Increases the caster's natural armor by 20 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "25": { - "name": "Imperil Other I", - "description": "Decreases the target's natural armor by 20 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "26": { - "name": "Imperil Self I", - "description": "Decreases the caster's natural armor by 20 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "25", - "duration": "60", - "mana": "20" - }, - "27": { - "name": "Flame Bolt I", - "description": "Shoots a bolt of flame at the target. The bolt does 16-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "28": { - "name": "Frost Bolt I", - "description": "Shoots a bolt of frost at the target. The bolt does 16-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "35": { - "name": "Aura of Blood Drinker Self I", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "36": { - "name": "Blood Loather I", - "description": "Decreases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "37": { - "name": "Blade Bane I", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "38": { - "name": "Blade Lure I", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 10%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "47": { - "name": "Primary Portal Tie", - "description": "Links the caster to a targeted portal.", - "school": "Item Enchantment", - "family": "200", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "48": { - "name": "Primary Portal Recall", - "description": "Transports the caster to the destination of the portal last successfully linked to with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "201", - "difficulty": "100", - "duration": "-1", - "mana": "50" - }, - "49": { - "name": "Aura of Swift Killer Self I", - "description": "Improves a weapon's speed by 10 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "50": { - "name": "Leaden Weapon I", - "description": "Worsens a weapon's speed by 10 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "51": { - "name": "Impenetrability I", - "description": "Improves a shield or piece of armor's armor value by 20 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "53": { - "name": "Rejuvenation Other I", - "description": "Increases the rate at which the target regains Stamina by 10%.", - "school": "Life Magic", - "family": "95", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "54": { - "name": "Rejuvenation Self I", - "description": "Increases the rate at which the caster regains Stamina by 10%.", - "school": "Life Magic", - "family": "95", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "57": { - "name": "Magic Bolt", - "description": "Shoots a bolt of force at the target. The bolt does 8-16 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "58": { - "name": "Acid Stream I", - "description": "Shoots a stream of acid at the target. The stream does 16-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "59": { - "name": "Acid Stream II", - "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "60": { - "name": "Acid Stream III", - "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "61": { - "name": "Acid Stream IV", - "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "62": { - "name": "Acid Stream V", - "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "63": { - "name": "Acid Stream VI", - "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "64": { - "name": "Shock Wave I", - "description": "Shoots a shock wave at the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "65": { - "name": "Shock Wave II", - "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "66": { - "name": "Shock Wave III", - "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "67": { - "name": "Shock Wave IV", - "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "68": { - "name": "Shock Wave V", - "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "69": { - "name": "Shock Wave VI", - "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "70": { - "name": "Frost Bolt II", - "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "71": { - "name": "Frost Bolt III", - "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "72": { - "name": "Frost Bolt IV", - "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "73": { - "name": "Frost Bolt V", - "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "74": { - "name": "Frost Bolt VI", - "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "75": { - "name": "Lightning Bolt I", - "description": "Shoots a bolt of lighting at the target. The bolt does 16-31 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "76": { - "name": "Lightning Bolt II", - "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "77": { - "name": "Lightning Bolt III", - "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "78": { - "name": "Lightning Bolt IV", - "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "79": { - "name": "Lightning Bolt V", - "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "80": { - "name": "Lightning Bolt VI", - "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "81": { - "name": "Flame Bolt II", - "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "82": { - "name": "Flame Bolt III", - "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "83": { - "name": "Flame Bolt IV", - "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "84": { - "name": "Flame Bolt V", - "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "85": { - "name": "Flame Bolt VI", - "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "86": { - "name": "Force Bolt I", - "description": "Shoots a bolt of force at the target. The bolt does 16-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "87": { - "name": "Force Bolt II", - "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "88": { - "name": "Force Bolt III", - "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "89": { - "name": "Force Bolt IV", - "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "90": { - "name": "Force Bolt V", - "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "91": { - "name": "Force Bolt VI", - "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "92": { - "name": "Whirling Blade I", - "description": "Shoots a magical blade at the target. The bolt does 16-31 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "93": { - "name": "Whirling Blade II", - "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "94": { - "name": "Whirling Blade III", - "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "95": { - "name": "Whirling Blade IV", - "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "96": { - "name": "Whirling Blade V", - "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "97": { - "name": "Whirling Blade VI", - "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "99": { - "name": "Acid Blast III", - "description": "Shoots three streams of acid outward from the caster. Each stream does 15-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "100": { - "name": "Acid Blast IV", - "description": "Shoots three streams of acid outward from the caster. Each stream does 20-40 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "101": { - "name": "Acid Blast V", - "description": "Shoots three streams of acid outward from the caster. Each stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "102": { - "name": "Acid Blast VI", - "description": "Shoots three streams of acid outward from the caster. Each stream does 34-69 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "103": { - "name": "Shock Blast III", - "description": "Shoots three shock waves outward from the caster. Each wave does 15-31 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "104": { - "name": "Shock Blast IV", - "description": "Shoots three shock waves outward from the caster. Each wave does 20-40 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "105": { - "name": "Shock Blast V", - "description": "Shoots three shock waves outward from the caster. Each wave does 26-52 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "106": { - "name": "Shock Blast VI", - "description": "Shoots three shock waves outward from the caster. Each wave does 34-69 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "107": { - "name": "Frost Blast III", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 15-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "108": { - "name": "Frost Blast IV", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 20-40 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "109": { - "name": "Frost Blast V", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "110": { - "name": "Frost Blast VI", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 34-69 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "111": { - "name": "Lightning Blast III", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 15-31 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "112": { - "name": "Lightning Blast IV", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 20-40 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "113": { - "name": "Lightning Blast V", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 26-52 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "114": { - "name": "Lightning Blast VI", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 34-69 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "115": { - "name": "Flame Blast III", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 15-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "116": { - "name": "Flame Blast IV", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 20-40 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "117": { - "name": "Flame Blast V", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "118": { - "name": "Flame Blast VI", - "description": "Shoots three bolts of flame outward from the caster. Each bolt does 34-69 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "119": { - "name": "Force Blast III", - "description": "Shoots three force bolts outward from the caster. Each bolt does 15-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "120": { - "name": "Force Blast IV", - "description": "Shoots three force bolts outward from the caster. Each bolt does 20-40 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "121": { - "name": "Force Blast V", - "description": "Shoots three force bolts outward from the caster. Each bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "122": { - "name": "Force Blast VI", - "description": "Shoots three force bolts outward from the caster. Each bolt does 34-69 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "123": { - "name": "Blade Blast III", - "description": "Shoots three whirling blades outward from the caster. Each blade does 10-20 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "124": { - "name": "Blade Blast IV", - "description": "Shoots three whirling blades outward from the caster. Each blade does 20-40 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "125": { - "name": "Blade Blast V", - "description": "Shoots three whirling blades outward from the caster. Each blade does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "126": { - "name": "Blade Blast VI", - "description": "Shoots three whirling blades outward from the caster. Each blade does 34-69 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "127": { - "name": "Acid Volley III", - "description": "Shoots three streams of acid toward the target. Each stream does 15-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "128": { - "name": "Acid Volley IV", - "description": "Shoots three streams of acid toward the target. Each stream does 20-40 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "129": { - "name": "Acid Volley V", - "description": "Shoots three streams of acid toward the target. Each stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "130": { - "name": "Acid Volley VI", - "description": "Shoots three streams of acid toward the target. Each stream does 34-69 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "131": { - "name": "Bludgeoning Volley III", - "description": "Shoots three shock waves toward the target. Each wave does 15-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "132": { - "name": "Bludgeoning Volley IV", - "description": "Shoots three shock waves toward the target. Each wave does 20-40 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "133": { - "name": "Bludgeoning Volley V", - "description": "Shoots three shock waves toward the target. Each wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "134": { - "name": "Bludgeoning Volley VI", - "description": "Shoots three shock waves toward the target. Each wave does 34-69 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "135": { - "name": "Frost Volley III", - "description": "Shoots three bolts of frost toward the target. Each bolt does 15-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "136": { - "name": "Frost Volley IV", - "description": "Shoots three bolts of frost toward the target. Each bolt does 20-40 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "137": { - "name": "Frost Volley V", - "description": "Shoots three bolts of frost toward the target. Each bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "138": { - "name": "Frost Volley VI", - "description": "Shoots three bolts of frost toward the target. Each bolt does 34-69 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "139": { - "name": "Lightning Volley III", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 15-31 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "140": { - "name": "Lightning Volley IV", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 20-40 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "141": { - "name": "Lightning Volley V", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 26-52 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "142": { - "name": "Lightning Volley VI", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 34-69 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "143": { - "name": "Flame Volley III", - "description": "Shoots three bolts of flame toward the target. Each bolt does 15-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "144": { - "name": "Flame Volley IV", - "description": "Shoots three bolts of flame toward the target. Each bolt does 20-40 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "145": { - "name": "Flame Volley V", - "description": "Shoots three bolts of flame toward the target. Each bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "146": { - "name": "Flame Volley VI", - "description": "Shoots three bolts of flame toward the target. Each bolt does 34-69 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "147": { - "name": "Force Volley III", - "description": "Shoots three bolts of force toward the target. Each bolt does 15-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "148": { - "name": "Force Volley IV", - "description": "Shoots three bolts of force toward the target. Each bolt does 20-40 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "149": { - "name": "Force Volley V", - "description": "Shoots three bolts of force toward the target. Each bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "150": { - "name": "Force Volley VI", - "description": "Shoots three bolts of force toward the target. Each bolt does 34-69 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "151": { - "name": "Blade Volley III", - "description": "Shoots three whirling blades toward the target. Each blade does 15-31 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "152": { - "name": "Blade Volley IV", - "description": "Shoots three whirling blades toward the target. Each blade does 20-40 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "153": { - "name": "Blade Volley V", - "description": "Shoots three whirling blades toward the target. Each blade does 26-52 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "154": { - "name": "Blade Volley VI", - "description": "Shoots three whirling blades toward the target. Each blade does 34-69 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "157": { - "name": "Summon Primary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "158": { - "name": "Summon Primary Portal II", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "225", - "duration": "180", - "mana": "90" - }, - "159": { - "name": "Regeneration Other I", - "description": "Increase target's natural healing rate by 10%.", - "school": "Life Magic", - "family": "93", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "160": { - "name": "Regeneration Other II", - "description": "Increase target's natural healing rate by 25%.", - "school": "Life Magic", - "family": "93", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "161": { - "name": "Regeneration Other III", - "description": "Increase target's natural healing rate by 40%.", - "school": "Life Magic", - "family": "93", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "162": { - "name": "Regeneration Other IV", - "description": "Increase target's natural healing rate by 55%.", - "school": "Life Magic", - "family": "93", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "163": { - "name": "Regeneration Other V", - "description": "Increase target's natural healing rate by 70%.", - "school": "Life Magic", - "family": "93", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "164": { - "name": "Regeneration Other VI", - "description": "Increase target's natural healing rate by 85%.", - "school": "Life Magic", - "family": "93", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "165": { - "name": "Regeneration Self I", - "description": "Increase caster's natural healing rate by 10%.", - "school": "Life Magic", - "family": "93", - "difficulty": "1", - "duration": "1800", - "mana": "20" - }, - "166": { - "name": "Regeneration Self II", - "description": "Increase caster's natural healing rate by 25%.", - "school": "Life Magic", - "family": "93", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "167": { - "name": "Regeneration Self III", - "description": "Increase caster's natural healing rate by 40%.", - "school": "Life Magic", - "family": "93", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "168": { - "name": "Regeneration Self IV", - "description": "Increase caster's natural healing rate by 55%.", - "school": "Life Magic", - "family": "93", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "169": { - "name": "Regeneration Self V", - "description": "Increase caster's natural healing rate by 70%.", - "school": "Life Magic", - "family": "93", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "170": { - "name": "Regeneration Self VI", - "description": "Increase caster's natural healing rate by 85%.", - "school": "Life Magic", - "family": "93", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "171": { - "name": "Fester Other I", - "description": "Decrease target's natural healing rate by 9%.", - "school": "Life Magic", - "family": "94", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "172": { - "name": "Fester Other II", - "description": "Decrease target's natural healing rate by 20%.", - "school": "Life Magic", - "family": "94", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "173": { - "name": "Fester Other III", - "description": "Decrease target's natural healing rate by 29%.", - "school": "Life Magic", - "family": "94", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "174": { - "name": "Fester Other IV", - "description": "Decrease target's natural healing rate by 35%.", - "school": "Life Magic", - "family": "94", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "175": { - "name": "Fester Other V", - "description": "Decrease target's natural healing rate by 41%.", - "school": "Life Magic", - "family": "94", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "176": { - "name": "Fester Other VI", - "description": "Decrease target's natural healing rate by 46%.", - "school": "Life Magic", - "family": "94", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "178": { - "name": "Fester Self I", - "description": "Decrease caster's natural healing rate by 9%.", - "school": "Life Magic", - "family": "94", - "difficulty": "25", - "duration": "60", - "mana": "20" - }, - "179": { - "name": "Fester Self II", - "description": "Decrease caster's natural healing rate by 20%.", - "school": "Life Magic", - "family": "94", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "180": { - "name": "Fester Self III", - "description": "Decrease caster's natural healing rate by 29%.", - "school": "Life Magic", - "family": "94", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "181": { - "name": "Fester Self IV", - "description": "Decrease caster's natural healing rate by 35%.", - "school": "Life Magic", - "family": "94", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "182": { - "name": "Fester Self V", - "description": "Decrease caster's natural healing rate by 41%.", - "school": "Life Magic", - "family": "94", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "183": { - "name": "Fester Self VI", - "description": "Decrease caster's natural healing rate by 46%.", - "school": "Life Magic", - "family": "94", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "184": { - "name": "Rejuvenation Other II", - "description": "Increases the rate at which the target regains Stamina by 25%.", - "school": "Life Magic", - "family": "95", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "185": { - "name": "Rejuvenation Other III", - "description": "Increases the rate at which the target regains Stamina by 40%.", - "school": "Life Magic", - "family": "95", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "186": { - "name": "Rejuvenation Other IV", - "description": "Increases the rate at which the target regains Stamina by 55%.", - "school": "Life Magic", - "family": "95", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "187": { - "name": "Rejuvenation Other V", - "description": "Increases the rate at which the target regains Stamina by 70%.", - "school": "Life Magic", - "family": "95", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "188": { - "name": "Rejuvenation Other VI", - "description": "Increases the rate at which the target regains Stamina by 85%.", - "school": "Life Magic", - "family": "95", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "189": { - "name": "Rejuvenation Self II", - "description": "Increases the rate at which the caster regains Stamina by 25%.", - "school": "Life Magic", - "family": "95", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "190": { - "name": "Rejuvenation Self III", - "description": "Increases the rate at which the caster regains Stamina by 40%.", - "school": "Life Magic", - "family": "95", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "191": { - "name": "Rejuvenation Self IV", - "description": "Increases the rate at which the caster regains Stamina by 55%.", - "school": "Life Magic", - "family": "95", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "192": { - "name": "Rejuvenation Self V", - "description": "Increases the rate at which the caster regains Stamina by 70%.", - "school": "Life Magic", - "family": "95", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "193": { - "name": "Rejuvenation Self VI", - "description": "Increases the rate at which the caster regains Stamina by 85%.", - "school": "Life Magic", - "family": "95", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "194": { - "name": "Exhaustion Other I", - "description": "Decreases the rate at which the target regains Stamina by 9%.", - "school": "Life Magic", - "family": "96", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "195": { - "name": "Exhaustion Other II", - "description": "Decreases the rate at which the target regains Stamina by 20%.", - "school": "Life Magic", - "family": "96", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "196": { - "name": "Exhaustion Other III", - "description": "Decreases the rate at which the target regains Stamina by 29%.", - "school": "Life Magic", - "family": "96", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "197": { - "name": "Exhaustion Other IV", - "description": "Decreases the rate at which the target regains Stamina by 35%.", - "school": "Life Magic", - "family": "96", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "198": { - "name": "Exhaustion Other V", - "description": "Decreases the rate at which the target regains Stamina by 41%.", - "school": "Life Magic", - "family": "96", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "199": { - "name": "Exhaustion Other VI", - "description": "Decreases the rate at which the target regains Stamina by 46%.", - "school": "Life Magic", - "family": "96", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "200": { - "name": "Exhaustion Self I", - "description": "Decreases the rate at which the caster regains Stamina by 9%.", - "school": "Life Magic", - "family": "96", - "difficulty": "25", - "duration": "60", - "mana": "20" - }, - "201": { - "name": "Exhaustion Self II", - "description": "Decreases the rate at which the caster regains Stamina by 20%.", - "school": "Life Magic", - "family": "96", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "202": { - "name": "Exhaustion Self III", - "description": "Decreases the rate at which the caster regains Stamina by 29%.", - "school": "Life Magic", - "family": "96", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "203": { - "name": "Exhaustion Self IV", - "description": "Decreases the rate at which the caster regains Stamina by 35%.", - "school": "Life Magic", - "family": "96", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "204": { - "name": "Exhaustion Self V", - "description": "Decreases the rate at which the caster regains Stamina by 41%.", - "school": "Life Magic", - "family": "96", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "205": { - "name": "Exhaustion Self VI", - "description": "Decreases the rate at which the caster regains Stamina by 46%.", - "school": "Life Magic", - "family": "96", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "206": { - "name": "Mana Renewal Other I", - "description": "Increases the target's natural mana rate by 10%.", - "school": "Life Magic", - "family": "97", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "207": { - "name": "Mana Renewal Other II", - "description": "Increases the target's natural mana rate by 25%.", - "school": "Life Magic", - "family": "97", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "208": { - "name": "Mana Renewal Other III", - "description": "Increases the target's natural mana rate by 40%.", - "school": "Life Magic", - "family": "97", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "209": { - "name": "Mana Renewal Other IV", - "description": "Increases the target's natural mana rate by 55%.", - "school": "Life Magic", - "family": "97", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "210": { - "name": "Mana Renewal Other V", - "description": "Increases the target's natural mana rate by 70%.", - "school": "Life Magic", - "family": "97", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "211": { - "name": "Mana Renewal Other VI", - "description": "Increases the target's natural mana rate by 85%.", - "school": "Life Magic", - "family": "97", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "212": { - "name": "Mana Renewal Self I", - "description": "Increases the caster's natural mana rate by 10%.", - "school": "Life Magic", - "family": "97", - "difficulty": "25", - "duration": "1800", - "mana": "20" - }, - "213": { - "name": "Mana Renewal Self II", - "description": "Increases the caster's natural mana rate by 25%.", - "school": "Life Magic", - "family": "97", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "214": { - "name": "Mana Renewal Self III", - "description": "Increases the caster's natural mana rate by 40%.", - "school": "Life Magic", - "family": "97", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "215": { - "name": "Mana Renewal Self IV", - "description": "Increases the caster's natural mana rate by 55%.", - "school": "Life Magic", - "family": "97", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "216": { - "name": "Mana Renewal Self V", - "description": "Increases the caster's natural mana rate by 70%.", - "school": "Life Magic", - "family": "97", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "217": { - "name": "Mana Renewal Self VI", - "description": "Increases the caster's natural mana rate by 85%.", - "school": "Life Magic", - "family": "97", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "218": { - "name": "Mana Depletion Other I", - "description": "Decreases target's natural mana rate by 9%.", - "school": "Life Magic", - "family": "98", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "219": { - "name": "Mana Depletion Other II", - "description": "Decreases target's natural mana rate by 20%.", - "school": "Life Magic", - "family": "98", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "220": { - "name": "Mana Depletion Other III", - "description": "Decreases target's natural mana rate by 29%.", - "school": "Life Magic", - "family": "98", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "221": { - "name": "Mana Depletion Other IV", - "description": "Decreases target's natural mana rate by 35%.", - "school": "Life Magic", - "family": "98", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "222": { - "name": "Mana Depletion Other V", - "description": "Decreases target's natural mana rate by 41%.", - "school": "Life Magic", - "family": "98", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "223": { - "name": "Mana Depletion Other VI", - "description": "Decreases target's natural mana rate by 46%.", - "school": "Life Magic", - "family": "98", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "224": { - "name": "Mana Depletion Self I", - "description": "Decreases caster's natural mana rate by 9%.", - "school": "Life Magic", - "family": "98", - "difficulty": "25", - "duration": "60", - "mana": "20" - }, - "225": { - "name": "Mana Depletion Self II", - "description": "Decreases caster's natural mana rate by 20%.", - "school": "Life Magic", - "family": "98", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "226": { - "name": "Mana Depletion Self III", - "description": "Decreases caster's natural mana rate by 29%.", - "school": "Life Magic", - "family": "98", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "227": { - "name": "Mana Depletion Self IV", - "description": "Decreases caster's natural mana rate by 35%.", - "school": "Life Magic", - "family": "98", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "228": { - "name": "Mana Depletion Self V", - "description": "Decreases caster's natural mana rate by 41%.", - "school": "Life Magic", - "family": "98", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "229": { - "name": "Mana Depletion Self VI", - "description": "Decreases caster's natural mana rate by 46%.", - "school": "Life Magic", - "family": "98", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "230": { - "name": "Vulnerability Other II", - "description": "Decrease the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "231": { - "name": "Vulnerability Other III", - "description": "Decrease the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "232": { - "name": "Vulnerability Other IV", - "description": "Decrease the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "233": { - "name": "Vulnerability Other V", - "description": "Decrease the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "234": { - "name": "Vulnerability Other VI", - "description": "Decrease the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "235": { - "name": "Vulnerability Self II", - "description": "Decrease the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "236": { - "name": "Vulnerability Self III", - "description": "Decrease the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "237": { - "name": "Vulnerability Self IV", - "description": "Decrease the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "238": { - "name": "Vulnerability Self V", - "description": "Decrease the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "239": { - "name": "Vulnerability Self VI", - "description": "Decrease the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "240": { - "name": "Invulnerability Other II", - "description": "Increases the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "241": { - "name": "Invulnerability Other III", - "description": "Increases the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "242": { - "name": "Invulnerability Other IV", - "description": "Increases the target's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "243": { - "name": "Invulnerability Other V", - "description": "Increases the target's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "244": { - "name": "Invulnerability Other VI", - "description": "Increases the target's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "245": { - "name": "Invulnerability Self II", - "description": "Increases the caster's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "246": { - "name": "Invulnerability Self III", - "description": "Increases the caster's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "247": { - "name": "Invulnerability Self IV", - "description": "Increases the caster's Melee Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "248": { - "name": "Invulnerability Self V", - "description": "Increases the caster's Melee Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "249": { - "name": "Invulnerability Self VI", - "description": "Increases the caster's Melee Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "250": { - "name": "Impregnability Other I", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "251": { - "name": "Impregnability Other II", - "description": "Increases the target's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "252": { - "name": "Impregnability Other III", - "description": "Increases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "253": { - "name": "Impregnability Other IV", - "description": "Increases the target's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "254": { - "name": "Impregnability Other V", - "description": "Increases the target's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "255": { - "name": "Impregnability Other VI", - "description": "Increases the target's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "256": { - "name": "Impregnability Self I", - "description": "Increases the caster's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "257": { - "name": "Impregnability Self II", - "description": "Increases the caster's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "258": { - "name": "Impregnability Self III", - "description": "Increases the caster's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "259": { - "name": "Impregnability Self IV", - "description": "Increases the caster's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "260": { - "name": "Impregnability Self V", - "description": "Increases the caster's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "261": { - "name": "Impregnability Self VI", - "description": "Increases the caster's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "262": { - "name": "Defenselessness Other I", - "description": "Decreases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "263": { - "name": "Defenselessness Other II", - "description": "Decreases the target's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "264": { - "name": "Defenselessness Other III", - "description": "Decreases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "265": { - "name": "Defenselessness Other IV", - "description": "Decreases the target's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "266": { - "name": "Defenselessness Other V", - "description": "Decreases the target's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "267": { - "name": "Defenselessness Other VI", - "description": "Decreases the target's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "268": { - "name": "Magic Resistance Other I", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "269": { - "name": "Magic Resistance Other II", - "description": "Increases the target's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "270": { - "name": "Magic Resistance Other III", - "description": "Increases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "271": { - "name": "Magic Resistance Other IV", - "description": "Increases the target's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "272": { - "name": "Magic Resistance Other V", - "description": "Increases the target's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "273": { - "name": "Magic Resistance Other VI", - "description": "Increases the target's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "274": { - "name": "Magic Resistance Self I", - "description": "Increases the caster's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "275": { - "name": "Magic Resistance Self II", - "description": "Increases the caster's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "276": { - "name": "Magic Resistance Self III", - "description": "Increases the caster's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "277": { - "name": "Magic Resistance Self IV", - "description": "Increases the caster's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "278": { - "name": "Magic Resistance Self V", - "description": "Increases the caster's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "279": { - "name": "Magic Resistance Self VI", - "description": "Increases the caster's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "280": { - "name": "Magic Yield Other I", - "description": "Decreases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "281": { - "name": "Magic Yield Other II", - "description": "Decreases the target's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "282": { - "name": "Magic Yield Other III", - "description": "Decreases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "283": { - "name": "Magic Yield Other IV", - "description": "Decreases the target's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "284": { - "name": "Magic Yield Other V", - "description": "Decreases the target's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "285": { - "name": "Magic Yield Other VI", - "description": "Decreases the target's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "286": { - "name": "Magic Yield Self I", - "description": "Decreases the caster's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "287": { - "name": "Magic Yield Self II", - "description": "Decreases the caster's Magic Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "288": { - "name": "Magic Yield Self III", - "description": "Decreases the caster's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "289": { - "name": "Magic Yield Self IV", - "description": "Decreases the caster's Magic Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "290": { - "name": "Magic Yield Self V", - "description": "Decreases the caster's Magic Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "291": { - "name": "Magic Yield Self VI", - "description": "Decreases the caster's Magic Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "292": { - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "293": { - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "294": { - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "295": { - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "296": { - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "297": { - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "298": { - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "299": { - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "300": { - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "301": { - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "302": { - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "303": { - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "304": { - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "305": { - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "306": { - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "307": { - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "308": { - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "309": { - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "310": { - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "311": { - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "312": { - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "313": { - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "314": { - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "315": { - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "316": { - "name": "Finesse Weapon Mastery Other I", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "317": { - "name": "Finesse Weapon Mastery Other II", - "description": "Increases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "318": { - "name": "Finesse Weapon Mastery Other III", - "description": "Increases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "319": { - "name": "Finesse Weapon Mastery Other IV", - "description": "Increases the target's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "320": { - "name": "Finesse Weapon Mastery Other V", - "description": "Increases the target's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "321": { - "name": "Finesse Weapon Mastery Other VI", - "description": "Increases the target's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "322": { - "name": "Finesse Weapon Mastery Self I", - "description": "Increases the caster's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "323": { - "name": "Finesse Weapon Mastery Self II", - "description": "Increases the caster's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "324": { - "name": "Finesse Weapon Mastery Self III", - "description": "Increases the caster's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "325": { - "name": "Finesse Weapon Mastery Self IV", - "description": "Increases the caster's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "326": { - "name": "Finesse Weapon Mastery Self V", - "description": "Increases the caster's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "327": { - "name": "Finesse Weapon Mastery Self VI", - "description": "Increases the caster's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "328": { - "name": "Finesse Weapon Ineptitude Other I", - "description": "Decreases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "329": { - "name": "Finesse Weapon Ineptitude Other II", - "description": "Decreases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "330": { - "name": "Finesse Weapon Ineptitude Other III", - "description": "Decreases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "331": { - "name": "Finesse Weapon Ineptitude Other IV", - "description": "Decreases the target's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "332": { - "name": "Finesse Weapon Ineptitude Other V", - "description": "Decreases the target's Finesse Weapon skill by 30 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "333": { - "name": "Finesse Weapon Ineptitude Other VI", - "description": "Decreases the target's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "334": { - "name": "Finesse Weapon Ineptitude Self I", - "description": "Decreases the caster's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "335": { - "name": "Finesse Weapon Ineptitude Self II", - "description": "Decreases the caster's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "336": { - "name": "Finesse Weapon Ineptitude Self III", - "description": "Decreases the caster's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "337": { - "name": "Finesse Weapon Ineptitude Self IV", - "description": "Decreases the caster's Finesse Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "338": { - "name": "Finesse Weapon Ineptitude Self V", - "description": "Decreases the caster's Finesse Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "339": { - "name": "Finesse Weapon Ineptitude Self VI", - "description": "Decreases the caster's Finesse Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "340": { - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "341": { - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "342": { - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "343": { - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "344": { - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "345": { - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "346": { - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "347": { - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "348": { - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "349": { - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "350": { - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "351": { - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "352": { - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "353": { - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "354": { - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "355": { - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "356": { - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "357": { - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "358": { - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "359": { - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "360": { - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "361": { - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "362": { - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "363": { - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "364": { - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "365": { - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "366": { - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "367": { - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "368": { - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "369": { - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "370": { - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "371": { - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "372": { - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "373": { - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "374": { - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "375": { - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "376": { - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "377": { - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "378": { - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "379": { - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "380": { - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "381": { - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "382": { - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "383": { - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "384": { - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "385": { - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "386": { - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "387": { - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "388": { - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "389": { - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "390": { - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "391": { - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "392": { - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "393": { - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "394": { - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "395": { - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "396": { - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "397": { - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "398": { - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "399": { - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "400": { - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "401": { - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "402": { - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "403": { - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "404": { - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "405": { - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "406": { - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "407": { - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "408": { - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "409": { - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "410": { - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "411": { - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "412": { - "name": "Heavy Weapon Mastery Other I", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "413": { - "name": "Heavy Weapon Mastery Other II", - "description": "Increases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "414": { - "name": "Heavy Weapon Mastery Other III", - "description": "Increases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "415": { - "name": "Heavy Weapon Mastery Other IV", - "description": "Increases the target's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "416": { - "name": "Heavy Weapon Mastery Other V", - "description": "Increases the target's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "417": { - "name": "Heavy Weapon Mastery Other VI", - "description": "Increases the target's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "418": { - "name": "Heavy Weapon Mastery Self I", - "description": "Increases the caster's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "419": { - "name": "Heavy Weapon Mastery Self II", - "description": "Increases the caster's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "420": { - "name": "Heavy Weapon Mastery Self III", - "description": "Increases the caster's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "421": { - "name": "Heavy Weapon Mastery Self IV", - "description": "Increases the caster's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "422": { - "name": "Heavy Weapon Mastery Self V", - "description": "Increases the caster's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "423": { - "name": "Heavy Weapon Mastery Self VI", - "description": "Increases the caster's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "424": { - "name": "Heavy Weapon Ineptitude Other I", - "description": "Decreases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "425": { - "name": "Heavy Weapon Ineptitude Other II", - "description": "Decreases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "426": { - "name": "Heavy Weapon Ineptitude Other III", - "description": "Decreases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "427": { - "name": "Heavy Weapon Ineptitude Other IV", - "description": "Decreases the target's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "428": { - "name": "Heavy Weapon Ineptitude Other V", - "description": "Decreases the target's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "429": { - "name": "Heavy Weapon Ineptitude Other VI", - "description": "Decreases the target's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "430": { - "name": "Heavy Weapon Ineptitude Self I", - "description": "Decreases the caster's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "431": { - "name": "Heavy Weapon Ineptitude Self II", - "description": "Decreases the caster's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "432": { - "name": "Heavy Weapon Ineptitude Self III", - "description": "Decreases the caster's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "433": { - "name": "Heavy Weapon Ineptitude Self IV", - "description": "Decreases the caster's Heavy Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "435": { - "name": "Heavy Weapon Ineptitude Self V", - "description": "Decreases the caster's Heavy Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "436": { - "name": "Heavy Weapon Ineptitude Self VI", - "description": "Decreases the caster's Heavy Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "437": { - "name": "Light Weapon Mastery Other I", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "438": { - "name": "Light Weapon Mastery Other II", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "439": { - "name": "Light Weapon Mastery Other III", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "440": { - "name": "Light Weapon Mastery Other IV", - "description": "Increases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "441": { - "name": "Light Weapon Mastery Other V", - "description": "Increases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "442": { - "name": "Light Weapon Mastery Other VI", - "description": "Increases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "443": { - "name": "Light Weapon Mastery Self I", - "description": "Increases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "444": { - "name": "Light Weapon Mastery Self II", - "description": "Increases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "445": { - "name": "Light Weapon Mastery Self III", - "description": "Increases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "446": { - "name": "Light Weapon Mastery Self IV", - "description": "Increases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "447": { - "name": "Light Weapon Mastery Self V", - "description": "Increases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "448": { - "name": "Light Weapon Mastery Self VI", - "description": "Increases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "449": { - "name": "Light Weapon Ineptitude Other I", - "description": "Decreases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "450": { - "name": "Light Weapon Ineptitude Other II", - "description": "Decreases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "451": { - "name": "Light Weapon Ineptitude Other III", - "description": "Decreases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "452": { - "name": "Light Weapon Ineptitude Other IV", - "description": "Decreases the target's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "453": { - "name": "Light Weapon Ineptitude Other V", - "description": "Decreases the target's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "454": { - "name": "Light Weapon Ineptitude Other VI", - "description": "Decreases the target's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "455": { - "name": "Light Weapon Ineptitude Self I", - "description": "Decreases the caster's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "456": { - "name": "Light Weapon Ineptitude Self II", - "description": "Decreases the caster's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "457": { - "name": "Light Weapon Ineptitude Self III", - "description": "Decreases the caster's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "458": { - "name": "Light Weapon Ineptitude Self IV", - "description": "Decreases the caster's Light Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "459": { - "name": "Light Weapon Ineptitude Self V", - "description": "Decreases the caster's Light Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "460": { - "name": "Light Weapon Ineptitude Self VI", - "description": "Decreases the caster's Light Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "461": { - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "462": { - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "463": { - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "464": { - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "465": { - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "466": { - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "467": { - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "468": { - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "469": { - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "470": { - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "471": { - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "472": { - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "473": { - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "474": { - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "475": { - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "476": { - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "477": { - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "478": { - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "479": { - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "480": { - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "481": { - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "482": { - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "483": { - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "484": { - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "485": { - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "486": { - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "487": { - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "488": { - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "489": { - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "490": { - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "491": { - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "492": { - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "493": { - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "494": { - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "495": { - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "496": { - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "497": { - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "498": { - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "499": { - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "500": { - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "501": { - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "502": { - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "503": { - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "504": { - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "505": { - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "506": { - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "507": { - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "508": { - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "509": { - "name": "Acid Protection Other I", - "description": "Reduces damage the target takes from acid by 9%.", - "school": "Life Magic", - "family": "101", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "510": { - "name": "Acid Protection Other II", - "description": "Reduces damage the target takes from acid by 20%.", - "school": "Life Magic", - "family": "101", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "511": { - "name": "Acid Protection Other III", - "description": "Reduces damage the target takes from acid by 33%.", - "school": "Life Magic", - "family": "101", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "512": { - "name": "Acid Protection Other IV", - "description": "Reduces damage the target takes from acid by 43%.", - "school": "Life Magic", - "family": "101", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "513": { - "name": "Acid Protection Other V", - "description": "Reduces damage the target takes from acid by 50%.", - "school": "Life Magic", - "family": "101", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "514": { - "name": "Acid Protection Other VI", - "description": "Reduces damage the target takes from acid by 60%.", - "school": "Life Magic", - "family": "101", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "515": { - "name": "Acid Protection Self I", - "description": "Reduces damage the caster takes from acid by 9%", - "school": "Life Magic", - "family": "101", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "516": { - "name": "Acid Protection Self II", - "description": "Reduces damage the caster takes from acid by 20%.", - "school": "Life Magic", - "family": "101", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "517": { - "name": "Acid Protection Self III", - "description": "Reduces damage the caster takes from acid by 33%.", - "school": "Life Magic", - "family": "101", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "518": { - "name": "Acid Protection Self IV", - "description": "Reduces damage the caster takes from acid by 43%.", - "school": "Life Magic", - "family": "101", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "519": { - "name": "Acid Protection Self V", - "description": "Reduces damage the caster takes from acid by 50%.", - "school": "Life Magic", - "family": "101", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "520": { - "name": "Acid Protection Self VI", - "description": "Reduces damage the caster takes from acid by 60%.", - "school": "Life Magic", - "family": "101", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "521": { - "name": "Acid Vulnerability Other I", - "description": "Increases damage the target takes from acid by 10%", - "school": "Life Magic", - "family": "102", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "522": { - "name": "Acid Vulnerability Other II", - "description": "Increases damage the target takes from acid by 25%", - "school": "Life Magic", - "family": "102", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "523": { - "name": "Acid Vulnerability Other III", - "description": "Increases damage the target takes from acid by 50%.", - "school": "Life Magic", - "family": "102", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "524": { - "name": "Acid Vulnerability Other IV", - "description": "Increases damage the target takes from acid by 75%.", - "school": "Life Magic", - "family": "102", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "525": { - "name": "Acid Vulnerability Other V", - "description": "Increases damage the target takes from acid by 100%.", - "school": "Life Magic", - "family": "102", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "526": { - "name": "Acid Vulnerability Other VI", - "description": "Increases damage the target takes from acid by 150%.", - "school": "Life Magic", - "family": "102", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "527": { - "name": "Acid Vulnerability Self I", - "description": "Increases damage the caster takes from acid by 10%", - "school": "Life Magic", - "family": "102", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "528": { - "name": "Acid Vulnerability Self II", - "description": "Increases damage the caster takes from acid by 25%", - "school": "Life Magic", - "family": "102", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "529": { - "name": "Acid Vulnerability Self III", - "description": "Increases damage the caster takes from acid by 50%.", - "school": "Life Magic", - "family": "102", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "530": { - "name": "Acid Vulnerability Self IV", - "description": "Increases damage the caster takes from acid by 75%.", - "school": "Life Magic", - "family": "102", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "531": { - "name": "Acid Vulnerability Self V", - "description": "Increases damage the caster takes from acid by 100%.", - "school": "Life Magic", - "family": "102", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "532": { - "name": "Acid Vulnerability Self VI", - "description": "Increases damage the caster takes from acid by 150%.", - "school": "Life Magic", - "family": "102", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "533": { - "name": "Missile Weapon Mastery Other I", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "534": { - "name": "Missile Weapon Mastery Other II", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "535": { - "name": "Missile Weapon Mastery Other III", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "536": { - "name": "Missile Weapon Mastery Other IV", - "description": "Increases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "537": { - "name": "Missile Weapon Mastery Other V", - "description": "Increases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "538": { - "name": "Missile Weapon Mastery Other VI", - "description": "Increases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "539": { - "name": "Missile Weapon Mastery Self I", - "description": "Increases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "540": { - "name": "Missile Weapon Mastery Self II", - "description": "Increases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "541": { - "name": "Missile Weapon Mastery Self III", - "description": "Increases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "542": { - "name": "Missile Weapon Mastery Self IV", - "description": "Increases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "543": { - "name": "Missile Weapon Mastery Self V", - "description": "Increases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "544": { - "name": "Missile Weapon Mastery Self VI", - "description": "Increases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "545": { - "name": "Missile Weapon Ineptitude Other I", - "description": "Decreases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "546": { - "name": "Missile Weapon Ineptitude Other II", - "description": "Decreases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "547": { - "name": "Missile Weapon Ineptitude Other III", - "description": "Decreases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "548": { - "name": "Missile Weapon Ineptitude Other IV", - "description": "Decreases the target's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "549": { - "name": "Missile Weapon Ineptitude Other V", - "description": "Decreases the target's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "550": { - "name": "Missile Weapon Ineptitude Other VI", - "description": "Decreases the target's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "551": { - "name": "Missile Weapon Ineptitude Self I", - "description": "Decreases the caster's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "552": { - "name": "Missile Weapon Ineptitude Self II", - "description": "Decreases the caster's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "553": { - "name": "Missile Weapon Ineptitude Self III", - "description": "Decreases the caster's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "554": { - "name": "Missile Weapon Ineptitude Self IV", - "description": "Decreases the caster's Missile Weapons skill by 25 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "555": { - "name": "Missile Weapon Ineptitude Self V", - "description": "Decreases the caster's Missile Weapons skill by 30 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "556": { - "name": "Missile Weapon Ineptitude Self VI", - "description": "Decreases the caster's Missile Weapons skill by 35 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "557": { - "name": "Creature Enchantment Mastery Self I", - "description": "Increases the caster's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "558": { - "name": "Creature Enchantment Mastery Self II", - "description": "Increases the caster's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "559": { - "name": "Creature Enchantment Mastery Self III", - "description": "Increases the caster's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "560": { - "name": "Creature Enchantment Mastery Self IV", - "description": "Increases the caster's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "561": { - "name": "Creature Enchantment Mastery Self V", - "description": "Increases the caster's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "562": { - "name": "Creature Enchantment Mastery Self VI", - "description": "Increases the caster's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "563": { - "name": "Creature Enchantment Mastery Other I", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "564": { - "name": "Creature Enchantment Mastery Other II", - "description": "Increases the target's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "565": { - "name": "Creature Enchantment Mastery Other III", - "description": "Increases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "566": { - "name": "Creature Enchantment Mastery Other IV", - "description": "Increases the target's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "567": { - "name": "Creature Enchantment Mastery Other V", - "description": "Increases the target's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "568": { - "name": "Creature Enchantment Mastery Other VI", - "description": "Increases the target's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "569": { - "name": "Creature Enchantment Ineptitude Other I", - "description": "Decreases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "570": { - "name": "Creature Enchantment Ineptitude Other II", - "description": "Decreases the target's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "571": { - "name": "Creature Enchantment Ineptitude Other III", - "description": "Decreases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "572": { - "name": "Creature Enchantment Ineptitude Other IV", - "description": "Decreases the target's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "573": { - "name": "Creature Enchantment Ineptitude Other V", - "description": "Decreases the target's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "574": { - "name": "Creature Enchantment Ineptitude Other VI", - "description": "Decreases the target's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "575": { - "name": "Creature Enchantment Ineptitude Self I", - "description": "Decreases the caster's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "576": { - "name": "Creature Enchantment Ineptitude Self II", - "description": "Decreases the caster's Creature Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "577": { - "name": "Creature Enchantment Ineptitude Self III", - "description": "Decreases the caster's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "578": { - "name": "Creature Enchantment Ineptitude Self IV", - "description": "Decreases the caster's Creature Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "579": { - "name": "Creature Enchantment Ineptitude Self V", - "description": "Decreases the caster's Creature Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "580": { - "name": "Creature Enchantment Ineptitude Self VI", - "description": "Decreases the caster's Creature Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "581": { - "name": "Item Enchantment Mastery Self I", - "description": "Increases the caster's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "582": { - "name": "Item Enchantment Mastery Self II", - "description": "Increases the caster's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "583": { - "name": "Item Enchantment Mastery Self III", - "description": "Increases the caster's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "584": { - "name": "Item Enchantment Mastery Self IV", - "description": "Increases the caster's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "585": { - "name": "Item Enchantment Mastery Self V", - "description": "Increases the caster's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "586": { - "name": "Item Enchantment Mastery Self VI", - "description": "Increases the caster's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "587": { - "name": "Item Enchantment Mastery Other I", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "588": { - "name": "Item Enchantment Mastery Other II", - "description": "Increases the target's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "589": { - "name": "Item Enchantment Mastery Other III", - "description": "Increases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "590": { - "name": "Item Enchantment Mastery Other IV", - "description": "Increases the target's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "591": { - "name": "Item Enchantment Mastery Other V", - "description": "Increases the target's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "592": { - "name": "Item Enchantment Mastery Other VI", - "description": "Increases the target's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "593": { - "name": "Item Enchantment Ineptitude Other I", - "description": "Decreases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "594": { - "name": "Item Enchantment Ineptitude Other II", - "description": "Decreases the target's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "595": { - "name": "Item Enchantment Ineptitude Other III", - "description": "Decreases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "596": { - "name": "Item Enchantment Ineptitude Other IV", - "description": "Decreases the target's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "597": { - "name": "Item Enchantment Ineptitude Other V", - "description": "Decreases the target's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "598": { - "name": "Item Enchantment Ineptitude Other VI", - "description": "Decreases the target's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "599": { - "name": "Item Enchantment Ineptitude Self I", - "description": "Decreases the caster's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "600": { - "name": "Item Enchantment Ineptitude Self II", - "description": "Decreases the caster's Item Enchantment skill by 15 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "601": { - "name": "Item Enchantment Ineptitude Self III", - "description": "Decreases the caster's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "602": { - "name": "Item Enchantment Ineptitude Self IV", - "description": "Decreases the caster's Item Enchantment skill by 25 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "603": { - "name": "Item Enchantment Ineptitude Self V", - "description": "Decreases the caster's Item Enchantment skill by 30 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "604": { - "name": "Item Enchantment Ineptitude Self VI", - "description": "Decreases the caster's Item Enchantment skill by 35 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "605": { - "name": "Life Magic Mastery Self I", - "description": "Increases the caster's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "606": { - "name": "Life Magic Mastery Self II", - "description": "Increases the caster's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "607": { - "name": "Life Magic Mastery Self III", - "description": "Increases the caster's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "608": { - "name": "Life Magic Mastery Self IV", - "description": "Increases the caster's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "609": { - "name": "Life Magic Mastery Self V", - "description": "Increases the caster's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "610": { - "name": "Life Magic Mastery Self VI", - "description": "Increases the caster's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "611": { - "name": "Life Magic Mastery Other I", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "612": { - "name": "Life Magic Mastery Other II", - "description": "Increases the target's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "613": { - "name": "Life Magic Mastery Other III", - "description": "Increases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "614": { - "name": "Life Magic Mastery Other IV", - "description": "Increases the target's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "615": { - "name": "Life Magic Mastery Other V", - "description": "Increases the target's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "616": { - "name": "Life Magic Mastery Other VI", - "description": "Increases the target's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "617": { - "name": "Life Magic Ineptitude Self I", - "description": "Decreases the caster's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "618": { - "name": "Life Magic Ineptitude Self II", - "description": "Decreases the caster's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "619": { - "name": "Life Magic Ineptitude Self III", - "description": "Decreases the caster's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "620": { - "name": "Life Magic Ineptitude Self IV", - "description": "Decreases the caster's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "621": { - "name": "Life Magic Ineptitude Self V", - "description": "Decreases the caster's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "622": { - "name": "Life Magic Ineptitude Self VI", - "description": "Decreases the caster's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "623": { - "name": "Life Magic Ineptitude Other I", - "description": "Decreases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "624": { - "name": "Life Magic Ineptitude Other II", - "description": "Decreases the target's Life Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "75", - "duration": "90", - "mana": "10" - }, - "625": { - "name": "Life Magic Ineptitude Other III", - "description": "Decreases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "626": { - "name": "Life Magic Ineptitude Other IV", - "description": "Decreases the target's Life Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "627": { - "name": "Life Magic Ineptitude Other V", - "description": "Decreases the target's Life Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "628": { - "name": "Life Magic Ineptitude Other VI", - "description": "Decreases the target's Life Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "629": { - "name": "War Magic Mastery Self I", - "description": "Increases the caster's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "630": { - "name": "War Magic Mastery Self II", - "description": "Increases the caster's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "631": { - "name": "War Magic Mastery Self III", - "description": "Increases the caster's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "632": { - "name": "War Magic Mastery Self IV", - "description": "Increases the caster's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "633": { - "name": "War Magic Mastery Self V", - "description": "Increases the caster's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "634": { - "name": "War Magic Mastery Self VI", - "description": "Increases the caster's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "635": { - "name": "War Magic Mastery Other I", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "636": { - "name": "War Magic Mastery Other II", - "description": "Increases the target's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "637": { - "name": "War Magic Mastery Other III", - "description": "Increases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "638": { - "name": "War Magic Mastery Other IV", - "description": "Increases the target's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "639": { - "name": "War Magic Mastery Other V", - "description": "Increases the target's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "640": { - "name": "War Magic Mastery Other VI", - "description": "Increases the target's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "641": { - "name": "War Magic Ineptitude Self I", - "description": "Decreases the caster's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "642": { - "name": "War Magic Ineptitude Self II", - "description": "Decreases the caster's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "643": { - "name": "War Magic Ineptitude Self III", - "description": "Decreases the caster's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "644": { - "name": "War Magic Ineptitude Self IV", - "description": "Decreases the caster's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "645": { - "name": "War Magic Ineptitude Self V", - "description": "Decreases the caster's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "646": { - "name": "War Magic Ineptitude Self VI", - "description": "Decreases the caster's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "647": { - "name": "War Magic Ineptitude Other I", - "description": "Decreases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "648": { - "name": "War Magic Ineptitude Other II", - "description": "Decreases the target's War Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "649": { - "name": "War Magic Ineptitude Other III", - "description": "Decreases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "650": { - "name": "War Magic Ineptitude Other IV", - "description": "Decreases the target's War Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "651": { - "name": "War Magic Ineptitude Other V", - "description": "Decreases the target's War Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "652": { - "name": "War Magic Ineptitude Other VI", - "description": "Decreases the target's War Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "653": { - "name": "Mana Conversion Mastery Self I", - "description": "Increases the caster's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "654": { - "name": "Mana Conversion Mastery Self II", - "description": "Increases the caster's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "655": { - "name": "Mana Conversion Mastery Self III", - "description": "Increases the caster's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "656": { - "name": "Mana Conversion Mastery Self IV", - "description": "Increases the caster's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "657": { - "name": "Mana Conversion Mastery Self V", - "description": "Increases the caster's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "658": { - "name": "Mana Conversion Mastery Self VI", - "description": "Increases the caster's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "659": { - "name": "Mana Conversion Mastery Other I", - "description": "Increases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "660": { - "name": "Mana Conversion Mastery Other II", - "description": "Increases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "661": { - "name": "Mana Conversion Mastery Other III", - "description": "Increases the target's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "662": { - "name": "Mana Conversion Mastery Other IV", - "description": "Increases the target's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "663": { - "name": "Mana Conversion Mastery Other V", - "description": "Increases the target's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "664": { - "name": "Mana Conversion Mastery Other VI", - "description": "Increases the target's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "665": { - "name": "Mana Conversion Ineptitude Self I", - "description": "Decreases the caster's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "666": { - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "family": "204", - "difficulty": "30", - "duration": "-1", - "mana": "3" - }, - "667": { - "name": "Mana Conversion Ineptitude Self II", - "description": "Decreases the caster's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "668": { - "name": "Mana Conversion Ineptitude Self III", - "description": "Decreases the caster's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "669": { - "name": "Mana Conversion Ineptitude Self IV", - "description": "Decreases the caster's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "670": { - "name": "Mana Conversion Ineptitude Self V", - "description": "Decreases the caster's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "671": { - "name": "Mana Conversion Ineptitude Self VI", - "description": "Decreases the caster's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "672": { - "name": "Mana Conversion Ineptitude Other I", - "description": "Decreases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "673": { - "name": "Mana Conversion Ineptitude Other II", - "description": "Decreases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "674": { - "name": "Mana Conversion Ineptitude Other III", - "description": "Decreases the target's Mana Conversion skill by 20 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "675": { - "name": "Mana Conversion Ineptitude Other IV", - "description": "Decreases the target's Mana Conversion skill by 25 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "676": { - "name": "Mana Conversion Ineptitude Other V", - "description": "Decreases the target's Mana Conversion skill by 30 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "677": { - "name": "Mana Conversion Ineptitude Other VI", - "description": "Decreases the target's Mana Conversion skill by 35 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "678": { - "name": "Arcane Enlightenment Self I", - "description": "Increases the caster's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "679": { - "name": "Arcane Enlightenment Self II", - "description": "Increases the caster's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "680": { - "name": "Arcane Enlightenment Self III", - "description": "Increases the caster's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "681": { - "name": "Arcane Enlightenment Self IV", - "description": "Increases the caster's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "682": { - "name": "Arcane Enlightenment Self V", - "description": "Increases the caster's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "683": { - "name": "Arcane Enlightenment Self VI", - "description": "Increases the caster's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "684": { - "name": "Arcane Enlightenment Other I", - "description": "Increases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "685": { - "name": "Arcane Enlightenment Other II", - "description": "Increases the target's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "686": { - "name": "Arcane Enlightenment Other III", - "description": "Increases the target's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "687": { - "name": "Arcane Enlightenment Other IV", - "description": "Increases the target's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "688": { - "name": "Arcane Enlightenment Other V", - "description": "Increases the target's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "689": { - "name": "Arcane Enlightenment Other VI", - "description": "Increases the target's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "690": { - "name": "Arcane Benightedness Self I", - "description": "Decreases the caster's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "691": { - "name": "Arcane Benightedness Self II", - "description": "Decreases the caster's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "692": { - "name": "Arcane Benightedness Self III", - "description": "Decreases the caster's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "693": { - "name": "Arcane Benightedness Self IV", - "description": "Decreases the caster's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "694": { - "name": "Arcane Benightedness Self V", - "description": "Decreases the caster's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "695": { - "name": "Arcane Benightedness Self VI", - "description": "Decreases the caster's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "696": { - "name": "Arcane Benightedness Other I", - "description": "Decreases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "697": { - "name": "Arcane Benightedness Other II", - "description": "Decreases the target's Arcane Lore skill by 15 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "698": { - "name": "Arcane Benightedness Other III", - "description": "Decreases the target's Arcane Lore skill by 20 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "699": { - "name": "Arcane Benightedness Other IV", - "description": "Decreases the target's Arcane Lore skill by 25 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "700": { - "name": "Arcane Benightedness Other V", - "description": "Decreases the target's Arcane Lore skill by 30 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "701": { - "name": "Arcane Benightedness Other VI", - "description": "Decreases the target's Arcane Lore skill by 35 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "702": { - "name": "Armor Tinkering Expertise Self I", - "description": "Increases the caster's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "703": { - "name": "Armor Tinkering Expertise Self II", - "description": "Increases the caster's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "704": { - "name": "Armor Tinkering Expertise Self III", - "description": "Increases the caster's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "705": { - "name": "Armor Tinkering Expertise Self IV", - "description": "Increases the caster's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "706": { - "name": "Armor Tinkering Expertise Self V", - "description": "Increases the caster's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "707": { - "name": "Armor Tinkering Expertise Self VI", - "description": "Increases the caster's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "708": { - "name": "Armor Tinkering Expertise Other I", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "709": { - "name": "Armor Tinkering Expertise Other II", - "description": "Increases the target's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "710": { - "name": "Armor Tinkering Expertise Other III", - "description": "Increases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "711": { - "name": "Armor Tinkering Expertise Other IV", - "description": "Increases the target's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "712": { - "name": "Armor Tinkering Expertise Other V", - "description": "Increases the target's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "713": { - "name": "Armor Tinkering Expertise Other VI", - "description": "Increases the target's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "714": { - "name": "Armor Tinkering Ignorance Self I", - "description": "Decreases the caster's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "715": { - "name": "Armor Tinkering Ignorance Self II", - "description": "Decreases the caster's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "716": { - "name": "Armor Tinkering Ignorance Self III", - "description": "Decreases the caster's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "717": { - "name": "Armor Tinkering Ignorance Self IV", - "description": "Decreases the caster's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "718": { - "name": "Armor Tinkering Ignorance Self V", - "description": "Decreases the caster's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "719": { - "name": "Armor Tinkering Ignorance Self VI", - "description": "Decreases the caster's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "720": { - "name": "Armor Tinkering Ignorance Other I", - "description": "Decreases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "721": { - "name": "Armor Tinkering Ignorance Other II", - "description": "Decreases the target's Armor Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "722": { - "name": "Armor Tinkering Ignorance Other III", - "description": "Decreases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "723": { - "name": "Armor Tinkering Ignorance Other IV", - "description": "Decreases the target's Armor Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "724": { - "name": "Armor Tinkering Ignorance Other V", - "description": "Decreases the target's Armor Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "725": { - "name": "Armor Tinkering Ignorance Other VI", - "description": "Decreases the target's Armor Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "726": { - "name": "Item Tinkering Expertise Self I", - "description": "Increases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "727": { - "name": "Item Tinkering Expertise Self II", - "description": "Increases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "728": { - "name": "Item Tinkering Expertise Self III", - "description": "Increases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "729": { - "name": "Item Tinkering Expertise Self IV", - "description": "Increases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "730": { - "name": "Item Tinkering Expertise Self V", - "description": "Increases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "731": { - "name": "Item Tinkering Expertise Self VI", - "description": "Increases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "732": { - "name": "Item Tinkering Expertise Other I", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "733": { - "name": "Item Tinkering Expertise Other II", - "description": "Increases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "734": { - "name": "Item Tinkering Expertise Other III", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "735": { - "name": "Item Tinkering Expertise Other IV", - "description": "Increases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "736": { - "name": "Item Tinkering Expertise Other V", - "description": "Increases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "737": { - "name": "Item Tinkering Expertise Other VI", - "description": "Increases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "738": { - "name": "Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "739": { - "name": "Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "740": { - "name": "Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "741": { - "name": "Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "742": { - "name": "Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "743": { - "name": "Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "744": { - "name": "Item Tinkering Ignorance Other I", - "description": "Decreases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "745": { - "name": "Item Tinkering Ignorance Other II", - "description": "Decreases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "746": { - "name": "Item Tinkering Ignorance Other III", - "description": "Decreases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "747": { - "name": "Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "748": { - "name": "Item Tinkering Ignorance Other V", - "description": "Decreases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "749": { - "name": "Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "750": { - "name": "Magic Item Tinkering Expertise Self I", - "description": "Increases the caster's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "751": { - "name": "Magic Item Tinkering Expertise Self II", - "description": "Increases the caster's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "752": { - "name": "Magic Item Tinkering Expertise Self III", - "description": "Increases the caster's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "753": { - "name": "Magic Item Tinkering Expertise Self IV", - "description": "Increases the caster's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "754": { - "name": "Magic Item Tinkering Expertise Self V", - "description": "Increases the caster's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "755": { - "name": "Magic Item Tinkering Expertise Self VI", - "description": "Increases the caster's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "756": { - "name": "Magic Item Tinkering Expertise Other I", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "757": { - "name": "Magic Item Tinkering Expertise Other II", - "description": "Increases the target's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "758": { - "name": "Magic Item Tinkering Expertise Other III", - "description": "Increases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "75", - "duration": "1800", - "mana": "30" - }, - "759": { - "name": "Magic Item Tinkering Expertise Other IV", - "description": "Increases the target's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "125", - "duration": "1800", - "mana": "40" - }, - "760": { - "name": "Magic Item Tinkering Expertise Other V", - "description": "Increases the target's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "761": { - "name": "Magic Item Tinkering Expertise Other VI", - "description": "Increases the target's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "762": { - "name": "Magic Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "763": { - "name": "Magic Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "764": { - "name": "Magic Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "765": { - "name": "Magic Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "766": { - "name": "Magic Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "767": { - "name": "Magic Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "768": { - "name": "Magic Item Tinkering Ignorance Other I", - "description": "Decreases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "769": { - "name": "Magic Item Tinkering Ignorance Other II", - "description": "Decreases the target's Magic Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "770": { - "name": "Magic Item Tinkering Ignorance Other III", - "description": "Decreases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "771": { - "name": "Magic Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Magic Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "772": { - "name": "Magic Item Tinkering Ignorance Other V", - "description": "Decreases the target's Magic Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "773": { - "name": "Magic Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Magic Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "774": { - "name": "Weapon Tinkering Expertise Self I", - "description": "Increases the caster's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "775": { - "name": "Weapon Tinkering Expertise Self II", - "description": "Increases the caster's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "776": { - "name": "Weapon Tinkering Expertise Self III", - "description": "Increases the caster's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "777": { - "name": "Weapon Tinkering Expertise Self IV", - "description": "Increases the caster's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "778": { - "name": "Weapon Tinkering Expertise Self V", - "description": "Increases the caster's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "779": { - "name": "Weapon Tinkering Expertise Self VI", - "description": "Increases the caster's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "780": { - "name": "Weapon Tinkering Expertise Other I", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "781": { - "name": "Weapon Tinkering Expertise Other II", - "description": "Increases the target's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "782": { - "name": "Weapon Tinkering Expertise Other III", - "description": "Increases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "783": { - "name": "Weapon Tinkering Expertise Other IV", - "description": "Increases the target's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "784": { - "name": "Weapon Tinkering Expertise Other V", - "description": "Increases the target's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "785": { - "name": "Weapon Tinkering Expertise Other VI", - "description": "Increases the target's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "786": { - "name": "Weapon Tinkering Ignorance Self I", - "description": "Decreases the caster's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "787": { - "name": "Weapon Tinkering Ignorance Self II", - "description": "Decreases the caster's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "788": { - "name": "Weapon Tinkering Ignorance Self III", - "description": "Decreases the caster's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "789": { - "name": "Weapon Tinkering Ignorance Self IV", - "description": "Decreases the caster's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "790": { - "name": "Weapon Tinkering Ignorance Self V", - "description": "Decreases the caster's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "791": { - "name": "Weapon Tinkering Ignorance Self VI", - "description": "Decreases the caster's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "792": { - "name": "Weapon Tinkering Ignorance Other I", - "description": "Decreases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "793": { - "name": "Weapon Tinkering Ignorance Other II", - "description": "Decreases the target's Weapon Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "794": { - "name": "Weapon Tinkering Ignorance Other III", - "description": "Decreases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "795": { - "name": "Weapon Tinkering Ignorance Other IV", - "description": "Decreases the target's Weapon Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "796": { - "name": "Weapon Tinkering Ignorance Other V", - "description": "Decreases the target's Weapon Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "797": { - "name": "Weapon Tinkering Ignorance Other VI", - "description": "Decreases the target's Weapon Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "798": { - "name": "Monster Attunement Self I", - "description": "Increases the caster's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "799": { - "name": "Monster Attunement Self II", - "description": "Increases the caster's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "800": { - "name": "Monster Attunement Self III", - "description": "Increases the caster's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "801": { - "name": "Monster Attunement Self IV", - "description": "Increases the caster's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "802": { - "name": "Monster Attunement Self V", - "description": "Increases the caster's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "803": { - "name": "Monster Attunement Self VI", - "description": "Increases the caster's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "804": { - "name": "Monster Attunement Other I", - "description": "Increases the target's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "805": { - "name": "Monster Attunement Other II", - "description": "Increases the target's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "806": { - "name": "Monster Attunement Other III", - "description": "Increases the target's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "807": { - "name": "Monster Attunement Other IV", - "description": "Increases the target's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "808": { - "name": "Monster Attunement Other V", - "description": "Increases the target's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "809": { - "name": "Monster Attunement Other VI", - "description": "Increases the target's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "810": { - "name": "Fire Protection Other II", - "description": "Reduces damage the target takes from fire by 20%.", - "school": "Life Magic", - "family": "109", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "811": { - "name": "Monster Unfamiliarity Self I", - "description": "Decreases the caster's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "812": { - "name": "Monster Unfamiliarity Self II", - "description": "Decreases the caster's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "813": { - "name": "Monster Unfamiliarity Self III", - "description": "Decreases the caster's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "814": { - "name": "Monster Unfamiliarity Self IV", - "description": "Decreases the caster's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "815": { - "name": "Monster Unfamiliarity Self V", - "description": "Decreases the caster's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "816": { - "name": "Monster Unfamiliarity Self VI", - "description": "Decreases the caster's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "817": { - "name": "Monster Unfamiliarity Other I", - "description": "Decreases the target's Assess Monster skill by 10 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "818": { - "name": "Monster Unfamiliarity Other II", - "description": "Decreases the target's Assess Monster skill by 15 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "819": { - "name": "Monster Unfamiliarity Other III", - "description": "Decreases the target's Assess Monster skill by 20 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "820": { - "name": "Monster Unfamiliarity Other IV", - "description": "Decreases the target's Assess Monster skill by 25 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "821": { - "name": "Monster Unfamiliarity Other V", - "description": "Decreases the target's Assess Monster skill by 30 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "822": { - "name": "Monster Unfamiliarity Other VI", - "description": "Decreases the target's Assess Monster skill by 35 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "824": { - "name": "Person Attunement Self I", - "description": "Increases the caster's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "825": { - "name": "Person Attunement Self II", - "description": "Increases the caster's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "826": { - "name": "Person Attunement Self III", - "description": "Increases the caster's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "827": { - "name": "Person Attunement Self IV", - "description": "Increases the caster's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "828": { - "name": "Person Attunement Self V", - "description": "Increases the caster's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "829": { - "name": "Person Attunement Self VI", - "description": "Increases the caster's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "830": { - "name": "Person Attunement Other I", - "description": "Increases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "831": { - "name": "Person Attunement Other II", - "description": "Increases the target's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "832": { - "name": "Person Attunement Other III", - "description": "Increases the target's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "833": { - "name": "Person Attunement Other IV", - "description": "Increases the target's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "834": { - "name": "Person Attunement Other V", - "description": "Increases the target's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "835": { - "name": "Person Attunement Other VI", - "description": "Increases the target's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "836": { - "name": "Fire Protection Other III", - "description": "Reduces damage the target takes from fire by 33%.", - "school": "Life Magic", - "family": "109", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "837": { - "name": "Person Unfamiliarity Self I", - "description": "Decreases the caster's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "838": { - "name": "Person Unfamiliarity Self II", - "description": "Decreases the caster's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "839": { - "name": "Person Unfamiliarity Self III", - "description": "Decreases the caster's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "840": { - "name": "Person Unfamiliarity Self IV", - "description": "Decreases the caster's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "841": { - "name": "Person Unfamiliarity Self V", - "description": "Decreases the caster's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "842": { - "name": "Person Unfamiliarity Self VI", - "description": "Decreases the caster's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "843": { - "name": "Person Unfamiliarity Other I", - "description": "Decreases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "844": { - "name": "Person Unfamiliarity Other II", - "description": "Decreases the target's Assess Person skill by 15 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "845": { - "name": "Person Unfamiliarity Other III", - "description": "Decreases the target's Assess Person skill by 20 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "846": { - "name": "Person Unfamiliarity Other IV", - "description": "Decreases the target's Assess Person skill by 25 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "847": { - "name": "Person Unfamiliarity Other V", - "description": "Decreases the target's Assess Person skill by 30 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "848": { - "name": "Person Unfamiliarity Other VI", - "description": "Decreases the target's Assess Person skill by 35 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "849": { - "name": "Fire Protection Other IV", - "description": "Reduces damage the target takes from fire by 43%.", - "school": "Life Magic", - "family": "109", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "850": { - "name": "Deception Mastery Self I", - "description": "Increases the caster's Deception skill by 10 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "851": { - "name": "Deception Mastery Self II", - "description": "Increases the caster's Deception skill by 15 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "852": { - "name": "Deception Mastery Self III", - "description": "Increases the caster's Deception skill by 20 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "853": { - "name": "Deception Mastery Self IV", - "description": "Increases the caster's Deception skill by 25 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "854": { - "name": "Deception Mastery Self V", - "description": "Increases the caster's Deception skill by 30 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "855": { - "name": "Deception Mastery Self VI", - "description": "Increases the caster's Deception skill by 35 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "856": { - "name": "Deception Mastery Other I", - "description": "Increases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "857": { - "name": "Deception Mastery Other II", - "description": "Increases the target's Deception skill by 15 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "858": { - "name": "Deception Mastery Other III", - "description": "Increases the target's Deception skill by 20 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "859": { - "name": "Deception Mastery Other IV", - "description": "Increases the target's Deception skill by 25 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "860": { - "name": "Deception Mastery Other V", - "description": "Increases the target's Deception skill by 30 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "861": { - "name": "Deception Mastery Other VI", - "description": "Increases the target's Deception skill by 35 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "862": { - "name": "Deception Ineptitude Self I", - "description": "Decreases the caster's Deception skill by 10 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "863": { - "name": "Deception Ineptitude Self II", - "description": "Decreases the caster's Deception skill by 15 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "864": { - "name": "Deception Ineptitude Self III", - "description": "Decreases the caster's Deception skill by 20 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "865": { - "name": "Deception Ineptitude Self IV", - "description": "Decreases the caster's Deception skill by 25 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "866": { - "name": "Deception Ineptitude Self V", - "description": "Decreases the caster's Deception skill by 30 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "867": { - "name": "Deception Ineptitude Self VI", - "description": "Decreases the caster's Deception skill by 35 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "868": { - "name": "Deception Ineptitude Other I", - "description": "Decreases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "869": { - "name": "Deception Ineptitude Other II", - "description": "Decreases the target's Deception skill by 15 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "870": { - "name": "Deception Ineptitude Other III", - "description": "Decreases the target's Deception skill by 20 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "871": { - "name": "Deception Ineptitude Other IV", - "description": "Decreases the target's Deception skill by 25 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "872": { - "name": "Deception Ineptitude Other V", - "description": "Decreases the target's Deception skill by 30 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "873": { - "name": "Deception Ineptitude Other VI", - "description": "Decreases the target's Deception skill by 35 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "874": { - "name": "Healing Mastery Self I", - "description": "Increases the caster's Healing skill by 10 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "875": { - "name": "Healing Mastery Self II", - "description": "Increases the caster's Healing skill by 15 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "876": { - "name": "Healing Mastery Self III", - "description": "Increases the caster's Healing skill by 20 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "877": { - "name": "Healing Mastery Self IV", - "description": "Increases the caster's Healing skill by 25 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "878": { - "name": "Healing Mastery Self V", - "description": "Increases the caster's Healing skill by 30 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "879": { - "name": "Healing Mastery Self VI", - "description": "Increases the caster's Healing skill by 35 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "880": { - "name": "Healing Mastery Other I", - "description": "Increases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "881": { - "name": "Healing Mastery Other II", - "description": "Increases the target's Healing skill by 15 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "882": { - "name": "Healing Mastery Other III", - "description": "Increases the target's Healing skill by 20 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "883": { - "name": "Healing Mastery Other IV", - "description": "Increases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "884": { - "name": "Healing Mastery Other V", - "description": "Increases the target's Healing skill by 30 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "885": { - "name": "Healing Mastery Other VI", - "description": "Increases the target's Healing skill by 35 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "886": { - "name": "Healing Ineptitude Self I", - "description": "Decreases the caster's Healing skill by 10 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "887": { - "name": "Healing Ineptitude Self II", - "description": "Decreases the caster's Healing skill by 15 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "888": { - "name": "Healing Ineptitude Self III", - "description": "Decreases the caster's Healing skill by 20 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "889": { - "name": "Healing Ineptitude Self IV", - "description": "Decreases the caster's Healing skill by 25 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "890": { - "name": "Healing Ineptitude Self V", - "description": "Decreases the caster's Healing skill by 30 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "891": { - "name": "Healing Ineptitude Self VI", - "description": "Decreases the caster's Healing skill by 35 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "892": { - "name": "Healing Ineptitude Other I", - "description": "Decreases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "893": { - "name": "Healing Ineptitude Other II", - "description": "Decreases the target's Healing skill by 15 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "894": { - "name": "Healing Ineptitude Other III", - "description": "Decreases the target's Healing skill by 20 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "895": { - "name": "Healing Ineptitude Other IV", - "description": "Decreases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "896": { - "name": "Healing Ineptitude Other V", - "description": "Decreases the target's Healing skill by 30 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "897": { - "name": "Healing Ineptitude Other VI", - "description": "Decreases the target's Healing skill by 35 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "898": { - "name": "Leadership Mastery Self I", - "description": "Increases the caster's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "899": { - "name": "Leadership Mastery Self II", - "description": "Increases the caster's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "25", - "duration": "1800", - "mana": "20" - }, - "900": { - "name": "Leadership Mastery Self III", - "description": "Increases the caster's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "75", - "duration": "1800", - "mana": "30" - }, - "901": { - "name": "Leadership Mastery Self IV", - "description": "Increases the caster's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "125", - "duration": "1800", - "mana": "40" - }, - "902": { - "name": "Leadership Mastery Self V", - "description": "Increases the caster's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "903": { - "name": "Leadership Mastery Self VI", - "description": "Increases the caster's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "904": { - "name": "Leadership Mastery Other I", - "description": "Increases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "905": { - "name": "Leadership Mastery Other II", - "description": "Increases the target's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "906": { - "name": "Leadership Mastery Other III", - "description": "Increases the target's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "907": { - "name": "Leadership Mastery Other IV", - "description": "Increases the target's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "908": { - "name": "Leadership Mastery Other V", - "description": "Increases the target's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "909": { - "name": "Leadership Mastery Other VI", - "description": "Increases the target's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "910": { - "name": "Leadership Ineptitude Self I", - "description": "Decreases the caster's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "911": { - "name": "Leadership Ineptitude Self II", - "description": "Decreases the caster's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "912": { - "name": "Leadership Ineptitude Self III", - "description": "Decreases the caster's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "913": { - "name": "Leadership Ineptitude Self IV", - "description": "Decreases the caster's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "914": { - "name": "Leadership Ineptitude Self V", - "description": "Decreases the caster's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "915": { - "name": "Leadership Ineptitude Self VI", - "description": "Decreases the caster's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "916": { - "name": "Leadership Ineptitude Other I", - "description": "Decreases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "917": { - "name": "Leadership Ineptitude Other II", - "description": "Decreases the target's Leadership skill by 15 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "918": { - "name": "Leadership Ineptitude Other III", - "description": "Decreases the target's Leadership skill by 20 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "919": { - "name": "Leadership Ineptitude Other IV", - "description": "Decreases the target's Leadership skill by 25 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "920": { - "name": "Leadership Ineptitude Other V", - "description": "Decreases the target's Leadership skill by 30 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "921": { - "name": "Leadership Ineptitude Other VI", - "description": "Decreases the target's Leadership skill by 35 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "922": { - "name": "Lockpick Mastery Self I", - "description": "Increases the caster's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "923": { - "name": "Lockpick Mastery Self II", - "description": "Increases the caster's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "924": { - "name": "Lockpick Mastery Self III", - "description": "Increases the caster's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "925": { - "name": "Lockpick Mastery Self IV", - "description": "Increases the caster's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "926": { - "name": "Lockpick Mastery Self V", - "description": "Increases the caster's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "927": { - "name": "Lockpick Mastery Self VI", - "description": "Increases the caster's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "928": { - "name": "Lockpick Mastery Other I", - "description": "Increases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "929": { - "name": "Lockpick Mastery Other II", - "description": "Increases the target's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "930": { - "name": "Lockpick Mastery Other III", - "description": "Increases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "931": { - "name": "Lockpick Mastery Other IV", - "description": "Increases the target's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "932": { - "name": "Lockpick Mastery Other V", - "description": "Increases the target's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "933": { - "name": "Lockpick Mastery Other VI", - "description": "Increases the target's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "934": { - "name": "Lockpick Ineptitude Self I", - "description": "Decreases the caster's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "935": { - "name": "Lockpick Ineptitude Self II", - "description": "Decreases the caster's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "936": { - "name": "Lockpick Ineptitude Self III", - "description": "Decreases the caster's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "937": { - "name": "Lockpick Ineptitude Self IV", - "description": "Decreases the caster's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "938": { - "name": "Lockpick Ineptitude Self V", - "description": "Decreases the caster's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "939": { - "name": "Lockpick Ineptitude Self VI", - "description": "Decreases the caster's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "940": { - "name": "Lockpick Ineptitude Other I", - "description": "Decreases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "941": { - "name": "Lockpick Ineptitude Other II", - "description": "Decreases the target's Lockpick skill by 15 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "942": { - "name": "Lockpick Ineptitude Other III", - "description": "Decreases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "943": { - "name": "Lockpick Ineptitude Other IV", - "description": "Decreases the target's Lockpick skill by 25 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "944": { - "name": "Lockpick Ineptitude Other V", - "description": "Decreases the target's Lockpick skill by 30 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "945": { - "name": "Lockpick Ineptitude Other VI", - "description": "Decreases the target's Lockpick skill by 35 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "946": { - "name": "Fealty Self I", - "description": "Increases the caster's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "947": { - "name": "Fealty Self II", - "description": "Increases the caster's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "948": { - "name": "Fealty Self III", - "description": "Increases the caster's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "949": { - "name": "Fealty Self IV", - "description": "Increases the caster's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "950": { - "name": "Fealty Self V", - "description": "Increases the caster's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "951": { - "name": "Fealty Self VI", - "description": "Increases the caster's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "952": { - "name": "Fealty Other I", - "description": "Increases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "953": { - "name": "Fealty Other II", - "description": "Increases the target's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "954": { - "name": "Fealty Other III", - "description": "Increases the target's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "955": { - "name": "Fealty Other IV", - "description": "Increases the target's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "956": { - "name": "Fealty Other V", - "description": "Increases the target's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "957": { - "name": "Fealty Other VI", - "description": "Increases the target's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "958": { - "name": "Faithlessness Self I", - "description": "Decreases the caster's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "959": { - "name": "Faithlessness Self II", - "description": "Decreases the caster's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "960": { - "name": "Faithlessness Self III", - "description": "Decreases the caster's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "961": { - "name": "Faithlessness Self IV", - "description": "Decreases the caster's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "962": { - "name": "Faithlessness Self V", - "description": "Decreases the caster's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "963": { - "name": "Faithlessness Self VI", - "description": "Decreases the caster's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "964": { - "name": "Faithlessness Other I", - "description": "Decreases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "965": { - "name": "Faithlessness Other II", - "description": "Decreases the target's Loyalty skill by 15 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "966": { - "name": "Faithlessness Other III", - "description": "Decreases the target's Loyalty skill by 20 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "967": { - "name": "Faithlessness Other IV", - "description": "Decreases the target's Loyalty skill by 25 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "968": { - "name": "Faithlessness Other V", - "description": "Decreases the target's Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "969": { - "name": "Faithlessness Other VI", - "description": "Decreases the target's Loyalty skill by 35 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "970": { - "name": "Jumping Mastery Self I", - "description": "Increases the caster's Jump skill by 10 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "971": { - "name": "Jumping Mastery Self II", - "description": "Increases the caster's Jump skill by 15 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "972": { - "name": "Jumping Mastery Self III", - "description": "Increases the caster's Jump skill by 20 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "973": { - "name": "Jumping Mastery Self IV", - "description": "Increases the caster's Jump skill by 25 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "974": { - "name": "Jumping Mastery Self V", - "description": "Increases the caster's Jump skill by 30 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "975": { - "name": "Jumping Mastery Self VI", - "description": "Increases the caster's Jump skill by 35 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "976": { - "name": "Jumping Mastery Other I", - "description": "Increases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "977": { - "name": "Jumping Mastery Other II", - "description": "Increases the target's Jump skill by 15 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "978": { - "name": "Jumping Mastery Other III", - "description": "Increases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "979": { - "name": "Jumping Mastery Other IV", - "description": "Increases the target's Jump skill by 25 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "980": { - "name": "Jumping Mastery Other V", - "description": "Increases the target's Jump skill by 30 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "981": { - "name": "Jumping Mastery Other VI", - "description": "Increases the target's Jump skill by 35 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "982": { - "name": "Sprint Self I", - "description": "Increases the caster's Run skill by 10 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "983": { - "name": "Sprint Self II", - "description": "Increases the caster's Run skill by 15 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "984": { - "name": "Sprint Self III", - "description": "Increases the caster's Run skill by 20 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "985": { - "name": "Sprint Self IV", - "description": "Increases the caster's Run skill by 25 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "986": { - "name": "Sprint Self V", - "description": "Increases the caster's Run skill by 30 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "987": { - "name": "Sprint Self VI", - "description": "Increases the caster's Run skill by 35 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "988": { - "name": "Sprint Other I", - "description": "Increases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "989": { - "name": "Sprint Other II", - "description": "Increases the target's Run skill by 15 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "990": { - "name": "Sprint Other III", - "description": "Increases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "991": { - "name": "Sprint Other IV", - "description": "Increases the target's Run skill by 25 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "992": { - "name": "Sprint Other V", - "description": "Increases the target's Run skill by 30 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "993": { - "name": "Sprint Other VI", - "description": "Increases the target's Run skill by 35 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "994": { - "name": "Leaden Feet Self I", - "description": "Decreases the caster's Run skill by 10 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "995": { - "name": "Leaden Feet Self II", - "description": "Decreases the caster's Run skill by 15 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "996": { - "name": "Leaden Feet Self III", - "description": "Decreases the caster's Run skill by 20 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "997": { - "name": "Leaden Feet Self IV", - "description": "Decreases the caster's Run skill by 25 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "998": { - "name": "Leaden Feet Self V", - "description": "Decreases the caster's Run skill by 30 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "999": { - "name": "Leaden Feet Self VI", - "description": "Decreases the caster's Run skill by 35 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1000": { - "name": "Leaden Feet Other I", - "description": "Decreases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1001": { - "name": "Leaden Feet Other II", - "description": "Decreases the target's Run skill by 15 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1002": { - "name": "Leaden Feet Other III", - "description": "Decreases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1003": { - "name": "Leaden Feet Other IV", - "description": "Decreases the target's Run skill by 25 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1004": { - "name": "Leaden Feet Other V", - "description": "Decreases the target's Run skill by 30 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1005": { - "name": "Leaden Feet Other VI", - "description": "Decreases the target's Run skill by 35 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1006": { - "name": "Jumping Ineptitude Self I", - "description": "Decreases the caster's Jump skill by 10 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "1007": { - "name": "Jumping Ineptitude Self II", - "description": "Decreases the caster's Jump skill by 15 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1008": { - "name": "Jumping Ineptitude Self III", - "description": "Decreases the caster's Jump skill by 20 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1009": { - "name": "Jumping Ineptitude Self IV", - "description": "Decreases the caster's Jump skill by 25 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1010": { - "name": "Jumping Ineptitude Self V", - "description": "Decreases the caster's Jump skill by 30 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1011": { - "name": "Jumping Ineptitude Self VI", - "description": "Decreases the caster's Jump skill by 35 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1012": { - "name": "Jumping Ineptitude Other I", - "description": "Decreases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1013": { - "name": "Jumping Ineptitude Other II", - "description": "Decreases the target's Jump skill by 15 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1014": { - "name": "Jumping Ineptitude Other III", - "description": "Decreases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1015": { - "name": "Jumping Ineptitude Other IV", - "description": "Decreases the target's Jump skill by 25 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1016": { - "name": "Jumping Ineptitude Other V", - "description": "Decreases the target's Jump skill by 30 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1017": { - "name": "Jumping Ineptitude Other VI", - "description": "Decreases the target's Jump skill by 35 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1018": { - "name": "Bludgeoning Protection Self I", - "description": "Reduces damage the caster takes from Bludgeoning by 9%.", - "school": "Life Magic", - "family": "103", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1019": { - "name": "Bludgeoning Protection Self II", - "description": "Reduces damage the caster takes from Bludgeoning by 20%.", - "school": "Life Magic", - "family": "103", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1020": { - "name": "Bludgeoning Protection Self III", - "description": "Reduces damage the caster takes from Bludgeoning by 33%.", - "school": "Life Magic", - "family": "103", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1021": { - "name": "Bludgeoning Protection Self IV", - "description": "Reduces damage the caster takes from Bludgeoning by 43%.", - "school": "Life Magic", - "family": "103", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1022": { - "name": "Bludgeoning Protection Self V", - "description": "Reduces damage the caster takes from Bludgeoning by 50%.", - "school": "Life Magic", - "family": "103", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1023": { - "name": "Bludgeoning Protection Self VI", - "description": "Reduces damage the caster takes from Bludgeoning by 60%.", - "school": "Life Magic", - "family": "103", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1024": { - "name": "Bludgeoning Protection Other I", - "description": "Reduces damage the target takes from Bludgeoning by 9%.", - "school": "Life Magic", - "family": "103", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1025": { - "name": "Bludgeoning Protection Other II", - "description": "Reduces damage the target takes from Bludgeoning by 20%.", - "school": "Life Magic", - "family": "103", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1026": { - "name": "Bludgeoning Protection Other III", - "description": "Reduces damage the target takes from Bludgeoning by 33%.", - "school": "Life Magic", - "family": "103", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1027": { - "name": "Bludgeoning Protection Other IV", - "description": "Reduces damage the target takes from Bludgeoning by 43%.", - "school": "Life Magic", - "family": "103", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1028": { - "name": "Bludgeoning Protection Other V", - "description": "Reduces damage the target takes from Bludgeoning by 50%.", - "school": "Life Magic", - "family": "103", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1029": { - "name": "Bludgeoning Protection Other VI", - "description": "Reduces damage the target takes from Bludgeoning by 60%.", - "school": "Life Magic", - "family": "103", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1030": { - "name": "Cold Protection Self I", - "description": "Reduces damage the caster takes from Cold by 9%.", - "school": "Life Magic", - "family": "105", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1031": { - "name": "Cold Protection Self II", - "description": "Reduces damage the caster takes from Cold by 20%.", - "school": "Life Magic", - "family": "105", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1032": { - "name": "Cold Protection Self III", - "description": "Reduces damage the caster takes from Cold by 33%.", - "school": "Life Magic", - "family": "105", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1033": { - "name": "Cold Protection Self IV", - "description": "Reduces damage the caster takes from Cold by 43%.", - "school": "Life Magic", - "family": "105", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1034": { - "name": "Cold Protection Self V", - "description": "Reduces damage the caster takes from Cold by 50%.", - "school": "Life Magic", - "family": "105", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1035": { - "name": "Cold Protection Self VI", - "description": "Reduces damage the caster takes from Cold by 60%.", - "school": "Life Magic", - "family": "105", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1036": { - "name": "Cold Protection Other I", - "description": "Reduces damage the target takes from Cold by 9%.", - "school": "Life Magic", - "family": "105", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1037": { - "name": "Cold Protection Other II", - "description": "Reduces damage the target takes from Cold by 20%.", - "school": "Life Magic", - "family": "105", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1038": { - "name": "Cold Protection Other III", - "description": "Reduces damage the target takes from Cold by 33%.", - "school": "Life Magic", - "family": "105", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1039": { - "name": "Cold Protection Other IV", - "description": "Reduces damage the target takes from Cold by 43%.", - "school": "Life Magic", - "family": "105", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1040": { - "name": "Cold Protection Other V", - "description": "Reduces damage the target takes from Cold by 50%.", - "school": "Life Magic", - "family": "105", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1041": { - "name": "Cold Protection Other VI", - "description": "Reduces damage the target takes from Cold by 60%.", - "school": "Life Magic", - "family": "105", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1042": { - "name": "Bludgeoning Vulnerability Self I", - "description": "Increases damage the caster takes from Bludgeoning by 10%.", - "school": "Life Magic", - "family": "104", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "1043": { - "name": "Bludgeoning Vulnerability Self II", - "description": "Increases damage the caster takes from Bludgeoning by 25%.", - "school": "Life Magic", - "family": "104", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1044": { - "name": "Bludgeoning Vulnerability Self III", - "description": "Increases damage the caster takes from Bludgeoning by 50%.", - "school": "Life Magic", - "family": "104", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1045": { - "name": "Bludgeoning Vulnerability Self IV", - "description": "Increases damage the caster takes from Bludgeoning by 75%.", - "school": "Life Magic", - "family": "104", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1046": { - "name": "Bludgeoning Vulnerability Self V", - "description": "Increases damage the caster takes from Bludgeoning by 100%.", - "school": "Life Magic", - "family": "104", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1047": { - "name": "Bludgeoning Vulnerability Self VI", - "description": "Increases damage the caster takes from Bludgeoning by 150%.", - "school": "Life Magic", - "family": "104", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1048": { - "name": "Bludgeoning Vulnerability Other I", - "description": "Increases damage the target takes from Bludgeoning by 10%.", - "school": "Life Magic", - "family": "104", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1049": { - "name": "Bludgeoning Vulnerability Other II", - "description": "Increases damage the target takes from Bludgeoning by 25%.", - "school": "Life Magic", - "family": "104", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1050": { - "name": "Bludgeoning Vulnerability Other III", - "description": "Increases damage the target takes from Bludgeoning by 50%.", - "school": "Life Magic", - "family": "104", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1051": { - "name": "Bludgeoning Vulnerability Other IV", - "description": "Increases damage the target takes from Bludgeoning by 75%.", - "school": "Life Magic", - "family": "104", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1052": { - "name": "Bludgeoning Vulnerability Other V", - "description": "Increases damage the target takes from Bludgeoning by 100%.", - "school": "Life Magic", - "family": "104", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1053": { - "name": "Bludgeoning Vulnerability Other VI", - "description": "Increases damage the target takes from Bludgeoning by 150%.", - "school": "Life Magic", - "family": "104", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1054": { - "name": "Cold Vulnerability Self I", - "description": "Increases damage the caster takes from Cold by 10%.", - "school": "Life Magic", - "family": "106", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "1055": { - "name": "Cold Vulnerability Self II", - "description": "Increases damage the caster takes from Cold by 25%.", - "school": "Life Magic", - "family": "106", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1056": { - "name": "Cold Vulnerability Self III", - "description": "Increases damage the caster takes from Cold by 50%.", - "school": "Life Magic", - "family": "106", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1057": { - "name": "Cold Vulnerability Self IV", - "description": "Increases damage the caster takes from Cold by 75%.", - "school": "Life Magic", - "family": "106", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1058": { - "name": "Cold Vulnerability Self V", - "description": "Increases damage the caster takes from Cold by 100%.", - "school": "Life Magic", - "family": "106", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1059": { - "name": "Cold Vulnerability Self VI", - "description": "Increases damage the caster takes from Cold by 150%.", - "school": "Life Magic", - "family": "106", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1060": { - "name": "Cold Vulnerability Other I", - "description": "Increases damage the target takes from Cold by 10%.", - "school": "Life Magic", - "family": "106", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1061": { - "name": "Cold Vulnerability Other II", - "description": "Increases damage the target takes from Cold by 25%.", - "school": "Life Magic", - "family": "106", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1062": { - "name": "Cold Vulnerability Other III", - "description": "Increases damage the target takes from Cold by 50%.", - "school": "Life Magic", - "family": "106", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1063": { - "name": "Cold Vulnerability Other IV", - "description": "Increases damage the target takes from Cold by 75%.", - "school": "Life Magic", - "family": "106", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1064": { - "name": "Cold Vulnerability Other V", - "description": "Increases damage the target takes from Cold by 100%.", - "school": "Life Magic", - "family": "106", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1065": { - "name": "Cold Vulnerability Other VI", - "description": "Increases damage the target takes from Cold by 150%.", - "school": "Life Magic", - "family": "106", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1066": { - "name": "Lightning Protection Self I", - "description": "Reduces damage the caster takes from Lightning by 9%.", - "school": "Life Magic", - "family": "107", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1067": { - "name": "Lightning Protection Self II", - "description": "Reduces damage the caster takes from Lightning by 20%.", - "school": "Life Magic", - "family": "107", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1068": { - "name": "Lightning Protection Self III", - "description": "Reduces damage the caster takes from Lightning by 33%.", - "school": "Life Magic", - "family": "107", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1069": { - "name": "Lightning Protection Self IV", - "description": "Reduces damage the caster takes from Lightning by 43%.", - "school": "Life Magic", - "family": "107", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1070": { - "name": "Lightning Protection Self V", - "description": "Reduces damage the caster takes from Lightning by 50%.", - "school": "Life Magic", - "family": "107", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1071": { - "name": "Lightning Protection Self VI", - "description": "Reduces damage the caster takes from Lightning by 60%.", - "school": "Life Magic", - "family": "107", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1072": { - "name": "Lightning Protection Other I", - "description": "Reduces damage the target takes from Lightning by 9%.", - "school": "Life Magic", - "family": "107", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1073": { - "name": "Lightning Protection Other II", - "description": "Reduces damage the target takes from Lightning by 20%.", - "school": "Life Magic", - "family": "107", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1074": { - "name": "Lightning Protection Other III", - "description": "Reduces damage the target takes from Lightning by 33%.", - "school": "Life Magic", - "family": "107", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1075": { - "name": "Lightning Protection Other IV", - "description": "Reduces damage the target takes from Lightning by 43%.", - "school": "Life Magic", - "family": "107", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1076": { - "name": "Lightning Protection Other V", - "description": "Reduces damage the target takes from Lightning by 50%.", - "school": "Life Magic", - "family": "107", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1077": { - "name": "Lightning Protection Other VI", - "description": "Reduces damage the target takes from Lightning by 60%.", - "school": "Life Magic", - "family": "107", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1078": { - "name": "Lightning Vulnerability Self I", - "description": "Increases damage the caster takes from Lightning by 10%.", - "school": "Life Magic", - "family": "108", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "1079": { - "name": "Lightning Vulnerability Self II", - "description": "Increases damage the caster takes from Lightning by 25%.", - "school": "Life Magic", - "family": "108", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1080": { - "name": "Lightning Vulnerability Self III", - "description": "Increases damage the caster takes from Lightning by 50%.", - "school": "Life Magic", - "family": "108", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1081": { - "name": "Lightning Vulnerability Self IV", - "description": "Increases damage the caster takes from Lightning by 75%.", - "school": "Life Magic", - "family": "108", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1082": { - "name": "Lightning Vulnerability Self V", - "description": "Increases damage the caster takes from Lightning by 100%.", - "school": "Life Magic", - "family": "108", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1083": { - "name": "Lightning Vulnerability Self VI", - "description": "Increases damage the caster takes from Lightning by 150%.", - "school": "Life Magic", - "family": "108", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1084": { - "name": "Lightning Vulnerability Other I", - "description": "Increases damage the target takes from Lightning by 10%.", - "school": "Life Magic", - "family": "108", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1085": { - "name": "Lightning Vulnerability Other II", - "description": "Increases damage the target takes from Lightning by 25%.", - "school": "Life Magic", - "family": "108", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1086": { - "name": "Lightning Vulnerability Other III", - "description": "Increases damage the target takes from Lightning by 50%.", - "school": "Life Magic", - "family": "108", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1087": { - "name": "Lightning Vulnerability Other IV", - "description": "Increases damage the target takes from Lightning by 75%.", - "school": "Life Magic", - "family": "108", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1088": { - "name": "Lightning Vulnerability Other V", - "description": "Increases damage the target takes from Lightning by 100%.", - "school": "Life Magic", - "family": "108", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1089": { - "name": "Lightning Vulnerability Other VI", - "description": "Increases damage the target takes from Lightning by 150%.", - "school": "Life Magic", - "family": "108", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1090": { - "name": "Fire Protection Self II", - "description": "Reduces damage the caster takes from Fire by 20%.", - "school": "Life Magic", - "family": "109", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1091": { - "name": "Fire Protection Self III", - "description": "Reduces damage the caster takes from Fire by 33%.", - "school": "Life Magic", - "family": "109", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1092": { - "name": "Fire Protection Self IV", - "description": "Reduces damage the caster takes from Fire by 43%.", - "school": "Life Magic", - "family": "109", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1093": { - "name": "Fire Protection Self V", - "description": "Reduces damage the caster takes from Fire by 50%.", - "school": "Life Magic", - "family": "109", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1094": { - "name": "Fire Protection Self VI", - "description": "Reduces damage the caster takes from Fire by 60%.", - "school": "Life Magic", - "family": "109", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1095": { - "name": "Fire Protection Other V", - "description": "Reduces damage the target takes from fire by 50%.", - "school": "Life Magic", - "family": "109", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1096": { - "name": "Fire Protection Other VI", - "description": "Reduces damage the target takes from fire by 60%.", - "school": "Life Magic", - "family": "109", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1097": { - "name": "Flaming Missile", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1098": { - "name": "Fire Vulnerability Self II", - "description": "Increases damage the caster takes from Fire by 25%.", - "school": "Life Magic", - "family": "110", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1099": { - "name": "Fire Vulnerability Self III", - "description": "Increases damage the caster takes from Fire by 50%.", - "school": "Life Magic", - "family": "110", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1100": { - "name": "Fire Vulnerability Self IV", - "description": "Increases damage the caster takes from Fire by 75%.", - "school": "Life Magic", - "family": "110", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1101": { - "name": "Fire Vulnerability Self V", - "description": "Increases damage the caster takes from Fire by 100%.", - "school": "Life Magic", - "family": "110", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1102": { - "name": "Fire Vulnerability Self VI", - "description": "Increases damage the caster takes from Fire by 150%.", - "school": "Life Magic", - "family": "110", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1104": { - "name": "Fire Vulnerability Other II", - "description": "Increases damage the target takes from Fire by 25%.", - "school": "Life Magic", - "family": "110", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1105": { - "name": "Fire Vulnerability Other III", - "description": "Increases damage the target takes from Fire by 50%.", - "school": "Life Magic", - "family": "110", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1106": { - "name": "Fire Vulnerability Other IV", - "description": "Increases damage the target takes from Fire by 75%.", - "school": "Life Magic", - "family": "110", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1107": { - "name": "Fire Vulnerability Other V", - "description": "Increases damage the target takes from Fire by 100%.", - "school": "Life Magic", - "family": "110", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1108": { - "name": "Fire Vulnerability Other VI", - "description": "Increases damage the target takes from Fire by 150%.", - "school": "Life Magic", - "family": "110", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1109": { - "name": "Blade Protection Self I", - "description": "Reduces damage the caster takes from Slashing by 9%.", - "school": "Life Magic", - "family": "113", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1110": { - "name": "Blade Protection Self II", - "description": "Reduces damage the caster takes from Slashing by 20%.", - "school": "Life Magic", - "family": "113", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1111": { - "name": "Blade Protection Self III", - "description": "Reduces damage the caster takes from Slashing by 33%.", - "school": "Life Magic", - "family": "113", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1112": { - "name": "Blade Protection Self IV", - "description": "Reduces damage the caster takes from Slashing by 43%.", - "school": "Life Magic", - "family": "113", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1113": { - "name": "Blade Protection Self V", - "description": "Reduces damage the caster takes from Slashing by 50%.", - "school": "Life Magic", - "family": "113", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1114": { - "name": "Blade Protection Self VI", - "description": "Reduces damage the caster takes from Slashing by 60%.", - "school": "Life Magic", - "family": "113", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1115": { - "name": "Blade Protection Other I", - "description": "Reduces damage the target takes from Slashing by 9%.", - "school": "Life Magic", - "family": "113", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1116": { - "name": "Blade Protection Other II", - "description": "Reduces damage the target takes from Slashing by 20%.", - "school": "Life Magic", - "family": "113", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1117": { - "name": "Blade Protection Other III", - "description": "Reduces damage the target takes from Slashing by 33%.", - "school": "Life Magic", - "family": "113", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1118": { - "name": "Blade Protection Other IV", - "description": "Reduces damage the target takes from Slashing by 43%.", - "school": "Life Magic", - "family": "113", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1119": { - "name": "Blade Protection Other V", - "description": "Reduces damage the target takes from Slashing by 50%.", - "school": "Life Magic", - "family": "113", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1120": { - "name": "Blade Protection Other VI", - "description": "Reduces damage the target takes from Slashing by 60%.", - "school": "Life Magic", - "family": "113", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1121": { - "name": "Blade Vulnerability Self I", - "description": "Increases damage the caster takes from Slashing by 10%.", - "school": "Life Magic", - "family": "114", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "1122": { - "name": "Blade Vulnerability Self II", - "description": "Increases damage the caster takes from Slashing by 25%.", - "school": "Life Magic", - "family": "114", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1123": { - "name": "Blade Vulnerability Self III", - "description": "Increases damage the caster takes from Slashing by 50%.", - "school": "Life Magic", - "family": "114", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1124": { - "name": "Blade Vulnerability Self IV", - "description": "Increases damage the caster takes from Slashing by 75%.", - "school": "Life Magic", - "family": "114", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1125": { - "name": "Blade Vulnerability Self V", - "description": "Increases damage the caster takes from Slashing by 100%.", - "school": "Life Magic", - "family": "114", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1126": { - "name": "Blade Vulnerability Self VI", - "description": "Increases damage the caster takes from Slashing by 150%.", - "school": "Life Magic", - "family": "114", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1127": { - "name": "Blade Vulnerability Other I", - "description": "Increases damage the target takes from Slashing by 10%.", - "school": "Life Magic", - "family": "114", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1128": { - "name": "Blade Vulnerability Other II", - "description": "Increases damage the target takes from Slashing by 25%.", - "school": "Life Magic", - "family": "114", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1129": { - "name": "Blade Vulnerability Other III", - "description": "Increases damage the target takes from Slashing by 50%.", - "school": "Life Magic", - "family": "114", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1130": { - "name": "Blade Vulnerability Other IV", - "description": "Increases damage the target takes from Slashing by 75%.", - "school": "Life Magic", - "family": "114", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1131": { - "name": "Blade Vulnerability Other V", - "description": "Increases damage the target takes from Slashing by 100%.", - "school": "Life Magic", - "family": "114", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1132": { - "name": "Blade Vulnerability Other VI", - "description": "Increases damage the target takes from Slashing by 150%.", - "school": "Life Magic", - "family": "114", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1133": { - "name": "Piercing Protection Self I", - "description": "Reduces damage the caster takes from Piercing by 9%.", - "school": "Life Magic", - "family": "111", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1134": { - "name": "Piercing Protection Self II", - "description": "Reduces damage the caster takes from Piercing by 20%.", - "school": "Life Magic", - "family": "111", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1135": { - "name": "Piercing Protection Self III", - "description": "Reduces damage the caster takes from Piercing by 33%.", - "school": "Life Magic", - "family": "111", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1136": { - "name": "Piercing Protection Self IV", - "description": "Reduces damage the caster takes from Piercing by 43%.", - "school": "Life Magic", - "family": "111", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1137": { - "name": "Piercing Protection Self V", - "description": "Reduces damage the caster takes from Piercing by 50%.", - "school": "Life Magic", - "family": "111", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1138": { - "name": "Piercing Protection Self VI", - "description": "Reduces damage the caster takes from Piercing by 60%.", - "school": "Life Magic", - "family": "111", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1139": { - "name": "Piercing Protection Other I", - "description": "Reduces damage the target takes from Piercing by 9%.", - "school": "Life Magic", - "family": "111", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1140": { - "name": "Piercing Protection Other II", - "description": "Reduces damage the target takes from Piercing by 20%.", - "school": "Life Magic", - "family": "111", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1141": { - "name": "Piercing Protection Other III", - "description": "Reduces damage the target takes from Piercing by 33%.", - "school": "Life Magic", - "family": "111", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1142": { - "name": "Piercing Protection Other IV", - "description": "Reduces damage the target takes from Piercing by 43%.", - "school": "Life Magic", - "family": "111", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1143": { - "name": "Piercing Protection Other V", - "description": "Reduces damage the target takes from Piercing by 50%.", - "school": "Life Magic", - "family": "111", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1144": { - "name": "Piercing Protection Other VI", - "description": "Reduces damage the target takes from Piercing by 60%.", - "school": "Life Magic", - "family": "111", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1145": { - "name": "Piercing Vulnerability Self I", - "description": "Increases damage the caster takes from Piercing by 10%.", - "school": "Life Magic", - "family": "112", - "difficulty": "25", - "duration": "60", - "mana": "15" - }, - "1146": { - "name": "Piercing Vulnerability Self II", - "description": "Increases damage the caster takes from Piercing by 25%.", - "school": "Life Magic", - "family": "112", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1147": { - "name": "Piercing Vulnerability Self III", - "description": "Increases damage the caster takes from Piercing by 50%.", - "school": "Life Magic", - "family": "112", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1148": { - "name": "Piercing Vulnerability Self IV", - "description": "Increases damage the caster takes from Piercing by 75%.", - "school": "Life Magic", - "family": "112", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1149": { - "name": "Piercing Vulnerability Self V", - "description": "Increases damage the caster takes from Piercing by 100%.", - "school": "Life Magic", - "family": "112", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1150": { - "name": "Piercing Vulnerability Self VI", - "description": "Increases damage the caster takes from Piercing by 150%.", - "school": "Life Magic", - "family": "112", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1151": { - "name": "Piercing Vulnerability Other I", - "description": "Increases damage the target takes from Piercing by 10%.", - "school": "Life Magic", - "family": "112", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1152": { - "name": "Piercing Vulnerability Other II", - "description": "Increases damage the target takes from Piercing by 25%.", - "school": "Life Magic", - "family": "112", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1153": { - "name": "Piercing Vulnerability Other III", - "description": "Increases damage the target takes from Piercing by 50%.", - "school": "Life Magic", - "family": "112", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1154": { - "name": "Piercing Vulnerability Other IV", - "description": "Increases damage the target takes from Piercing by 75%.", - "school": "Life Magic", - "family": "112", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1155": { - "name": "Piercing Vulnerability Other V", - "description": "Increases damage the target takes from Piercing by 100%.", - "school": "Life Magic", - "family": "112", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1156": { - "name": "Piercing Vulnerability Other VI", - "description": "Increases damage the target takes from Piercing by 150%.", - "school": "Life Magic", - "family": "112", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1157": { - "name": "Heal Self II", - "description": "Restores 15-35 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "50", - "duration": "-1", - "mana": "30" - }, - "1158": { - "name": "Heal Self III", - "description": "Restores 20-45 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "100", - "duration": "-1", - "mana": "40" - }, - "1159": { - "name": "Heal Self IV", - "description": "Restores 30-60 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "1160": { - "name": "Heal Self V", - "description": "Restores 45-90 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "200", - "duration": "-1", - "mana": "60" - }, - "1161": { - "name": "Heal Self VI", - "description": "Restores 55-120 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "250", - "duration": "-1", - "mana": "70" - }, - "1162": { - "name": "Heal Other II", - "description": "Restores 15-35 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1163": { - "name": "Heal Other III", - "description": "Restores 20-45 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1164": { - "name": "Heal Other IV", - "description": "Restores 30-60 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1165": { - "name": "Heal Other V", - "description": "Restores 45-90 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1166": { - "name": "Heal Other VI", - "description": "Restores 55-120 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1167": { - "name": "Harm Self II", - "description": "Drains 7-12 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "75", - "duration": "-1", - "mana": "30" - }, - "1168": { - "name": "Harm Self III", - "description": "Drains 10-18 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "125", - "duration": "-1", - "mana": "40" - }, - "1169": { - "name": "Harm Self IV", - "description": "Drains 16-30 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "175", - "duration": "-1", - "mana": "50" - }, - "1170": { - "name": "Harm Self V", - "description": "Drains 23-45 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "225", - "duration": "-1", - "mana": "60" - }, - "1171": { - "name": "Harm Self VI", - "description": "Drains 31-60 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "275", - "duration": "-1", - "mana": "70" - }, - "1172": { - "name": "Harm Other II", - "description": "Drains 7-12 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "75", - "duration": "-1", - "mana": "20" - }, - "1173": { - "name": "Harm Other III", - "description": "Drains 10-19 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "125", - "duration": "-1", - "mana": "30" - }, - "1174": { - "name": "Harm Other IV", - "description": "Drains 16-33 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "175", - "duration": "-1", - "mana": "40" - }, - "1175": { - "name": "Harm Other V", - "description": "Drains 24-47 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "225", - "duration": "-1", - "mana": "50" - }, - "1176": { - "name": "Harm Other VI", - "description": "Drains 33-63 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "1177": { - "name": "Revitalize Self I", - "description": "Restores 15-35 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "1178": { - "name": "Revitalize Self II", - "description": "Restores 20-45 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "50", - "duration": "-1", - "mana": "30" - }, - "1179": { - "name": "Revitalize Self III", - "description": "Restores 30-60 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "100", - "duration": "-1", - "mana": "40" - }, - "1180": { - "name": "Revitalize Self IV", - "description": "Restores 40-80 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "1181": { - "name": "Revitalize Self V", - "description": "Restores 60-120 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "200", - "duration": "-1", - "mana": "60" - }, - "1182": { - "name": "Revitalize Self VI", - "description": "Restores 80-160 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "250", - "duration": "-1", - "mana": "70" - }, - "1183": { - "name": "Revitalize Other I", - "description": "Restores 15-35 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1184": { - "name": "Revitalize Other II", - "description": "Restores 20-45 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1185": { - "name": "Revitalize Other III", - "description": "Restores 30-60 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1186": { - "name": "Revitalize Other IV", - "description": "Restores 40-80 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1187": { - "name": "Revitalize Other V", - "description": "Restores 60-120 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1188": { - "name": "Revitalize Other VI", - "description": "Restores 80-160 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1189": { - "name": "Enfeeble Self I", - "description": "Drains 7-12 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "15", - "duration": "-1", - "mana": "15" - }, - "1190": { - "name": "Enfeeble Self II", - "description": "Drains 7-12 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "75", - "duration": "-1", - "mana": "20" - }, - "1191": { - "name": "Enfeeble Self III", - "description": "Drains 16-30 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "125", - "duration": "-1", - "mana": "40" - }, - "1192": { - "name": "Enfeeble Self IV", - "description": "Drains 23-45 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "175", - "duration": "-1", - "mana": "50" - }, - "1193": { - "name": "Enfeeble Self V", - "description": "Drains 31-60 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "225", - "duration": "-1", - "mana": "60" - }, - "1194": { - "name": "Enfeeble Self VI", - "description": "Drains 38-75 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "275", - "duration": "-1", - "mana": "70" - }, - "1195": { - "name": "Enfeeble Other I", - "description": "Drains 7-12 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1196": { - "name": "Enfeeble Other II", - "description": "Drains 10-19 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "75", - "duration": "-1", - "mana": "20" - }, - "1197": { - "name": "Enfeeble Other III", - "description": "Drains 16-31 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "125", - "duration": "-1", - "mana": "30" - }, - "1198": { - "name": "Enfeeble Other IV", - "description": "Drains 24-47 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "175", - "duration": "-1", - "mana": "40" - }, - "1199": { - "name": "Enfeeble Other V", - "description": "Drains 32-63 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "225", - "duration": "-1", - "mana": "50" - }, - "1200": { - "name": "Enfeeble Other VI", - "description": "Drains 39-79 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "1201": { - "name": "Mana Boost Self I", - "description": "Restores 6-10 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "1202": { - "name": "Mana Boost Self II", - "description": "Restores 11-20 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "50", - "duration": "-1", - "mana": "30" - }, - "1203": { - "name": "Mana Boost Self III", - "description": "Restores 16-30 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "100", - "duration": "-1", - "mana": "40" - }, - "1204": { - "name": "Mana Boost Self IV", - "description": "Restores 26-50 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "1205": { - "name": "Mana Boost Self V", - "description": "Restores 38-75 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "200", - "duration": "-1", - "mana": "60" - }, - "1206": { - "name": "Mana Boost Self VI", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "250", - "duration": "-1", - "mana": "70" - }, - "1207": { - "name": "Mana Boost Other I", - "description": "Restores 6-10 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1208": { - "name": "Mana Boost Other II", - "description": "Restores 11-20 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1209": { - "name": "Mana Boost Other III", - "description": "Restores 16-30 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1210": { - "name": "Mana Boost Other IV", - "description": "Restores 26-50 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1211": { - "name": "Mana Boost Other V", - "description": "Restores 38-75 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1212": { - "name": "Mana Boost Other VI", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1213": { - "name": "Mana Drain Self I", - "description": "Drains 4-6 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "15", - "duration": "-1", - "mana": "15" - }, - "1214": { - "name": "Mana Drain Self II", - "description": "Drains 7-12 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "75", - "duration": "-1", - "mana": "30" - }, - "1215": { - "name": "Mana Drain Self III", - "description": "Drains 10-18 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "125", - "duration": "-1", - "mana": "40" - }, - "1216": { - "name": "Mana Drain Self IV", - "description": "Drains 16-30 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "175", - "duration": "-1", - "mana": "50" - }, - "1217": { - "name": "Mana Drain Self V", - "description": "Drains 23-45 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "225", - "duration": "-1", - "mana": "60" - }, - "1218": { - "name": "Mana Drain Self VI", - "description": "Drains 31-60 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "70" - }, - "1219": { - "name": "Mana Drain Other I", - "description": "Drains 4-6 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1220": { - "name": "Mana Drain Other II", - "description": "Drains 7-12 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "75", - "duration": "-1", - "mana": "20" - }, - "1221": { - "name": "Mana Drain Other III", - "description": "Drains 10-19 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "125", - "duration": "-1", - "mana": "30" - }, - "1222": { - "name": "Mana Drain Other IV", - "description": "Drains 16-31 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "175", - "duration": "-1", - "mana": "40" - }, - "1223": { - "name": "Mana Drain Other V", - "description": "Drains 24-47 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "225", - "duration": "-1", - "mana": "50" - }, - "1224": { - "name": "Mana Drain Other VI", - "description": "Drains 32-63 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "1225": { - "name": "Infuse Health Other I", - "description": "Drains one-quarter of the caster's Health and gives 75% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1226": { - "name": "Infuse Health Other II", - "description": "Drains one-quarter of the caster's Health and gives 90% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1227": { - "name": "Infuse Health Other III", - "description": "Drains one-quarter of the caster's Health and gives 105% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "75", - "duration": "-1", - "mana": "30" - }, - "1228": { - "name": "Infuse Health Other IV", - "description": "Drains one-quarter of the caster's Health and gives 120% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1229": { - "name": "Infuse Health Other V", - "description": "Drains one-quarter of the caster's Health and gives 135% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1230": { - "name": "Infuse Health Other VI", - "description": "Drains one-quarter of the caster's Health and gives 150% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1237": { - "name": "Drain Health Other I", - "description": "Drains 25% of the target's Health and gives 200% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "38", - "duration": "-1", - "mana": "10" - }, - "1238": { - "name": "Drain Health Other II", - "description": "Drains 25% of the target's Health and gives 160% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "88", - "duration": "-1", - "mana": "20" - }, - "1239": { - "name": "Drain Health Other III", - "description": "Drains 25% of the target's Health and gives 133% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "138", - "duration": "-1", - "mana": "30" - }, - "1240": { - "name": "Drain Health Other IV", - "description": "Drains one-quarter of the target's Health and gives 100% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "188", - "duration": "-1", - "mana": "40" - }, - "1241": { - "name": "Drain Health Other V", - "description": "Drains 30% of the target's Health and gives 100% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "238", - "duration": "-1", - "mana": "50" - }, - "1242": { - "name": "Drain Health Other VI", - "description": "Drains 40% of the target's Health and gives 75% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "288", - "duration": "-1", - "mana": "60" - }, - "1243": { - "name": "Infuse Stamina Other I", - "description": "Drains one-quarter of the caster's Stamina and gives 75% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1244": { - "name": "Infuse Stamina Other II", - "description": "Drains one-quarter of the caster's Stamina and gives 90% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1245": { - "name": "Infuse Stamina Other III", - "description": "Drains one-quarter of the caster's Stamina and gives 105% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1246": { - "name": "Infuse Stamina Other IV", - "description": "Drains one-quarter of the caster's Stamina and gives 120% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1247": { - "name": "Infuse Stamina Other V", - "description": "Drains one-quarter of the caster's Stamina and gives 135% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1248": { - "name": "Infuse Stamina Other VI", - "description": "Drains one-quarter of the caster's Stamina and gives 150% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1249": { - "name": "Drain Stamina Other I", - "description": "Drains 10% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "38", - "duration": "-1", - "mana": "10" - }, - "1250": { - "name": "Drain Stamina Other II", - "description": "Drains 15% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "88", - "duration": "-1", - "mana": "20" - }, - "1251": { - "name": "Drain Stamina Other III", - "description": "Drains 20% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "138", - "duration": "-1", - "mana": "30" - }, - "1252": { - "name": "Drain Stamina Other IV", - "description": "Drains one-quarter of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "188", - "duration": "-1", - "mana": "40" - }, - "1253": { - "name": "Drain Stamina Other V", - "description": "Drains 30% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "238", - "duration": "-1", - "mana": "50" - }, - "1254": { - "name": "Drain Stamina Other VI", - "description": "Drains 40% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "288", - "duration": "-1", - "mana": "60" - }, - "1255": { - "name": "Infuse Mana Other II", - "description": "Drains one-quarter of the caster's Mana and gives 90% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1256": { - "name": "Infuse Mana Other III", - "description": "Drains one-quarter of the caster's Mana and gives 105% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1257": { - "name": "Infuse Mana Other IV", - "description": "Drains one-quarter of the caster's Mana and gives 120% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1258": { - "name": "Infuse Mana Other V", - "description": "Drains one-quarter of the caster's Mana and gives 135% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1259": { - "name": "Infuse Mana Other VI", - "description": "Drains one-quarter of the caster's Mana and gives 150% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1260": { - "name": "Drain Mana Other I", - "description": "Drains 10% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "38", - "duration": "-1", - "mana": "10" - }, - "1261": { - "name": "Drain Mana Other II", - "description": "Drains 15% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "88", - "duration": "-1", - "mana": "20" - }, - "1262": { - "name": "Drain Mana Other III", - "description": "Drains 20% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "138", - "duration": "-1", - "mana": "30" - }, - "1263": { - "name": "Drain Mana Other IV", - "description": "Drains one-quarter of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "188", - "duration": "-1", - "mana": "40" - }, - "1264": { - "name": "Drain Mana Other V", - "description": "Drains 30% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "238", - "duration": "-1", - "mana": "50" - }, - "1265": { - "name": "Drain Mana Other VI", - "description": "Drains 40% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "288", - "duration": "-1", - "mana": "60" - }, - "1266": { - "name": "Health to Stamina Other I", - "description": "Drains one-half of the target's Health and gives 75% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1267": { - "name": "Health to Stamina Other II", - "description": "Drains one-half of the target's Health and gives 90% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1268": { - "name": "Health to Stamina Other III", - "description": "Drains one-half of the target's Health and gives 105% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1269": { - "name": "Health to Stamina Other IV", - "description": "Drains one-half of the target's Health and gives 120% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1270": { - "name": "Health to Stamina Other V", - "description": "Drains one-half of the target's Health and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1271": { - "name": "Health to Stamina Other VI", - "description": "Drains one-half of the target's Health and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1272": { - "name": "Health to Stamina Self I", - "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Stamina (maximum of 50).", - "school": "Life Magic", - "family": "87", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1273": { - "name": "Health to Stamina Self II", - "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Stamina (maximum of 100).", - "school": "Life Magic", - "family": "87", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1274": { - "name": "Health to Stamina Self III", - "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Stamina (maximum of 150).", - "school": "Life Magic", - "family": "87", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1275": { - "name": "Health to Stamina Self IV", - "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Stamina (maximum of 200).", - "school": "Life Magic", - "family": "87", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1276": { - "name": "Health to Stamina Self V", - "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1277": { - "name": "Health to Stamina Self VI", - "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1278": { - "name": "Health to Mana Self I", - "description": "Drains one-half of the caster's Health and gives 90% of that to his/her Mana (maximum of 50).", - "school": "Life Magic", - "family": "87", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1279": { - "name": "Health to Mana Self II", - "description": "Drains one-half of the caster's Health and gives 100% of that to his/her Mana (maximum of 100).", - "school": "Life Magic", - "family": "87", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1280": { - "name": "Health to Mana Self III", - "description": "Drains one-half of the caster's Health and gives 110% of that to his/her Mana (maximum of 150).", - "school": "Life Magic", - "family": "87", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1281": { - "name": "Health to Mana Other IV", - "description": "Drains one-half of the target's Health and gives 120% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1282": { - "name": "Health to Mana Other V", - "description": "Drains one-half of the target's Health and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1283": { - "name": "Health to Mana Other VI", - "description": "Drains one-half of the target's Health and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1284": { - "name": "Mana to Health Other I", - "description": "Drains one-half of the target's Mana and gives 75% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1285": { - "name": "Mana to Health Other II", - "description": "Drains one-half of the target's Mana and gives 90% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1286": { - "name": "Mana to Health Other III", - "description": "Drains one-half of the target's Mana and gives 105% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1287": { - "name": "Mana to Health Other IV", - "description": "Drains one-half of the target's Mana and gives 120% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1288": { - "name": "Mana to Health Other V", - "description": "Drains one-half of the target's Mana and gives 135% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1289": { - "name": "Mana to Health Other VI", - "description": "Drains one-half of the target's Mana and gives 150% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1290": { - "name": "Mana to Health Self I", - "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Health (maximum of 50).", - "school": "Life Magic", - "family": "91", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1291": { - "name": "Mana to Health Self II", - "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Health (maximum of 100).", - "school": "Life Magic", - "family": "91", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1292": { - "name": "Mana to Health Self III", - "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Health (maximum of 150).", - "school": "Life Magic", - "family": "91", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1293": { - "name": "Mana to Health Self IV", - "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Health (maximum of 200).", - "school": "Life Magic", - "family": "91", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1294": { - "name": "Mana to Health Self V", - "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1295": { - "name": "Mana to Health Self VI", - "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1296": { - "name": "Mana to Stamina Self I", - "description": "Drains one-half of the caster's Mana and gives 90% of that to his/her Stamina (maximum of 50).", - "school": "Life Magic", - "family": "91", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1297": { - "name": "Mana to Stamina Self II", - "description": "Drains one-half of the caster's Mana and gives 100% of that to his/her Stamina (maximum of 100).", - "school": "Life Magic", - "family": "91", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1298": { - "name": "Mana to Stamina Self III", - "description": "Drains one-half of the caster's Mana and gives 110% of that to his/her Stamina (maximum of 150).", - "school": "Life Magic", - "family": "91", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1299": { - "name": "Mana to Stamina Self IV", - "description": "Drains one-half of the caster's Mana and gives 120% of that to his/her Stamina (maximum of 200).", - "school": "Life Magic", - "family": "91", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1300": { - "name": "Mana to Stamina Self V", - "description": "Drains one-half of the caster's Mana and gives 135% of that to his/her Stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1301": { - "name": "Mana to Stamina Self VI", - "description": "Drains one-half of the caster's Mana and gives 150% of that to his/her Stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1302": { - "name": "Mana to Stamina Other I", - "description": "Drains one-half of the target's Mana and gives 75% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1303": { - "name": "Mana to Stamina Other II", - "description": "Drains one-half of the target's Mana and gives 90% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1304": { - "name": "Mana to Stamina Other III", - "description": "Drains one-half of the target's Mana and gives 105% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1305": { - "name": "Mana to Stamina Other IV", - "description": "Drains one-half of the target's Mana and gives 120% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1306": { - "name": "Mana to Stamina Other V", - "description": "Drains one-half of the target's Mana and gives 135% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1307": { - "name": "Mana to Stamina Other VI", - "description": "Drains one-half of the target's Mana and gives 150% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1308": { - "name": "Armor Self II", - "description": "Increases the caster's natural armor by 50 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1309": { - "name": "Armor Self III", - "description": "Increases the caster's natural armor by 75 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1310": { - "name": "Armor Self IV", - "description": "Increases the caster's natural armor by 100 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1311": { - "name": "Armor Self V", - "description": "Increases the caster's natural armor by 150 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1312": { - "name": "Armor Self VI", - "description": "Increases the caster's natural armor by 200 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1313": { - "name": "Armor Other II", - "description": "Increases the target's natural armor by 50 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1314": { - "name": "Armor Other III", - "description": "Increases the target's natural armor by 75 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1315": { - "name": "Armor Other IV", - "description": "Increases the target's natural armor by 100 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1316": { - "name": "Armor Other V", - "description": "Increases the target's natural armor by 150 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1317": { - "name": "Armor Other VI", - "description": "Increases the target's natural armor by 200 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1318": { - "name": "Imperil Self II", - "description": "Decreases the caster's natural armor by 50 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1319": { - "name": "Imperil Self III", - "description": "Decreases the caster's natural armor by 75 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1320": { - "name": "Imperil Self IV", - "description": "Decreases the caster's natural armor by 100 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1321": { - "name": "Imperil Self V", - "description": "Decreases the caster's natural armor by 150 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1322": { - "name": "Imperil Self VI", - "description": "Decreases the caster's natural armor by 200 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1323": { - "name": "Imperil Other II", - "description": "Decreases the target's natural armor by 50 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1324": { - "name": "Imperil Other III", - "description": "Decreases the target's natural armor by 75 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1325": { - "name": "Imperil Other IV", - "description": "Decreases the target's natural armor by 100 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1326": { - "name": "Imperil Other V", - "description": "Decreases the target's natural armor by 150 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1327": { - "name": "Imperil Other VI", - "description": "Decreases the target's natural armor by 200 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1328": { - "name": "Strength Self II", - "description": "Increases the caster's Strength by 15 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1329": { - "name": "Strength Self III", - "description": "Increases the caster's Strength by 20 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1330": { - "name": "Strength Self IV", - "description": "Increases the caster's Strength by 25 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1331": { - "name": "Strength Self V", - "description": "Increases the caster's Strength by 30 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1332": { - "name": "Strength Self VI", - "description": "Increases the caster's Strength by 35 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1333": { - "name": "Strength Other II", - "description": "Increases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1334": { - "name": "Strength Other III", - "description": "Increases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1335": { - "name": "Strength Other IV", - "description": "Increases the target's Strength by 25 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1336": { - "name": "Strength Other V", - "description": "Increases the target's Strength by 30 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1337": { - "name": "Strength Other VI", - "description": "Increases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1339": { - "name": "Weakness Other II", - "description": "Decreases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1340": { - "name": "Weakness Other III", - "description": "Decreases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1341": { - "name": "Weakness Other IV", - "description": "Decreases the target's Strength by 25 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1342": { - "name": "Weakness Other V", - "description": "Decreases the target's Strength by 30 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1343": { - "name": "Weakness Other VI", - "description": "Decreases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1344": { - "name": "Weakness Self II", - "description": "Decrease the caster's Strength by 15 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1345": { - "name": "Weakness Self III", - "description": "Decrease the caster's Strength by 20 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1346": { - "name": "Weakness Self IV", - "description": "Decrease the caster's Strength by 25 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1347": { - "name": "Weakness Self V", - "description": "Decrease the caster's Strength by 30 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1348": { - "name": "Weakness Self VI", - "description": "Decrease the caster's Strength by 35 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1349": { - "name": "Endurance Self I", - "description": "Increases the caster's Endurance by 10 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1350": { - "name": "Endurance Self II", - "description": "Increases the caster's Endurance by 15 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1351": { - "name": "Endurance Self III", - "description": "Increases the caster's Endurance by 20 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1352": { - "name": "Endurance Self IV", - "description": "Increases the caster's Endurance by 25 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1353": { - "name": "Endurance Self V", - "description": "Increases the caster's Endurance by 30 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1354": { - "name": "Endurance Self VI", - "description": "Increases the caster's Endurance by 35 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1355": { - "name": "Endurance Other I", - "description": "Increases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1356": { - "name": "Endurance Other II", - "description": "Increases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1357": { - "name": "Endurance Other III", - "description": "Increases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1358": { - "name": "Endurance Other IV", - "description": "Increases the target's Endurance by 25 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1359": { - "name": "Endurance Other V", - "description": "Increases the target's Endurance by 30 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1360": { - "name": "Endurance Other VI", - "description": "Increases the target's Endurance by 35 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1361": { - "name": "Frailty Self I", - "description": "Decreases the caster's Endurance by 10 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "1362": { - "name": "Frailty Self II", - "description": "Decreases the caster's Endurance by 15 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1363": { - "name": "Frailty Self III", - "description": "Decreases the caster's Endurance by 20 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1364": { - "name": "Frailty Self IV", - "description": "Decreases the caster's Endurance by 25 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1365": { - "name": "Frailty Self V", - "description": "Decreases the caster's Endurance by 30 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1366": { - "name": "Frailty Self VI", - "description": "Decreases the caster's Endurance by 35 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1367": { - "name": "Frailty Other I", - "description": "Decreases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1368": { - "name": "Frailty Other II", - "description": "Decreases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1369": { - "name": "Frailty Other III", - "description": "Decreases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1370": { - "name": "Frailty Other IV", - "description": "Decreases the target's Endurance by 25 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1371": { - "name": "Frailty Other V", - "description": "Decreases the target's Endurance by 30 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1372": { - "name": "Frailty Other VI", - "description": "Decreases the target's Endurance by 35 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1373": { - "name": "Coordination Self I", - "description": "Increases the caster's Coordination by 10 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1374": { - "name": "Coordination Self II", - "description": "Increases the caster's Coordination by 15 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1375": { - "name": "Coordination Self III", - "description": "Increases the caster's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1376": { - "name": "Coordination Self IV", - "description": "Increases the caster's Coordination by 25 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1377": { - "name": "Coordination Self V", - "description": "Increases the caster's Coordination by 30 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1378": { - "name": "Coordination Self VI", - "description": "Increases the caster's Coordination by 35 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1379": { - "name": "Coordination Other I", - "description": "Increases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1380": { - "name": "Coordination Other II", - "description": "Increases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1381": { - "name": "Coordination Other III", - "description": "Increases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1382": { - "name": "Coordination Other IV", - "description": "Increases the target's Coordination by 25 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1383": { - "name": "Coordination Other V", - "description": "Increases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1384": { - "name": "Coordination Other VI", - "description": "Increases the target's Coordination by 35 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1385": { - "name": "Clumsiness Self I", - "description": "Decreases the caster's Coordination by 10 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "1386": { - "name": "Clumsiness Self II", - "description": "Decreases the caster's Coordination by 15 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1387": { - "name": "Clumsiness Self III", - "description": "Decreases the caster's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1388": { - "name": "Clumsiness Self IV", - "description": "Decreases the caster's Coordination by 25 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1389": { - "name": "Clumsiness Self V", - "description": "Decreases the caster's Coordination by 30 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1390": { - "name": "Clumsiness Self VI", - "description": "Decreases the caster's Coordination by 35 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1391": { - "name": "Clumsiness Other I", - "description": "Decreases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1392": { - "name": "Clumsiness Other II", - "description": "Decreases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1393": { - "name": "Clumsiness Other III", - "description": "Decreases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1394": { - "name": "Clumsiness Other IV", - "description": "Decreases the target's Coordination by 25 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1395": { - "name": "Clumsiness Other V", - "description": "Decreases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1396": { - "name": "Clumsiness Other VI", - "description": "Decreases the target's Coordination by 35 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1397": { - "name": "Quickness Self I", - "description": "Increases the caster's Quickness by 10 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1398": { - "name": "Quickness Self II", - "description": "Increases the caster's Quickness by 15 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1399": { - "name": "Quickness Self III", - "description": "Increases the caster's Quickness by 20 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1400": { - "name": "Quickness Self IV", - "description": "Increases the caster's Quickness by 25 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1401": { - "name": "Quickness Self V", - "description": "Increases the caster's Quickness by 30 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1402": { - "name": "Quickness Self VI", - "description": "Increases the caster's Quickness by 35 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1403": { - "name": "Quickness Other I", - "description": "Increases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1404": { - "name": "Quickness Other II", - "description": "Increases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1405": { - "name": "Quickness Other III", - "description": "Increases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1406": { - "name": "Quickness Other IV", - "description": "Increases the target's Quickness by 25 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1407": { - "name": "Quickness Other V", - "description": "Increases the target's Quickness by 30 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1408": { - "name": "Quickness Other VI", - "description": "Increases the target's Quickness by 35 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1409": { - "name": "Slowness Self I", - "description": "Decreases the caster's Quickness by 10 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "1410": { - "name": "Slowness Self II", - "description": "Decreases the caster's Quickness by 15 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1411": { - "name": "Slowness Self III", - "description": "Decreases the caster's Quickness by 20 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1412": { - "name": "Slowness Self IV", - "description": "Decreases the caster's Quickness by 25 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1413": { - "name": "Slowness Self V", - "description": "Decreases the caster's Quickness by 30 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1414": { - "name": "Slowness Self VI", - "description": "Decreases the caster's Quickness by 35 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1415": { - "name": "Slowness Other I", - "description": "Decreases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1416": { - "name": "Slowness Other II", - "description": "Decreases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1417": { - "name": "Slowness Other III", - "description": "Decreases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1418": { - "name": "Slowness Other IV", - "description": "Decreases the target's Quickness by 25 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1419": { - "name": "Slowness Other V", - "description": "Decreases the target's Quickness by 30 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1420": { - "name": "Slowness Other VI", - "description": "Decreases the target's Quickness by 35 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1421": { - "name": "Focus Self I", - "description": "Increases the caster's Focus by 10 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1422": { - "name": "Focus Self II", - "description": "Increases the caster's Focus by 15 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1423": { - "name": "Focus Self III", - "description": "Increases the caster's Focus by 20 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1424": { - "name": "Focus Self IV", - "description": "Increases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1425": { - "name": "Focus Self V", - "description": "Increases the caster's Focus by 30 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1426": { - "name": "Focus Self VI", - "description": "Increases the caster's Focus by 35 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1427": { - "name": "Focus Other I", - "description": "Increases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1428": { - "name": "Focus Other II", - "description": "Increases the target's Focus by 15 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1429": { - "name": "Focus Other III", - "description": "Increases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1430": { - "name": "Focus Other IV", - "description": "Increases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1431": { - "name": "Focus Other V", - "description": "Increases the target's Focus by 30 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1432": { - "name": "Focus Other VI", - "description": "Increases the target's Focus by 35 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1433": { - "name": "Bafflement Self I", - "description": "Decreases the caster's Focus by 10 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "1434": { - "name": "Bafflement Self II", - "description": "Decreases the caster's Focus by 15 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1435": { - "name": "Bafflement Self III", - "description": "Decreases the caster's Focus by 20 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1436": { - "name": "Bafflement Self IV", - "description": "Decreases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1437": { - "name": "Bafflement Self V", - "description": "Decreases the caster's Focus by 30 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1438": { - "name": "Bafflement Self VI", - "description": "Decreases the caster's Focus by 35 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1439": { - "name": "Bafflement Other I", - "description": "Decreases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1440": { - "name": "Bafflement Other II", - "description": "Decreases the target's Focus by 15 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1441": { - "name": "Bafflement Other III", - "description": "Decreases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1442": { - "name": "Bafflement Other IV", - "description": "Decreases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1443": { - "name": "Bafflement Other V", - "description": "Decreases the target's Focus by 30 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1444": { - "name": "Bafflement Other VI", - "description": "Decreases the target's Focus by 35 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1445": { - "name": "Willpower Self I", - "description": "Increases the caster's Self by 10 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1446": { - "name": "Willpower Self II", - "description": "Increases the caster's Self by 15 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1447": { - "name": "Willpower Self III", - "description": "Increases the caster's Self by 20 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1448": { - "name": "Willpower Self IV", - "description": "Increases the caster's Self by 25 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1449": { - "name": "Willpower Self V", - "description": "Increases the caster's Self by 30 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1450": { - "name": "Willpower Self VI", - "description": "Increases the caster's Self by 35 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1451": { - "name": "Willpower Other I", - "description": "Increases the target's Self by 10 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1452": { - "name": "Willpower Other II", - "description": "Increases the target's Self by 15 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1453": { - "name": "Willpower Other III", - "description": "Increases the target's Self by 20 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1454": { - "name": "Willpower Other IV", - "description": "Increases the target's Self by 25 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1455": { - "name": "Willpower Other V", - "description": "Increases the target's Self by 30 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1456": { - "name": "Willpower Other VI", - "description": "Increases the target's Self by 35 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1457": { - "name": "Feeblemind Self I", - "description": "Decreases the caster's Self by 10 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "15", - "duration": "60", - "mana": "15" - }, - "1458": { - "name": "Feeblemind Self II", - "description": "Decreases the caster's Self by 15 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1459": { - "name": "Feeblemind Self III", - "description": "Decreases the caster's Self by 20 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1460": { - "name": "Feeblemind Self IV", - "description": "Decreases the caster's Self by 25 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1461": { - "name": "Feeblemind Self V", - "description": "Decreases the caster's Self by 30 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "250", - "duration": "180", - "mana": "60" - }, - "1462": { - "name": "Feeblemind Self VI", - "description": "Decreases the caster's Self by 35 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1463": { - "name": "Feeblemind Other I", - "description": "Decreases the target's Self by 10 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1464": { - "name": "Feeblemind Other II", - "description": "Decreases the target's Self by 15 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1465": { - "name": "Feeblemind Other III", - "description": "Decreases the target's Self by 20 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1466": { - "name": "Feeblemind Other IV", - "description": "Decreases the target's Self by 25 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1467": { - "name": "Feeblemind Other V", - "description": "Decreases the target's Self by 30 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1468": { - "name": "Feeblemind Other VI", - "description": "Decreases the target's Self by 35 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1469": { - "name": "Hermetic Void I", - "description": "Decreases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1470": { - "name": "Hermetic Void II", - "description": "Decreases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1471": { - "name": "Hermetic Void III", - "description": "Decreases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1472": { - "name": "Hermetic Void IV", - "description": "Decreases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1473": { - "name": "Hermetic Void V", - "description": "Decreases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1474": { - "name": "Hermetic Void VI", - "description": "Decreases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1475": { - "name": "Aura of Hermetic Link Self I", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "25", - "duration": "1800", - "mana": "10" - }, - "1476": { - "name": "Aura of Hermetic Link Self II", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1477": { - "name": "Aura of Hermetic Link Self III", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1478": { - "name": "Aura of Hermetic Link Self IV", - "description": "Increases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1479": { - "name": "Aura of Hermetic Link Self V", - "description": "Increases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1480": { - "name": "Aura of Hermetic Link Self VI", - "description": "Increases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1481": { - "name": "Flaming Missile Volley", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1482": { - "name": "Impenetrability II", - "description": "Improves a shield or piece of armor's armor value by 50 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1483": { - "name": "Impenetrability III", - "description": "Improves a shield or piece of armor's armor value by 75 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1484": { - "name": "Impenetrability IV", - "description": "Improves a shield or piece of armor's armor value by 100 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1485": { - "name": "Impenetrability V", - "description": "Improves a shield or piece of armor's armor value by 150 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1486": { - "name": "Impenetrability VI", - "description": "Improves a shield or piece of armor's armor value by 200 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1487": { - "name": "Brittlemail I", - "description": "Worsens a shield or piece of armor's armor value by 20 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1488": { - "name": "Brittlemail II", - "description": "Worsens a shield or piece of armor's armor value by 50 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1489": { - "name": "Brittlemail III", - "description": "Worsens a shield or piece of armor's armor value by 75 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1490": { - "name": "Brittlemail IV", - "description": "Worsens a shield or piece of armor's armor value by 100 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1491": { - "name": "Brittlemail V", - "description": "Worsens a shield or piece of armor's armor value by 150 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1492": { - "name": "Brittlemail VI", - "description": "Worsens a shield or piece of armor's armor value by 200 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1493": { - "name": "Acid Bane I", - "description": "Increases a shield or piece of armor's resistance to acid damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1494": { - "name": "Acid Bane II", - "description": "Increases a shield or piece of armor's resistance to acid damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1495": { - "name": "Acid Bane III", - "description": "Increases a shield or piece of armor's resistance to acid damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1496": { - "name": "Acid Bane IV", - "description": "Increases a shield or piece of armor's resistance to acid damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1497": { - "name": "Acid Bane V", - "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1498": { - "name": "Acid Bane VI", - "description": "Increases a shield or piece of armor's resistance to acid damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1499": { - "name": "Acid Lure I", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 10%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1500": { - "name": "Acid Lure II", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 25%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1501": { - "name": "Acid Lure III", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 50%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1502": { - "name": "Acid Lure IV", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 75%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1503": { - "name": "Acid Lure V", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 100%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1504": { - "name": "Acid Lure VI", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 150%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1505": { - "name": "Bludgeon Lure I", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 10%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1506": { - "name": "Bludgeon Lure II", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 25%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1507": { - "name": "Bludgeon Lure III", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 50%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1508": { - "name": "Bludgeon Lure IV", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 75%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1509": { - "name": "Bludgeon Lure V", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 100%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1510": { - "name": "Bludgeon Lure VI", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 150%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1511": { - "name": "Bludgeon Bane I", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1512": { - "name": "Bludgeon Bane II", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1513": { - "name": "Bludgeon Bane III", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1514": { - "name": "Bludgeon Bane IV", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1515": { - "name": "Bludgeon Bane V", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1516": { - "name": "Bludgeon Bane VI", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1517": { - "name": "Frost Lure I", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 10%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1518": { - "name": "Frost Lure II", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 25%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1519": { - "name": "Frost Lure III", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 50%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1520": { - "name": "Frost Lure IV", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 75%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1521": { - "name": "Frost Lure V", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 100%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1522": { - "name": "Frost Lure VI", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 150%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1523": { - "name": "Frost Bane I", - "description": "Increases a shield or piece of armor's resistance to cold damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1524": { - "name": "Frost Bane II", - "description": "Increases a shield or piece of armor's resistance to cold damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1525": { - "name": "Frost Bane III", - "description": "Increases a shield or piece of armor's resistance to cold damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1526": { - "name": "Frost Bane IV", - "description": "Increases a shield or piece of armor's resistance to cold damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1527": { - "name": "Frost Bane V", - "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1528": { - "name": "Frost Bane VI", - "description": "Increases a shield or piece of armor's resistance to cold damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1529": { - "name": "Lightning Lure I", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 10%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1530": { - "name": "Lightning Lure II", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 25%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1531": { - "name": "Lightning Lure III", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 50%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1532": { - "name": "Lightning Lure IV", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 75%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1533": { - "name": "Lightning Lure V", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 100%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1534": { - "name": "Lightning Lure VI", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 150%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1535": { - "name": "Lightning Bane I", - "description": "Increases a shield or piece of armor's resistance to electric damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1536": { - "name": "Lightning Bane II", - "description": "Increases a shield or piece of armor's resistance to electric damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1537": { - "name": "Lightning Bane III", - "description": "Increases a shield or piece of armor's resistance to electric damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1538": { - "name": "Lightning Bane IV", - "description": "Increases a shield or piece of armor's resistance to electric damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1539": { - "name": "Lightning Bane V", - "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1540": { - "name": "Lightning Bane VI", - "description": "Increases a shield or piece of armor's resistance to electric damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1541": { - "name": "Flame Lure I", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 10%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1542": { - "name": "Flame Lure II", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 25%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1543": { - "name": "Flame Lure III", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 50%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1544": { - "name": "Flame Lure IV", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 75%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1545": { - "name": "Flame Lure V", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 100%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1546": { - "name": "Flame Lure VI", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 150%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1547": { - "name": "Flame Bane I", - "description": "Increases a shield or piece of armor's resistance to fire damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1548": { - "name": "Flame Bane II", - "description": "Increases a shield or piece of armor's resistance to fire damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1549": { - "name": "Flame Bane III", - "description": "Increases a shield or piece of armor's resistance to fire damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1550": { - "name": "Flame Bane IV", - "description": "Increases a shield or piece of armor's resistance to fire damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1551": { - "name": "Flame Bane V", - "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1552": { - "name": "Flame Bane VI", - "description": "Increases a shield or piece of armor's resistance to fire damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1553": { - "name": "Blade Lure II", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 25%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1554": { - "name": "Blade Lure III", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 50%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1555": { - "name": "Blade Lure IV", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 75%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1556": { - "name": "Blade Lure V", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 100%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1557": { - "name": "Blade Lure VI", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 150%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1558": { - "name": "Blade Bane II", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1559": { - "name": "Blade Bane III", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1560": { - "name": "Blade Bane IV", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1561": { - "name": "Blade Bane V", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1562": { - "name": "Blade Bane VI", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1563": { - "name": "Piercing Lure I", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 10%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1564": { - "name": "Piercing Lure II", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 25%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1565": { - "name": "Piercing Lure III", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 50%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1566": { - "name": "Piercing Lure IV", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 75%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1567": { - "name": "Piercing Lure V", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 100%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1568": { - "name": "Piercing Lure VI", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 150%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1569": { - "name": "Piercing Bane I", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 10%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1570": { - "name": "Piercing Bane II", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1571": { - "name": "Piercing Bane III", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 50%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1572": { - "name": "Piercing Bane IV", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 75%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1573": { - "name": "Piercing Bane V", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1574": { - "name": "Piercing Bane VI", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 150%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1575": { - "name": "Strengthen Lock I", - "description": "Increases a lock's resistance to picking by 10 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "1576": { - "name": "Strengthen Lock II", - "description": "Increases a lock's resistance to picking by 25 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "50", - "duration": "780", - "mana": "20" - }, - "1577": { - "name": "Strengthen Lock III", - "description": "Increases a lock's resistance to picking by 50 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "100", - "duration": "780", - "mana": "30" - }, - "1578": { - "name": "Strengthen Lock IV", - "description": "Increases a lock's resistance to picking by 75 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "150", - "duration": "780", - "mana": "40" - }, - "1579": { - "name": "Strengthen Lock V", - "description": "Increases a lock's resistance to picking by 100 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "200", - "duration": "1020", - "mana": "50" - }, - "1580": { - "name": "Strengthen Lock VI", - "description": "Increases a lock's resistance to picking by 150 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "250", - "duration": "1020", - "mana": "60" - }, - "1581": { - "name": "Weaken Lock I", - "description": "Decreases a lock's resistance to picking by 10 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1582": { - "name": "Weaken Lock II", - "description": "Decreases a lock's resistance to picking by 25 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "50", - "duration": "90", - "mana": "20" - }, - "1583": { - "name": "Weaken Lock III", - "description": "Decreases a lock's resistance to picking by 50 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "100", - "duration": "120", - "mana": "30" - }, - "1584": { - "name": "Weaken Lock IV", - "description": "Decreases a lock's resistance to picking by 75 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "150", - "duration": "150", - "mana": "40" - }, - "1585": { - "name": "Weaken Lock V", - "description": "Decreases a lock's resistance to picking by 100 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "200", - "duration": "180", - "mana": "50" - }, - "1586": { - "name": "Weaken Lock VI", - "description": "Decreases a lock's resistance to picking by 150 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "250", - "duration": "210", - "mana": "60" - }, - "1587": { - "name": "Aura of Heart Seeker Self I", - "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1588": { - "name": "Aura of Heart Seeker Self II", - "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1589": { - "name": "Aura of Heart Seeker Self III", - "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1590": { - "name": "Aura of Heart Seeker Self IV", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1591": { - "name": "Aura of Heart Seeker Self V", - "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1592": { - "name": "Aura of Heart Seeker Self VI", - "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1593": { - "name": "Turn Blade I", - "description": "Decreases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1594": { - "name": "Turn Blade II", - "description": "Decreases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1595": { - "name": "Turn Blade III", - "description": "Decreases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1596": { - "name": "Turn Blade IV", - "description": "Decreases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1597": { - "name": "Turn Blade V", - "description": "Decreases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1598": { - "name": "Turn Blade VI", - "description": "Decreases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1599": { - "name": "Aura of Defender Self I", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1601": { - "name": "Aura of Defender Self II", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1602": { - "name": "Aura of Defender Self III", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1603": { - "name": "Aura of Defender Self IV", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1604": { - "name": "Aura of Defender Self V", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1605": { - "name": "Aura of Defender Self VI", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1606": { - "name": "Lure Blade I", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "1607": { - "name": "Lure Blade II", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1608": { - "name": "Lure Blade III", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1609": { - "name": "Lure Blade IV", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1610": { - "name": "Lure Blade V", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1611": { - "name": "Lure Blade VI", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1612": { - "name": "Aura of Blood Drinker Self II", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1613": { - "name": "Aura of Blood Drinker Self III", - "description": "Increases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1614": { - "name": "Aura of Blood Drinker Self IV", - "description": "Increases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1615": { - "name": "Aura of Blood Drinker Self V", - "description": "Increases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1616": { - "name": "Aura of Blood Drinker Self VI", - "description": "Increases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1617": { - "name": "Blood Loather II", - "description": "Decreases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1618": { - "name": "Blood Loather III", - "description": "Decreases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1619": { - "name": "Blood Loather IV", - "description": "Decreases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1620": { - "name": "Blood Loather V", - "description": "Decreases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1621": { - "name": "Blood Loather VI", - "description": "Decreases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1623": { - "name": "Aura of Swift Killer Self II", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1624": { - "name": "Aura of Swift Killer Self III", - "description": "Improves a weapon's speed by 30 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1625": { - "name": "Aura of Swift Killer Self IV", - "description": "Improves a weapon's speed by 40 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1626": { - "name": "Aura of Swift Killer Self V", - "description": "Improves a weapon's speed by 50 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1627": { - "name": "Aura of Swift Killer Self VI", - "description": "Improves a weapon's speed by 60 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1629": { - "name": "Leaden Weapon II", - "description": "Worsens a weapon's speed by 20 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1630": { - "name": "Leaden Weapon III", - "description": "Worsens a weapon's speed by 30 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1631": { - "name": "Leaden Weapon IV", - "description": "Worsens a weapon's speed by 40 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1632": { - "name": "Leaden Weapon V", - "description": "Worsens a weapon's speed by 50 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1633": { - "name": "Leaden Weapon VI", - "description": "Worsens a weapon's speed by 60 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1634": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "1635": { - "name": "Lifestone Recall", - "description": "Transports the caster to the Lifestone to which they have previously linked.", - "school": "Item Enchantment", - "family": "201", - "difficulty": "100", - "duration": "-1", - "mana": "50" - }, - "1636": { - "name": "Lifestone Sending", - "description": "Transports the target to the last Lifestone he or she used.", - "school": "Item Enchantment", - "family": "215", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "1637": { - "name": "Summon Primary Portal III", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "250", - "duration": "300", - "mana": "110" - }, - "1638": { - "name": "Defenselessness Self I", - "description": "Decreases the caster's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "1639": { - "name": "Defenselessness Self II", - "description": "Decreases the caster's Missile Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1640": { - "name": "Defenselessness Self III", - "description": "Decreases the caster's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1641": { - "name": "Defenselessness Self IV", - "description": "Decreases the caster's Missile Defense skill by 25 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1642": { - "name": "Defenselessness Self V", - "description": "Decreases the caster's Missile Defense skill by 30 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1643": { - "name": "Defenselessness Self VI", - "description": "Decreases the caster's Missile Defense skill by 35 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1644": { - "name": "The Gift of Sarneho", - "description": "Makes you superfast to catch all the bad people.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "250", - "duration": "600", - "mana": "70" - }, - "1658": { - "name": "Stamina to Health Other I", - "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1659": { - "name": "Stamina to Health Other II", - "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1660": { - "name": "Stamina to Health Other III", - "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1661": { - "name": "Stamina to Health Other IV", - "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1662": { - "name": "Stamina to Health Other V", - "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1663": { - "name": "Stamina to Health Other VI", - "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1664": { - "name": "Stamina to Health Self I", - "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Health (maximum of 50).", - "school": "Life Magic", - "family": "89", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1665": { - "name": "Stamina to Health Self II", - "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Health (maximum of 100).", - "school": "Life Magic", - "family": "89", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1666": { - "name": "Stamina to Health Self III", - "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Health (maximum of 150).", - "school": "Life Magic", - "family": "89", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1667": { - "name": "Stamina to Health Self IV", - "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Health (maximum of 200).", - "school": "Life Magic", - "family": "89", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1668": { - "name": "Stamina to Health Self V", - "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1669": { - "name": "Stamina to Health Self VI", - "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1670": { - "name": "Stamina to Mana Other I", - "description": "Drains one-half of the target's Stamina and gives 75% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1671": { - "name": "Stamina to Mana Other II", - "description": "Drains one-half of the target's Stamina and gives 90% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1672": { - "name": "Stamina to Mana Other III", - "description": "Drains one-half of the target's Stamina and gives 105% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1673": { - "name": "Stamina to Mana Other IV", - "description": "Drains one-half of the target's Stamina and gives 120% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1674": { - "name": "Stamina to Mana Other V", - "description": "Drains one-half of the target's Stamina and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1675": { - "name": "Stamina to Mana Other VI", - "description": "Drains one-half of the target's Stamina and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1676": { - "name": "Stamina to Mana Self I", - "description": "Drains one-half of the caster's Stamina and gives 90% of that to his/her Mana (maximum of 50).", - "school": "Life Magic", - "family": "89", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1677": { - "name": "Stamina to Mana Self II", - "description": "Drains one-half of the caster's Stamina and gives 100% of that to his/her Mana (maximum of 100).", - "school": "Life Magic", - "family": "89", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1678": { - "name": "Stamina to Mana Self III", - "description": "Drains one-half of the caster's Stamina and gives 110% of that to his/her Mana (maximum of 150).", - "school": "Life Magic", - "family": "89", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1679": { - "name": "Stamina to Mana Self IV", - "description": "Drains one-half of the caster's Stamina and gives 120% of that to his/her Mana (maximum of 200).", - "school": "Life Magic", - "family": "89", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1680": { - "name": "Stamina to Mana Self V", - "description": "Drains one-half of the caster's Stamina and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1681": { - "name": "Stamina to Mana Self VI", - "description": "Drains one-half of the caster's Stamina and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1702": { - "name": "Health to Mana Self IV", - "description": "Drains one-half of the caster's Health and gives 120% of that to his/her Mana (maximum of 200).", - "school": "Life Magic", - "family": "87", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1703": { - "name": "Health to Mana Self V", - "description": "Drains one-half of the caster's Health and gives 135% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1704": { - "name": "Health to Mana Self VI", - "description": "Drains one-half of the caster's Health and gives 150% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1705": { - "name": "Health to Mana Other I", - "description": "Drains one-half of the target's Health and gives 75% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1706": { - "name": "Health to Mana Other II", - "description": "Drains one-half of the target's Health and gives 90% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1707": { - "name": "Health to Mana Other III", - "description": "Drains one-half of the target's Health and gives 105% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1708": { - "name": "Wedding Bliss", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "family": "67", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "1709": { - "name": "Cooking Mastery Other I", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1710": { - "name": "Cooking Mastery Other II", - "description": "Increases the target's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1711": { - "name": "Cooking Mastery Other III", - "description": "Increases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1712": { - "name": "Cooking Mastery Other IV", - "description": "Increases the target's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1713": { - "name": "Cooking Mastery Other V", - "description": "Increases the target's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1714": { - "name": "Cooking Mastery Other VI", - "description": "Increases the target's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1715": { - "name": "Cooking Mastery Self I", - "description": "Increases the caster's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1716": { - "name": "Cooking Mastery Self II", - "description": "Increases the caster's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1717": { - "name": "Cooking Mastery Self III", - "description": "Increases the caster's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1718": { - "name": "Cooking Mastery Self IV", - "description": "Increases the caster's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1719": { - "name": "Cooking Mastery Self V", - "description": "Increases the caster's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1720": { - "name": "Cooking Mastery Self VI", - "description": "Increases the caster's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1721": { - "name": "Cooking Ineptitude Other I", - "description": "Decreases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1722": { - "name": "Cooking Ineptitude Other II", - "description": "Decreases the target's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1723": { - "name": "Cooking Ineptitude Other III", - "description": "Decreases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1724": { - "name": "Cooking Ineptitude Other IV", - "description": "Decreases the target's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1725": { - "name": "Cooking Ineptitude Other V", - "description": "Decreases the target's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1726": { - "name": "Cooking Ineptitude Other VI", - "description": "Decreases the target's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1727": { - "name": "Cooking Ineptitude Self I", - "description": "Decreases the caster's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "1728": { - "name": "Cooking Ineptitude Self II", - "description": "Decreases the caster's Cooking skill by 15 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1729": { - "name": "Cooking Ineptitude Self III", - "description": "Decreases the caster's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1730": { - "name": "Cooking Ineptitude Self IV", - "description": "Decreases the caster's Cooking skill by 25 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1731": { - "name": "Cooking Ineptitude Self V", - "description": "Decreases the caster's Cooking skill by 30 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1732": { - "name": "Cooking Ineptitude Self VI", - "description": "Decreases the caster's Cooking skill by 35 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1733": { - "name": "Fletching Mastery Other I", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1734": { - "name": "Fletching Mastery Other II", - "description": "Increases the target's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1735": { - "name": "Fletching Mastery Other III", - "description": "Increases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1736": { - "name": "Fletching Mastery Other IV", - "description": "Increases the target's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1737": { - "name": "Fletching Mastery Other V", - "description": "Increases the target's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1738": { - "name": "Fletching Mastery Other VI", - "description": "Increases the target's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1739": { - "name": "Fletching Mastery Self I", - "description": "Increases the caster's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1740": { - "name": "Fletching Mastery Self II", - "description": "Increases the caster's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1741": { - "name": "Fletching Mastery Self III", - "description": "Increases the caster's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1742": { - "name": "Fletching Mastery Self IV", - "description": "Increases the caster's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1743": { - "name": "Fletching Mastery Self V", - "description": "Increases the caster's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1744": { - "name": "Fletching Mastery Self VI", - "description": "Increases the caster's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1745": { - "name": "Fletching Ineptitude Other I", - "description": "Decreases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1746": { - "name": "Fletching Ineptitude Other II", - "description": "Decreases the target's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1747": { - "name": "Fletching Ineptitude Other III", - "description": "Decreases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1748": { - "name": "Fletching Ineptitude Other IV", - "description": "Decreases the target's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1749": { - "name": "Fletching Ineptitude Other V", - "description": "Decreases the target's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1750": { - "name": "Fletching Ineptitude Other VI", - "description": "Decreases the target's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1751": { - "name": "Fletching Ineptitude Self I", - "description": "Decreases the caster's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "1752": { - "name": "Fletching Ineptitude Self II", - "description": "Decreases the caster's Fletching skill by 15 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1753": { - "name": "Fletching Ineptitude Self III", - "description": "Decreases the caster's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1754": { - "name": "Fletching Ineptitude Self IV", - "description": "Decreases the caster's Fletching skill by 25 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1755": { - "name": "Fletching Ineptitude Self V", - "description": "Decreases the caster's Fletching skill by 30 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1756": { - "name": "Fletching Ineptitude Self VI", - "description": "Decreases the caster's Fletching skill by 35 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1757": { - "name": "Alchemy Mastery Other I", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "1758": { - "name": "Alchemy Mastery Other II", - "description": "Increases the target's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "1759": { - "name": "Alchemy Mastery Other III", - "description": "Increases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "1760": { - "name": "Alchemy Mastery Other IV", - "description": "Increases the target's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "1761": { - "name": "Alchemy Mastery Other V", - "description": "Increases the target's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "1762": { - "name": "Alchemy Mastery Other VI", - "description": "Increases the target's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "1763": { - "name": "Alchemy Mastery Self I", - "description": "Increases the caster's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "1764": { - "name": "Alchemy Mastery Self II", - "description": "Increases the caster's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "1765": { - "name": "Alchemy Mastery Self III", - "description": "Increases the caster's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "1766": { - "name": "Alchemy Mastery Self IV", - "description": "Increases the caster's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "1767": { - "name": "Alchemy Mastery Self V", - "description": "Increases the caster's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "1768": { - "name": "Alchemy Mastery Self VI", - "description": "Increases the caster's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "1769": { - "name": "Alchemy Ineptitude Other I", - "description": "Decreases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "1770": { - "name": "Alchemy Ineptitude Other II", - "description": "Decreases the target's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "1771": { - "name": "Alchemy Ineptitude Other III", - "description": "Decreases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "1772": { - "name": "Alchemy Ineptitude Other IV", - "description": "Decreases the target's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "1773": { - "name": "Alchemy Ineptitude Other V", - "description": "Decreases the target's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "1774": { - "name": "Alchemy Ineptitude Other VI", - "description": "Decreases the target's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "1775": { - "name": "Alchemy Ineptitude Self I", - "description": "Decreases the caster's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "1776": { - "name": "Alchemy Ineptitude Self II", - "description": "Decreases the caster's Alchemy skill by 15 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "1777": { - "name": "Alchemy Ineptitude Self III", - "description": "Decreases the caster's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "1778": { - "name": "Alchemy Ineptitude Self IV", - "description": "Decreases the caster's Alchemy skill by 25 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "1779": { - "name": "Alchemy Ineptitude Self V", - "description": "Decreases the caster's Alchemy skill by 30 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "1780": { - "name": "Alchemy Ineptitude Self VI", - "description": "Decreases the caster's Alchemy skill by 35 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "1781": { - "name": "Exploding Magma", - "description": "Exploding magma from unstable golems!", - "school": "War Magic", - "family": "135", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "1782": { - "name": "Gertarh's Curse", - "description": "Decreases your Loyalty skill by 30 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "225", - "duration": "780", - "mana": "50" - }, - "1783": { - "name": "Searing Disc", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1784": { - "name": "Horizon's Blades", - "description": "Shoots eight blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1785": { - "name": "Cassius' Ring of Fire", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1786": { - "name": "Nuhmudira's Spines", - "description": "Shoots eight waves of force outward from the caster. Each wave does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1787": { - "name": "Halo of Frost", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1788": { - "name": "Eye of the Storm", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1789": { - "name": "Tectonic Rifts", - "description": "Shoots eight shock waves outward from the caster. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1790": { - "name": "Acid Streak I", - "description": "Sends a stream of acid streaking towards the target. The stream does 16-31 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1791": { - "name": "Acid Streak II", - "description": "Sends a stream of acid streaking towards the target. The stream does 18-35 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1792": { - "name": "Acid Streak III", - "description": "Sends a stream of acid streaking towards the target. The stream does 21-42 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1793": { - "name": "Acid Streak IV", - "description": "Sends a stream of acid streaking towards the target. The stream does 25-50 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1794": { - "name": "Acid Streak V", - "description": "Sends a stream of acid streaking towards the target. The stream does 29-59 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1795": { - "name": "Acid Streak VI", - "description": "Sends a stream of acid streaking towards the target. The stream does 36-71 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1796": { - "name": "Flame Streak I", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 16-31 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1797": { - "name": "Flame Streak II", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 18-35 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1798": { - "name": "Flame Streak III", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 21-42 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1799": { - "name": "Flame Streak IV", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 25-50 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1800": { - "name": "Flame Streak V", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 29-59 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1801": { - "name": "Flame Streak VI", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 36-71 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1802": { - "name": "Force Streak I", - "description": "Sends a bolt of force streaking towards the target. The bolt does 16-31 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1803": { - "name": "Force Streak II", - "description": "Sends a bolt of force streaking towards the target. The bolt does 18-35 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1804": { - "name": "Force Streak III", - "description": "Sends a bolt of force streaking towards the target. The bolt does 21-42 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1805": { - "name": "Force Streak IV", - "description": "Sends a bolt of force streaking towards the target. The bolt does 25-50 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1806": { - "name": "Force Streak V", - "description": "Sends a bolt of force streaking towards the target. The bolt does 29-59 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1807": { - "name": "Force Streak VI", - "description": "Sends a bolt of force streaking towards the target. The bolt does 36-71 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1808": { - "name": "Frost Streak I", - "description": "Sends a bolt of frost streaking towards the target. The bolt does 16-31 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1809": { - "name": "Frost Streak II", - "description": "Sends a bolt of frost streaking towards the target. The bolt does 18-35 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1810": { - "name": "Frost Streak III", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 21-42 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1811": { - "name": "Frost Streak IV", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 25-50 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1812": { - "name": "Frost Streak V", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 29-59 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1813": { - "name": "Frost Streak VI", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 36-71 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1814": { - "name": "Lightning Streak I", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 16-31 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1815": { - "name": "Lightning Streak II", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 18-35 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1816": { - "name": "Lightning Streak III", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 21-42 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1817": { - "name": "Lightning Streak IV", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 25-50 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1818": { - "name": "Lightning Streak V", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 29-59 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1819": { - "name": "Lightning Streak VI", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 36-71 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1820": { - "name": "Shock Wave Streak I", - "description": "Sends a shock wave streaking towards the target. The wave does 16-31 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1821": { - "name": "Shock Wave Streak II", - "description": "Sends a shock wave streaking towards the target. The wave does 18-35 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1822": { - "name": "Shock Wave Streak III", - "description": "Sends a shock wave streaking towards the target. The wave does 21-42 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1823": { - "name": "Shock Wave Streak IV", - "description": "Sends a shock wave streaking towards the target. The wave does 25-50 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1824": { - "name": "Shock Wave Streak V", - "description": "Sends a shock wave streaking towards the target. The wave does 29-59 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1825": { - "name": "Shock Wave Streak VI", - "description": "Sends a shock wave streaking towards the target. The wave does 36-71 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1826": { - "name": "Whirling Blade Streak I", - "description": "Sends a magical blade streaking towards the target. The bolt does 16-31 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "1827": { - "name": "Whirling Blade Streak II", - "description": "Sends a magical blade streaking towards the target. The bolt does 18-35 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "1828": { - "name": "Whirling Blade Streak III", - "description": "Sends a magical blade streaking towards the target. The bolt does 21-42 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "1829": { - "name": "Whirling Blade Streak IV", - "description": "Sends a magical blade streaking towards the target. The bolt does 25-50 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "1830": { - "name": "Whirling Blade Streak V", - "description": "Sends a magical blade streaking towards the target. The bolt does 29-59 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "1831": { - "name": "Whirling Blade Streak VI", - "description": "Sends a magical blade streaking towards the target. The bolt does 36-71 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "1832": { - "name": "Torrential Acid", - "description": "Rains nine streams of acid down at the area around the target. Each stream does 60-120 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "236", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1833": { - "name": "Squall of Swords", - "description": "Rains nine whirling blades down at the area around the target. Each blade does 60-120 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "242", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1834": { - "name": "Firestorm", - "description": "Rains nine balls of flame down at the area around the target. Each ball does 60-120 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "240", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1835": { - "name": "Splinterfall", - "description": "Rains nine bolts of force down at the area around the target. Each bolt does 60-120 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "241", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1836": { - "name": "Avalanche", - "description": "Rains up to twelve balls of frost down at the area around the target. Each ball does 60-120 points of cold damage to the first thing it hits. This spell is not very accurate. and cannot be used indoors.", - "school": "War Magic", - "family": "238", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1837": { - "name": "Lightning Barrage", - "description": "Rains nine bolts of lightning down at the area around the target. Each bolt does 60-120 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "239", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1838": { - "name": "Stone Fists", - "description": "Rains nine boulders down at the area around the target. Each boulder does 60-120 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "1839": { - "name": "Blistering Creeper", - "description": "Sends a wall of five balls of acid. two high. slowly towards the target. Each ball does 35-70 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "229", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1840": { - "name": "Bed of Blades", - "description": "Sends a wall of five whirling blades. two high. slowly towards the target. Each blade does 35-70 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "235", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1841": { - "name": "Slithering Flames", - "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 35-70 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "233", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1842": { - "name": "Spike Strafe", - "description": "Sends a wall of five bolts of force. two high. slowly towards the target. Each bolt does 35-70 points of piercing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "234", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1843": { - "name": "Foon-Ki's Glacial Floe", - "description": "Sends a wall of five balls of frost. two high. slowly towards the target. Each ball does 35-70 points of cold damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "231", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1844": { - "name": "Os' Wall", - "description": "Sends a wall of five bolts of lightning. two high. slowly towards the target. Each ball does 35-70 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "232", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1845": { - "name": "Hammering Crawler", - "description": "Sends a wall of five shockwaves. two high. slowly towards the target. Each wave does 35-70 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "230", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "1846": { - "name": "Curse of Black Fire", - "description": "Decreases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "50", - "duration": "1020", - "mana": "60" - }, - "1847": { - "name": "Evaporate All Magic Other", - "description": "Dispels all enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1848": { - "name": "Evaporate All Magic Other", - "description": "Dispels 1-3 positive enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1849": { - "name": "Evaporate All Magic Other", - "description": "Dispels all negative enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1850": { - "name": "Evaporate All Magic Self", - "description": "Dispels all enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1851": { - "name": "Evaporate All Magic Self", - "description": "Dispels 1-3 positive enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1852": { - "name": "Evaporate All Magic Self", - "description": "Dispels all negative enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1853": { - "name": "Extinguish All Magic Other", - "description": "Dispels all enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1854": { - "name": "Extinguish All Magic Other", - "description": "Dispels 1-3 positive enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1855": { - "name": "Extinguish All Magic Other", - "description": "Dispels all negative enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1856": { - "name": "Extinguish All Magic Self", - "description": "Dispels all enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "100" - }, - "1857": { - "name": "Extinguish All Magic Self", - "description": "Dispels 1-3 positive enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1858": { - "name": "Extinguish All Magic Self", - "description": "Dispels all negative enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1859": { - "name": "Cleanse All Magic Other", - "description": "Dispels all enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1860": { - "name": "Cleanse All Magic Other", - "description": "Dispels 2-4 positive enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1861": { - "name": "Cleanse All Magic Other", - "description": "Dispels all negative enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1862": { - "name": "Cleanse All Magic Self", - "description": "Dispels all enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1863": { - "name": "Cleanse All Magic Self", - "description": "Dispels 2-4 positive enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1864": { - "name": "Cleanse All Magic Self", - "description": "Dispels all negative enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1865": { - "name": "Devour All Magic Other", - "description": "Dispels all enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1866": { - "name": "Devour All Magic Other", - "description": "Dispels 2-4 positive enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1867": { - "name": "Devour All Magic Other", - "description": "Dispels all negative enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1868": { - "name": "Devour All Magic Self", - "description": "Dispels all enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1869": { - "name": "Devour All Magic Self", - "description": "Dispels 2-4 positive enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1870": { - "name": "Devour All Magic Self", - "description": "Dispels all negative enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1871": { - "name": "Purge All Magic Other", - "description": "Dispels all enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1872": { - "name": "Purge All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1873": { - "name": "Purge All Magic Other", - "description": "Dispels all negative enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1874": { - "name": "Purge All Magic Self", - "description": "Dispels all enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1875": { - "name": "Purge All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1876": { - "name": "Purge All Magic Self", - "description": "Dispels all negative enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1877": { - "name": "Nullify All Magic Other", - "description": "Dispels all enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1878": { - "name": "Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1879": { - "name": "Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1880": { - "name": "Nullify All Magic Self", - "description": "Dispels all enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1881": { - "name": "Nullify All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1882": { - "name": "Nullify All Magic Self", - "description": "Dispels all negative enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1883": { - "name": "Evaporate Creature Magic Other", - "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1884": { - "name": "Evaporate Creature Magic Other", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1885": { - "name": "Evaporate Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1886": { - "name": "Evaporate Creature Magic Self", - "description": "Dispels 1-3 Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1887": { - "name": "Evaporate Creature Magic Self", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1888": { - "name": "Evaporate Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 1 from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1889": { - "name": "Extinguish Creature Magic Other", - "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1890": { - "name": "Extinguish Creature Magic Other", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1891": { - "name": "Extinguish Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1892": { - "name": "Extinguish Creature Magic Self", - "description": "Dispels 1-3 Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1893": { - "name": "Extinguish Creature Magic Self", - "description": "Dispels 1-3 positive Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1894": { - "name": "Extinguish Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 2 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1895": { - "name": "Cleanse Creature Magic Other", - "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1896": { - "name": "Cleanse Creature Magic Other", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1897": { - "name": "Cleanse Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1898": { - "name": "Cleanse Creature Magic Self", - "description": "Dispels 2-4 Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1899": { - "name": "Cleanse Creature Magic Self", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1900": { - "name": "Cleanse Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 3 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1901": { - "name": "Devour Creature Magic Other", - "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1902": { - "name": "Devour Creature Magic Other", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1903": { - "name": "Devour Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1904": { - "name": "Devour Creature Magic Self", - "description": "Dispels 2-4 Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1905": { - "name": "Devour Creature Magic Self", - "description": "Dispels 2-4 positive Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1906": { - "name": "Devour Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 4 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1907": { - "name": "Purge Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1908": { - "name": "Purge Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1909": { - "name": "Purge Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1910": { - "name": "Purge Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1911": { - "name": "Purge Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1912": { - "name": "Purge Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 5 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1913": { - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1914": { - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1915": { - "name": "Nullify Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1916": { - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1917": { - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1918": { - "name": "Nullify Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1919": { - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1920": { - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1921": { - "name": "Evaporate Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 1 from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1922": { - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1923": { - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1924": { - "name": "Evaporate Item Magic", - "description": "Dispels 1-3 negative Item Magic enchantments of level 1 from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1925": { - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1926": { - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1927": { - "name": "Extinguish Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 2 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1928": { - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1929": { - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 positive Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1930": { - "name": "Extinguish Item Magic", - "description": "Dispels 1-3 negative Item Magic enchantments of level 2 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1931": { - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1932": { - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1933": { - "name": "Cleanse Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 3 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1934": { - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1935": { - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1936": { - "name": "Cleanse Item Magic", - "description": "Dispels 2-4 negative Item Magic enchantments of level 3 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1937": { - "name": "Devour Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1938": { - "name": "Devour Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1939": { - "name": "Devour Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 4 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1940": { - "name": "Devour Item Magic", - "description": "Dispels 2-4 Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1941": { - "name": "Devour Item Magic", - "description": "Dispels 2-4 positive Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1942": { - "name": "Devour Item Magic", - "description": "Dispels 2-4 negative Item Magic enchantments of level 4 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1943": { - "name": "Purge Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1944": { - "name": "Purge Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1945": { - "name": "Purge Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 5 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1946": { - "name": "Purge Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1947": { - "name": "Purge Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1948": { - "name": "Purge Item Magic", - "description": "Dispels 2-6 negative Item Magic enchantments of level 5 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1949": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1950": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1951": { - "name": "Nullify Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1952": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1953": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1954": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 negative Item Magic enchantments of level 6 or lower from the caster.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1955": { - "name": "Evaporate Life Magic Other", - "description": "Dispels 1-3 Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1956": { - "name": "Evaporate Life Magic Other", - "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1957": { - "name": "Evaporate Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1958": { - "name": "Evaporate Life Magic Self", - "description": "Dispels 1-3 Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1959": { - "name": "Evaporate Life Magic Self", - "description": "Dispels 1-3 positive Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "1960": { - "name": "Evaporate Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 1 from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "40" - }, - "1961": { - "name": "Extinguish Life Magic Other", - "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1962": { - "name": "Extinguish Life Magic Other", - "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1963": { - "name": "Extinguish Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1964": { - "name": "Extinguish Life Magic Self", - "description": "Dispels 1-3 Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1965": { - "name": "Extinguish Life Magic Self", - "description": "Dispels 1-3 positive Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "100" - }, - "1966": { - "name": "Extinguish Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 2 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "100", - "duration": "-1", - "mana": "80" - }, - "1967": { - "name": "Cleanse Life Magic Other", - "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1968": { - "name": "Cleanse Life Magic Other", - "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1969": { - "name": "Cleanse Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1970": { - "name": "Cleanse Life Magic Self", - "description": "Dispels 2-4 Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1971": { - "name": "Cleanse Life Magic Self", - "description": "Dispels 2-4 positive Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "1972": { - "name": "Cleanse Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 3 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "150", - "duration": "-1", - "mana": "120" - }, - "1973": { - "name": "Devour Life Magic Other", - "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1974": { - "name": "Devour Life Magic Other", - "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1975": { - "name": "Devour Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1976": { - "name": "Devour Life Magic Self", - "description": "Dispels 2-4 Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1977": { - "name": "Devour Life Magic Self", - "description": "Dispels 2-4 positive Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "200" - }, - "1978": { - "name": "Devour Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 4 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "200", - "duration": "-1", - "mana": "160" - }, - "1979": { - "name": "Purge Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1980": { - "name": "Purge Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1981": { - "name": "Purge Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1982": { - "name": "Purge Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1983": { - "name": "Purge Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "250" - }, - "1984": { - "name": "Purge Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 5 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "250", - "duration": "-1", - "mana": "200" - }, - "1985": { - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1986": { - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1987": { - "name": "Nullify Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1988": { - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1989": { - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "1990": { - "name": "Nullify Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "1991": { - "name": "Mana Blight", - "description": "Drains 5000 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "1992": { - "name": "Camping Mastery", - "description": "Increases the target's chance of finding phat loot.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "1", - "duration": "300", - "mana": "10" - }, - "1993": { - "name": "Camping Ineptitude", - "description": "Decreases the target's chance of finding phat loot.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "1", - "duration": "300", - "mana": "1" - }, - "1994": { - "name": "Aura of Wound Twister", - "description": "Increases a weapon's damage value by 25 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "250", - "duration": "1020", - "mana": "60" - }, - "1995": { - "name": "Aura of Alacrity", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "1996": { - "name": "Aura of Soul Hunter", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "150", - "duration": "600", - "mana": "40" - }, - "1997": { - "name": "Life Giver", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "1998": { - "name": "Stamina Giver", - "description": "Increases maximum stamina by 15 points.", - "school": "Life Magic", - "family": "281", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "1999": { - "name": "Mana Giver", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "2000": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2001": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2002": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2003": { - "name": "Warrior's Lesser Vitality", - "description": "Increases maximum health by 5 points.", - "school": "Life Magic", - "family": "273", - "difficulty": "240", - "duration": "510", - "mana": "70" - }, - "2004": { - "name": "Warrior's Vitality", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "family": "273", - "difficulty": "245", - "duration": "510", - "mana": "70" - }, - "2005": { - "name": "Warrior's Greater Vitality", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "family": "273", - "difficulty": "250", - "duration": "510", - "mana": "70" - }, - "2006": { - "name": "Warrior's Ultimate Vitality", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "family": "273", - "difficulty": "260", - "duration": "510", - "mana": "70" - }, - "2007": { - "name": "Warrior's Lesser Vigor", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "family": "275", - "difficulty": "240", - "duration": "510", - "mana": "70" - }, - "2008": { - "name": "Warrior's Vigor", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "family": "275", - "difficulty": "245", - "duration": "510", - "mana": "70" - }, - "2009": { - "name": "Warrior's Greater Vigor", - "description": "Increases maximum stamina by 30 points.", - "school": "Life Magic", - "family": "275", - "difficulty": "250", - "duration": "510", - "mana": "70" - }, - "2010": { - "name": "Warrior's Ultimate Vigor", - "description": "Increases maximum stamina by 40 points.", - "school": "Life Magic", - "family": "275", - "difficulty": "260", - "duration": "510", - "mana": "70" - }, - "2011": { - "name": "Wizard's Lesser Intellect", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "family": "277", - "difficulty": "240", - "duration": "510", - "mana": "70" - }, - "2012": { - "name": "Wizard's Intellect", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "family": "277", - "difficulty": "245", - "duration": "510", - "mana": "70" - }, - "2013": { - "name": "Wizard's Greater Intellect", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "family": "277", - "difficulty": "250", - "duration": "510", - "mana": "70" - }, - "2014": { - "name": "Wizard's Ultimate Intellect", - "description": "Increases maximum mana by 30 points.", - "school": "Life Magic", - "family": "277", - "difficulty": "260", - "duration": "510", - "mana": "70" - }, - "2015": { - "name": "Aerfalle's Ward", - "description": "Improves a shield or piece of armor's armor value by 220 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "295", - "duration": "1020", - "mana": "60" - }, - "2016": { - "name": "Impulse", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "100", - "duration": "10800", - "mana": "70" - }, - "2017": { - "name": "Bunny Smite", - "description": "Drains 1000-6000 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2018": { - "name": "Tormenter of Flesh", - "description": "Drains 1000-6000 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2019": { - "name": "The sundering of the crystal", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "2020": { - "name": "Recall Asmolum 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2021": { - "name": "Thaumaturgic Shroud", - "description": "Drains one-half of the target's Mana and gives 200% of that to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "350", - "duration": "-1", - "mana": "70" - }, - "2022": { - "name": "Soul Shroud", - "description": "Drains one-half of the target's Health and gives 200% of that to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "350", - "duration": "-1", - "mana": "70" - }, - "2023": { - "name": "Recall the Sanctuary", - "description": "Transports the caster to the Ithaenc Cathedral.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "200", - "duration": "-1", - "mana": "70" - }, - "2024": { - "name": "Recall Asmolum 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2025": { - "name": "RecallAsmolum 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2026": { - "name": "Nerve Burn", - "description": "Drains one-half of the target's Stamina and gives 200% of that to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "350", - "duration": "-1", - "mana": "70" - }, - "2027": { - "name": "Martyr", - "description": "Drains all of the caster's Health and gives 1000% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2028": { - "name": "The Path to Kelderam's Ward", - "description": "Summons a PK-limited portal to the Catacombs beneath the Ithaenc Cathedral.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "2029": { - "name": "Stamina Blight", - "description": "Drains 5000 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "2030": { - "name": "Flaming Blaze", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "10" - }, - "2031": { - "name": "Steel Thorns", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "10" - }, - "2032": { - "name": "Electric Blaze", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "10" - }, - "2033": { - "name": "Acidic Spray", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "10" - }, - "2034": { - "name": "Exploding Fury", - "description": "Exploding fury for baelzharon", - "school": "War Magic", - "family": "135", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "2035": { - "name": "Electric Discharge", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "120", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2036": { - "name": "Fuming Acid", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "117", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2037": { - "name": "Flaming Irruption", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "121", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2038": { - "name": "Exploding Ice", - "description": "Exploding fury for baelzharon", - "school": "War Magic", - "family": "135", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "2039": { - "name": "Sparking Fury", - "description": "CREATURE MAGIC ONLY!", - "school": "War Magic", - "family": "134", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "2040": { - "name": "The Path to Kelderam's Ward", - "description": "Will create a portal to the Sepulcher of the Hopeslayer.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "2041": { - "name": "Aerlinthe Recall", - "description": "Transports the caster to Aerlinthe Island.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "2042": { - "name": "Demon's Tongues", - "description": "Sends a wall of lag towards the opponents. burning them to a tasty crisp.", - "school": "War Magic", - "family": "233", - "difficulty": "200", - "duration": "-1", - "mana": "1" - }, - "2043": { - "name": "Weight of Eternity", - "description": "Afflicts the target with the weight of thousands of years.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "500", - "duration": "60", - "mana": "1" - }, - "2044": { - "name": "Item Befoulment", - "description": "The target becomes totally ineffectual with Item magic.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "275", - "duration": "400", - "mana": "60" - }, - "2045": { - "name": "Demon Fists", - "description": "Rains LOTS of boulders down. smooshing any that oppose.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2046": { - "name": "Portal to Teth", - "description": "Transports the target to the Fort Tethana.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2047": { - "name": "Demonskin", - "description": "The target's skin becomes hardened against physical damage.", - "school": "Life Magic", - "family": "115", - "difficulty": "900", - "duration": "1020", - "mana": "60" - }, - "2048": { - "name": "Boon of the Demon", - "description": "Gives the target a huge boost to their magic defense.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "250", - "duration": "1020", - "mana": "60" - }, - "2049": { - "name": "Bile of the Hopeslayer", - "description": "Coats a weapon in the bile of Bael'zharon. greatly increasing its damage.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "250", - "duration": "1020", - "mana": "60" - }, - "2050": { - "name": "Young Love", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "family": "67", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "2051": { - "name": "Young Love", - "description": "This is a gem that spectacularly symbolizes all the joys and challenges of marriage. It is a one-use item. so use it wisely to mark your commitment to share your life with another. Best used outdoors. in the open.", - "school": "Life Magic", - "family": "67", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "2052": { - "name": "Executor's Boon", - "description": "Increases the target's natural armor by 225 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2053": { - "name": "Executor's Blessing", - "description": "Increases the caster's natural armor by 225 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2054": { - "name": "Synaptic Misfire", - "description": "Decreases the target's Focus by 40 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2055": { - "name": "Bafflement Self VII", - "description": "Decreases the caster's Focus by 40 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2056": { - "name": "Ataxia", - "description": "Decreases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2057": { - "name": "Clumsiness Self VII", - "description": "Decreases the caster's Coordination by 40 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2058": { - "name": "Boon of Refinement", - "description": "Increases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2059": { - "name": "Honed Control", - "description": "Increases the caster's Coordination by 40 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2060": { - "name": "Temeritous Touch", - "description": "Increases the target's Endurance by 40 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2061": { - "name": "Perseverance", - "description": "Increases the caster's Endurance by 40 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2062": { - "name": "Anemia", - "description": "Drains 52-105 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2063": { - "name": "Enfeeble Self VII", - "description": "Drains 50-100 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2064": { - "name": "Self Loathing", - "description": "Decreases the target's Self by 40 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2065": { - "name": "Feeblemind Self VII", - "description": "Decreases the caster's Self by 40 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2066": { - "name": "Calming Gaze", - "description": "Increases the target's Focus by 40 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2067": { - "name": "Inner Calm", - "description": "Increases the caster's Focus by 40 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2068": { - "name": "Brittle Bones", - "description": "Decreases the target's Endurance by 40 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2069": { - "name": "Frailty Self VII", - "description": "Decreases the caster's Endurance by 40 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2070": { - "name": "Heart Rend", - "description": "Drains 42-79 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2071": { - "name": "Harm Self VII", - "description": "Drains 40-75 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2072": { - "name": "Adja's Gift", - "description": "Restores 80-150 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2073": { - "name": "Adja's Intervention", - "description": "Restores 80-150 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2074": { - "name": "Gossamer Flesh", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2075": { - "name": "Imperil Self VII", - "description": "Decreases the caster's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2076": { - "name": "Mana Boost Other VII", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2077": { - "name": "Mana Boost Self VII", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2078": { - "name": "Void's Call", - "description": "Drains 42-79 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2079": { - "name": "Mana Drain Self VII", - "description": "Drains 40-75 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "2080": { - "name": "Ogfoot", - "description": "Increases the target's Quickness by 40 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2081": { - "name": "Hastening", - "description": "Increases the caster's Quickness by 40 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2082": { - "name": "Replenish", - "description": "Restores 100-200 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2083": { - "name": "Robustification", - "description": "Restores 100-200 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2084": { - "name": "Belly of Lead", - "description": "Decreases the target's Quickness by 40 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2085": { - "name": "Slowness Self VII", - "description": "Decreases the caster's Quickness by 40 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2086": { - "name": "Might of the 5 Mules", - "description": "Increases the target's Strength by 40 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2087": { - "name": "Might of the Lugians", - "description": "Increases the caster's Strength by 40 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2088": { - "name": "Senescence", - "description": "Decreases the target's Strength by 40 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2089": { - "name": "Weakness Self VII", - "description": "Decrease the caster's Strength by 40 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2090": { - "name": "Bolstered Will", - "description": "Increases the target's Self by 40 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2091": { - "name": "Mind Blossom", - "description": "Increases the caster's Self by 40 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2092": { - "name": "Olthoi's Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2093": { - "name": "Olthoi Bait", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 170%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2094": { - "name": "Swordsman's Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2095": { - "name": "Swordsman Bait", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 170%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2096": { - "name": "Aura of Infected Caress", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2097": { - "name": "Pacification", - "description": "Decreases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2098": { - "name": "Tusker's Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2099": { - "name": "Tusker Bait", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 170%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2100": { - "name": "Tattercoat", - "description": "Worsens a shield or piece of armor's armor value by 220 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2101": { - "name": "Aura of Cragstone's Will", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2102": { - "name": "Inferno's Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2103": { - "name": "Inferno Bait", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 170%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2104": { - "name": "Gelidite's Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2105": { - "name": "Gelidite Bait", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 170%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2106": { - "name": "Aura of Elysa's Sight", - "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2107": { - "name": "Cabalistic Ostracism", - "description": "Decreases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2108": { - "name": "Brogard's Defiance", - "description": "Improves a shield or piece of armor's armor value by 220 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2109": { - "name": "Lugian's Speed", - "description": "Worsens a weapon's speed by 70 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2110": { - "name": "Astyrrian's Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2111": { - "name": "Astyrrian Bait", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 170%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2112": { - "name": "Wi's Folly", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2113": { - "name": "Archer's Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 170%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2114": { - "name": "Archer Bait", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 170%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2115": { - "name": "Fortified Lock", - "description": "Increases a lock's resistance to picking by 200 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "300", - "duration": "240", - "mana": "70" - }, - "2116": { - "name": "Aura of Atlan's Alacrity", - "description": "Improves a weapon's speed by 70 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2117": { - "name": "Aura of Mystic's Blessing", - "description": "Increases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2118": { - "name": "Clouded Motives", - "description": "Decreases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2119": { - "name": "Vagabond's Gift", - "description": "Decreases a lock's resistance to picking by 200 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "300", - "duration": "240", - "mana": "70" - }, - "2120": { - "name": "Dissolving Vortex", - "description": "Shoots five streams of acid outward from the caster. Each stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2121": { - "name": "Corrosive Flash", - "description": "Sends a stream of acid streaking towards the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2122": { - "name": "Disintegration", - "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2123": { - "name": "Celdiseth's Searing", - "description": "Shoots five streams of acid toward the target. Each stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2124": { - "name": "Sau Kolin's Sword", - "description": "Shoots five whirling blades outward from the caster. Each blade does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2125": { - "name": "Flensing Wings", - "description": "Shoots five whirling blades toward the target. Each blade does 42-84 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2126": { - "name": "Thousand Fists", - "description": "Shoots five shock waves toward the target. Each wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2127": { - "name": "Silencia's Scorn", - "description": "Shoots five bolts of flame outward from the caster. Each bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2128": { - "name": "Ilservian's Flame", - "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2129": { - "name": "Sizzling Fury", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2130": { - "name": "Infernae", - "description": "Shoots five bolts of flame toward the target. Each bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2131": { - "name": "Stinging Needles", - "description": "Shoots five force bolts outward from the caster. Each bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2132": { - "name": "The Spike", - "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2133": { - "name": "Outlander's Insolence", - "description": "Sends a bolt of force streaking towards the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2134": { - "name": "Fusillade", - "description": "Shoots five bolts of force toward the target. Each bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2135": { - "name": "Winter's Embrace", - "description": "Shoots five bolts of frost outward from the caster. Each bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2136": { - "name": "Icy Torment", - "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2137": { - "name": "Sudden Frost", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2138": { - "name": "Blizzard", - "description": "Shoots five bolts of frost toward the target. Each bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2139": { - "name": "Luminous Wrath", - "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2140": { - "name": "Alset's Coil", - "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2141": { - "name": "Lhen's Flare", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2142": { - "name": "Tempest", - "description": "Shoots five bolts of lightning toward the target. Each bolt does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2143": { - "name": "Pummeling Storm", - "description": "Shoots five shock waves outward from the caster. Each wave does 42-84 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "2144": { - "name": "Crushing Shame", - "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2145": { - "name": "Cameron's Curse", - "description": "Sends a shock wave streaking towards the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2146": { - "name": "Evisceration", - "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2147": { - "name": "Rending Wind", - "description": "Sends a magical blade streaking towards the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2148": { - "name": "Caustic Boon", - "description": "Reduces damage the target takes from acid by 65%.", - "school": "Life Magic", - "family": "101", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2149": { - "name": "Caustic Blessing", - "description": "Reduces damage the caster takes from acid by 65%.", - "school": "Life Magic", - "family": "101", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2150": { - "name": "Boon of the Blade Turner", - "description": "Reduces damage the target takes from Slashing by 65%.", - "school": "Life Magic", - "family": "113", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2151": { - "name": "Blessing of the Blade Turner", - "description": "Reduces damage the caster takes from Slashing by 65%.", - "school": "Life Magic", - "family": "113", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2152": { - "name": "Boon of the Mace Turner", - "description": "Reduces damage the target takes from Bludgeoning by 65%.", - "school": "Life Magic", - "family": "103", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2153": { - "name": "Blessing of the Mace Turner", - "description": "Reduces damage the caster takes from Bludgeoning by 65%.", - "school": "Life Magic", - "family": "103", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2154": { - "name": "Icy Boon", - "description": "Reduces damage the target takes from Cold by 65%.", - "school": "Life Magic", - "family": "105", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2155": { - "name": "Icy Blessing", - "description": "Reduces damage the caster takes from Cold by 65%.", - "school": "Life Magic", - "family": "105", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2156": { - "name": "Fiery Boon", - "description": "Reduces damage the target takes from fire by 65%.", - "school": "Life Magic", - "family": "109", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2157": { - "name": "Fiery Blessing", - "description": "Reduces damage the caster takes from Fire by 65%.", - "school": "Life Magic", - "family": "109", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2158": { - "name": "Storm's Boon", - "description": "Reduces damage the target takes from Lightning by 65%.", - "school": "Life Magic", - "family": "107", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2159": { - "name": "Storm's Blessing", - "description": "Reduces damage the caster takes from Lightning by 65%.", - "school": "Life Magic", - "family": "107", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2160": { - "name": "Boon of the Arrow Turner", - "description": "Reduces damage the target takes from Piercing by 65%.", - "school": "Life Magic", - "family": "111", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2161": { - "name": "Blessing of the Arrow Turner", - "description": "Reduces damage the caster takes from Piercing by 65%.", - "school": "Life Magic", - "family": "111", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2162": { - "name": "Olthoi's Gift", - "description": "Increases damage the target takes from acid by 185%.", - "school": "Life Magic", - "family": "102", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2163": { - "name": "Acid Vulnerability Self VII", - "description": "Increases damage the caster takes from acid by 185%.", - "school": "Life Magic", - "family": "102", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2164": { - "name": "Swordsman's Gift", - "description": "Increases damage the target takes from Slashing by 185%.", - "school": "Life Magic", - "family": "114", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2165": { - "name": "Blade Vulnerability Self VII", - "description": "Increases damage the caster takes from Slashing by 185%.", - "school": "Life Magic", - "family": "114", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2166": { - "name": "Tusker's Gift", - "description": "Increases damage the target takes from Bludgeoning by 185%.", - "school": "Life Magic", - "family": "104", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2167": { - "name": "Bludgeoning Vulnerability Self VII", - "description": "Increases damage the caster takes from Bludgeoning by 185%.", - "school": "Life Magic", - "family": "104", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2168": { - "name": "Gelidite's Gift", - "description": "Increases damage the target takes from Cold by 185%.", - "school": "Life Magic", - "family": "106", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2169": { - "name": "Cold Vulnerability Self VII", - "description": "Increases damage the caster takes from Cold by 185%.", - "school": "Life Magic", - "family": "106", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2170": { - "name": "Inferno's Gift", - "description": "Increases damage the target takes from Fire by 185%.", - "school": "Life Magic", - "family": "110", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2171": { - "name": "Fire Vulnerability Self VII", - "description": "Increases damage the caster takes from Fire by 185%.", - "school": "Life Magic", - "family": "110", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2172": { - "name": "Astyrrian's Gift", - "description": "Increases damage the target takes from Lightning by 185%.", - "school": "Life Magic", - "family": "108", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2173": { - "name": "Lightning Vulnerability Self VII", - "description": "Increases damage the caster takes from Lightning by 185%.", - "school": "Life Magic", - "family": "108", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2174": { - "name": "Archer's Gift", - "description": "Increases damage the target takes from Piercing by 185%.", - "school": "Life Magic", - "family": "112", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2175": { - "name": "Piercing Vulnerability Self VII", - "description": "Increases damage the caster takes from Piercing by 185%.", - "school": "Life Magic", - "family": "112", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2176": { - "name": "Enervation", - "description": "Decreases the rate at which the target regains Stamina by 60%.", - "school": "Life Magic", - "family": "96", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2177": { - "name": "Exhaustion Self VII", - "description": "Decreases the rate at which the caster regains Stamina by 60%.", - "school": "Life Magic", - "family": "96", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2178": { - "name": "Decrepitude's Grasp", - "description": "Decrease target's natural healing rate by 60%.", - "school": "Life Magic", - "family": "94", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2179": { - "name": "Fester Self VII", - "description": "Decrease caster's natural healing rate by 60%.", - "school": "Life Magic", - "family": "94", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2180": { - "name": "Energy Flux", - "description": "Decreases target's natural mana rate by 60%.", - "school": "Life Magic", - "family": "98", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2181": { - "name": "Mana Depletion Self VII", - "description": "Decreases caster's natural mana rate by 60%.", - "school": "Life Magic", - "family": "98", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2182": { - "name": "Battlemage's Boon", - "description": "Increases the target's natural mana rate by 115%.", - "school": "Life Magic", - "family": "97", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2183": { - "name": "Battlemage's Blessing", - "description": "Increases the caster's natural mana rate by 115%.", - "school": "Life Magic", - "family": "97", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2184": { - "name": "Hydra's Head", - "description": "Increase target's natural healing rate by 115%.", - "school": "Life Magic", - "family": "93", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2185": { - "name": "Robustify", - "description": "Increase caster's natural healing rate by 115%.", - "school": "Life Magic", - "family": "93", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2186": { - "name": "Tenaciousness", - "description": "Increases the rate at which the target regains Stamina by 115%.", - "school": "Life Magic", - "family": "95", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2187": { - "name": "Unflinching Persistence", - "description": "Increases the rate at which the caster regains Stamina by 115%.", - "school": "Life Magic", - "family": "95", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2188": { - "name": "Bottle Breaker", - "description": "Decreases the target's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2189": { - "name": "Alchemy Ineptitude Self VII", - "description": "Decreases the caster's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2190": { - "name": "Silencia's Boon", - "description": "Increases the target's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2191": { - "name": "Silencia's Blessing", - "description": "Increases the caster's Alchemy skill by 40 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2192": { - "name": "Hands of Chorizite", - "description": "Decreases the target's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2193": { - "name": "Arcane Benightedness Self VII", - "description": "Decreases the caster's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2194": { - "name": "Aliester's Boon", - "description": "Increases the target's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2195": { - "name": "Aliester's Blessing", - "description": "Increases the caster's Arcane Lore skill by 40 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2196": { - "name": "Jibril's Boon", - "description": "Increases the target's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2197": { - "name": "Jibril's Blessing", - "description": "Increases the caster's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2198": { - "name": "Jibril's Vitae", - "description": "Decreases the target's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2199": { - "name": "Armor Tinkering Ignorance Self VII", - "description": "Decreases the caster's Armor Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2200": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2201": { - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2202": { - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2203": { - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2204": { - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2205": { - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2206": { - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2207": { - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2208": { - "name": "Challenger's Legacy", - "description": "Decreases the target's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2209": { - "name": "Cooking Ineptitude Self VII", - "description": "Decreases the caster's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2210": { - "name": "Morimoto's Boon", - "description": "Increases the target's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2211": { - "name": "Morimoto's Blessing", - "description": "Increases the caster's Cooking skill by 40 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2212": { - "name": "Wrath of Adja", - "description": "Decreases the target's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2213": { - "name": "Creature Enchantment Ineptitude Self VII", - "description": "Decreases the caster's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2214": { - "name": "Adja's Boon", - "description": "Increases the target's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2215": { - "name": "Adja's Blessing", - "description": "Increases the caster's Creature Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2216": { - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2217": { - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2218": { - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2219": { - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2220": { - "name": "Finesse Weapon Ineptitude Other VII", - "description": "Decreases the target's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2221": { - "name": "Finesse Weapon Ineptitude Self VII", - "description": "Decreases the caster's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2222": { - "name": "Finesse Weapon Mastery Other VII", - "description": "Increases the target's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2223": { - "name": "Finesse Weapon Mastery Self VII", - "description": "Increases the caster's Finesse Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2224": { - "name": "Hearts on Sleeves", - "description": "Decreases the target's Deception skill by 40 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2225": { - "name": "Deception Ineptitude Self VII", - "description": "Decreases the caster's Deception skill by 40 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2226": { - "name": "Ketnan's Boon", - "description": "Increases the target's Deception skill by 40 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2227": { - "name": "Ketnan's Blessing", - "description": "Increases the caster's Deception skill by 40 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2228": { - "name": "Broadside of a Barn", - "description": "Decreases the target's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2229": { - "name": "Defenselessness Self VII", - "description": "Decreases the caster's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2230": { - "name": "Sashi Mu's Kiss", - "description": "Decreases the target's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2231": { - "name": "Faithlessness Self VII", - "description": "Decreases the caster's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2232": { - "name": "Odif's Boon", - "description": "Increases the target's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2233": { - "name": "Odif's Blessing", - "description": "Increases the caster's Loyalty skill by 40 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2234": { - "name": "Twisted Digits", - "description": "Decreases the target's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2235": { - "name": "Fletching Ineptitude Self VII", - "description": "Decreases the caster's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2236": { - "name": "Lilitha's Boon", - "description": "Increases the target's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2237": { - "name": "Lilitha's Blessing", - "description": "Increases the caster's Fletching skill by 40 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2238": { - "name": "Unsteady Hands", - "description": "Decreases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2239": { - "name": "Healing Ineptitude Self VII", - "description": "Decreases the caster's Healing skill by 40 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2240": { - "name": "Avalenne's Boon", - "description": "Increases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2241": { - "name": "Avalenne's Blessing", - "description": "Increases the caster's Healing skill by 40 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2242": { - "name": "Web of Deflection", - "description": "Increases the target's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2243": { - "name": "Aura of Deflection", - "description": "Increases the caster's Missile Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2244": { - "name": "Web of Defense", - "description": "Increases the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2245": { - "name": "Aura of Defense", - "description": "Increases the caster's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2246": { - "name": "Wrath of Celcynd", - "description": "Decreases the target's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2247": { - "name": "Item Enchantment Ineptitude Self VII", - "description": "Decreases the caster's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2248": { - "name": "Celcynd's Boon", - "description": "Increases the target's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2249": { - "name": "Celcynd's Blessing", - "description": "Increases the caster's Item Enchantment skill by 40 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2250": { - "name": "Yoshi's Boon", - "description": "Increases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2251": { - "name": "Yoshi's Blessing", - "description": "Increases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2252": { - "name": "Unfortunate Appraisal", - "description": "Decreases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2253": { - "name": "Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2254": { - "name": "Feat of Radaz", - "description": "Decreases the target's Jump skill by 40 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2255": { - "name": "Jumping Ineptitude Self VII", - "description": "Decreases the caster's Jump skill by 40 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2256": { - "name": "Jahannan's Boon", - "description": "Increases the target's Jump skill by 40 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2257": { - "name": "Jahannan's Blessing", - "description": "Increases the caster's Jump skill by 40 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2258": { - "name": "Gears Unwound", - "description": "Decreases the target's Run skill by 40 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2259": { - "name": "Leaden Feet Self VII", - "description": "Decreases the caster's Run skill by 40 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2260": { - "name": "Kwipetian Vision", - "description": "Decreases the target's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2261": { - "name": "Leadership Ineptitude Self VII", - "description": "Decreases the caster's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2262": { - "name": "Ar-Pei's Boon", - "description": "Increases the target's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2263": { - "name": "Ar-Pei's Blessing", - "description": "Increases the caster's Leadership skill by 40 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2264": { - "name": "Wrath of Harlune", - "description": "Decreases the target's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2265": { - "name": "Life Magic Ineptitude Self VII", - "description": "Decreases the caster's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2266": { - "name": "Harlune's Boon", - "description": "Increases the target's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2267": { - "name": "Harlune's Blessing", - "description": "Increases the caster's Life Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2268": { - "name": "Fat Fingers", - "description": "Decreases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2269": { - "name": "Lockpick Ineptitude Self VII", - "description": "Decreases the caster's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2270": { - "name": "Oswald's Boon", - "description": "Increases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2271": { - "name": "Oswald's Blessing", - "description": "Increases the caster's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2272": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2273": { - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2274": { - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2275": { - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2276": { - "name": "Celdiseth's Boon", - "description": "Increases the target's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2277": { - "name": "Celdiseth's Blessing", - "description": "Increases the caster's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2278": { - "name": "Eyes Clouded", - "description": "Decreases the target's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2279": { - "name": "Magic Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Magic Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2280": { - "name": "Web of Resistance", - "description": "Increases the target's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2281": { - "name": "Aura of Resistance", - "description": "Increases the caster's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2282": { - "name": "Futility", - "description": "Decreases the target's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2283": { - "name": "Magic Yield Self VII", - "description": "Decreases the caster's Magic Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2284": { - "name": "Inefficient Investment", - "description": "Decreases the target's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2285": { - "name": "Mana Conversion Ineptitude Self VII", - "description": "Decreases the caster's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2286": { - "name": "Nuhmudira's Boon", - "description": "Increases the target's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2287": { - "name": "Nuhmudira's Blessing", - "description": "Increases the caster's Mana Conversion skill by 40 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2288": { - "name": "Topheron's Boon", - "description": "Increases the target's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2289": { - "name": "Topheron's Blessing", - "description": "Increases the caster's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2290": { - "name": "Ignorance's Bliss", - "description": "Decreases the target's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2291": { - "name": "Monster Unfamiliarity Self VII", - "description": "Decreases the caster's Assess Monster skill by 40 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2292": { - "name": "Kaluhc's Boon", - "description": "Increases the target's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2293": { - "name": "Kaluhc's Blessing", - "description": "Increases the caster's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2294": { - "name": "Introversion", - "description": "Decreases the target's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2295": { - "name": "Person Unfamiliarity Self VII", - "description": "Decreases the caster's Assess Person skill by 40 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2296": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2297": { - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2298": { - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2299": { - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2300": { - "name": "Saladur's Boon", - "description": "Increases the target's Run skill by 40 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2301": { - "name": "Saladur's Blessing", - "description": "Increases the caster's Run skill by 40 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2302": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2303": { - "name": "Light Weapon Ineptitude Self VII", - "description": "Decreases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2304": { - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2305": { - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2306": { - "name": "Heavy Weapon Ineptitude Other VII", - "description": "Decreases the target's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2307": { - "name": "Heavy Weapon Ineptitude Self VII", - "description": "Decreases the caster's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2308": { - "name": "Heavy Weapon Mastery Other VII", - "description": "Increases the target's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2309": { - "name": "Heavy Weapon Mastery Self VII", - "description": "Increases the caster's Heavy Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2310": { - "name": "Missile Weapon Ineptitude Other VII", - "description": "Decreases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2311": { - "name": "Missile Weapon Ineptitude Self VII", - "description": "Decreases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2312": { - "name": "Missile Weapon Mastery Other VII", - "description": "Increases the target's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2313": { - "name": "Missile Weapon Mastery Self VII", - "description": "Increases the caster's Missile Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2314": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2315": { - "name": "Light Weapon Mastery Other VII", - "description": "Increases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2316": { - "name": "Light Weapon Mastery Self VII", - "description": "Increases the caster's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2317": { - "name": "Light Weapon Ineptitude Other VII", - "description": "Decreases the target's Light Weapons skill by 40 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2318": { - "name": "Gravity Well", - "description": "Decrease the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2319": { - "name": "Vulnerability Self VII", - "description": "Decrease the target's Melee Defense skill by 40 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2320": { - "name": "Wrath of the Hieromancer", - "description": "Decreases the target's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2321": { - "name": "War Magic Ineptitude Self VII", - "description": "Decreases the caster's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2322": { - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2323": { - "name": "Hieromancer's Blessing", - "description": "Increases the caster's War Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2324": { - "name": "Koga's Boon", - "description": "Increases the target's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2325": { - "name": "Koga's Blessing", - "description": "Increases the caster's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "2326": { - "name": "Eye of the Grunt", - "description": "Decreases the target's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2327": { - "name": "Weapon Tinkering Ignorance Self VII", - "description": "Decreases the caster's Weapon Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2328": { - "name": "Vitality Siphon", - "description": "Drains 50% of the target's Health and gives 50% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "325", - "duration": "-1", - "mana": "60" - }, - "2329": { - "name": "Essence Void", - "description": "Drains 50% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "325", - "duration": "-1", - "mana": "60" - }, - "2330": { - "name": "Vigor Siphon", - "description": "Drains 50% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "325", - "duration": "-1", - "mana": "60" - }, - "2331": { - "name": "Health to Mana Other VII", - "description": "Drains one-half of the target's Health and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2332": { - "name": "Cannibalize", - "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2333": { - "name": "Health to Stamina Other VII", - "description": "Drains one-half of the target's Health and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2334": { - "name": "Self Sacrifice", - "description": "Drains one-half of the caster's Health and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2335": { - "name": "Gift of Vitality", - "description": "Drains one-quarter of the caster's Health and gives 175% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2336": { - "name": "Gift of Essence", - "description": "Drains one-quarter of the caster's Mana and gives 175% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2337": { - "name": "Gift of Vigor", - "description": "Drains one-quarter of the caster's Stamina and gives 175% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2338": { - "name": "Mana to Health Other VII", - "description": "Drains one-half of the target's Mana and gives 175% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2339": { - "name": "Energize Vitality", - "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2340": { - "name": "Mana to Stamina Other VII", - "description": "Drains one-half of the target's Mana and gives 175% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2341": { - "name": "Energize Vigor", - "description": "Drains one-half of the caster's Mana and gives 175% of that to his/her Stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2342": { - "name": "Stamina to Health Other VII", - "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2343": { - "name": "Rushed Recovery", - "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2344": { - "name": "Stamina to Mana Other VII", - "description": "Drains one-half of the target's Stamina and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2345": { - "name": "Meditative Trance", - "description": "Drains one-half of the caster's Stamina and gives 175% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2346": { - "name": "Malediction", - "description": "Decreases maximum mana by 50 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "50", - "duration": "510", - "mana": "70" - }, - "2347": { - "name": "Concentration", - "description": "Increases the caster's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "13", - "difficulty": "100", - "duration": "1000", - "mana": "40" - }, - "2348": { - "name": "Brilliance", - "description": "Increases the target's Focus by 50 points for a short period of time.", - "school": "Creature Enchantment", - "family": "15", - "difficulty": "250", - "duration": "30", - "mana": "60" - }, - "2349": { - "name": "Hieromancer's Ward", - "description": "Improves a shield or piece of armor's armor value by 170 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "190", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2350": { - "name": "Greater Decay Durance", - "description": "Increases a shield or piece of armor's resistance to acid damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "188", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2351": { - "name": "Greater Consumption Durance", - "description": "Increases a shield or piece of armor's resistance to fire damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "186", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2352": { - "name": "Greater Stasis Durance", - "description": "Increases a shield or piece of armor's resistance to cold damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "184", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2353": { - "name": "Greater Stimulation Durance", - "description": "Increases a shield or piece of armor's resistance to electric damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "182", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2354": { - "name": "Lesser Piercing Durance", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "180", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2355": { - "name": "Lesser Slashing Durance", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "178", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2356": { - "name": "Lesser Bludgeoning Durance", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 25%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "176", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2357": { - "name": "Fauna Perlustration", - "description": "Increases the target's Assess Monster skill by 60 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "250", - "duration": "1020", - "mana": "60" - }, - "2358": { - "name": "Lyceum Recall", - "description": "Transports the caster to the Ishilai Lyceum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "2359": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2360": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2361": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2362": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2363": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2364": { - "name": "Egress", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2365": { - "name": "something you're gonna fear for a long time", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2366": { - "name": "Bovine Intervention", - "description": "When Cow gods intervene.....", - "school": "Creature Enchantment", - "family": "237", - "difficulty": "350", - "duration": "-1", - "mana": "300" - }, - "2367": { - "name": "Groovy Portal Sending", - "description": "Sends you on a magical. groove-filled trip....", - "school": "Item Enchantment", - "family": "214", - "difficulty": "2000", - "duration": "-1", - "mana": "50000" - }, - "2368": { - "name": "a powerful force", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2369": { - "name": "Expulsion", - "description": "Transports the target out of Lady Aerfalle's presence.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2370": { - "name": "Gift of Rotting Flesh", - "description": "Increases damage the target takes from Acid by 300%.", - "school": "Life Magic", - "family": "102", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "2371": { - "name": "Curse of Mortal Flesh", - "description": "Increases damage the target takes from Fire by 300%.", - "school": "Life Magic", - "family": "110", - "difficulty": "325", - "duration": "120", - "mana": "50" - }, - "2372": { - "name": "Price of Immortality", - "description": "Prevents all natural healing by the target.", - "school": "Life Magic", - "family": "94", - "difficulty": "275", - "duration": "300", - "mana": "60" - }, - "2373": { - "name": "Enervation of the Heart", - "description": "Decreases maximum health by 50 points.", - "school": "Life Magic", - "family": "68", - "difficulty": "250", - "duration": "60", - "mana": "30" - }, - "2374": { - "name": "Enervation of the Limb", - "description": "Decreases maximum stamina by 50 points.", - "school": "Life Magic", - "family": "82", - "difficulty": "250", - "duration": "60", - "mana": "30" - }, - "2375": { - "name": "Enervation of the Mind", - "description": "Decreases maximum mana by 50 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "50", - "duration": "60", - "mana": "30" - }, - "2376": { - "name": "Glimpse of Annihilation", - "description": "Increases the target's War Magic skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "5", - "duration": "300", - "mana": "10" - }, - "2377": { - "name": "Vision of Annihilation", - "description": "Increases the target's War Magic skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "10", - "duration": "300", - "mana": "10" - }, - "2378": { - "name": "Beast Murmur", - "description": "Increases the target's Creature Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "10", - "duration": "300", - "mana": "10" - }, - "2379": { - "name": "Beast Whisper", - "description": "Increases the target's Creature Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "5", - "duration": "300", - "mana": "10" - }, - "2380": { - "name": "Grip of Instrumentality", - "description": "Increases the target's Item Enchantment skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "1", - "duration": "300", - "mana": "10" - }, - "2381": { - "name": "Touch of Instrumentality", - "description": "Increases the target's Item Enchantment skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "1", - "duration": "300", - "mana": "10" - }, - "2382": { - "name": "Unnatural Persistence", - "description": "Increase caster's natural healing rate by 100%.", - "school": "Life Magic", - "family": "93", - "difficulty": "285", - "duration": "3600", - "mana": "70" - }, - "2383": { - "name": "Dark Flame", - "description": "Shoots a dark flame at the target. The flame does 68-136 points of righteous fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2384": { - "name": "Arcane Restoration", - "description": "Increases the caster's natural mana rate by 100%.", - "school": "Life Magic", - "family": "97", - "difficulty": "285", - "duration": "3600", - "mana": "60" - }, - "2385": { - "name": "Vigilance", - "description": "Increases the rate at which the target regains Stamina by 100%.", - "school": "Life Magic", - "family": "95", - "difficulty": "275", - "duration": "1020", - "mana": "60" - }, - "2386": { - "name": "Indomitability", - "description": "Increase target's natural healing rate by 200%.", - "school": "Life Magic", - "family": "93", - "difficulty": "550", - "duration": "1020", - "mana": "60" - }, - "2387": { - "name": "Determination", - "description": "Increases the target's Focus by 10 points. can be layered with other Focus spells.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2388": { - "name": "Caution", - "description": "Increases the target's Coordination by 10 points. can be layered with other Coordination spells.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2389": { - "name": "Vigor", - "description": "Increases the target's Endurance by 10 points. can be layered with other Endurance spells.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2390": { - "name": "Haste", - "description": "Increases the target's Quickness by 10 points. can be layered with other Quickness spells.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2391": { - "name": "Prowess", - "description": "Increases the target's Strength by 10 points. can be layered with other Strength spells.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2392": { - "name": "Serenity", - "description": "Increases the target's Self by 10 points. can be layered with other Self spells.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "10", - "duration": "150", - "mana": "10" - }, - "2393": { - "name": "Force Armor", - "description": "Increases the caster's natural armor by 75 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2394": { - "name": "Acid Shield", - "description": "Reduces damage the caster takes from acid by 33%.", - "school": "Life Magic", - "family": "101", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2395": { - "name": "Electric Shield", - "description": "Reduces damage the caster takes from Lightning by 33%.", - "school": "Life Magic", - "family": "107", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2396": { - "name": "Flame Shield", - "description": "Reduces damage the caster takes from fire by 33%.", - "school": "Life Magic", - "family": "109", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2397": { - "name": "Ice Shield", - "description": "Reduces damage the caster takes from Cold by 33%.", - "school": "Life Magic", - "family": "105", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2398": { - "name": "Bludgeon Shield", - "description": "Reduces damage the caster takes from Bludgeoning by 33%.", - "school": "Life Magic", - "family": "103", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2399": { - "name": "Piercing Shield", - "description": "Reduces damage the caster takes from Piercing by 33%.", - "school": "Life Magic", - "family": "111", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2400": { - "name": "Slashing Shield", - "description": "Reduces damage the caster takes from Slashing by 33%.", - "school": "Life Magic", - "family": "113", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "2401": { - "name": "Into the Garden", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2402": { - "name": "Essence Lull", - "description": "Reduces the rate at which mana is consumed.", - "school": "Item Enchantment", - "family": "83", - "difficulty": "100", - "duration": "240", - "mana": "30" - }, - "2403": { - "name": "Balanced Breakfast", - "description": "Increases the target's Strength by 35 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "277", - "duration": "10800", - "mana": "60" - }, - "2404": { - "name": "Collector Acid Protection", - "description": "Reduces damage the caster takes from acid by 90%.", - "school": "Life Magic", - "family": "101", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2405": { - "name": "Collector Blade Protection", - "description": "Reduces damage the caster takes from slashing by 90%.", - "school": "Life Magic", - "family": "113", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2406": { - "name": "Collector Bludgeoning Protection", - "description": "Reduces damage the caster takes from bludgeoning by 90%.", - "school": "Life Magic", - "family": "103", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2407": { - "name": "Collector Cold Protection", - "description": "Reduces damage the caster takes from cold by 90%.", - "school": "Life Magic", - "family": "105", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2408": { - "name": "Collector Fire Protection", - "description": "Reduces damage the caster takes from fire by 90%.", - "school": "Life Magic", - "family": "109", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2409": { - "name": "Collector Lightning Protection", - "description": "Reduces damage the caster takes from lightning by 90%.", - "school": "Life Magic", - "family": "107", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2410": { - "name": "Collector Piercing Protection", - "description": "Reduces damage the caster takes from piercing by 90%.", - "school": "Life Magic", - "family": "111", - "difficulty": "300", - "duration": "1800", - "mana": "70" - }, - "2411": { - "name": "Discipline", - "description": "Increases a weapon's damage value by 30 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "450", - "duration": "1020", - "mana": "60" - }, - "2412": { - "name": "Enduring Coordination", - "description": "Increases the target's Coordination by 35 points for three hours.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "310", - "duration": "10800", - "mana": "70" - }, - "2413": { - "name": "Enduring Focus", - "description": "Increases the target's Focus by 35 points for three hours.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "310", - "duration": "10800", - "mana": "70" - }, - "2414": { - "name": "Enduring Stoicism", - "description": "Increases the caster's Endurance by 35 points for three hours.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "310", - "duration": "10800", - "mana": "70" - }, - "2415": { - "name": "Eye of the Hunter", - "description": "Enhances the penetration of arrow shots. adding 25% to the bow's damage modifier.", - "school": "Item Enchantment", - "family": "325", - "difficulty": "25", - "duration": "1020", - "mana": "50" - }, - "2416": { - "name": "High Tension String", - "description": "Enhances the penetration of arrow shots. adding 20% to the bow's damage modifier.", - "school": "Item Enchantment", - "family": "325", - "difficulty": "20", - "duration": "1020", - "mana": "50" - }, - "2417": { - "name": "Obedience", - "description": "Increases the target's Leadership skill by 10 points. This can be combined with other Leadership-enhancing spells.", - "school": "Creature Enchantment", - "family": "293", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2418": { - "name": "Occult Potence", - "description": "Doubles the target's natural mana renewal rate for three hours.", - "school": "Life Magic", - "family": "97", - "difficulty": "310", - "duration": "10800", - "mana": "70" - }, - "2419": { - "name": "Panic Attack", - "description": "Causes the target to quake and shiver uncontrollably.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "200", - "duration": "30", - "mana": "300" - }, - "2420": { - "name": "Panoply of the Queenslayer", - "description": "Increases the target's natural armor by 200 points for three hours.", - "school": "Life Magic", - "family": "115", - "difficulty": "250", - "duration": "10800", - "mana": "70" - }, - "2421": { - "name": "Paralyzing Fear", - "description": "Causes the target to freeze in horror.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "410", - "duration": "30", - "mana": "300" - }, - "2422": { - "name": "Send to Dryreach", - "description": "Transports the target to the town of Dryreach.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2423": { - "name": "Precise", - "description": "This weapon is highly accurate in the hands of a skilled bowman. enchancing skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2424": { - "name": "Rabbit's Eye", - "description": "Increases the target's Focus by 50 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "500", - "duration": "1020", - "mana": "70" - }, - "2425": { - "name": "Stone Wall", - "description": "Increases the caster's Endurance by 50 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "310", - "duration": "1020", - "mana": "70" - }, - "2426": { - "name": "Strong Pull", - "description": "The tension of the bowstring gives this weapon enhanced range when wielded by a skilled bowman.", - "school": "Item Enchantment", - "family": "327", - "difficulty": "200", - "duration": "1020", - "mana": "50" - }, - "2427": { - "name": "Sugar Rush", - "description": "Increases the target's Coordination by 50 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "500", - "duration": "1020", - "mana": "70" - }, - "2428": { - "name": "Timaru's Shelter", - "description": "Increases the target's Magic Defense skill by 10 points. Additional protection can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "10", - "duration": "1800", - "mana": "70" - }, - "2429": { - "name": "Timaru's Shelter", - "description": "Increases the target's natural armor by 30 points. Additional protection can be layered over this.", - "school": "Life Magic", - "family": "295", - "difficulty": "280", - "duration": "1800", - "mana": "70" - }, - "2430": { - "name": "Timaru's Shelter", - "description": "Increases the target's Quickness by 10 points. Additional protection can be layered over this.", - "school": "Creature Enchantment", - "family": "297", - "difficulty": "280", - "duration": "1800", - "mana": "70" - }, - "2431": { - "name": "Vivification", - "description": "Doubles the target's natural healing rate for three hours.", - "school": "Life Magic", - "family": "93", - "difficulty": "290", - "duration": "10800", - "mana": "70" - }, - "2432": { - "name": "Acid Ward", - "description": "Reduces damage the target takes from acid by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "285", - "difficulty": "50", - "duration": "10800", - "mana": "20" - }, - "2433": { - "name": "Flame Ward", - "description": "Reduces damage the target takes from fire by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "20", - "duration": "10800", - "mana": "20" - }, - "2434": { - "name": "Frost Ward", - "description": "Reduces damage the target takes from cold by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "20", - "duration": "10800", - "mana": "20" - }, - "2435": { - "name": "Lightning Ward", - "description": "Reduces damage the target takes from lightning by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "291", - "difficulty": "50", - "duration": "10800", - "mana": "20" - }, - "2436": { - "name": "Laying on of Hands", - "description": "Increases the target's Healing skill by 25 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "100", - "duration": "780", - "mana": "30" - }, - "2437": { - "name": "Greater Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "30", - "duration": "780", - "mana": "60" - }, - "2438": { - "name": "Lesser Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "10", - "duration": "780", - "mana": "60" - }, - "2439": { - "name": "Rockslide", - "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "10", - "duration": "780", - "mana": "60" - }, - "2440": { - "name": "Greater Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 15 points.", - "school": "Creature Enchantment", - "family": "321", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2441": { - "name": "Lesser Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "321", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2442": { - "name": "Stone Cliffs", - "description": "Increases the target's Melee Defense skill by 12 points.", - "school": "Creature Enchantment", - "family": "321", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2443": { - "name": "Greater Strength of Earth", - "description": "Increases the target's Strength by 15 points.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "12", - "duration": "780", - "mana": "40" - }, - "2444": { - "name": "Lesser Strength of Earth", - "description": "Increases the target's Strength by 8 points.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "4", - "duration": "780", - "mana": "40" - }, - "2445": { - "name": "Strength of Earth", - "description": "Increases the target's Strength by 12 points.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "8", - "duration": "780", - "mana": "40" - }, - "2446": { - "name": "Greater Growth", - "description": "Increase the target's natural healing rate by 75%.", - "school": "Life Magic", - "family": "309", - "difficulty": "30", - "duration": "780", - "mana": "30" - }, - "2447": { - "name": "Lesser Growth", - "description": "Increase caster's natural healing rate by 25%.", - "school": "Life Magic", - "family": "309", - "difficulty": "10", - "duration": "780", - "mana": "30" - }, - "2448": { - "name": "Growth", - "description": "Increase the target's natural healing rate by 50%.", - "school": "Life Magic", - "family": "309", - "difficulty": "20", - "duration": "780", - "mana": "30" - }, - "2449": { - "name": "Greater Hunter's Acumen", - "description": "Increases the target's Coordination by 15 points.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2450": { - "name": "Lesser Hunter's Acumen", - "description": "Increases the target's Coordination by 8 points.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "2451": { - "name": "Hunter's Acumen", - "description": "Increases the target's Coordination by 12 points.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2452": { - "name": "Greater Thorns", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "51", - "duration": "780", - "mana": "40" - }, - "2453": { - "name": "Lesser Thorns", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "2", - "duration": "780", - "mana": "40" - }, - "2454": { - "name": "Thorns", - "description": "Increases a weapon's damage value by 3 points.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "4", - "duration": "780", - "mana": "40" - }, - "2455": { - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2456": { - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2457": { - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2458": { - "name": "Greater Cascade", - "description": "Increases the target's Finesse Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2459": { - "name": "Lesser Cascade", - "description": "Increases the target's Finesse Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2460": { - "name": "Cascade", - "description": "Increases the target's Finesse Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2461": { - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2462": { - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2463": { - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2464": { - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2465": { - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2466": { - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2467": { - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2468": { - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "2469": { - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "2470": { - "name": "Greater Still Water", - "description": "Increases the target's Endurance by 15 points.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "2471": { - "name": "Lesser Still Water", - "description": "Increases the target's Endurance by 8 points.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "4", - "duration": "780", - "mana": "30" - }, - "2472": { - "name": "Still Water", - "description": "Increases the target's Endurance by 12 points.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "2473": { - "name": "Greater Torrent", - "description": "Increases the target's Quickness by 15 points.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "12", - "duration": "1800", - "mana": "70" - }, - "2474": { - "name": "Lesser Torrent", - "description": "Increases the target's Quickness by 8 points.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "4", - "duration": "1800", - "mana": "70" - }, - "2475": { - "name": "Torrent", - "description": "Increases the target's Quickness by 12 points.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "8", - "duration": "1800", - "mana": "70" - }, - "2476": { - "name": "Safe Harbor", - "description": "Transports the target to the town of Timaru.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2477": { - "name": "Free Trip to the Aluvian Casino", - "description": "Transports the target to Monty's Den of Iniquity.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2478": { - "name": "Cragstone Reinforcements camp recall", - "description": "Transports the target to the Cragstone Reinforcements Camp portal.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2479": { - "name": "Advance Camp Recall", - "description": "Transports the target to the Cragstone advance camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2480": { - "name": "Free Trip to the Gharun'dim Casino", - "description": "Transports the target to Arshid's Den of Iniquity.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2481": { - "name": "Zaikhal Reinforcement Camp Recall", - "description": "Transports the target to the Zaikhal Reinforcement Camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2482": { - "name": "Zaikhal Advance Camp Recall", - "description": "Transports the target to the Zaikhal Advance Camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2483": { - "name": "Free Trip to the Sho Casino", - "description": "Transports the target to Gan-Zo's Den of Iniquity.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2484": { - "name": "Hebian-to Reinforcements Camp Portal", - "description": "Transports the target to the Hebian-to Reinforcements Camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2485": { - "name": "Hebian-to Advance Camp Recall", - "description": "Transports the target to the Hebian-to Advance Camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2486": { - "name": "Blood Thirst", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2487": { - "name": "Spirit Strike", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2488": { - "name": "Weapon Familiarity", - "description": "The crafter of this weapon is intimately familiar with its handling and suffers no defense penalty while wielding it. Additional magical enhancements can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "2489": { - "name": "Free Ride to the Shoushi Southeast Outpost Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2490": { - "name": "Free Ride to the Holtburg South Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2491": { - "name": "Free Ride to the Holtburg West Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2492": { - "name": "Free Ride to the Shoushi West Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2493": { - "name": "Free Ride to the Yaraq East Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2494": { - "name": "Free Ride to the Yaraq North Outpost", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2495": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2496": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2497": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2498": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2499": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2500": { - "name": "Send Reinforcements", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2501": { - "name": "Major Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "333", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2502": { - "name": "Major Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "335", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2503": { - "name": "Major Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "337", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2504": { - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2505": { - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2506": { - "name": "Major Cooking Prowess", - "description": "Increases the target's Cooking skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "339", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2507": { - "name": "Major Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2508": { - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2509": { - "name": "Major Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2510": { - "name": "Major Deception Prowess", - "description": "Increases the target's Deception skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "343", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2511": { - "name": "Major Fealty", - "description": "Increases the target's Loyalty skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2512": { - "name": "Major Fletching Prowess", - "description": "Increases the target's Fletching skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "347", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2513": { - "name": "Major Healing Prowess", - "description": "Increases the target's Healing skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "349", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2514": { - "name": "Major Impregnability", - "description": "Increases the target's Missile Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "654", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2515": { - "name": "Major Invulnerability", - "description": "Increases the target's Melee Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2516": { - "name": "Major Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2517": { - "name": "Major Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2518": { - "name": "Major Jumping Prowess", - "description": "Increases the target's Jump skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "355", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2519": { - "name": "Major Leadership", - "description": "Increases the target's Leadership skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "293", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2520": { - "name": "Major Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2521": { - "name": "Major Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "359", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2522": { - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2523": { - "name": "Major Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "361", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2524": { - "name": "Major Magic Resistance", - "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2525": { - "name": "Major Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2526": { - "name": "Major Monster Attunement", - "description": "Increases the target's Assess Creature skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "365", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2527": { - "name": "Major Person Attunement", - "description": "Increases the target's Assess Person skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "367", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2528": { - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2529": { - "name": "Major Sprint", - "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2530": { - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2531": { - "name": "Major Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2532": { - "name": "Major Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2533": { - "name": "Major Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2534": { - "name": "Major War Magic Aptitude", - "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2535": { - "name": "Major Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "377", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2536": { - "name": "Minor Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "333", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2537": { - "name": "Minor Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "335", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2538": { - "name": "Minor Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "337", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2539": { - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2540": { - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2541": { - "name": "Minor Cooking Prowess", - "description": "Increases the target's Cooking skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "339", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2542": { - "name": "Minor Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2543": { - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2544": { - "name": "Minor Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2545": { - "name": "Minor Deception Prowess", - "description": "Increases the target's Deception skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "343", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2546": { - "name": "Minor Fealty", - "description": "Increases the target's Loyalty skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2547": { - "name": "Minor Fletching Prowess", - "description": "Increases the target's Fletching skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "347", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2548": { - "name": "Minor Healing Prowess", - "description": "Increases the target's Healing skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "349", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2549": { - "name": "Minor Impregnability", - "description": "Increases the target's Missile Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "654", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2550": { - "name": "Minor Invulnerability", - "description": "Increases the target's Melee Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2551": { - "name": "Minor Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2552": { - "name": "Minor Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2553": { - "name": "Minor Jumping Prowess", - "description": "Increases the target's Jump skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "355", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2554": { - "name": "Minor Leadership", - "description": "Increases the target's Leadership skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "293", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2555": { - "name": "Minor Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2556": { - "name": "Minor Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "359", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2557": { - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2558": { - "name": "Minor Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "361", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2559": { - "name": "Minor Magic Resistance", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2560": { - "name": "Minor Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2561": { - "name": "Minor Monster Attunement", - "description": "Increases the target's Assess Creature skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "365", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2562": { - "name": "Minor Person Attunement", - "description": "Increases the target's Assess Person skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "367", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2563": { - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2564": { - "name": "Minor Sprint", - "description": "Increases the target's Run skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2565": { - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2566": { - "name": "Minor Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2567": { - "name": "Minor Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2568": { - "name": "Minor Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2569": { - "name": "Minor War Magic Aptitude", - "description": "Increases the target's War Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2570": { - "name": "Minor Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "377", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2571": { - "name": "Major Armor", - "description": "Increases the target's natural armor by 40 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "40", - "duration": "780", - "mana": "10" - }, - "2572": { - "name": "Major Coordination", - "description": "Increases the target's Coordination by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2573": { - "name": "Major Endurance", - "description": "Increases the target's Endurance by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2574": { - "name": "Major Focus", - "description": "Increases the target's Focus by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2575": { - "name": "Major Quickness", - "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2576": { - "name": "Major Strength", - "description": "Increases the target's Strength by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2577": { - "name": "Major Willpower", - "description": "Increases the target's Self by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2578": { - "name": "Minor Armor", - "description": "Increases the target's natural armor by 20 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "2579": { - "name": "Minor Coordination", - "description": "Increases the target's Coordination by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2580": { - "name": "Minor Endurance", - "description": "Increases the target's Endurance by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2581": { - "name": "Minor Focus", - "description": "Increases the target's Focus by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2582": { - "name": "Minor Quickness", - "description": "Increases the target's Quickness by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2583": { - "name": "Minor Strength", - "description": "Increases the target's Strength by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2584": { - "name": "Minor Willpower", - "description": "Increases the target's Self by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2585": { - "name": "Major Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "381", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2586": { - "name": "Major Blood Thirst", - "description": "Increases a weapon's damage value by 4 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "2587": { - "name": "Major Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "383", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2588": { - "name": "Major Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2589": { - "name": "Major Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "385", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2590": { - "name": "Major Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "387", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2591": { - "name": "Major Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2592": { - "name": "Major Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 40 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "391", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2593": { - "name": "Major Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "393", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2594": { - "name": "Major Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "395", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2595": { - "name": "Major Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 15%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "397", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2596": { - "name": "Major Swift Hunter", - "description": "Improves a weapon's speed by 20 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "399", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "2597": { - "name": "Minor Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "381", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2598": { - "name": "Minor Blood Thirst", - "description": "Increases a weapon's damage value by 2 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2599": { - "name": "Minor Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "383", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2600": { - "name": "Minor Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2601": { - "name": "Minor Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "385", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2602": { - "name": "Minor Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "387", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2603": { - "name": "Minor Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2604": { - "name": "Minor Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 20 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "391", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2605": { - "name": "Minor Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "393", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2606": { - "name": "Minor Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "395", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2607": { - "name": "Minor Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "397", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2608": { - "name": "Minor Swift Hunter", - "description": "Improves a weapon's speed by 10 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "399", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2609": { - "name": "Major Acid Ward", - "description": "Reduces damage the target takes from Acid by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "285", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2610": { - "name": "Major Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2611": { - "name": "Major Flame Ward", - "description": "Reduces damage the target takes from Fire by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2612": { - "name": "Major Frost Ward", - "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2613": { - "name": "Major Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2614": { - "name": "Major Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "403", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2615": { - "name": "Major Storm Ward", - "description": "Reduces damage the target takes from Lightning by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "291", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "2616": { - "name": "Minor Acid Ward", - "description": "Reduces damage the target takes from Acid by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "285", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2617": { - "name": "Minor Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2618": { - "name": "Minor Flame Ward", - "description": "Reduces damage the target takes from Fire by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2619": { - "name": "Minor Frost Ward", - "description": "Reduces damage the target takes from Cold by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2620": { - "name": "Minor Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2621": { - "name": "Minor Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "403", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2622": { - "name": "Minor Storm Ward", - "description": "Reduces damage the target takes from Lightning by 10%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "291", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "2623": { - "name": "Major Health Gain", - "description": "Increases the rate at which the target regains Health by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "30", - "duration": "780", - "mana": "10" - }, - "2624": { - "name": "Major Mana Gain", - "description": "Increases the rate at which the target regains Mana by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "30", - "duration": "780", - "mana": "10" - }, - "2625": { - "name": "Major Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 30%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "30", - "duration": "780", - "mana": "10" - }, - "2626": { - "name": "Minor Health Gain", - "description": "Increases the rate at which the target regains Health by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2627": { - "name": "Minor Mana Gain", - "description": "Increases the rate at which the target regains Mana by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2628": { - "name": "Minor Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2629": { - "name": "Huntress' Boon", - "description": "Increases the bow's base damage value by 5 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2630": { - "name": "Prey's Reflex", - "description": "Allows the wielder to anticipate the movements of the target. adding 6% to the weapon's attack odds. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "6", - "duration": "780", - "mana": "10" - }, - "2631": { - "name": "Secret Descent", - "description": "Portals Target to Halls of Hollows Dungeon", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2632": { - "name": "Secret Ascent", - "description": "Portals Target to the exit of Halls of Hollows Dungeon", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2633": { - "name": "Breaking and Entering", - "description": "Portals Traget to the Regicide Dungeon", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2634": { - "name": "Cautious Egress", - "description": "Portals target to the Regicide Dungeon Exit", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2635": { - "name": "Witshire Passage", - "description": "Summons a portal to the Witshire Dungeon", - "school": "Item Enchantment", - "family": "214", - "difficulty": "2000", - "duration": "-1", - "mana": "50000" - }, - "2636": { - "name": "Karenua's Curse", - "description": "Decreases the target's Lockpick skill by 40 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "500", - "duration": "900", - "mana": "70" - }, - "2637": { - "name": "Invoking Aun Tanua", - "description": "Summons the Spirit of the Tumerok Warrior Aun Tanua to do 160-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "100" - }, - "2638": { - "name": "Heart of Oak", - "description": "Increases the target's Self by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "13", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2639": { - "name": "Repulsion", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "20", - "duration": "60", - "mana": "30" - }, - "2640": { - "name": "Devourer", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "20", - "duration": "60", - "mana": "30" - }, - "2641": { - "name": "Force to Arms", - "description": "Decreases maximum mana by 100 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "100", - "duration": "60", - "mana": "30" - }, - "2642": { - "name": "Consumption", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "20", - "duration": "60", - "mana": "30" - }, - "2643": { - "name": "Stasis", - "description": "Decreases maximum mana by 20 points.", - "school": "Life Magic", - "family": "284", - "difficulty": "20", - "duration": "60", - "mana": "30" - }, - "2644": { - "name": "Lifestone Tie", - "description": "Links the caster to a targeted Lifestone.", - "school": "Item Enchantment", - "family": "200", - "difficulty": "100", - "duration": "-1", - "mana": "50" - }, - "2645": { - "name": "Portal Recall", - "description": "Transports the caster to the destination of the last recallable portal the caster traveled through.", - "school": "Item Enchantment", - "family": "201", - "difficulty": "100", - "duration": "-1", - "mana": "50" - }, - "2646": { - "name": "Secondary Portal Tie", - "description": "Links the caster to a targeted portal.", - "school": "Item Enchantment", - "family": "200", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "2647": { - "name": "Secondary Portal Recall", - "description": "Transports the caster to the destination of the portal last successfully linked to with Secondary Portal Tie.", - "school": "Item Enchantment", - "family": "201", - "difficulty": "100", - "duration": "-1", - "mana": "50" - }, - "2648": { - "name": "Summon Secondary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "2649": { - "name": "Summon Secondary Portal II", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "225", - "duration": "180", - "mana": "90" - }, - "2650": { - "name": "Summon Secondary Portal III", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Secondary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "250", - "duration": "300", - "mana": "110" - }, - "2651": { - "name": "Portal Sending Self Sacrifice", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2652": { - "name": "Portal Sending Merciless", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2653": { - "name": "Feeble Willpower", - "description": "Increases the target's Self by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2654": { - "name": "Feeble Endurance", - "description": "Increases the target's Endurance by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2655": { - "name": "Feeble Focus", - "description": "Increases the target's Focus by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2656": { - "name": "Feeble Quickness", - "description": "Increases the target's Quickness by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2657": { - "name": "Feeble Strength", - "description": "Increases the target's Strength by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2658": { - "name": "Feeble Coordination", - "description": "Increases the target's Coordination by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2659": { - "name": "Moderate Coordination", - "description": "Increases the target's Coordination by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "10", - "duration": "3600", - "mana": "10" - }, - "2660": { - "name": "Moderate Endurance", - "description": "Increases the target's Endurance by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2661": { - "name": "Moderate Focus", - "description": "Increases the target's Focus by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2662": { - "name": "Moderate Quickness", - "description": "Increases the target's Quickness by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2663": { - "name": "Moderate Strength", - "description": "Increases the target's Strength by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2664": { - "name": "Moderate Willpower", - "description": "Increases the target's Self by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2665": { - "name": "Essence Sluice", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "25", - "duration": "510", - "mana": "70" - }, - "2666": { - "name": "Essence Glutton", - "description": "Increases maximum health by 30 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "30", - "duration": "510", - "mana": "70" - }, - "2667": { - "name": "Essence Spike", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "20", - "duration": "510", - "mana": "70" - }, - "2668": { - "name": "Nuhmudiras Benefaction", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "2669": { - "name": "Nuhmudiras Bestowment", - "description": "Increases the target's Magic Defense skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "2670": { - "name": "Nuhmudiras Endowment", - "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2671": { - "name": "Portal to the Callous Heart", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2672": { - "name": "Ring of True Pain", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "2673": { - "name": "Ring of Unspeakable Agony", - "description": "Shoots eight shock waves outward from the caster. Each wave does 200-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "2674": { - "name": "Vicious Rebuke", - "description": "Kills the target.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2675": { - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2676": { - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2677": { - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2678": { - "name": "Feeble Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2679": { - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2680": { - "name": "Feeble Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2681": { - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2682": { - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2683": { - "name": "Feeble Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2684": { - "name": "Feeble Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2685": { - "name": "Feeble Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "2686": { - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2687": { - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2688": { - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2689": { - "name": "Moderate Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2690": { - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2691": { - "name": "Moderate Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2692": { - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2693": { - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2694": { - "name": "Moderate Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2695": { - "name": "Moderate Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2696": { - "name": "Moderate Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2697": { - "name": "Aerfalle's Touch", - "description": "Decreases all of the target's attributes by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "325", - "duration": "120", - "mana": "300" - }, - "2698": { - "name": "Aerfalle's Embrace", - "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "2699": { - "name": "Auroric Whip", - "description": "Sends a bolt of lightning streaking towards the target. The stream does 150-200 points of lightning damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2700": { - "name": "Corrosive Cloud", - "description": "Sends a cloud of acid streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2701": { - "name": "Elemental Fury", - "description": "Burns the target for 150-200 damage.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2702": { - "name": "Elemental Fury", - "description": "Burns the target for 150-200 damage.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2703": { - "name": "Elemental Fury", - "description": "Disitegrates the target for 150-200 damage.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2704": { - "name": "Elemental Fury", - "description": "Jolts the target for 150-200 damage.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2705": { - "name": "Aerfalle's Enforcement", - "description": "Lowers all fellowship members skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "2706": { - "name": "Aerfalle's Gaze", - "description": "Lowers targets skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "2707": { - "name": "Elemental Pit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2708": { - "name": "Stasis Field", - "description": "Decreases all of the target's attributes by 50 points.", - "school": "Life Magic", - "family": "421", - "difficulty": "50", - "duration": "120", - "mana": "300" - }, - "2709": { - "name": "Summon Primary Portal I", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "2710": { - "name": "Volcanic Blast", - "description": "Sends a stream of magma streaking towards the target. The stream does 150-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2711": { - "name": "Acid Arc I", - "description": "Shoots a stream of acid at the target. The stream does 16-30 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2712": { - "name": "Acid Arc II", - "description": "Shoots a stream of acid at the target. The stream does 26-52 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2713": { - "name": "Acid Arc III", - "description": "Shoots a stream of acid at the target. The stream does 42-84 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2714": { - "name": "Acid Arc IV", - "description": "Shoots a stream of acid at the target. The stream does 52-105 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2715": { - "name": "Acid Arc V", - "description": "Shoots a stream of acid at the target. The stream does 68-136 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2716": { - "name": "Acid Arc VI", - "description": "Shoots a stream of acid at the target. The stream does 84-168 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2717": { - "name": "Acid Arc VII", - "description": "Shoots a stream of acid at the target. The stream does 115-189 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2718": { - "name": "Force Arc I", - "description": "Shoots a bolt of force at the target. The bolt does 16-30 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2719": { - "name": "Force Arc II", - "description": "Shoots a bolt of force at the target. The bolt does 26-52 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2720": { - "name": "Force Arc III", - "description": "Shoots a bolt of force at the target. The bolt does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2721": { - "name": "Force Arc IV", - "description": "Shoots a bolt of force at the target. The bolt does 52-105 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2722": { - "name": "Force Arc V", - "description": "Shoots a bolt of force at the target. The bolt does 68-136 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2723": { - "name": "Force Arc VI", - "description": "Shoots a bolt of force at the target. The bolt does 84-168 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2724": { - "name": "Force Arc VII", - "description": "Shoots a bolt of force at the target. The bolt does 115-189 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2725": { - "name": "Frost Arc I", - "description": "Shoots a bolt of frost at the target. The bolt does 16-30 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2726": { - "name": "Frost Arc II", - "description": "Shoots a bolt of frost at the target. The bolt does 26-52 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2727": { - "name": "Frost Arc III", - "description": "Shoots a bolt of cold at the target. The bolt does 42-84 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2728": { - "name": "Frost Arc IV", - "description": "Shoots a bolt of cold at the target. The bolt does 52-105 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2729": { - "name": "Frost Arc V", - "description": "Shoots a bolt of cold at the target. The bolt does 68-136 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2730": { - "name": "Frost Arc VI", - "description": "Shoots a bolt of cold at the target. The bolt does 84-168 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2731": { - "name": "Frost Arc VII", - "description": "Shoots a bolt of cold at the target. The bolt does 115-189 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2732": { - "name": "Lightning Arc I", - "description": "Shoots a bolt of lighting at the target. The bolt does 16-30 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2733": { - "name": "Lightning Arc II", - "description": "Shoots a bolt of lighting at the target. The bolt does 26-52 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2734": { - "name": "Lightning Arc III", - "description": "Shoots a bolt of lighting at the target. The bolt does 42-84 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2735": { - "name": "Lightning Arc IV", - "description": "Shoots a bolt of lighting at the target. The bolt does 52-105 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2736": { - "name": "Lightning Arc V", - "description": "Shoots a bolt of lighting at the target. The bolt does 68-136 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2737": { - "name": "Lightning Arc VI", - "description": "Shoots a bolt of lighting at the target. The bolt does 84-168 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2738": { - "name": "Lightning Arc VII", - "description": "Shoots a bolt of lighting at the target. The bolt does 115-189 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2739": { - "name": "Flame Arc I", - "description": "Shoots a bolt of flame at the target. The bolt does 16-30 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2740": { - "name": "Flame Arc II", - "description": "Shoots a bolt of flame at the target. The bolt does 26-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2741": { - "name": "Flame Arc III", - "description": "Shoots a bolt of flame at the target. The bolt does 42-84 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2742": { - "name": "Flame Arc IV", - "description": "Shoots a bolt of flame at the target. The bolt does 52-105 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2743": { - "name": "Flame Arc V", - "description": "Shoots a bolt of flame at the target. The bolt does 68-136 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2744": { - "name": "Flame Arc VI", - "description": "Shoots a bolt of flame at the target. The bolt does 84-168 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2745": { - "name": "Flame Arc VII", - "description": "Shoots a bolt of flame at the target. The bolt does 115-189 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2746": { - "name": "Shock Arc I", - "description": "Shoots a shock wave at the target. The wave does 16-30 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2747": { - "name": "Shock Arc II", - "description": "Shoots a shock wave at the target. The wave does 26-52 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2748": { - "name": "Shock Arc III", - "description": "Shoots a shock wave at the target. The wave does 42-84 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2749": { - "name": "Shock Arc IV", - "description": "Shoots a shock wave at the target. The wave does 52-105 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2750": { - "name": "Shock Arc V", - "description": "Shoots a shock wave at the target. The wave does 68-136 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2751": { - "name": "Shock Arc VI", - "description": "Shoots a shock wave at the target. The wave does 84-168 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2752": { - "name": "Shock Arc VII", - "description": "Shoots a shock wave at the target. The wave does 115-189 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2753": { - "name": "Blade Arc I", - "description": "Shoots a magical blade at the target. The bolt does 16-30 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "2754": { - "name": "Blade Arc II", - "description": "Shoots a magical blade at the target. The bolt does 26-52 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "2755": { - "name": "Blade Arc III", - "description": "Shoots a magical blade at the target. The bolt does 42-84 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "2756": { - "name": "Blade Arc IV", - "description": "Shoots a magical blade at the target. The bolt does 52-105 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "2757": { - "name": "Blade Arc V", - "description": "Shoots a magical blade at the target. The bolt does 68-136 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "2758": { - "name": "Blade Arc VI", - "description": "Shoots a magical blade at the target. The bolt does 84-168 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2759": { - "name": "Blade Arc VII", - "description": "Shoots a magical blade at the target. The bolt does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "2760": { - "name": "Martyr's Hecatomb I", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 75% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2761": { - "name": "Martyr's Hecatomb II", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 90% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2762": { - "name": "Martyr's Hecatomb III", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 105% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2763": { - "name": "Martyr's Hecatomb IV", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 125% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2764": { - "name": "Martyr's Hecatomb V", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 150% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2765": { - "name": "Martyr's Hecatomb VI", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 175% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2766": { - "name": "Martyr's Hecatomb VII", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2767": { - "name": "Martyr's Tenacity I", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 75% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2768": { - "name": "Martyr's Tenacity II", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 90% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2769": { - "name": "Martyr's Tenacity III", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 105% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2770": { - "name": "Martyr's Tenacity IV", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 125% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2771": { - "name": "Martyr's Tenacity V", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 150% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2772": { - "name": "Martyr's Tenacity VI", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 175% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2773": { - "name": "Martyr's Tenacity VII", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2774": { - "name": "Martyr's Blight I", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 75% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2775": { - "name": "Martyr's Blight II", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 90% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2776": { - "name": "Martyr's Blight III", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 105% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2777": { - "name": "Martyr's Blight IV", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 125% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2778": { - "name": "Martyr's Blight V", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 150% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2779": { - "name": "Martyr's Blight VI", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 175% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2780": { - "name": "Martyr's Blight VII", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2781": { - "name": "Lesser Elemental Fury", - "description": "Disitegrates the target for 200 points of acid damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "2782": { - "name": "Lesser Elemental Fury", - "description": "Burns the target for 200 points of fire damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "2783": { - "name": "Lesser Elemental Fury", - "description": "Burns the target for 200 points of cold damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "2784": { - "name": "Lesser Elemental Fury", - "description": "Jolts the target for 200 points of electric damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "2785": { - "name": "Lesser Stasis Field", - "description": "Decreases all of the target's attributes by 20 points.", - "school": "Life Magic", - "family": "421", - "difficulty": "20", - "duration": "120", - "mana": "300" - }, - "2786": { - "name": "Madness", - "description": "Wearing the mask makes you feel strange.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "2787": { - "name": "Supremacy", - "description": "Increases the Allegiance Rank by 1.", - "school": "Creature Enchantment", - "family": "529", - "difficulty": "300", - "duration": "60", - "mana": "70" - }, - "2788": { - "name": "Essence Blight", - "description": "Drains 5000 points of the targets Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "2789": { - "name": "Elemental Destruction", - "description": "Drains 8000 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2790": { - "name": "Weight of the World", - "description": "Afflicts the target with the weight of the world.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "275", - "duration": "60", - "mana": "1" - }, - "2791": { - "name": "Rolling Death", - "description": "A giant ball of acid.", - "school": "War Magic", - "family": "117", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2792": { - "name": "Rolling Death", - "description": "A giant ball of fire.", - "school": "War Magic", - "family": "121", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2793": { - "name": "Rolling Death", - "description": "A giant ball of ice.", - "school": "War Magic", - "family": "119", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2794": { - "name": "Rolling Death", - "description": "A giant ball of lightning.", - "school": "War Magic", - "family": "120", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "2795": { - "name": "Citadel Library", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2796": { - "name": "Citadel Surface", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2797": { - "name": "Proving Grounds Rolling Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2798": { - "name": "Proving Grounds High", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2799": { - "name": "Proving Grounds Low", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2800": { - "name": "Proving Grounds Mid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2801": { - "name": "Proving Grounds Extreme", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2802": { - "name": "Proving Grounds High", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2803": { - "name": "Proving Grounds Low", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2804": { - "name": "Proving Grounds Mid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2805": { - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2806": { - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2807": { - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2808": { - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2809": { - "name": "Moderate Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "335", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2810": { - "name": "Moderate Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2811": { - "name": "Moderate Magic Resistance", - "description": "Increases the target's Magic Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2812": { - "name": "Moderate War Magic Aptitude", - "description": "Increases the target's War Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2813": { - "name": "Mount Lethe Recall", - "description": "Transports the caster to the base of Mount Lethe.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "2814": { - "name": "Priest's Curse", - "description": "Casts the Undead Priest's Curse on the target. The bolt does 61-120 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "2815": { - "name": "Boom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2816": { - "name": "Big Boom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2817": { - "name": "Shockwave Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2818": { - "name": "Spiral Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2819": { - "name": "Sparkle Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2820": { - "name": "Blossom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2821": { - "name": "Ring Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2822": { - "name": "Boom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2823": { - "name": "Big Boom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2824": { - "name": "Shockwave Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2825": { - "name": "Spiral Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2826": { - "name": "Sparkle Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2827": { - "name": "Blossom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2828": { - "name": "Ring Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2829": { - "name": "Boom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2830": { - "name": "Big Boom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2831": { - "name": "Shockwave Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2832": { - "name": "Spiral Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2833": { - "name": "Sparkle Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2834": { - "name": "Blossom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2835": { - "name": "Ring Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2836": { - "name": "Boom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2837": { - "name": "Big Boom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2838": { - "name": "Shockwave Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2839": { - "name": "Spiral Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2840": { - "name": "Sparkle Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2841": { - "name": "Blossom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2842": { - "name": "Ring Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2843": { - "name": "Boom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2844": { - "name": "Big Boom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2845": { - "name": "Shockwave Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2846": { - "name": "Spiral Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2847": { - "name": "Sparkle Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2848": { - "name": "Blossom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2849": { - "name": "Ring Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2850": { - "name": "Boom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2851": { - "name": "Big Boom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2852": { - "name": "Shockwave Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2853": { - "name": "Spiral Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2854": { - "name": "Sparkle Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2855": { - "name": "Blossom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2856": { - "name": "Ring Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2857": { - "name": "Boom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2858": { - "name": "Big Boom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2859": { - "name": "Shockwave White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2860": { - "name": "Spiral White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2861": { - "name": "Sparkle White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2862": { - "name": "Blossom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2863": { - "name": "Ring White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2864": { - "name": "Boom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2865": { - "name": "Big Boom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2866": { - "name": "Shockwave Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2867": { - "name": "Spiral Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2868": { - "name": "Sparkle Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2869": { - "name": "Blossom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2870": { - "name": "Ring Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2871": { - "name": "Boom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2872": { - "name": "Big Boom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2873": { - "name": "Shockwave Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2874": { - "name": "Spiral Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2875": { - "name": "Sparkle Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2876": { - "name": "Blossom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2877": { - "name": "Ring Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2878": { - "name": "Boom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2879": { - "name": "Big Boom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2880": { - "name": "Shockwave Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2881": { - "name": "Spiral Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2882": { - "name": "Sparkle Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2883": { - "name": "Blossom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2884": { - "name": "Ring Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2885": { - "name": "Boom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2886": { - "name": "Big Boom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2887": { - "name": "Shockwave Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2888": { - "name": "Spiral Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2889": { - "name": "Sparkle Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2890": { - "name": "Blossom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2891": { - "name": "Ring Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2892": { - "name": "Boom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2893": { - "name": "Big Boom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2894": { - "name": "Shockwave Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2895": { - "name": "Spiral Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2896": { - "name": "Sparkle Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2897": { - "name": "Blossom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2898": { - "name": "Ring Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2899": { - "name": "Boom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2900": { - "name": "Big Boom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2901": { - "name": "Shockwave Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2902": { - "name": "Spiral Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2903": { - "name": "Sparkle Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2904": { - "name": "Blossom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2905": { - "name": "Ring Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2906": { - "name": "Boom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2907": { - "name": "Big Boom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2908": { - "name": "Shockwave Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2909": { - "name": "Spiral Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2910": { - "name": "Sparkle Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2911": { - "name": "Blossom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2912": { - "name": "Ring Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2913": { - "name": "Boom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2914": { - "name": "Big Boom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2915": { - "name": "Shockwave White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2916": { - "name": "Spiral White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2917": { - "name": "Sparkle White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2918": { - "name": "Blossom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2919": { - "name": "Ring White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2920": { - "name": "Boom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2921": { - "name": "Big Boom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "2922": { - "name": "Shockwave Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "2923": { - "name": "Spiral Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "2924": { - "name": "Sparkle Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "2925": { - "name": "Blossom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "2926": { - "name": "Ring Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "2927": { - "name": "Old School Fireworks", - "description": "Original Anniversary Celebration Effect.", - "school": "War Magic", - "family": "409", - "difficulty": "1", - "duration": "-1", - "mana": "15" - }, - "2928": { - "name": "Tusker Hide", - "description": "Increases the target's natural armor by 200 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "250", - "duration": "5400", - "mana": "100" - }, - "2929": { - "name": "Tusker Might", - "description": "Increases the caster's strength by 35.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "276", - "duration": "5400", - "mana": "100" - }, - "2930": { - "name": "Tusker Skin", - "description": "Boosts a piece of armor by 200 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "253", - "duration": "5400", - "mana": "70" - }, - "2931": { - "name": "Recall Aphus Lassel", - "description": "Teleports caster to Aphus Lassel.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "225", - "duration": "-1", - "mana": "150" - }, - "2932": { - "name": "Tusker Leap", - "description": "Boosts casters jump skill by 100 for a short time.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "401", - "duration": "10", - "mana": "100" - }, - "2933": { - "name": "Tusker Sprint", - "description": "Boosts casters run skill by 100 for a short time.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "401", - "duration": "60", - "mana": "100" - }, - "2934": { - "name": "Tusker Fists", - "description": "A hail of tusker fists pummels a clear path ahead of the caster.", - "school": "War Magic", - "family": "230", - "difficulty": "325", - "duration": "-1", - "mana": "120" - }, - "2935": { - "name": "Trial of the Tusker Hero", - "description": "Transports target to Mowen Udaun.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2936": { - "name": "Entrance to Tusker Island", - "description": "Transports target to Tusker Island.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2937": { - "name": "Moderate Impregnability", - "description": "Increases the target's Missile Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "297", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2938": { - "name": "Moderate Invulnerability", - "description": "Increases the target's Melee Defense skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2939": { - "name": "Entering the Temple", - "description": "Transports the target to the Temple of Enlightenment.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2940": { - "name": "Entering the Temple", - "description": "Transports the target to the Temple of Forgetfulness.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2941": { - "name": "Ulgrim's Recall", - "description": "A really really good spell.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "2942": { - "name": "Free Ride to the Abandoned Mine", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2943": { - "name": "Recall to the Singularity Caul", - "description": "Teleports caster to the Singularity Caul.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "225", - "duration": "-1", - "mana": "150" - }, - "2944": { - "name": "Storage Warehouse", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2945": { - "name": "Storage Warehouse", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2946": { - "name": "Moderate Creature Magic Aptitude", - "description": "Increases the target's Creature Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2947": { - "name": "Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 6 or lower from the target. This spell is not affected by mana conversion.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "240" - }, - "2948": { - "name": "Hieromancer's Great Ward", - "description": "Improves a shield or piece of armor's armor value by 220 points. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal.", - "school": "Item Enchantment", - "family": "190", - "difficulty": "200", - "duration": "780", - "mana": "50" - }, - "2949": { - "name": "Lightbringer's Way", - "description": "Enhances the mettle and conviction of a weapon so that the metal bites deeper. The damage of the weapon is increased by 21 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "2950": { - "name": "Maiden's Kiss", - "description": "Enhances the health of the recipient by 30 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "30", - "duration": "510", - "mana": "70" - }, - "2951": { - "name": "Gates of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2952": { - "name": "Courtyard of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2953": { - "name": "Interior Gates of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2954": { - "name": "Barracks Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2955": { - "name": "Forge Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2956": { - "name": "Research Chambers Conveyance", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2957": { - "name": "Seat of Knorr", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2958": { - "name": "Blessing of the Priestess", - "description": "Increases the target's Life Magic skill by 5 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "5", - "duration": "300", - "mana": "10" - }, - "2959": { - "name": "Mark of the Priestess", - "description": "Increases the target's Life Magic skill by 10 points. Additional enchancements to the skill can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "10", - "duration": "300", - "mana": "10" - }, - "2960": { - "name": "Greater Bludgeoning Durance", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "176", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2961": { - "name": "Greater Piercing Durance", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "180", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2962": { - "name": "Greater Slashing Durance", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 100%. This spell resonates in harmony with the natural frequency of Thaumaturgic Plate crystal. allowing additional magical defenses to be layered over it.", - "school": "Item Enchantment", - "family": "178", - "difficulty": "50", - "duration": "360", - "mana": "20" - }, - "2963": { - "name": "Aura of Hunter's Cunning", - "description": "My prey shall know the bite of my steel long before it becomes aware of my presence. Increases the base offense bonus of a weapon by 18%.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "2964": { - "name": "Aura of Hunter's Mark", - "description": "I shall be known by motion and cunning. all shall fear my mark. Increases the Melee Defense skill modifier of a weapon or magic caster by 18%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "2965": { - "name": "Aura of Murderous Intent", - "description": "I shall know my mindset and my prey will learn to fear. Increases the mana conversion bonus of a casting implement by 80%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "2966": { - "name": "Aura of Murderous Thirst", - "description": "I shall drink the blood of my victims and it shall nourish my fevered desire. Increases the base damage of a weapon by 26.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "2967": { - "name": "Aura of The Speedy Hunter", - "description": "My movements shall become as the wind. silent and swift. Decrease the base speed of a weapon by 30.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "2968": { - "name": "Vision of the Hunter", - "description": "I will see with a sight beyond sight. Increases the base damage bonus of a weapon by 18%.", - "school": "Item Enchantment", - "family": "325", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "2969": { - "name": "Mother's Blessing", - "description": "This spell increases the overall health of a character by 25 points. This is not stackable with other effects.", - "school": "Life Magic", - "family": "279", - "difficulty": "25", - "duration": "510", - "mana": "70" - }, - "2970": { - "name": "Hunter's Lash", - "description": "...and the blood shall pour down my throat and sate the thirst. Deals 70-180 points of slashing damage to a player/creatures before resistance is applied.", - "school": "Life Magic", - "family": "137", - "difficulty": "300", - "duration": "-1", - "mana": "60" - }, - "2971": { - "name": "Bullseye", - "description": "Transports the player to the logic test of Oswald's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2972": { - "name": "Oswald's Room", - "description": "Transports target to Oswald's Room", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2973": { - "name": "Access to the Secret Lair", - "description": "Transports the player to Oswald's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2974": { - "name": "Vagabond Passed", - "description": "Transports target to test of fleet feet.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2975": { - "name": "Moderate Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "2976": { - "name": "Acid Spray", - "description": "Sprayed acid from an olthoi egg.", - "school": "War Magic", - "family": "131", - "difficulty": "225", - "duration": "-1", - "mana": "30" - }, - "2977": { - "name": "Portal spell to a hidden place", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2978": { - "name": "Nullify All Magic Other", - "description": "Dispels all enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "375", - "duration": "-1", - "mana": "300" - }, - "2979": { - "name": "Destiny's Wind", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "100", - "duration": "5400", - "mana": "70" - }, - "2980": { - "name": "Endless Vigor", - "description": "Increases maximum stamina by 100 points.", - "school": "Life Magic", - "family": "81", - "difficulty": "350", - "duration": "5400", - "mana": "100" - }, - "2981": { - "name": "Fellowship Heal I", - "description": "Restores 8-15 points of each fellow member.", - "school": "Life Magic", - "family": "67", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "2982": { - "name": "Fellowship Alchemy Mastery I", - "description": "Increases each fellow's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "2983": { - "name": "Fellowship Evaporate Life Magic Self", - "description": "Dispels 1-3 negative Life Magic enchantments of level 1 from each person in the fellowship.", - "school": "Life Magic", - "family": "250", - "difficulty": "50", - "duration": "-1", - "mana": "50" - }, - "2984": { - "name": "Lyceum of Kivik Lir", - "description": "Transports the fellowship to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "2985": { - "name": "Ardence", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "2986": { - "name": "Vim", - "description": "Increases maximum stamina by 15 points.", - "school": "Life Magic", - "family": "81", - "difficulty": "15", - "duration": "5400", - "mana": "100" - }, - "2987": { - "name": "Volition", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "15", - "duration": "5400", - "mana": "70" - }, - "2988": { - "name": "Beaten into Submission", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "2989": { - "name": "Portal to the Bandit Hideout.", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "250", - "duration": "-1", - "mana": "50" - }, - "2990": { - "name": "Knocked Out", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "250", - "duration": "-1", - "mana": "50" - }, - "2991": { - "name": "Winter's Kiss", - "description": "Reduces damage the target takes from Cold by 13%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "13", - "duration": "7200", - "mana": "10" - }, - "2992": { - "name": "Depletion", - "description": "Reduces the total mana of target by half.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "50", - "duration": "30", - "mana": "10" - }, - "2993": { - "name": "Grace of the Unicorn", - "description": "Increases the target's Coordination by 2 points. Additional spells. including cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "413", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "2994": { - "name": "Plague", - "description": "Target's total health is reduces by 50%.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "50", - "duration": "30", - "mana": "10" - }, - "2995": { - "name": "Power of the Dragon", - "description": "Increases the target's Strength by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "414", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "2996": { - "name": "Scourge", - "description": "Target's total stamina is reduced by 50%.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "50", - "duration": "30", - "mana": "10" - }, - "2997": { - "name": "Splendor of the Firebird", - "description": "Increases the target's Focus by 2 points. Additional spells. including cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "415", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "2998": { - "name": "Wrath of the Puppeteer", - "description": "Shoots three bolts of flame toward the target. Each bolt does 40-60 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "2999": { - "name": "Endurance of the Abyss", - "description": "Increases the target's Endurance by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "416", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3000": { - "name": "Ire of the Dark Prince", - "description": "Decreases the target's natural armor by 500 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "500", - "duration": "10", - "mana": "60" - }, - "3001": { - "name": "Puppet String", - "description": "Reduces all target's attributes by 25 for one minute.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "3002": { - "name": "Will of the Quiddity", - "description": "Increases the target's Self by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "417", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3003": { - "name": "Dark Wave", - "description": "Lowers the total health of all fellowship member by half for ten seconds.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "50", - "duration": "10", - "mana": "10" - }, - "3004": { - "name": "Puppet Strings", - "description": "Lowers the attributes of a fellowship by 25 points for one minute.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "3005": { - "name": "Dispersion", - "description": "Enhances the target's base Magic Defense by 1%. this can be layered with other spells.", - "school": "Creature Enchantment", - "family": "420", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "3006": { - "name": "Foresight", - "description": "Enhances the target's base Missile Defense by 1%. other spells can be layered on top of this spell.", - "school": "Creature Enchantment", - "family": "419", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "3007": { - "name": "Uncanny Dodge", - "description": "Enhances the target's base Melee Defense by 1%", - "school": "Creature Enchantment", - "family": "418", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "3008": { - "name": "Finesse", - "description": "Increases the target's Coordination by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "8", - "duration": "780", - "mana": "40" - }, - "3009": { - "name": "Thew", - "description": "Increases the target's Strength by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3010": { - "name": "Zeal", - "description": "Increases the target's Endurance by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3011": { - "name": "Endless Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "40" - }, - "3012": { - "name": "Far Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "40" - }, - "3013": { - "name": "Fruit of the Oasis", - "description": "Increases the rate at which the target regains Health by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "3014": { - "name": "Water of the Oasis", - "description": "Increases the rate at which the target regains Mana by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "3015": { - "name": "Shade of the Oasis", - "description": "Increases the rate at which the target regains Stamina by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "3016": { - "name": "Raptor's Sight", - "description": "Increases the target's Missile Weapons Skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "40" - }, - "3017": { - "name": "Greater Battle Dungeon Sending from Candeth Keep", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3018": { - "name": "Greater Battle Dungeon Sending from Fort Tethana", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3019": { - "name": "Greater Battle Dungeon Sending from Nanto", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3020": { - "name": "Greater Battle Dungeon Sending from Plateau", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3021": { - "name": "Greater Battle Dungeon Sending from Qalabar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3022": { - "name": "Greater Battle Dungeon Sending from Tou-Tou", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3023": { - "name": "Greater Battle Dungeon Sending from Xarabydun", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3024": { - "name": "Greater Battle Dungeon Sending from Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3025": { - "name": "Shriek", - "description": "A howling wail. Does 40-80 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "280", - "duration": "-1", - "mana": "30" - }, - "3026": { - "name": "Lesser Battle Dungeon Sending from Candeth Keep", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3027": { - "name": "Lesser Battle Dungeon Sending from Fort Tethana", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3028": { - "name": "Lesser Battle Dungeon Sending from Nanto", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3029": { - "name": "Lesser Battle Dungeon Sending from Plateau", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3030": { - "name": "Lesser Battle Dungeon Sending from Qalabar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3031": { - "name": "Lesser Battle Dungeon Sending from Tou-Tou", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3032": { - "name": "Lesser Battle Dungeon Sending from Xarabydun", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3033": { - "name": "Lesser Battle Dungeon Sending from Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3034": { - "name": "Benediction of Immortality", - "description": "Increases the target's Health by 7 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "422", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3035": { - "name": "Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 3 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "423", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3036": { - "name": "Cold Grip of the Grave", - "description": "Drains 300 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "500", - "duration": "-1", - "mana": "60" - }, - "3037": { - "name": "Death's Call", - "description": "Drains 40 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "70" - }, - "3038": { - "name": "Death's Embrace", - "description": "Drains 50 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "70" - }, - "3039": { - "name": "Death's Feast", - "description": "Drains 150 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "60" - }, - "3040": { - "name": "Places Death's Kiss upon you.", - "description": "Drains 30 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "70" - }, - "3041": { - "name": "Essence Dissolution", - "description": "Drains 175 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "0" - }, - "3042": { - "name": "Grip of Death", - "description": "Lowers all skills by 99%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "500", - "duration": "60", - "mana": "10" - }, - "3043": { - "name": "Kiss of the Grave", - "description": "Lowers total stamina of each fellowship member by 50%.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "500", - "duration": "120", - "mana": "10" - }, - "3044": { - "name": "Lesser Benediction of Immortality", - "description": "Increases the target's Health by 3 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "422", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3045": { - "name": "Lesser Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 1 point. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "423", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3046": { - "name": "Lesser Mists of Bur", - "description": "Increases the target's natural armor by 195 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "240", - "duration": "3600", - "mana": "50" - }, - "3047": { - "name": "Matron's Barb", - "description": "Drains 250 point of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "500", - "duration": "-1", - "mana": "0" - }, - "3048": { - "name": "Minor Benediction of Immortality", - "description": "Increases the target's Health by 5 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "422", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3049": { - "name": "Minor Closing of the Great Divide", - "description": "Increases the target's Item Enchantment by 2 points. Additional spells. including Cantrips. can be layered over this.", - "school": "Creature Enchantment", - "family": "423", - "difficulty": "500", - "duration": "780", - "mana": "10" - }, - "3050": { - "name": "Minor Mists of Bur", - "description": "Increases the target's natural armor by 205 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "255", - "duration": "1800", - "mana": "50" - }, - "3051": { - "name": "Mire Foot", - "description": "Target's run skill is reduces by 95%.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "500", - "duration": "120", - "mana": "10" - }, - "3052": { - "name": "Mists of Bur", - "description": "Increases the target's natural armor by 230 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "305", - "duration": "1800", - "mana": "50" - }, - "3053": { - "name": "Paralyzing Touch", - "description": "Lowers all attributes by 99%.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "500", - "duration": "60", - "mana": "10" - }, - "3054": { - "name": "Soul Dissolution", - "description": "Drains 750-1000 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "500", - "duration": "-1", - "mana": "70" - }, - "3055": { - "name": "Asphyxiation", - "description": "Lowers the attributes of a target by 30 points for two minutes.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3056": { - "name": "Death's Vice", - "description": "Lowers total health of each fellowship member by 50%.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "500", - "duration": "120", - "mana": "10" - }, - "3057": { - "name": "Enervation", - "description": "Lowers the total stamina of a target by 20% for 2 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3058": { - "name": "Asphyiaxtion", - "description": "Lowers the attributes of a target by 40 points for two minutes.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3059": { - "name": "Enervation", - "description": "Lowers the total stamina of a target by 30% for 2 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3060": { - "name": "Poison Blood", - "description": "Lowers the total health of a target by 30% for 45 seconds.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "45", - "mana": "10" - }, - "3061": { - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 30% for 2 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3062": { - "name": "Asphyxiation", - "description": "Lowers the attributes of a target by 20 points for two minutes.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3063": { - "name": "Enervation", - "description": "Lowers the total stamina of a target by 10% for 2 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3064": { - "name": "Poison Blood", - "description": "Lowers the total health of a target by 10% for 45 seconds.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "45", - "mana": "10" - }, - "3065": { - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 10% for 2 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3066": { - "name": "Lesser Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 100%.", - "school": "Life Magic", - "family": "93", - "difficulty": "255", - "duration": "3600", - "mana": "70" - }, - "3067": { - "name": "Matron's Curse", - "description": "Lowers total mana of each fellowship member by 50%.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "500", - "duration": "120", - "mana": "10" - }, - "3068": { - "name": "Minor Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 125%..", - "school": "Life Magic", - "family": "93", - "difficulty": "310", - "duration": "3600", - "mana": "70" - }, - "3069": { - "name": "Poison Blood", - "description": "Lowers the total health of a target by 20% for 45 seconds.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "45", - "mana": "10" - }, - "3070": { - "name": "Taint Mana", - "description": "Lowers the total mana of a target by 20% for 2 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3071": { - "name": "Ward of Rebirth", - "description": "Increase natural healing rate of all fellowship members by 150%.", - "school": "Life Magic", - "family": "93", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "3072": { - "name": "Hall of the Temple Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3073": { - "name": "Matron's Outer Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3074": { - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 100%.", - "school": "Life Magic", - "family": "104", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3075": { - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 100%.", - "school": "Life Magic", - "family": "114", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3076": { - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 100%.", - "school": "Life Magic", - "family": "102", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3077": { - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 100%.", - "school": "Life Magic", - "family": "110", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3078": { - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 100%.", - "school": "Life Magic", - "family": "112", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3079": { - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 145.", - "school": "Life Magic", - "family": "116", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3080": { - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 190%.", - "school": "Life Magic", - "family": "104", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3081": { - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 190%.", - "school": "Life Magic", - "family": "114", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3082": { - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 190%.", - "school": "Life Magic", - "family": "102", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3083": { - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 190%.", - "school": "Life Magic", - "family": "110", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3084": { - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 190%.", - "school": "Life Magic", - "family": "112", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3085": { - "name": "Bruised Flesh", - "description": "Lowers bludgeoning resistance of a target by 160%.", - "school": "Life Magic", - "family": "104", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3086": { - "name": "Flesh of Cloth", - "description": "Lowers slashing resistance of a target by 160%.", - "school": "Life Magic", - "family": "114", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3087": { - "name": "Exposed Flesh", - "description": "Lowers acid resistance of a target by 160%.", - "school": "Life Magic", - "family": "102", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3088": { - "name": "Flesh of Flint", - "description": "Lowers flame resistance of a target by 160%.", - "school": "Life Magic", - "family": "110", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3089": { - "name": "Weaken Flesh", - "description": "Lowers piercing resistance of a target by 160%.", - "school": "Life Magic", - "family": "112", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3090": { - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 210.", - "school": "Life Magic", - "family": "116", - "difficulty": "300", - "duration": "120", - "mana": "10" - }, - "3091": { - "name": "Thin Skin", - "description": "Lowers the natural armor of a target by 230.", - "school": "Life Magic", - "family": "116", - "difficulty": "332", - "duration": "120", - "mana": "10" - }, - "3092": { - "name": "Lesser Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 180 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "180", - "duration": "3600", - "mana": "70" - }, - "3093": { - "name": "Minor Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 205 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "255", - "duration": "3600", - "mana": "70" - }, - "3094": { - "name": "Skin of the Fiazhat", - "description": "Improves a shield or piece of armor's armor value by 225 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "305", - "duration": "3600", - "mana": "70" - }, - "3095": { - "name": "Crypt of Jexki Ki", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3096": { - "name": "Crypt of Ibrexi Jekti", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3097": { - "name": "Hall of the Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3098": { - "name": "Hall of the Greater Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3099": { - "name": "Hall of the Lesser Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3100": { - "name": "Antechamber of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3101": { - "name": "Crypt of Ixir Zi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3102": { - "name": "Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3103": { - "name": "Crypt of Kixkti Xri", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3104": { - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3105": { - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3106": { - "name": "Hall of the Arbiter", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3107": { - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-210 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3108": { - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-220 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3109": { - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-220 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3110": { - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-220 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3111": { - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-220 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3112": { - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-220 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3113": { - "name": "Flay Soul", - "description": "Shoots a magical blade at the target. The bolt does 100-200 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3114": { - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3115": { - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3116": { - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-200 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3117": { - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-200 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3118": { - "name": "Liquefy Flesh", - "description": "Shoots a stream of acid at the target. The stream does 100-210 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3119": { - "name": "Sear Flesh", - "description": "Shoots a bolt of flame at the target. The bolt does 100-210 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3120": { - "name": "Soul Hammer", - "description": "Shoots a shock wave at the target. The wave does 100-210 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3121": { - "name": "Soul Spike", - "description": "Shoots a bolt of force at the target. The bolt does 100-210 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "500", - "duration": "-1", - "mana": "35" - }, - "3122": { - "name": "Sacrificial Edge", - "description": "Shoots a single blade that deals 100-150 points of piercing damage at the target.", - "school": "War Magic", - "family": "122", - "difficulty": "500", - "duration": "-1", - "mana": "0" - }, - "3123": { - "name": "Sacrificial Edges", - "description": "Shoots three blades that deal 100-150 points of piercing damage at the target.", - "school": "War Magic", - "family": "212", - "difficulty": "500", - "duration": "-1", - "mana": "0" - }, - "3124": { - "name": "Blight Mana", - "description": "Lowers recipient's mana by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "300", - "duration": "300", - "mana": "10" - }, - "3125": { - "name": "EnervateBeing", - "description": "Lowers recipent's Stamina by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "300", - "mana": "10" - }, - "3126": { - "name": "Poison Health", - "description": "Lowers recipient's health by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "300", - "mana": "10" - }, - "3127": { - "name": "Fell Wind", - "description": "Lowers the total stamina of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "500", - "duration": "300", - "mana": "10" - }, - "3128": { - "name": "Infected Blood", - "description": "Lowers the total health of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "500", - "duration": "300", - "mana": "10" - }, - "3129": { - "name": "Infirmed Mana", - "description": "Lowers the total mana of all fellowship members by 20% for 5 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "500", - "duration": "300", - "mana": "10" - }, - "3130": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3131": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3132": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3133": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3134": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3135": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3136": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3137": { - "name": "Halls of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3138": { - "name": "Antechamber of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3139": { - "name": "Liazk Itzi's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3140": { - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3141": { - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3142": { - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3143": { - "name": "Lair of Liazk Itzi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3144": { - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3145": { - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3146": { - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3147": { - "name": "Liazk Itzi Guardians", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3148": { - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3149": { - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3150": { - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3151": { - "name": "Liazk Itzi's Offering Room", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3152": { - "name": "Inferior Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 52%.", - "school": "Life Magic", - "family": "113", - "difficulty": "245", - "duration": "3600", - "mana": "40" - }, - "3153": { - "name": "Lesser Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 45%.", - "school": "Life Magic", - "family": "113", - "difficulty": "195", - "duration": "3600", - "mana": "50" - }, - "3154": { - "name": "Scythe Aegis", - "description": "Reduces damage the target takes from Slashing by 62%.", - "school": "Life Magic", - "family": "113", - "difficulty": "295", - "duration": "3600", - "mana": "60" - }, - "3155": { - "name": "Lesser Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3156": { - "name": "Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3157": { - "name": "Greater Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3158": { - "name": "Superior Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3159": { - "name": "Lesser Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3160": { - "name": "Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3161": { - "name": "Greater Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3162": { - "name": "Superior Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3163": { - "name": "Lesser Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3164": { - "name": "Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3165": { - "name": "Greater Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3166": { - "name": "Superior Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3167": { - "name": "Lesser Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3168": { - "name": "Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3169": { - "name": "Greater Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3170": { - "name": "Superior Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3171": { - "name": "Lesser Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3172": { - "name": "Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3173": { - "name": "Greater Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3174": { - "name": "Superior Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3175": { - "name": "Lesser Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3176": { - "name": "Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3177": { - "name": "Greater Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3178": { - "name": "Superior Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3179": { - "name": "Eradicate All Magic Other", - "description": "Dispels all negative enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3180": { - "name": "Eradicate All Magic Self", - "description": "Dispels all negative enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3181": { - "name": "Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3182": { - "name": "Nullify All Magic Self", - "description": "Dispels 2-6 positive enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3183": { - "name": "Nullify All Magic Self", - "description": "Dispels all enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3184": { - "name": "Eradicate Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3185": { - "name": "Eradicate Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 7 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3186": { - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3187": { - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3188": { - "name": "Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3189": { - "name": "Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3190": { - "name": "Eradicate Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 7 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3191": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3192": { - "name": "Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3193": { - "name": "Eradicate Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3194": { - "name": "Eradicate Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3195": { - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3196": { - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3197": { - "name": "Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3198": { - "name": "Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 6 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "300", - "duration": "-1", - "mana": "300" - }, - "3199": { - "name": "Minor Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "10", - "duration": "1800", - "mana": "10" - }, - "3200": { - "name": "Major Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "20", - "duration": "1800", - "mana": "10" - }, - "3201": { - "name": "Feeble Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 5%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "5", - "duration": "1800", - "mana": "10" - }, - "3202": { - "name": "Moderate Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 15%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "15", - "duration": "1800", - "mana": "10" - }, - "3203": { - "name": "Eradicate All Magic Other", - "description": "Dispels all negative enchantments of level 7 or lower from the target. This spell is not affected by mana conversion.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "3204": { - "name": "Blazing Heart", - "description": "Increases maximum health by 50 points for 4 hours.", - "school": "Life Magic", - "family": "279", - "difficulty": "50", - "duration": "14400", - "mana": "70" - }, - "3205": { - "name": "Good Eating", - "description": "Increases the target's Melee Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "10", - "duration": "14400", - "mana": "10" - }, - "3206": { - "name": "Enliven", - "description": "Increases maximum mana by 100 points for 4 hours.", - "school": "Life Magic", - "family": "283", - "difficulty": "100", - "duration": "14400", - "mana": "70" - }, - "3207": { - "name": "Ore Fire", - "description": "Increases the target's Magic Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "10", - "duration": "14400", - "mana": "10" - }, - "3208": { - "name": "Innervate", - "description": "Increases maximum stamina by 200 points for 4 hours.", - "school": "Life Magic", - "family": "281", - "difficulty": "200", - "duration": "14400", - "mana": "70" - }, - "3209": { - "name": "Refreshment", - "description": "Increases the target's Missile Defense skill by 10 points for 4 hours. Additional spells can be layered over this (excluding other cantrips).", - "school": "Creature Enchantment", - "family": "297", - "difficulty": "10", - "duration": "14400", - "mana": "10" - }, - "3210": { - "name": "Agitate", - "description": "The Shadow Child enrages the target. reducing the target's Strength by 15%.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3211": { - "name": "Annoyance", - "description": "The Shadow Child exasperates the target. reducing the target's Endurance by 15% .", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3212": { - "name": "Guilt Trip", - "description": "The sad tale of the Shadow Child decreases the target's Coordination by 15%.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3213": { - "name": "Heart Ache", - "description": "The sad tale of the Shadow Child decreases the target's Self by 15%.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3214": { - "name": "Sorrow", - "description": "The sad tale of the Shadow Child decreases the target's Focus by 15%.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3215": { - "name": "Underfoot", - "description": "The Shadow Child gets in the target's way. reducing the target's Quickness by 15%.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "350", - "duration": "45", - "mana": "70" - }, - "3216": { - "name": "Transport to the Forbidden Catacombs", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3217": { - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "3218": { - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "3219": { - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "3220": { - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "3221": { - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "3222": { - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "3223": { - "name": "Cascade", - "description": "Increases the target's Mana Conversion skill by 12 points.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "3224": { - "name": "Greater Cascade", - "description": "Increases the target's Mana Conversion skill by 15 points.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "3225": { - "name": "Lesser Cascade", - "description": "Increases the target's Mana Conversion skill by 8 points.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "3226": { - "name": "Cascade", - "description": "Increases the target's Heavy Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "3227": { - "name": "Greater Cascade", - "description": "Increases the target's Heavy Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "3228": { - "name": "Lesser Cascade", - "description": "Increases the target's Heavy Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "3229": { - "name": "Cascade", - "description": "Increases the target's Light Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "3230": { - "name": "Greater Cascade", - "description": "Increases the target's Light Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "3231": { - "name": "Lesser Cascade", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3232": { - "name": "Cascade", - "description": "Increases the target's Missile Weapons skill by 12 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "3233": { - "name": "Greater Cascade", - "description": "Increases the target's Missile Weapons skill by 15 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "3234": { - "name": "Lesser Cascade", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "3235": { - "name": "Dark Power", - "description": "A dark power suffuses your being. increasing your Self by 2.", - "school": "Creature Enchantment", - "family": "417", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "3236": { - "name": "Restorative Draught", - "description": "Restores 60-80 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "200", - "duration": "-1", - "mana": "1000" - }, - "3237": { - "name": "Fanaticism", - "description": "A fervent need for destruction increases your War Magic skill by 2.", - "school": "Creature Enchantment", - "family": "426", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "3238": { - "name": "Portal to Nanner Island", - "description": "Transports the target to Nanner Island.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3239": { - "name": "Insight of the Khe", - "description": "This spell enhances the caster's understanding of the mystical world. Self is raised by 32.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "245", - "duration": "60", - "mana": "60" - }, - "3240": { - "name": "Wisdom of the Khe", - "description": "This spell enhances the caster's knowledge and ability to manipulate the mystical world. Focus is increased by 32.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "245", - "duration": "60", - "mana": "60" - }, - "3241": { - "name": "Flame Burst", - "description": "A burst of superheated air blasts outward from the caster.", - "school": "War Magic", - "family": "226", - "difficulty": "325", - "duration": "-1", - "mana": "80" - }, - "3242": { - "name": "Weave of Chorizite", - "description": "Veins of chorizite serve to raise your magic defense. Magic Defense is raised by 2 points when this item is wielded. This is in addition to any spells and cantrips.", - "school": "Creature Enchantment", - "family": "428", - "difficulty": "265", - "duration": "60", - "mana": "10" - }, - "3243": { - "name": "Consecration", - "description": "The innate magic of the Homunculus enhances your Item Enchantment skill by 2.", - "school": "Creature Enchantment", - "family": "431", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "3244": { - "name": "Divine Manipulation", - "description": "The power to show creatures the way surges through you. Increases your Creature Enchantment skill by 2.", - "school": "Creature Enchantment", - "family": "430", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "3245": { - "name": "Sacrosanct Touch", - "description": "You feel urged to bless the worthy and punish the unworthy. Increases your Life Magic skill by 2.", - "school": "Creature Enchantment", - "family": "429", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "3246": { - "name": "Adja's Benefaction", - "description": "Adja bestows her blessing upon you. increasing your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "257", - "difficulty": "50", - "duration": "60", - "mana": "60" - }, - "3247": { - "name": "Adja's Favor", - "description": "Adja bestows her favor upon you. increasing your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "407", - "difficulty": "50", - "duration": "60", - "mana": "60" - }, - "3248": { - "name": "Adja's Grace", - "description": "Adja bestows her grace upon you. increasing your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "259", - "difficulty": "50", - "duration": "60", - "mana": "60" - }, - "3249": { - "name": "Ghostly Chorus", - "description": "A vision of a ghostly chorus sings to you. lifting your spirits and empowering you. Your rate of Mana Renewal increases by 200% for one hour.", - "school": "Life Magic", - "family": "97", - "difficulty": "1000", - "duration": "3600", - "mana": "60" - }, - "3250": { - "name": "Major Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "3251": { - "name": "Minor Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "3252": { - "name": "Spirit Thirst", - "description": "Increases a caster's damage mod by 0.02 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3253": { - "name": "Aura of Spirit Drinker Self I", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "3254": { - "name": "Aura of Spirit Drinker Self II", - "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "3255": { - "name": "Aura of Spirit Drinker Self III", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "3256": { - "name": "Aura of Spirit Drinker Self IV", - "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3257": { - "name": "Aura of Spirit Drinker Self V", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3258": { - "name": "Aura of Spirit Drinker Self VI", - "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3259": { - "name": "Aura of Infected Spirit Caress", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3260": { - "name": "Spirit Loather I", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "3261": { - "name": "Spirit Loather II", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "3262": { - "name": "Spirit Loather III", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "3263": { - "name": "Spirit Loather IV", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "3264": { - "name": "Spirit Loather V", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "3265": { - "name": "Spirit Loather VI", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "3266": { - "name": "Spirit Pacification", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "3267": { - "name": "Bit Between Teeth", - "description": "This spell decreases the target's Self by 75%.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "285", - "duration": "300", - "mana": "10" - }, - "3268": { - "name": "Biting Bonds", - "description": "Lowers recipient's health by 40% for five minutes.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "285", - "duration": "300", - "mana": "10" - }, - "3269": { - "name": "Under The Lash", - "description": "Decreases the target's armor by 250 points for five minutes.", - "school": "Life Magic", - "family": "116", - "difficulty": "285", - "duration": "300", - "mana": "70" - }, - "3270": { - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3271": { - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3272": { - "name": "Hezhit's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3273": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3274": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3275": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3276": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3277": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3278": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3279": { - "name": "Entrance to Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3280": { - "name": "Return to the Corridor", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3281": { - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3282": { - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3283": { - "name": "Hizk Ri's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3284": { - "name": "Consort Hezhit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3285": { - "name": "Attendant Jrvik", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3286": { - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3287": { - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3288": { - "name": "Well of Tears", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3289": { - "name": "Patriarch Zixki", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3290": { - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3291": { - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3292": { - "name": "Jrvik's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3293": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3294": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3295": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3296": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3297": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3298": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3299": { - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3300": { - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3301": { - "name": "Zixk's Safety", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3302": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3303": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3304": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3305": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3306": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3307": { - "name": "Prison", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3308": { - "name": "Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 62%.", - "school": "Life Magic", - "family": "103", - "difficulty": "295", - "duration": "3600", - "mana": "60" - }, - "3309": { - "name": "Inferior Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 52%.", - "school": "Life Magic", - "family": "103", - "difficulty": "245", - "duration": "3600", - "mana": "40" - }, - "3310": { - "name": "Inferior Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 52%.", - "school": "Life Magic", - "family": "111", - "difficulty": "245", - "duration": "3600", - "mana": "40" - }, - "3311": { - "name": "Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 62%.", - "school": "Life Magic", - "family": "111", - "difficulty": "295", - "duration": "3600", - "mana": "60" - }, - "3312": { - "name": "Lesser Flange Aegis", - "description": "Reduces damage the target takes from Bludgeoning by 45%.", - "school": "Life Magic", - "family": "103", - "difficulty": "195", - "duration": "3600", - "mana": "50" - }, - "3313": { - "name": "Lesser Lance Aegis", - "description": "Reduces damage the target takes from Piercing by 45%.", - "school": "Life Magic", - "family": "111", - "difficulty": "195", - "duration": "3600", - "mana": "50" - }, - "3314": { - "name": "Chained to the Wall", - "description": "Decreases the target's Jump skill by 50% for five minutes.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "285", - "duration": "300", - "mana": "70" - }, - "3315": { - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3316": { - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3317": { - "name": "The Sewer", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3318": { - "name": "Hizk Ri's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3319": { - "name": "Portal to Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3320": { - "name": "Lesser Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 43%.", - "school": "Life Magic", - "family": "101", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3321": { - "name": "Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 50%.", - "school": "Life Magic", - "family": "101", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3322": { - "name": "Greater Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 60%.", - "school": "Life Magic", - "family": "101", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3323": { - "name": "Superior Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 65%.", - "school": "Life Magic", - "family": "101", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3324": { - "name": "Lesser Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 43%.", - "school": "Life Magic", - "family": "113", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3325": { - "name": "Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 50%.", - "school": "Life Magic", - "family": "113", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3326": { - "name": "Greater Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 60%.", - "school": "Life Magic", - "family": "113", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3327": { - "name": "Superior Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 65%.", - "school": "Life Magic", - "family": "113", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3328": { - "name": "Lesser Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 43%.", - "school": "Life Magic", - "family": "103", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3329": { - "name": "Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 50%.", - "school": "Life Magic", - "family": "103", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3330": { - "name": "Greater Flange Ward", - "description": "Reduces damage all fellowship members take from Bludgeoning by 60%.", - "school": "Life Magic", - "family": "103", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3331": { - "name": "Superior Flange Ward", - "description": "Reduces damage all fellowship members from Bludgeoning by 65%.", - "school": "Life Magic", - "family": "103", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3332": { - "name": "Lesser Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 43%.", - "school": "Life Magic", - "family": "105", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3333": { - "name": "Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 50%.", - "school": "Life Magic", - "family": "105", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3334": { - "name": "Greater Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 60%.", - "school": "Life Magic", - "family": "105", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3335": { - "name": "Superior Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 65%.", - "school": "Life Magic", - "family": "105", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3336": { - "name": "Lesser Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 43%.", - "school": "Life Magic", - "family": "109", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3337": { - "name": "Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 50%.", - "school": "Life Magic", - "family": "109", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3338": { - "name": "Greater Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 60%.", - "school": "Life Magic", - "family": "109", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3339": { - "name": "Superior Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 65%.", - "school": "Life Magic", - "family": "109", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3340": { - "name": "Lesser Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 43%.", - "school": "Life Magic", - "family": "107", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3341": { - "name": "Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 50%.", - "school": "Life Magic", - "family": "107", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3342": { - "name": "Greater Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 60%.", - "school": "Life Magic", - "family": "107", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3343": { - "name": "Superior Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 65%.", - "school": "Life Magic", - "family": "107", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3344": { - "name": "Lesser Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 43%.", - "school": "Life Magic", - "family": "111", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3345": { - "name": "Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 50%.", - "school": "Life Magic", - "family": "111", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3346": { - "name": "Greater Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 60%.", - "school": "Life Magic", - "family": "111", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3347": { - "name": "Superior Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 65%.", - "school": "Life Magic", - "family": "111", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3348": { - "name": "Lesser Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3349": { - "name": "Inferior Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3350": { - "name": "Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3351": { - "name": "Potent Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3352": { - "name": "Lesser Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3353": { - "name": "Inferior Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3354": { - "name": "Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3355": { - "name": "Potent Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3356": { - "name": "Lesser Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3357": { - "name": "Inferior Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3358": { - "name": "Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3359": { - "name": "Potent Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3360": { - "name": "Entrance to the Burun Shrine", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3361": { - "name": "The Art of Destruction", - "description": "Increases the target's War Magic skill by 11%.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3362": { - "name": "Blessing of the Horn", - "description": "Increases the target's Magic Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3363": { - "name": "Blessing of the Scale", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3364": { - "name": "Blessing of the Wing", - "description": "Increases the target's Missile Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "297", - "difficulty": "8", - "duration": "780", - "mana": "10" - }, - "3365": { - "name": "Gift of Enhancement", - "description": "Increases the target's Creature Enchantement by 11%.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3366": { - "name": "The Heart's Touch", - "description": "Increases the target's Life Magic skill by 11%.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3367": { - "name": "Leaping Legs", - "description": "Increases the target's Jump skill by 11%.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3368": { - "name": "Mage's Understanding", - "description": "Increases the target's Mana Conversion skill by 11%.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3369": { - "name": "On the Run", - "description": "Increases the target's Run skill by 11%.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3370": { - "name": "Power of Enchantment", - "description": "Increases the target's Item Enchantment skill by 11%.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "351", - "duration": "780", - "mana": "10" - }, - "3371": { - "name": "Greater Life Giver", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "25", - "duration": "510", - "mana": "70" - }, - "3372": { - "name": "Debilitating Spore", - "description": "Drains 5000 points of the target's stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "3373": { - "name": "Diseased Air", - "description": "Drains 5000 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "3374": { - "name": "Kivik Lir's Scorn", - "description": "Drains the target of 99% of their current health.", - "school": "Life Magic", - "family": "80", - "difficulty": "600", - "duration": "-1", - "mana": "10" - }, - "3375": { - "name": "Fungal Bloom", - "description": "Lowers the total health of the target by 50%.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3376": { - "name": "Lesser Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "433", - "difficulty": "1", - "duration": "3600", - "mana": "10" - }, - "3377": { - "name": "Minor Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "433", - "difficulty": "2", - "duration": "3600", - "mana": "10" - }, - "3378": { - "name": "Vision Beyond the Grave", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "433", - "difficulty": "3", - "duration": "3600", - "mana": "10" - }, - "3379": { - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "family": "204", - "difficulty": "30", - "duration": "-1", - "mana": "3" - }, - "3380": { - "name": "Vitae", - "description": "Death sucks", - "school": "Creature Enchantment", - "family": "204", - "difficulty": "30", - "duration": "-1", - "mana": "3" - }, - "3381": { - "name": "Debilitating Spore", - "description": "Drains 5000 points of stamina from each member of a fellowship.", - "school": "Life Magic", - "family": "82", - "difficulty": "375", - "duration": "-1", - "mana": "60" - }, - "3382": { - "name": "Diseased Air", - "description": "Drains 5000 points of mana from each member of a fellowship.", - "school": "Life Magic", - "family": "84", - "difficulty": "375", - "duration": "-1", - "mana": "60" - }, - "3383": { - "name": "Fungal Bloom", - "description": "Lowers total health of each fellowship member by 50%.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3384": { - "name": "Lesser Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3385": { - "name": "Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3386": { - "name": "Greater Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3387": { - "name": "Superior Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3388": { - "name": "Lesser Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3389": { - "name": "Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3390": { - "name": "Greater Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3391": { - "name": "Superior Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3392": { - "name": "Lesser Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3393": { - "name": "Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3394": { - "name": "Greater Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3395": { - "name": "Superior Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3396": { - "name": "Lesser Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3397": { - "name": "Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3398": { - "name": "Greater Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3399": { - "name": "Superior Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3400": { - "name": "Lesser Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 25 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "3401": { - "name": "Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 30 points for 30 minutes.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "3402": { - "name": "Greater Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 35 points for 45 minutes.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "275", - "duration": "2700", - "mana": "60" - }, - "3403": { - "name": "Superior Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 40 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "325", - "duration": "3600", - "mana": "70" - }, - "3404": { - "name": "Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "family": "280", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "3405": { - "name": "Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "family": "432", - "difficulty": "15", - "duration": "3600", - "mana": "10" - }, - "3406": { - "name": "Kivik Lir's Boon", - "description": "Kivik Lir has granted a boon upon you. student. You have 15 minutes to complete the remaining two trials. Do not fail.", - "school": "Creature Enchantment", - "family": "196", - "difficulty": "500", - "duration": "900", - "mana": "10" - }, - "3407": { - "name": "Lesser Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "family": "280", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "3408": { - "name": "Lesser Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "family": "432", - "difficulty": "5", - "duration": "3600", - "mana": "10" - }, - "3409": { - "name": "Minor Evil Thirst", - "description": "The barbs of the Manacale of Biting Pain dig into your wrist. reducing your health.", - "school": "Life Magic", - "family": "280", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "3410": { - "name": "Minor Gift of the Fiazhat", - "description": "The gift of the Fiazhat enhances your magical capacity.", - "school": "Creature Enchantment", - "family": "432", - "difficulty": "10", - "duration": "3600", - "mana": "10" - }, - "3411": { - "name": "Portal spell to a Hidden Chamber", - "description": "Transports the player to Elysa's treasure chamber.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3412": { - "name": "Halls of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3413": { - "name": "Lesser Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3414": { - "name": "Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3415": { - "name": "Greater Arena of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3416": { - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3417": { - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3418": { - "name": "Gallery of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3419": { - "name": "Crypt of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3420": { - "name": "Lesser Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3421": { - "name": "Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3422": { - "name": "Greater Haven of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3423": { - "name": "Trials of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3424": { - "name": "Triumph Against the Trials", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3425": { - "name": "Lyceum of Kivik Lir", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3426": { - "name": "Greater Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-220 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "550", - "duration": "-1", - "mana": "10" - }, - "3427": { - "name": "Lesser Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "350", - "duration": "-1", - "mana": "10" - }, - "3428": { - "name": "Withering", - "description": "Shoots a ring of acidic clouds out from the caster. Each cloud does 100-210 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "450", - "duration": "-1", - "mana": "10" - }, - "3429": { - "name": "Kivik Lir's Venom", - "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. Your natural armor is reduced by 200 points for 1 hour.", - "school": "Life Magic", - "family": "116", - "difficulty": "9999", - "duration": "3600", - "mana": "10" - }, - "3430": { - "name": "Inferior Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 52%.", - "school": "Life Magic", - "family": "101", - "difficulty": "245", - "duration": "3600", - "mana": "40" - }, - "3431": { - "name": "Lesser Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 45%.", - "school": "Life Magic", - "family": "101", - "difficulty": "195", - "duration": "3600", - "mana": "40" - }, - "3432": { - "name": "Scourge Aegis", - "description": "Reduces damage the target takes from Acid by 62%.", - "school": "Life Magic", - "family": "101", - "difficulty": "295", - "duration": "3600", - "mana": "40" - }, - "3433": { - "name": "Decay", - "description": "The Spirit of Kivik Lir curses you for despoiling her tomb. You can no longer recover health naturally for 1 hour.", - "school": "Life Magic", - "family": "94", - "difficulty": "9999", - "duration": "3600", - "mana": "70" - }, - "3434": { - "name": "Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "434", - "difficulty": "3", - "duration": "3600", - "mana": "10" - }, - "3435": { - "name": "Greater Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 50%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3436": { - "name": "Lesser Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "434", - "difficulty": "1", - "duration": "3600", - "mana": "10" - }, - "3437": { - "name": "Lesser Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 10%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3438": { - "name": "Minor Eyes Beyond the Mist", - "description": "Enhances your understanding of the flux between worlds.", - "school": "Creature Enchantment", - "family": "434", - "difficulty": "2", - "duration": "3600", - "mana": "10" - }, - "3439": { - "name": "Mucor Blight", - "description": "An explosion of fungal spores swirls in the air. reducing all your skills by 20%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3440": { - "name": "Health of the Lugian", - "description": "Increase target's natural healing rate by 125%.", - "school": "Life Magic", - "family": "93", - "difficulty": "311", - "duration": "7200", - "mana": "10" - }, - "3441": { - "name": "Insight of the Lugian", - "description": "Increases the target's natural mana rate by 125%.", - "school": "Life Magic", - "family": "97", - "difficulty": "351", - "duration": "7200", - "mana": "10" - }, - "3442": { - "name": "Stamina of the Lugian", - "description": "Increases the rate at which the target regains Stamina by 125%.", - "school": "Life Magic", - "family": "95", - "difficulty": "351", - "duration": "7200", - "mana": "10" - }, - "3443": { - "name": "Blight of the Swamp", - "description": "The vile nature of the swamp swells within your body. you are afflicted with all manner of ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "327", - "duration": "60", - "mana": "10" - }, - "3444": { - "name": "Justice of The Sleeping One", - "description": "This spell attempts to rip all positive creature magic from a single target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3445": { - "name": "The Sleeping One's Purge", - "description": "This spell attempts to rip all positive creature magic from a single target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3446": { - "name": "Wrath of the Swamp", - "description": "The vile nature of the swamp swells within you and each of your companions. you are all afflicted with ill feelings and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "327", - "duration": "60", - "mana": "10" - }, - "3447": { - "name": "Asphyxiating Spore Cloud", - "description": "A small cloud of spores surrounds you and your fellowship choking the vigor from your bodies. Causes stamina loss over time.", - "school": "Life Magic", - "family": "96", - "difficulty": "326", - "duration": "60", - "mana": "70" - }, - "3448": { - "name": "Mass Blood Affliction", - "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes health damage over time.", - "school": "Life Magic", - "family": "94", - "difficulty": "326", - "duration": "60", - "mana": "70" - }, - "3449": { - "name": "Mass Blood Disease", - "description": "Pain wracks your body and the bodies of your fellowship members as painful spores burrow into your flesh and enter your blood stream. Causes a large amount of damage over time.", - "school": "Life Magic", - "family": "94", - "difficulty": "325", - "duration": "40", - "mana": "70" - }, - "3450": { - "name": "Cloud of Mold Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body. Stamina degenerates over time.", - "school": "Life Magic", - "family": "96", - "difficulty": "325", - "duration": "40", - "mana": "70" - }, - "3451": { - "name": "Concussive Belch", - "description": "The creature let's out a violent belch that is laden with magical force. It damages a single target for 120-220 of bludgeon Damage.", - "school": "War Magic", - "family": "118", - "difficulty": "350", - "duration": "-1", - "mana": "5" - }, - "3452": { - "name": "Concussive Wail", - "description": "The creature let's out a violent wail that is laden with magical force. It sends a ring of damage around it dealing 80 ?ร‡รด 200 damage bludgeoning damage.", - "school": "War Magic", - "family": "223", - "difficulty": "350", - "duration": "-1", - "mana": "10" - }, - "3453": { - "name": "Feelun Blight", - "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 -220 of fire damage.", - "school": "War Magic", - "family": "226", - "difficulty": "350", - "duration": "-1", - "mana": "10" - }, - "3454": { - "name": "Wrath of the Feelun", - "description": "The creature summons the power of the mighty feelun tree and coalesces it into a blast of fire against a single target. It damages a single target for 120 - 220 of fire damage.", - "school": "War Magic", - "family": "121", - "difficulty": "350", - "duration": "-1", - "mana": "5" - }, - "3455": { - "name": "Koruu Cloud", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. The spells deals 80 ?ร‡รด 200 damage of cold damage with each bolt.", - "school": "War Magic", - "family": "224", - "difficulty": "350", - "duration": "-1", - "mana": "10" - }, - "3456": { - "name": "Koruu's Wrath", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. 120 - 220 of cold damage.", - "school": "War Magic", - "family": "119", - "difficulty": "350", - "duration": "-1", - "mana": "5" - }, - "3457": { - "name": "Mana Bolt", - "description": "The creature launch a blast of pure mana at a single target dealing 50 ?ร‡รด 100 damage.", - "school": "War Magic", - "family": "118", - "difficulty": "350", - "duration": "-1", - "mana": "5" - }, - "3458": { - "name": "Mana Purge", - "description": "The creature launch a blast of pure mana in a ring around itself dealing 50 ?ร‡รด 100 damage with each bolt.", - "school": "War Magic", - "family": "223", - "difficulty": "350", - "duration": "-1", - "mana": "80" - }, - "3459": { - "name": "Mucor Cloud", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to all around. This speall deals 80 ?ร‡รด 200 damage acid damage with each bolt.", - "school": "War Magic", - "family": "131", - "difficulty": "350", - "duration": "-1", - "mana": "10" - }, - "3460": { - "name": "Dissolving Vortex", - "description": "A cloud of spores launches out of the creature inflicting powerful damage to a target. Deals 120 - 220 acid damage to a single target.", - "school": "War Magic", - "family": "131", - "difficulty": "350", - "duration": "-1", - "mana": "5" - }, - "3461": { - "name": "Batter Flesh", - "description": "Target's flesh is left open and vulnerable to bludgeoning attacks. Increases damage the target takes from Bludgeoning by 200%.", - "school": "Life Magic", - "family": "104", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3462": { - "name": "Canker Flesh", - "description": "Target's flesh is left open and vulnerable to acid attacks. Increases damage the target takes from acid by 200%.", - "school": "Life Magic", - "family": "102", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3463": { - "name": "Char Flesh", - "description": "Target's flesh is left open and vulnerable to fire attacks. Increases damage the target takes from fire by 200%.", - "school": "Life Magic", - "family": "110", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3464": { - "name": "Numb Flesh", - "description": "Target's flesh is left open and vulnerable to cold attacks. Increases damage the target takes from Cold by 200%.", - "school": "Life Magic", - "family": "106", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3465": { - "name": "Blood Affliction", - "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.", - "school": "Life Magic", - "family": "94", - "difficulty": "326", - "duration": "600", - "mana": "10" - }, - "3466": { - "name": "Blood Disease", - "description": "Pain wracks your body as painful spores burrow into your flesh and enter your blood stream.", - "school": "Life Magic", - "family": "94", - "difficulty": "325", - "duration": "40", - "mana": "10" - }, - "3467": { - "name": "Choking Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body.", - "school": "Life Magic", - "family": "96", - "difficulty": "326", - "duration": "600", - "mana": "10" - }, - "3468": { - "name": "Mold Spores", - "description": "A small cloud of spores pours into your lungs choking the vigor from your body.", - "school": "Life Magic", - "family": "96", - "difficulty": "326", - "duration": "40", - "mana": "10" - }, - "3469": { - "name": "Parasitic Affliction", - "description": "A host of parasites burrow into your flesh and begin to devour you from within your own blood. The healthier you are. the more potent these parasites become.", - "school": "Life Magic", - "family": "94", - "difficulty": "326", - "duration": "300", - "mana": "10" - }, - "3470": { - "name": "Lesser Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 55% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "family": "97", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3471": { - "name": "The Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 70% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "family": "97", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3472": { - "name": "Greater Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 85% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "family": "97", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3473": { - "name": "Superior Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "family": "97", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3474": { - "name": "Lesser Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 55% increase to their natural health recovery rate.", - "school": "Life Magic", - "family": "93", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3475": { - "name": "The Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 70% increase to their natural health recovery rate.", - "school": "Life Magic", - "family": "93", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3476": { - "name": "Greater Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 85% increase to their natural health recovery rate.", - "school": "Life Magic", - "family": "93", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3477": { - "name": "Superior Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.", - "school": "Life Magic", - "family": "93", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3478": { - "name": "Lesser Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 55% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "family": "95", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3479": { - "name": "The Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 70% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "family": "95", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3480": { - "name": "Greater Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 85% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "family": "95", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3481": { - "name": "Superior Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "family": "95", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3482": { - "name": "Izji Qo's Antechamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3483": { - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3484": { - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3485": { - "name": "Izji Qo's Defenders", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3486": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3487": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3488": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3489": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3490": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3491": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3492": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3493": { - "name": "Into the Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3494": { - "name": "Izji Qo's Crypt", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3495": { - "name": "Izji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3496": { - "name": "Inzji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3497": { - "name": "Izji Qo's Test", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3498": { - "name": "Disintegrated", - "description": "Transports the target to the last Lifestone he or she used.", - "school": "Item Enchantment", - "family": "215", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3499": { - "name": "Arcanum Salvaging Self I", - "description": "Increases the caster's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "3500": { - "name": "Arcanum Salvaging Self II", - "description": "Increases the caster's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "3501": { - "name": "Arcanum Salvaging Self III", - "description": "Increases the caster's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "3502": { - "name": "Arcanum Salvaging Self IV", - "description": "Increases the caster's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "3503": { - "name": "Arcanum Salvaging Self V", - "description": "Increases the caster's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "3504": { - "name": "Arcanum Salvaging Self VI", - "description": "Increases the caster's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "3505": { - "name": "Arcanum Salvaging VII", - "description": "Increases the caster's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3506": { - "name": "Arcanum Enlightenment I", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "3507": { - "name": "Arcanum Enlightenment II", - "description": "Increases the target's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "3508": { - "name": "Arcanum Enlightenment III", - "description": "Increases the target's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "3509": { - "name": "Arcanum Enlightenment IV", - "description": "Increases the target's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3510": { - "name": "Arcanum Enlightenment V", - "description": "Increases the target's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3511": { - "name": "Arcanum Enlightenment VI", - "description": "Increases the target's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3512": { - "name": "Arcanum Enlightenment VII", - "description": "Increases the target's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3513": { - "name": "Nuhmudira's Wisdom I", - "description": "Increases the caster's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "3514": { - "name": "Nuhmudira's Wisdom II", - "description": "Increases the caster's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "3515": { - "name": "Nuhmudira's Wisdom III", - "description": "Increases the caster's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "3516": { - "name": "Nuhmudira's Wisdom IV", - "description": "Increases the caster's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "3517": { - "name": "Nuhmudira's Wisdom V", - "description": "Increases the caster's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "3518": { - "name": "Nuhmudira's Wisdom VI", - "description": "Increases the caster's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "3519": { - "name": "Nuhmudira's Wisdom VII", - "description": "Increases the caster's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3520": { - "name": "Nuhmudira's Enlightenment I", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "3521": { - "name": "Nuhmudira's Enlightenment II", - "description": "Increases the target's Salvaging skill by 15 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "3522": { - "name": "Nuhmudira's Enlightenment III", - "description": "Increases the target's Salvaging skill by 20 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "3523": { - "name": "Nuhmudira's Enlightenment IV", - "description": "Increases the target's Salvaging skill by 25 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "3524": { - "name": "Nuhmudira's Enlightenment V", - "description": "Increases the target's Salvaging skill by 30 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "3525": { - "name": "Nuhmudira Enlightenment VI", - "description": "Increases the target's Salvaging skill by 35 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "3526": { - "name": "Nuhmudira's Enlightenment", - "description": "Increases the target's Salvaging skill by 40 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "3527": { - "name": "Intoxication I", - "description": "Decreases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "130", - "duration": "300", - "mana": "50" - }, - "3528": { - "name": "Intoxication II", - "description": "Decreases the target's Coordination by 30 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "230", - "duration": "300", - "mana": "50" - }, - "3529": { - "name": "Intoxication III", - "description": "Decreases the target's Coordination by 40 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "330", - "duration": "300", - "mana": "50" - }, - "3530": { - "name": "Ketnan's Eye", - "description": "Increases the target's Focus by 50 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "420", - "duration": "1800", - "mana": "50" - }, - "3531": { - "name": "Bobo's Quickening", - "description": "Increases the caster's Quickness by 50 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "420", - "duration": "1800", - "mana": "70" - }, - "3532": { - "name": "Bobo's Focused Blessing", - "description": "Increases the target's Focus by 25 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "140", - "duration": "300", - "mana": "50" - }, - "3533": { - "name": "Brighteyes' Favor", - "description": "Increases the caster's Coordination by 50 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "420", - "duration": "1800", - "mana": "60" - }, - "3534": { - "name": "Free Ride to the K'nath Lair", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3535": { - "name": "Free Ride to Sanamar", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3536": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3537": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3538": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3539": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3540": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3541": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3542": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3543": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3544": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3545": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3546": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3547": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3548": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3549": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3550": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3551": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3552": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3553": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3554": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3555": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3556": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3557": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3558": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3559": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3560": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3561": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3562": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3563": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3564": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3565": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3566": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3567": { - "name": "Fiun Flee", - "description": "Increases the target's Run skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "515", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "3568": { - "name": "Fiun Efficiency", - "description": "Increases the target's Mana Conversion skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "516", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "3569": { - "name": "Mana Boost", - "description": "Raises mana by 10% for 30 minutes.", - "school": "Creature Enchantment", - "family": "412", - "difficulty": "300", - "duration": "1800", - "mana": "10" - }, - "3570": { - "name": "Stamina Boost", - "description": "Raises Stamina by 10% for 30 minutes.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "1800", - "mana": "10" - }, - "3571": { - "name": "Health Boost", - "description": "Raises health by 10% for 30 minutes.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "1800", - "mana": "10" - }, - "3572": { - "name": "Inner Brilliance", - "description": "Raises target's Focus by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3573": { - "name": "Inner Might", - "description": "Raises target's Strength by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3574": { - "name": "Inner Will", - "description": "Raises target's Self by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3575": { - "name": "Perfect Balance", - "description": "Raises target's Coordination by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3576": { - "name": "Perfect Health", - "description": "Raises target's Endurance by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3577": { - "name": "Perfect Speed", - "description": "Raises target's Quickness by 12 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3578": { - "name": "Depths of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3579": { - "name": "Underpassage of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3580": { - "name": "Center of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3581": { - "name": "Secrets of Liazk Itzi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3582": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3583": { - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3584": { - "name": "Qin Xikit's Receiving Chamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3585": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3586": { - "name": "Qin Xikit's Antechamber", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3587": { - "name": "Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3588": { - "name": "Secrets of Qin Xikit's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3589": { - "name": "Qin Xikit's Tomb", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3590": { - "name": "Regurgitated!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3591": { - "name": "Access to Xi Ru's Font", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3592": { - "name": "Qin Xikit's Island", - "description": "Summons a portal to Qin Xikit's Island.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "351", - "duration": "900", - "mana": "110" - }, - "3593": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3594": { - "name": "Underpassage of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3595": { - "name": "Underpassage of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3596": { - "name": "Center of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3597": { - "name": "Secrets of Hizk Ri's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3598": { - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3599": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3600": { - "name": "Depths of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3601": { - "name": "Underpassage of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3602": { - "name": "Center of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3603": { - "name": "Secrets of Ixir Zi's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3604": { - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3605": { - "name": "Portal to Cragstone", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3606": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3607": { - "name": "Depth's of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3608": { - "name": "Underpassage of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3609": { - "name": "Center of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3610": { - "name": "Secrets of Izji Qo's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3611": { - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3612": { - "name": "Eaten!", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3613": { - "name": "Regurgitated", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3614": { - "name": "Underpassage of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3615": { - "name": "Center of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3616": { - "name": "Secrets of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3617": { - "name": "Depths of Kivik Lir's Temple", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3618": { - "name": "Portal to Western Aphus Lassel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3619": { - "name": "Portal to the Black Death Catacombs", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3620": { - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3621": { - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3622": { - "name": "Portal to Black Spawn Den", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3623": { - "name": "Portal to Center of the Obsidian Plains", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3624": { - "name": "Portal to Hills Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3625": { - "name": "Portal to the Kara Wetlands", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3626": { - "name": "Portal to the Marescent Plateau Base", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3627": { - "name": "Portal to Neydisa Castle", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3628": { - "name": "Portal to the Northern Landbridge", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3629": { - "name": "Portal to the Olthoi Horde Nest", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3630": { - "name": "Portal to the Olthoi North", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3631": { - "name": "Portal to the Renegade Fortress", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3632": { - "name": "Portal to Ridge Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3633": { - "name": "Portal to the Southern Landbridge", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3634": { - "name": "Portal To Valley of Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3635": { - "name": "Portal to Wilderness Citadel", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3636": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3637": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3638": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3639": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3640": { - "name": "Enchanter's Boon", - "description": "Increases the target's Creature Enchantment skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "430", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3641": { - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "426", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3642": { - "name": "Fencer's Boon", - "description": "Increases the target's Finesse Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "442", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3643": { - "name": "Life Giver's Boon", - "description": "Increases the target's Life Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "429", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3644": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3645": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3646": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3647": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3648": { - "name": "Soldier's Boon", - "description": "Increases the target's Heavy Weapons skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "447", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "3649": { - "name": "Aerfalle's Embrace", - "description": "Decreases the attributes of all fellowship members by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "3650": { - "name": "Aerfalle's Enforcement", - "description": "Lowers all fellowship members skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "3651": { - "name": "Aerfalle's Gaze", - "description": "Lowers target's skills by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "325", - "duration": "120", - "mana": "70" - }, - "3652": { - "name": "Aerfalle's Touch", - "description": "Decreases all of the target's attributes by 45 points for 120 seconds.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "325", - "duration": "120", - "mana": "300" - }, - "3653": { - "name": "Acid Blast III", - "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3654": { - "name": "Acid Volley I", - "description": "Shoots three streams of acid toward the target. Each stream does 4-10 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "3655": { - "name": "Acid Volley II", - "description": "Shoots three streams of acid toward the target. Each stream does 8-16 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3656": { - "name": "Blade Blast III", - "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3657": { - "name": "Blade Blast IV", - "description": "Shoots three whirling blades outward from the caster. Each blade does 11-21 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3658": { - "name": "Blade Volley I", - "description": "Shoots three whirling blades toward the target. Each blade does 4-10 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "3659": { - "name": "Blade Volley II", - "description": "Shoots three whirling blades toward the target. Each blade does 8-16 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "175", - "duration": "-1", - "mana": "10" - }, - "3660": { - "name": "Bludgeoning Volley I", - "description": "Shoots three shock waves toward the target. Each wave does 4-10 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3661": { - "name": "Bludgeoning Volley II", - "description": "Shoots three shock waves toward the target. Each wave does 8-16 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3662": { - "name": "Flame Blast I", - "description": "Shoots three streams of acid toward the target. Each stream does 11-21 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "75", - "duration": "-1", - "mana": "40" - }, - "3663": { - "name": "Flame Volley III", - "description": "Shoots three bolts of flame toward the target. Each bolt does 4-10 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3664": { - "name": "Flame Volley IV", - "description": "Shoots three bolts of flame toward the target. Each bolt does 8-16 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3665": { - "name": "Force Blast III", - "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3666": { - "name": "Force Blast IV", - "description": "Shoots three force bolts outward from the caster. Each bolt does 11-21 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3667": { - "name": "Force Volley III", - "description": "Shoots three bolts of force toward the target. Each bolt does 4-10 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3668": { - "name": "Force Volley IV", - "description": "Shoots three bolts of force toward the target. Each bolt does 8-16 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3669": { - "name": "Frost Blast III", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3670": { - "name": "Frost Blast IV", - "description": "Shoots three bolts of frost outward from the caster. Each bolt does 11-21 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3671": { - "name": "Frost Volley III", - "description": "Shoots three bolts of frost toward the target. Each bolt does 4-10 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3672": { - "name": "Frost Volley IV", - "description": "Shoots three bolts of frost toward the target. Each bolt does 8-16 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3673": { - "name": "Lightning Blast III", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3674": { - "name": "Lightning Blast IV", - "description": "Shoots three bolts of lightning outward from the caster. Each bolt does 11-21 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3675": { - "name": "Lightning Volley III", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 4-10 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3676": { - "name": "Lightning Volley IV", - "description": "Shoots three bolts of lightning toward the target. Each bolt does 8-16 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3677": { - "name": "Shock Blast III", - "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "3678": { - "name": "Shock Blast IV", - "description": "Shoots three shock waves outward from the caster. Each wave does 11-21 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "3679": { - "name": "Prodigal Acid Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "449", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3680": { - "name": "Prodigal Acid Protection", - "description": "Reduces damage the caster takes from acid by 99.9%.", - "school": "Life Magic", - "family": "448", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3681": { - "name": "Prodigal Alchemy Mastery", - "description": "Increases the caster's Alchemy skill by 250 points.", - "school": "Creature Enchantment", - "family": "450", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3682": { - "name": "Prodigal Arcane Enlightenment", - "description": "Increases the caster's Arcane Lore skill by 250 points.", - "school": "Creature Enchantment", - "family": "456", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3683": { - "name": "Prodigal Armor Expertise", - "description": "Increases the caster's Armor Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "family": "452", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3684": { - "name": "Prodigal Armor", - "description": "Increases the caster's natural armor by 1000 points.", - "school": "Life Magic", - "family": "457", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3685": { - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3686": { - "name": "Prodigal Blade Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "503", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3687": { - "name": "Prodigal Blade Protection", - "description": "Reduces damage the caster takes from Slashing by 99.9%.", - "school": "Life Magic", - "family": "502", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3688": { - "name": "Prodigal Blood Drinker", - "description": "Increases a weapon's damage value by 50 points.", - "school": "Item Enchantment", - "family": "473", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3689": { - "name": "Prodigal Bludgeon Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "464", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3690": { - "name": "Prodigal Bludgeon Protection", - "description": "Reduces damage the caster takes from Bludgeoning by 99.9%.", - "school": "Life Magic", - "family": "463", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3691": { - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3692": { - "name": "Prodigal Cold Protection", - "description": "Reduces damage the caster takes from Cold by 99.9%.", - "school": "Life Magic", - "family": "466", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3693": { - "name": "Prodigal Cooking Mastery", - "description": "Increases the caster's Cooking skill by 250 points.", - "school": "Creature Enchantment", - "family": "468", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3694": { - "name": "Prodigal Coordination", - "description": "Increases the caster's Coordination by 250 points.", - "school": "Creature Enchantment", - "family": "469", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3695": { - "name": "Prodigal Creature Enchantment Mastery", - "description": "Increases the caster's Creature Enchantment skill by 250 points.", - "school": "Creature Enchantment", - "family": "470", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3696": { - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3697": { - "name": "Prodigal Finesse Weapon Mastery", - "description": "Increases the caster's Finesse Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "472", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3698": { - "name": "Prodigal Deception Mastery", - "description": "Increases the caster's Deception skill by 250 points.", - "school": "Creature Enchantment", - "family": "474", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3699": { - "name": "Prodigal Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 25%.", - "school": "Item Enchantment", - "family": "475", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3700": { - "name": "Prodigal Endurance", - "description": "Increases the caster's Endurance by 250 points.", - "school": "Creature Enchantment", - "family": "478", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3701": { - "name": "Prodigal Fealty", - "description": "Increases the caster's Loyalty skill by 250 points.", - "school": "Creature Enchantment", - "family": "490", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3702": { - "name": "Prodigal Fire Protection", - "description": "Reduces damage the caster takes from Fire by 99.9%.", - "school": "Life Magic", - "family": "479", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3703": { - "name": "Prodigal Flame Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "480", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3704": { - "name": "Prodigal Fletching Mastery", - "description": "Increases the caster's Fletching skill by 250 points.", - "school": "Creature Enchantment", - "family": "481", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3705": { - "name": "Prodigal Focus", - "description": "Increases the caster's Focus by 250 points.", - "school": "Creature Enchantment", - "family": "482", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3706": { - "name": "Prodigal Frost Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "467", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3707": { - "name": "Prodigal Healing Mastery", - "description": "Increases the caster's Healing skill by 250 points.", - "school": "Creature Enchantment", - "family": "483", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3708": { - "name": "Prodigal Heart Seeker", - "description": "Increases a weapon's Attack Skill modifier by 25%.", - "school": "Item Enchantment", - "family": "461", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3709": { - "name": "Prodigal Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 100%.", - "school": "Item Enchantment", - "family": "451", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3710": { - "name": "Prodigal Impenetrability", - "description": "Improves a shield or piece of armor's armor value by 1000 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "458", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3711": { - "name": "Prodigal Impregnability", - "description": "Increases the caster's Missile Defense skill by 250 points.", - "school": "Creature Enchantment", - "family": "496", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3712": { - "name": "Prodigal Invulnerability", - "description": "Increases the caster's Melee Defense skill by 250 points.", - "school": "Creature Enchantment", - "family": "495", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3713": { - "name": "Prodigal Item Enchantment Mastery", - "description": "Increases the caster's Item Enchantment skill by 250 points.", - "school": "Creature Enchantment", - "family": "485", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3714": { - "name": "Prodigal Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "family": "453", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3715": { - "name": "Prodigal Jumping Mastery", - "description": "Increases the caster's Jump skill by 250 points.", - "school": "Creature Enchantment", - "family": "486", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3716": { - "name": "Prodigal Leadership Mastery", - "description": "Increases the caster's Leadership skill by 250 points.", - "school": "Creature Enchantment", - "family": "487", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3717": { - "name": "Prodigal Life Magic Mastery", - "description": "Increases the caster's Life Magic skill by 250 points.", - "school": "Creature Enchantment", - "family": "488", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3718": { - "name": "Prodigal Lightning Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "477", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3719": { - "name": "Prodigal Lightning Protection", - "description": "Reduces damage the caster takes from Lightning by 99.9%.", - "school": "Life Magic", - "family": "476", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3720": { - "name": "Prodigal Lockpick Mastery", - "description": "Increases the caster's Lockpick skill by 250 points.", - "school": "Creature Enchantment", - "family": "489", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3721": { - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3722": { - "name": "Prodigal Magic Item Expertise", - "description": "Increases the caster's Magic Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "family": "454", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3723": { - "name": "Prodigal Magic Resistance", - "description": "Increases the caster's Magic Defense skill by 250 points.", - "school": "Creature Enchantment", - "family": "492", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3724": { - "name": "Prodigal Mana Conversion Mastery", - "description": "Increases the caster's Mana Conversion skill by 250 points.", - "school": "Creature Enchantment", - "family": "494", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3725": { - "name": "Prodigal Mana Renewal", - "description": "Increases the caster's natural mana rate by 1000%.", - "school": "Life Magic", - "family": "493", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3726": { - "name": "Prodigal Monster Attunement", - "description": "Increases the caster's Assess Monster skill by 250 points.", - "school": "Creature Enchantment", - "family": "459", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3727": { - "name": "Prodigal Person Attunement", - "description": "Increases the caster's Assess Person skill by 250 points.", - "school": "Creature Enchantment", - "family": "460", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3728": { - "name": "Prodigal Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 500%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "498", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3729": { - "name": "Prodigal Piercing Protection", - "description": "Reduces damage the caster takes from Piercing by 99.9%.", - "school": "Life Magic", - "family": "497", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3730": { - "name": "Prodigal Quickness", - "description": "Increases the caster's Quickness by 250 points.", - "school": "Creature Enchantment", - "family": "499", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3731": { - "name": "Prodigal Regeneration", - "description": "Increase caster's natural healing rate by 1000%.", - "school": "Life Magic", - "family": "484", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3732": { - "name": "Prodigal Rejuvenation", - "description": "Increases the rate at which the caster regains Stamina by 1000%.", - "school": "Life Magic", - "family": "506", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3733": { - "name": "Prodigal Willpower", - "description": "Increases the caster's Self by 250 points.", - "school": "Creature Enchantment", - "family": "501", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3734": { - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3735": { - "name": "Prodigal Spirit Drinker", - "description": "Increases a caster's damage mod by 15%.", - "school": "Item Enchantment", - "family": "473", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3736": { - "name": "Prodigal Sprint", - "description": "Increases the caster's Run skill by 250 points.", - "school": "Creature Enchantment", - "family": "500", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3737": { - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3738": { - "name": "Prodigal Strength", - "description": "Increases the caster's Strength by 250 points.", - "school": "Creature Enchantment", - "family": "507", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3739": { - "name": "Prodigal Swift Killer", - "description": "Improves a weapon's speed by 1000 points.", - "school": "Item Enchantment", - "family": "512", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3740": { - "name": "Prodigal Heavy Weapon Mastery", - "description": "Increases the caster's Heavy Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "508", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3741": { - "name": "Prodigal Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3742": { - "name": "Prodigal Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 250 points.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3743": { - "name": "Prodigal War Magic Mastery", - "description": "Increases the caster's War Magic skill by 250 points.", - "school": "Creature Enchantment", - "family": "511", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3744": { - "name": "Prodigal Weapon Expertise", - "description": "Increases the caster's Weapon Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "family": "455", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "3745": { - "name": "Inferior Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 52%.", - "school": "Life Magic", - "family": "109", - "difficulty": "245", - "duration": "3600", - "mana": "40" - }, - "3746": { - "name": "Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 62%.", - "school": "Life Magic", - "family": "109", - "difficulty": "295", - "duration": "3600", - "mana": "40" - }, - "3747": { - "name": "Lesser Inferno Aegis", - "description": "Reduces damage the target takes from Fire by 45%.", - "school": "Life Magic", - "family": "109", - "difficulty": "195", - "duration": "3600", - "mana": "40" - }, - "3748": { - "name": "Master Salvager's Greater Boon", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "325", - "duration": "360", - "mana": "70" - }, - "3749": { - "name": "Master Alchemist's Boon", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "325", - "duration": "180", - "mana": "50" - }, - "3750": { - "name": "Master Alchemist's Greater Boon", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "325", - "duration": "360", - "mana": "50" - }, - "3751": { - "name": "Master Chef's Boon", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "325", - "duration": "180", - "mana": "70" - }, - "3752": { - "name": "Master Chef's Greater Boon", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "325", - "duration": "360", - "mana": "70" - }, - "3753": { - "name": "Fletching Master's Boon", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "325", - "duration": "180", - "mana": "50" - }, - "3754": { - "name": "Fletching Master's Greater Boon", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "325", - "duration": "360", - "mana": "50" - }, - "3755": { - "name": "Master Lockpicker's Boon", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "325", - "duration": "180", - "mana": "70" - }, - "3756": { - "name": "Master Lockpicker's Greater Boon", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "325", - "duration": "360", - "mana": "70" - }, - "3757": { - "name": "Master Salvager's Boon", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "325", - "duration": "180", - "mana": "70" - }, - "3758": { - "name": "Inky Armor", - "description": "Your skin is coated with a fine layer of Niffis ink. Your natural armor is increased by 5 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "513", - "difficulty": "1", - "duration": "3600", - "mana": "10" - }, - "3759": { - "name": "Mana Giver", - "description": "Increases maximum mana by 15 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "3760": { - "name": "Culinary Ecstasy", - "description": "All secondary attributes are increased by 10% for the duration of the spell.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "1800", - "mana": "10" - }, - "3761": { - "name": "Fiun Resistance", - "description": "Increases the target's Magic Defense skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "514", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "3762": { - "name": "Defiled Temple Portal Sending", - "description": "Transports the target to the Defiled Temple", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3763": { - "name": "Balloon Ride", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3764": { - "name": "Summons a portal to the Banderling Shrine", - "description": "Summons a portal that goes to the destination of the caster's linked portal. set with Primary Portal Tie.", - "school": "Item Enchantment", - "family": "203", - "difficulty": "200", - "duration": "60", - "mana": "70" - }, - "3765": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3766": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3767": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3768": { - "name": "Bitter Punishment", - "description": "Transports the target to far above Ayn Tayan.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3769": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3770": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3771": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3772": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3773": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3774": { - "name": "Entry to the Mausoleum of Anger", - "description": "Transports the target to an entrance of the Mausoleum of Anger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3775": { - "name": "Angry Punishment", - "description": "Transports the target to high above the northern mountains", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3776": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3777": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3778": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3779": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3780": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3781": { - "name": "Entry to the Mausoleum of Cruelty", - "description": "Transports the target to an entrance of the Mausoleum of Cruelty", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3782": { - "name": "Cruel Punishment", - "description": "Transports the target to high above a Shadow Spire crater", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3783": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3784": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3785": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3786": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3787": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3788": { - "name": "Entry to the Accursed Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Accursed Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3789": { - "name": "Slaughter Punishment", - "description": "Transports the target to high above a Spire crater in the Obsidian Plains", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3790": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3791": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3792": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3793": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3794": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3795": { - "name": "Entry to the Unholy Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Unholy Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3796": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3797": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3798": { - "name": "Entry to the Mausoleum of Bitterness", - "description": "Transports the target to an entrance of the Mausoleum of Bitterness", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3799": { - "name": "Black Marrow Bliss", - "description": "The warm flavor of the Black Marrow Tea soothes your soul.", - "school": "Life Magic", - "family": "84", - "difficulty": "275", - "duration": "-1", - "mana": "60" - }, - "3800": { - "name": "Burning Spirit", - "description": "Increases all attributes by 2 for 10 minutes. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "3801": { - "name": "Shadow Touch", - "description": "Increases the target's Melee Defense skill by 3 points.", - "school": "Creature Enchantment", - "family": "518", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "3802": { - "name": "Shadow Reek", - "description": "Increases the target's War Magic skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "426", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "3803": { - "name": "Shadow Shot", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "3804": { - "name": "Shadow Shot", - "description": "Increases the target's Missile Weapons skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "3805": { - "name": "Acid Ring", - "description": "Shoots nine waves of acid outward from the caster. Each wave does 30-60 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3806": { - "name": "Flame Ring", - "description": "Shoots nine waves of flame outward from the caster. Each wave does 30-60 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3807": { - "name": "Force Ring", - "description": "Shoots nine waves of force outward from the caster. Each wave does 30-60 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3808": { - "name": "Lightning Ring", - "description": "Shoots nine waves of lightning outward from the caster. Each wave does 30-60 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3809": { - "name": "Minor Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points.", - "school": "Creature Enchantment", - "family": "437", - "difficulty": "5", - "duration": "3600", - "mana": "10" - }, - "3810": { - "name": "Asheron?ร‡ร–s Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "520", - "difficulty": "100", - "duration": "86400", - "mana": "1" - }, - "3811": { - "name": "Blackmoor?ร‡ร–s Favor", - "description": "Increases Natural Armor by 50 points for 24 hours. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "519", - "difficulty": "100", - "duration": "86400", - "mana": "1" - }, - "3812": { - "name": "Tursh's Lair", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3813": { - "name": "Free Ride to Shoushi", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3814": { - "name": "Free Ride to Yaraq", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3815": { - "name": "Free Ride to Holtburg", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3816": { - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3817": { - "name": "Hunter's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "30", - "duration": "2400", - "mana": "10" - }, - "3818": { - "name": "Curse of Raven Fury", - "description": "Drains half of the caster?ร‡ร–s health and projects a ring of vicious energy outwards. When struck. the target?ร‡ร–s health is reduced by 200% of the amount drained from the caster.", - "school": "Life Magic", - "family": "80", - "difficulty": "300", - "duration": "-1", - "mana": "150" - }, - "3819": { - "name": "Conscript's Might", - "description": "The might of the Conscripts of the Raven Hand flows through you. bolstering your strength by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3820": { - "name": "Conscript's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "30", - "duration": "2400", - "mana": "10" - }, - "3821": { - "name": "Augur's Will", - "description": "The will of the Augurs of the Raven Hand flows through you. increasing your Self by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3822": { - "name": "Augur's Glare", - "description": "You are filled with the intense dedication of the Augurs of the Raven Hand. increasing your Focus by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3823": { - "name": "Augur's Ward", - "description": "Shadowy tendrils weave about you. forming a magical encasement increasing your natural armor by 30 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "30", - "duration": "2400", - "mana": "10" - }, - "3824": { - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3825": { - "name": "Marksman's Ken", - "description": "The keen sight of the Hunters of the Raven Hand strengths your aim. increasing your Missile Weapons skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "10", - "duration": "2400", - "mana": "10" - }, - "3826": { - "name": "a powerful force", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3827": { - "name": "Lunnum's Embrace", - "description": "Improves a shield or piece of armor's armor value by 500 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "3828": { - "name": "Rage of Grael", - "description": "Infuses a weapon with the rage of the ancient barbarian gladiator. Grael. Increases a weapon's damage value by 3 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "3", - "duration": "10800", - "mana": "10" - }, - "3829": { - "name": "Blessing of the Sundew", - "description": "Increases the rate at which the target regains Mana by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "25", - "duration": "10800", - "mana": "10" - }, - "3830": { - "name": "Blessing of the Fly Trap", - "description": "Increases the rate at which the target regains Health by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "25", - "duration": "10800", - "mana": "10" - }, - "3831": { - "name": "Blessing of the Pitcher Plant", - "description": "Increases the rate at which the target regains Stamina by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "25", - "duration": "10800", - "mana": "10" - }, - "3832": { - "name": "Master's Voice", - "description": "The sibilant voice of Adhorix helps improve your concentration. Your Focus is raised by 10. This effect stacks with other Focus-raising spells.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "10", - "duration": "1800", - "mana": "10" - }, - "3833": { - "name": "Minor Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "437", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "3834": { - "name": "Major Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "437", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "3835": { - "name": "Leviathan's Curse", - "description": "Drains 150-400 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "70" - }, - "3836": { - "name": "Breath of the Deep", - "description": "Shoots a bolt of cold at the target. The bolt does 200-350 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3837": { - "name": "Water Island Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3838": { - "name": "Abandoned Mines Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3839": { - "name": "Brilliant Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3840": { - "name": "Dazzling Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3841": { - "name": "Devastated Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3842": { - "name": "Northeast Coast Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3843": { - "name": "Fire Island Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3844": { - "name": "Gatekeeper Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3845": { - "name": "Radiant Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3846": { - "name": "Ruined Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3847": { - "name": "Cataracts of Xik Minru", - "description": "Sends target to the Cataracts of Xik Minru", - "school": "Item Enchantment", - "family": "214", - "difficulty": "500", - "duration": "-1", - "mana": "50" - }, - "3848": { - "name": "Combat Medication", - "description": "The energies imbued upon the ring weave a healing aura around you. increasing your natural healing rate by 130%.", - "school": "Life Magic", - "family": "93", - "difficulty": "320", - "duration": "60", - "mana": "70" - }, - "3849": { - "name": "Night Runner", - "description": "The energies imbued upon this ring surge through you. increasing your run skill by 40. Additional effects can be layered on top of this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "350", - "duration": "60", - "mana": "70" - }, - "3850": { - "name": "Selflessness", - "description": "Your selflessness aids your fellows. but at a cost. Your health is reduced by 10.", - "school": "Life Magic", - "family": "280", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "3851": { - "name": "Corrupted Essence", - "description": "Dark forces channel through your essence. improving your focus. Your Focus is raised by 15. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "15", - "duration": "600", - "mana": "10" - }, - "3852": { - "name": "Ravenous Armor", - "description": "You feel your life force being sapped slowly by your armor. Your Maximum Health is reduced by 10.", - "school": "Life Magic", - "family": "280", - "difficulty": "10", - "duration": "600", - "mana": "70" - }, - "3853": { - "name": "Ardent Defense", - "description": "You are gifted with an improved defense against melee attacks. Your Melee Defense is raised by 12. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3854": { - "name": "True Loyalty", - "description": "Your loyalty knows no bounds while you wear this armor. Your Loyalty is raised by 12. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "12", - "duration": "600", - "mana": "10" - }, - "3855": { - "name": "Flight of Bats", - "description": "Increases the target's Healing skill by 40 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "100", - "duration": "780", - "mana": "30" - }, - "3856": { - "name": "Ulgrim's Recall", - "description": "A really really good spell.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "3857": { - "name": "Pumpkin Rain", - "description": "Rains eight of pumpkins down. smooshing any that oppose.", - "school": "War Magic", - "family": "237", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "3858": { - "name": "Pumpkin Ring", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 40-80 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3859": { - "name": "Pumpkin Wall", - "description": "Sends a wall of five balls of fire. two high. slowly towards the target. Each ball does 30-60 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "233", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3860": { - "name": "Sweet Speed", - "description": "Increases the target's Run by 100 points.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "500", - "duration": "60", - "mana": "50" - }, - "3861": { - "name": "Taste for Blood", - "description": "The feral instincts of the Mukkir give you a keener eye towards improving your weapons. Increases the target's Weapon Tinkering skill by 8 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "377", - "difficulty": "8", - "duration": "600", - "mana": "50" - }, - "3862": { - "name": "Duke Raoul's Pride", - "description": "Increases the caster's Self by 50 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "420", - "duration": "1800", - "mana": "70" - }, - "3863": { - "name": "Hunter's Hardiness", - "description": "Increases the caster's Endurance by 50 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "420", - "duration": "1800", - "mana": "70" - }, - "3864": { - "name": "Zongo's Fist", - "description": "Increases the caster's Strength by 50 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "420", - "duration": "1800", - "mana": "70" - }, - "3865": { - "name": "Glenden Wood Recall", - "description": "Sends the caster to Glenden Wood.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "3866": { - "name": "Glacial Speed", - "description": "Decreases the target's Run skill by 200 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "400", - "duration": "30", - "mana": "50" - }, - "3867": { - "name": "Embrace of the Chill Shadow", - "description": "Reduces damage the target takes from Cold by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "12", - "duration": "10800", - "mana": "10" - }, - "3868": { - "name": "Dardante's Keep Portal Sending", - "description": "This spell sends the user to Dardante's Keep.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3869": { - "name": "Invocation of the Black Book", - "description": "The dark energies of the Black Book of Salt and Ash have made your weapon strike more accurately. The Invocation has raised your weapon's Attack Modifier by 10%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "521", - "difficulty": "250", - "duration": "1800", - "mana": "10" - }, - "3870": { - "name": "Syphon Creature Essence", - "description": "This spell attempts to rip all positive Creature Magic from a single target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3871": { - "name": "Syphon Item Essence", - "description": "Dispels all positive Item Enchantments of level 7 or lower from the players wielded weapon or caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3872": { - "name": "Syphon Life Essence", - "description": "This spell attempts to rip all positive Life Magic from a single target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3873": { - "name": "Essence's Command", - "description": "Dispels 1-3 positive Life Magic enchantments of level 7 or lower from each person in the fellowship.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "300" - }, - "3874": { - "name": "Death's Aura", - "description": "Drains 40-75 points of health from each member of the fellowship.", - "school": "Life Magic", - "family": "68", - "difficulty": "400", - "duration": "-1", - "mana": "10" - }, - "3875": { - "name": "Acidic Curse", - "description": "Increases damage all fellowship members take from acid by 185%.", - "school": "Life Magic", - "family": "102", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3876": { - "name": "Curse of the Blades", - "description": "Increases damage all fellowship members take from Slashing by 185%.", - "school": "Life Magic", - "family": "114", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3877": { - "name": "Corrosive Strike", - "description": "Shoots a stream of acid at the target. The stream does 150-300 points of acid damage to the target.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3878": { - "name": "Incendiary Strike", - "description": "Shoots a bolt of flame at the target. The bolt does 150-300 points of fire damage to the target.", - "school": "War Magic", - "family": "121", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3879": { - "name": "Glacial Strike", - "description": "Shoots a bolt of frost at the target. The bolt does 150-300 points of cold damage to the target.", - "school": "War Magic", - "family": "119", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3880": { - "name": "Galvanic Strike", - "description": "Shoots a bolt of lighting at the target. The bolt does 150-300 points of electrical damage to the target.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3881": { - "name": "Corrosive Ring", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 100-200 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3882": { - "name": "Incendiary Ring", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3883": { - "name": "Pyroclastic Explosion", - "description": "Shoots sixteen waves of flame outward from the caster. Each wave does 75-150 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3884": { - "name": "Glacial Ring", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 100-200 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3885": { - "name": "Galvanic Ring", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 100-200 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3886": { - "name": "Magic Disarmament", - "description": "Decreases the target's Magic Defense skill by 200 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "3887": { - "name": "Entering the Hatch", - "description": "Entering the Hatch", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3888": { - "name": "Passage to the Rare Chambers", - "description": "Passage to the Rare Chambers", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3889": { - "name": "Inner Burial Chamber Portal Sending", - "description": "Portals the user to the Inner Burial Chamber in the Ruschk Burial Mound dungeon.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3890": { - "name": "Will of the People", - "description": "The words of Arwyth Margyle have boosted your Self by 10 points. This spell stacks with normal spells. but will be overridden by Major Willpower.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "10", - "duration": "1800", - "mana": "10" - }, - "3891": { - "name": "Honor of the Bull", - "description": "Your deidcation to the Viamontian cause has bolstered your loyalty by 10 points. This spell stacks with normal spells. but will be overridden by Major Loyalty.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "10", - "duration": "1800", - "mana": "10" - }, - "3892": { - "name": "Summon Flame Seekers", - "description": "Summons three Homing Flame Bolts.", - "school": "War Magic", - "family": "226", - "difficulty": "300", - "duration": "-1", - "mana": "80" - }, - "3893": { - "name": "Summon Burning Haze", - "description": "Creates a cloud of burning gases.", - "school": "War Magic", - "family": "226", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "3894": { - "name": "Dark Persistence", - "description": "A dark power suffuses your being. increasing your Endurance by 3.", - "school": "Creature Enchantment", - "family": "416", - "difficulty": "3", - "duration": "10800", - "mana": "10" - }, - "3895": { - "name": "Dark Reflexes", - "description": "A dark power suffuses your being. increasing your Quickness by 3.", - "school": "Creature Enchantment", - "family": "522", - "difficulty": "3", - "duration": "10800", - "mana": "10" - }, - "3896": { - "name": "Dark Equilibrium", - "description": "A dark power suffuses your being. increasing your Coordination by 3.", - "school": "Creature Enchantment", - "family": "413", - "difficulty": "3", - "duration": "10800", - "mana": "10" - }, - "3897": { - "name": "Dark Purpose", - "description": "A dark power suffuses your being. increasing your Self by 3.", - "school": "Creature Enchantment", - "family": "417", - "difficulty": "3", - "duration": "10800", - "mana": "10" - }, - "3898": { - "name": "Pooky's Recall 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3899": { - "name": "Pooky's Recall 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3900": { - "name": "Pooky's Recall 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3901": { - "name": "Egg Bomb", - "description": "Shoots an explosive egg at the target. The egg does 100-200 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "3902": { - "name": "Ring around the Rabbit", - "description": "Shoots eight rabbits outward from the caster. Each rabbit does 40-80 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3903": { - "name": "Whirlwind", - "description": "Eight whirlwinds move outward from the caster. Each whirlwind does 60-120 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "3904": { - "name": "Essence's Fury", - "description": "Corrodes the target for 200 points of acid damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "3905": { - "name": "Essence's Fury", - "description": "Burns the target for 200 points of fire damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "3906": { - "name": "Essence's Fury", - "description": "Freezes the target for 200 points of cold damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "3907": { - "name": "Essence's Fury", - "description": "Shocks the target for 200 points of electric damage.", - "school": "War Magic", - "family": "237", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "3908": { - "name": "Mana Blast", - "description": "Fires three bolts of energy. When struck by a bolt. the target's mana is reduced by 500.", - "school": "Life Magic", - "family": "84", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "3909": { - "name": "Mana Syphon", - "description": "Decreases target's natural mana rate by 100%.", - "school": "Life Magic", - "family": "98", - "difficulty": "400", - "duration": "120", - "mana": "70" - }, - "3910": { - "name": "Brain Freeze", - "description": "The Essence strikes out with an icicle impaling your head. reducing all your skills by 50%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "500", - "duration": "15", - "mana": "10" - }, - "3911": { - "name": "Spiral of Souls", - "description": "A spiral of energy sucks the life force out of all those around the caster for 40-75 points of damage.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "3912": { - "name": "Lower Black Spear Temple Portal Sending", - "description": "Transports the player to the lower levels of the Black Spear Temple.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3913": { - "name": "Aegis of the Golden Flame", - "description": "Increases the caster's natural armor by 235 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "310", - "duration": "3600", - "mana": "70" - }, - "3914": { - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3915": { - "name": "Black Madness", - "description": "A madness enters your mind. The gaping horror of the abyss fills you with dread. reducing all your skills by 30%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3916": { - "name": "Flayed Flesh", - "description": "Decreases the target's natural armor by 500 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "500", - "duration": "10", - "mana": "70" - }, - "3917": { - "name": "Numbing Chill", - "description": "Increases damage all fellowship members take from cold by 185%.", - "school": "Life Magic", - "family": "106", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3918": { - "name": "Flammable", - "description": "Increases damage all fellowship members take from fire by 185%.", - "school": "Life Magic", - "family": "110", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3919": { - "name": "Lightning Rod", - "description": "Increases damage all fellowship members take from lightning by 185%.", - "school": "Life Magic", - "family": "108", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3920": { - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3921": { - "name": "Harbinger's Lair", - "description": "Harbinger's Lair", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3922": { - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3923": { - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3924": { - "name": "Tunnels to the Harbinger", - "description": "Tunnels to the Harbinger", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3925": { - "name": "Harbinger's Lair", - "description": "Harbinger's Lair", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3926": { - "name": "Harbinger's Fiery Touch", - "description": "Shoots a bolt of elemental energy at the target. The bolt does 130-220 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "3927": { - "name": "Charge Flesh", - "description": "Target's flesh is left open and vulnerable to electric attacks. Increases damage the target takes from lightning by 200%.", - "school": "Life Magic", - "family": "108", - "difficulty": "350", - "duration": "60", - "mana": "10" - }, - "3928": { - "name": "Disarmament", - "description": "Decreases the target's Melee Defense skill by 200 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "3929": { - "name": "Rossu Morta Chapterhouse Recall", - "description": "This spell teleports the caster to the Chapterhouse of the Rossu Morta.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "3930": { - "name": "Whispering Blade Chapterhouse Recall", - "description": "This spell teleports the caster to the Chapterhouse of the Whispering Blade.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "3931": { - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3932": { - "name": "Grael's Rage", - "description": "Drains 200-400 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "10" - }, - "3933": { - "name": "Black Spear Strike", - "description": "Impales the target for 250-300 points of piercing damage.", - "school": "War Magic", - "family": "241", - "difficulty": "400", - "duration": "-1", - "mana": "200" - }, - "3934": { - "name": "Heavy Acid Ring", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 250-400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3935": { - "name": "Heavy Blade Ring", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 250-400 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3936": { - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 250-400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3937": { - "name": "Heavy Force Ring", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 250-400 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3938": { - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 250-400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3939": { - "name": "Thaumic Bleed", - "description": "Shoots 12 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3940": { - "name": "Exsanguinating Wave", - "description": "A wave of life draining energy.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "3941": { - "name": "Heavy Lightning Ring", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 250-400 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3942": { - "name": "Heavy Shock Ring", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 250-400 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3943": { - "name": "Burning Earth", - "description": "A burning section of ground that deals 100-400 points of damage to whatever touches it.", - "school": "War Magic", - "family": "233", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3944": { - "name": "Rain of Spears", - "description": "Black Spears streak from the sky dealing 300 points of damage to whatever they hit.", - "school": "War Magic", - "family": "241", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "3945": { - "name": "Raging Storm", - "description": "Rains LOTS of red lightning down.", - "school": "War Magic", - "family": "239", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "3946": { - "name": "Acid Wave", - "description": "Shoots eight waves of acid forward from the caster. Each wave does 80-150 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3947": { - "name": "Blade Wave", - "description": "Shoots eight slashing waves forward from the caster. Each wave does 80-150 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3948": { - "name": "Flame Wave", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 80-150 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3949": { - "name": "Force Wave", - "description": "Shoots eight waves of force forward from the caster. Each wave does 80-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3950": { - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 80-150 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3951": { - "name": "Lightning Wave", - "description": "Shoots eight waves of lightning forward from the caster. Each wave does 80-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3952": { - "name": "Shock Waves", - "description": "Shoots eight shock waves forward from the caster. Each wave does 80-150 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3953": { - "name": "Carraida?ร‡ร–s Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "520", - "difficulty": "100", - "duration": "86400", - "mana": "1" - }, - "3954": { - "name": "Access to the White Tower", - "description": "Teleports the target into the White Tower.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3955": { - "name": "Epic Bludgeon Ward", - "description": "Reduces damage the target takes from bludgeoning by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "20", - "duration": "10800", - "mana": "20" - }, - "3956": { - "name": "Epic Piercing Ward", - "description": "Reduces damage the target takes from piercing by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "20", - "duration": "10800", - "mana": "20" - }, - "3957": { - "name": "Epic Slashing Ward", - "description": "Reduces damage the target takes from slashing by 20%. Additional magical protection can be layered over this.", - "school": "Life Magic", - "family": "403", - "difficulty": "50", - "duration": "10800", - "mana": "20" - }, - "3958": { - "name": "White Tower Egress", - "description": "Teleports the target out of the White Tower.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3959": { - "name": "Redirect Motives", - "description": "In an attempt to redirect the motives of the wielder back to the law they are sworn to uphold this spell drains 50-100 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "3960": { - "name": "Authority", - "description": "Increases a weapon's damage value by 60 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "500", - "duration": "1020", - "mana": "60" - }, - "3961": { - "name": "Defense of the Just", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 60%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "3962": { - "name": "Bound to the Law", - "description": "Target is bound to law and justice. The confines of the law do not always allow free action. Reduces Melee Defense by 60 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "400", - "duration": "240", - "mana": "70" - }, - "3963": { - "name": "Epic Coordination", - "description": "Increases the target's Coordination by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "3964": { - "name": "Epic Focus", - "description": "Increases the target's Focus by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "3965": { - "name": "Epic Strength", - "description": "Increases the target's Strength by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "3966": { - "name": "Ringleader's Chambers", - "description": "Target is portaled into a the Bandit Ringleader?ร‡ร–s chambers", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3967": { - "name": "Bandit Trap", - "description": "Target is portaled into a Sawato Bandit Trap!", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3968": { - "name": "Bandit Hideout", - "description": "Target is portaled into the Sawato Bandit Hideout", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "3969": { - "name": "Acid Bomb", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 100-400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3970": { - "name": "Blade Bomb", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 100-400 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3971": { - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 100-400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3972": { - "name": "Force Bomb", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 100-400 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3973": { - "name": "Frost Bomb", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3974": { - "name": "Lightning Bomb", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3975": { - "name": "Shock Bomb", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 200-1000 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3976": { - "name": "Incantation of Armor Other", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "3977": { - "name": "Coordination Other Incantation", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "400", - "duration": "10800", - "mana": "100" - }, - "3978": { - "name": "Focus Other Incantation", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "400", - "duration": "10800", - "mana": "100" - }, - "3979": { - "name": "Strength Other Incantation", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "3980": { - "name": "Impenetrability Incantation", - "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "325", - "duration": "10800", - "mana": "100" - }, - "3981": { - "name": "Mana Renewal Other Incantation", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "family": "97", - "difficulty": "400", - "duration": "10800", - "mana": "100" - }, - "3982": { - "name": "Regeneration Other Incantation", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "family": "93", - "difficulty": "400", - "duration": "10800", - "mana": "100" - }, - "3983": { - "name": "Rejuvenation Other Incantation", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "family": "95", - "difficulty": "400", - "duration": "10800", - "mana": "100" - }, - "3984": { - "name": "Mukkir's Ferocity", - "description": "Increases a weapon's Attack Skill modifier by 4%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "4", - "duration": "10800", - "mana": "10" - }, - "3985": { - "name": "Mukkir Sense", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 4%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "4", - "duration": "10800", - "mana": "10" - }, - "3986": { - "name": "Rock Fall", - "description": "A large falling block of black ice.", - "school": "War Magic", - "family": "118", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3987": { - "name": "Black Spear Strike", - "description": "Impales the target for 150-200 points of piercing damage.", - "school": "War Magic", - "family": "241", - "difficulty": "400", - "duration": "-1", - "mana": "200" - }, - "3988": { - "name": "Black Spear Strike", - "description": "Impales the target for 200-250 points of piercing damage.", - "school": "War Magic", - "family": "241", - "difficulty": "400", - "duration": "-1", - "mana": "200" - }, - "3989": { - "name": "Dark Lightning", - "description": "Shoots a bolt of lighting at the target. The bolt does 150-250 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "3990": { - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 100-150 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3991": { - "name": "Thaumic Bleed", - "description": "Shoots 8 waves of lightning around the caster. Each wave does 250-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3992": { - "name": "Heavy Acid Ring", - "description": "Shoots 12 waves of acid outward from the caster. Each wave does 150-300 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3993": { - "name": "Heavy Blade Ring", - "description": "Shoots 12 waves of blades outward from the caster. Each wave does 150-300 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3994": { - "name": "Fire Bomb", - "description": "Shoots 12 waves of flame outward from the caster. Each wave does 150-300 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3995": { - "name": "Heavy Force Ring", - "description": "Shoots 12 waves of force outward from the caster. Each wave does 150-300 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3996": { - "name": "Heavy Frost Ring", - "description": "Shoots 12 waves of frost outward from the caster. Each wave does 150-300 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3997": { - "name": "Heavy Lightning Ring", - "description": "Shoots 12 waves of lightning outward from the caster. Each wave does 150-300 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3998": { - "name": "Dark Vortex", - "description": "A spinning vortex of shadow.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "3999": { - "name": "Exsanguinating Wave", - "description": "A wave of life draining energy.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "4000": { - "name": "Heavy Shock Ring", - "description": "Shoots 12 waves of shock outward from the caster. Each wave does 150-300 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4001": { - "name": "Burning Earth", - "description": "A burning section of ground that deals 200-500 points of damage to whatever touches it.", - "school": "War Magic", - "family": "233", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4002": { - "name": "Burning Earth", - "description": "A burning section of ground that deals 100-200 points of damage to whatever touches it.", - "school": "War Magic", - "family": "233", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4003": { - "name": "Wall of Spears", - "description": "Black Spears streak towards the target. Each spear does 150-250 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "234", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4004": { - "name": "Wall of Spears", - "description": "Black Spears streak towards the target. Each spear does 100-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "234", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4005": { - "name": "Acid Wave", - "description": "Shoots eight waves of acid forward from the caster. Each wave does 20-100 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4006": { - "name": "Blade Wave", - "description": "Shoots eight slashing waves forward from the caster. Each wave does 20-100 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4007": { - "name": "Flame Wave", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 20-100 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4008": { - "name": "Force Wave", - "description": "Shoots eight waves of force forward from the caster. Each wave does 20-100 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4009": { - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 20-100 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4010": { - "name": "Lightning Wave", - "description": "Shoots eight waves of lightning forward from the caster. Each wave does 20-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4011": { - "name": "Shock Waves", - "description": "Shoots eight shock waves forward from the caster. Each wave does 20-100 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4012": { - "name": "White Totem Temple Sending", - "description": "The White Totem Gateway sends you to the White Totem Temple.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4013": { - "name": "Black Totem Temple Sending", - "description": "The Black Totem Gateway sends you to the Black Totem Temple.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4014": { - "name": "Abyssal Totem Temple Sending", - "description": "The Abyssal Totem Gateway sends you to the Abyssal Totem Temple.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4015": { - "name": "Ruschk Skin", - "description": "Increases the target's natural armor by 10 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "513", - "difficulty": "10", - "duration": "10800", - "mana": "10" - }, - "4016": { - "name": "Shadow's Heart", - "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "349", - "difficulty": "25", - "duration": "10800", - "mana": "10" - }, - "4017": { - "name": "Phial's Accuracy", - "description": "Increases the target's Missile Weapons skill by 800 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "500", - "duration": "3600", - "mana": "100" - }, - "4018": { - "name": "Permafrost", - "description": "A frozen shell that offers a surprising amount of protection.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "475", - "duration": "3600", - "mana": "70" - }, - "4019": { - "name": "Epic Quickness", - "description": "Increases the target's Quickness by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4020": { - "name": "Epic Deception Prowess", - "description": "Increases the target's Deception skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "343", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4021": { - "name": "Flurry of Stars", - "description": "Shoots five whirling blades quickly outward from the caster. Each blade does 115-189 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "4022": { - "name": "Zombies Persistence", - "description": "Increase caster's natural healing rate by 200% for 60 seconds.", - "school": "Life Magic", - "family": "93", - "difficulty": "545", - "duration": "60", - "mana": "50" - }, - "4023": { - "name": "Disco Inferno Portal Sending", - "description": "This spell sends the player to the Night Club dungeon.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4024": { - "name": "Asheron?ร‡ร–s Lesser Benediction", - "description": "Raises health by 10% for 24 hours. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "520", - "difficulty": "100", - "duration": "86400", - "mana": "1" - }, - "4025": { - "name": "Cast Iron Stomach", - "description": "Increases maximum stamina by 50 points.", - "school": "Life Magic", - "family": "281", - "difficulty": "50", - "duration": "10800", - "mana": "10" - }, - "4026": { - "name": "Hematic Verdure", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "25", - "duration": "510", - "mana": "70" - }, - "4027": { - "name": "Messenger's Stride", - "description": "Increases the target's Run skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "30", - "duration": "780", - "mana": "10" - }, - "4028": { - "name": "Snowball", - "description": "A fluffy snowball.", - "school": "War Magic", - "family": "119", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4029": { - "name": "Return to the Hall of Champions", - "description": "Transports the target to the Colosseum's Hall of Champions.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4030": { - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4031": { - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4032": { - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4033": { - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4034": { - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4035": { - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4036": { - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4037": { - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4038": { - "name": "Colosseum Arena", - "description": "Transports the target to the starting Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4039": { - "name": "Advanced Colosseum Arena", - "description": "Transports the target to the 6th Arena of the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4040": { - "name": "Master's Innervation", - "description": "Increase caster's natural healing rate by 1000% for 20 seconds.", - "school": "Life Magic", - "family": "93", - "difficulty": "1000", - "duration": "20", - "mana": "70" - }, - "4041": { - "name": "The Path to Bur", - "description": "Transports the target to the world of Bur.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4042": { - "name": "The Winding Path to Bur", - "description": "Transports the target to the world of Bur.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4043": { - "name": "Kukuur Hide", - "description": "Increases the caster's natural armor by 300 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "350", - "duration": "120", - "mana": "100" - }, - "4044": { - "name": "Acid Ball", - "description": "A ball of acid.", - "school": "War Magic", - "family": "117", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "4045": { - "name": "Flame Ball", - "description": "A ball of fire.", - "school": "War Magic", - "family": "121", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "4046": { - "name": "Lightning Ball", - "description": "A ball of lightning.", - "school": "War Magic", - "family": "120", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "4047": { - "name": "Artisan Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "523", - "difficulty": "30", - "duration": "30", - "mana": "10" - }, - "4048": { - "name": "Artisan Cook's Inspiration", - "description": "Increases the target's Cooking skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "524", - "difficulty": "30", - "duration": "30", - "mana": "10" - }, - "4049": { - "name": "Artisan Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "525", - "difficulty": "30", - "duration": "30", - "mana": "10" - }, - "4050": { - "name": "Artisan Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 30 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "526", - "difficulty": "30", - "duration": "30", - "mana": "10" - }, - "4051": { - "name": "Master Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "523", - "difficulty": "20", - "duration": "30", - "mana": "10" - }, - "4052": { - "name": "Master Cook's Inspiration", - "description": "Increases the target's Cooking skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "524", - "difficulty": "20", - "duration": "30", - "mana": "10" - }, - "4053": { - "name": "Master Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "525", - "difficulty": "20", - "duration": "30", - "mana": "10" - }, - "4054": { - "name": "Master Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 20 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "526", - "difficulty": "20", - "duration": "30", - "mana": "10" - }, - "4055": { - "name": "Journeyman Alchemist's Inspiration", - "description": "Increases the target's Alchemy skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "523", - "difficulty": "10", - "duration": "30", - "mana": "10" - }, - "4056": { - "name": "Journeyman Cook's Inspiration", - "description": "Increases the target's Cooking skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "524", - "difficulty": "10", - "duration": "30", - "mana": "10" - }, - "4057": { - "name": "Journeyman Fletcher's Inspiration", - "description": "Increases the target's Fletching skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "525", - "difficulty": "10", - "duration": "30", - "mana": "10" - }, - "4058": { - "name": "Journeyman Lockpicker's Inspiration", - "description": "Increases the target's Lockpick skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "526", - "difficulty": "10", - "duration": "30", - "mana": "10" - }, - "4059": { - "name": "Endurance Other Incantation", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "400", - "duration": "3600", - "mana": "70" - }, - "4060": { - "name": "Quickness Other Incantation", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "400", - "duration": "3600", - "mana": "70" - }, - "4061": { - "name": "Willpower Other Incantation", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "400", - "duration": "3600", - "mana": "70" - }, - "4062": { - "name": "Empyrean Aegis", - "description": "Improves a shield or piece of armor's armor value by 500 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "4063": { - "name": "Exit the Upper Catacomb", - "description": "Transports the target to the caverns of the Burun.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4064": { - "name": "Access the Upper Catacomb", - "description": "Transports the target to the upper chamber of the Falatacot.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4065": { - "name": "Lower Catacomb Portal Sending", - "description": "Transports the target to the lower catacomb of the Falatacot", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4066": { - "name": "Access to the Ley Line Cavern", - "description": "This spell transports the target to the Ley Line Cavern.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4067": { - "name": "Mucor Bolt", - "description": "Casting this spell creates a bolt of pure mana which sails toward its target. doing 0-100 points directly to health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "100" - }, - "4068": { - "name": "Mucor Mana Well", - "description": "Consuming this fungus causes your ability to regenerate mana to rapidly increase. Your regeneration rate is increased by 100% (stacking with both normal spells and cantrips) for 3 hours.", - "school": "Life Magic", - "family": "527", - "difficulty": "400", - "duration": "10800", - "mana": "10" - }, - "4069": { - "name": "Mucor Jolt", - "description": "The mucor imbued into this weapon sap a small amount of strength from the target of your blow. dealing 0-70 points of damage directly to health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "60" - }, - "4070": { - "name": "Empyrean Mana Absorbtion", - "description": "Increases maximum mana by 100 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "100", - "duration": "7200", - "mana": "70" - }, - "4071": { - "name": "Empyrean Stamina Absorbtion", - "description": "Increases maximum Stamina by 100 points.", - "school": "Life Magic", - "family": "281", - "difficulty": "100", - "duration": "7200", - "mana": "70" - }, - "4072": { - "name": "Aurlanaa's Resolve", - "description": "Increases your Stamina Regeneration Rate by 20%. This effect can be layered with other cantrips.", - "school": "Life Magic", - "family": "528", - "difficulty": "20", - "duration": "3600", - "mana": "60" - }, - "4073": { - "name": "Empyrean Regeneration", - "description": "Increases your Health Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "257", - "difficulty": "50", - "duration": "3600", - "mana": "60" - }, - "4074": { - "name": "Empyrean Rejuvenation", - "description": "Increases your Stamina Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "407", - "difficulty": "50", - "duration": "3600", - "mana": "60" - }, - "4075": { - "name": "Empyrean Mana Renewal", - "description": "Increases your Mana Regeneration Rate by 50%. This effect can be layered with normal spell effects.", - "school": "Life Magic", - "family": "259", - "difficulty": "50", - "duration": "3600", - "mana": "60" - }, - "4076": { - "name": "Empyrean Enlightenment", - "description": "Increases the target's Arcane Lore skill by 60 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "4077": { - "name": "Mana Conversion Mastery Incantation", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "400", - "duration": "7200", - "mana": "80" - }, - "4078": { - "name": "Egg", - "description": "An egg.", - "school": "War Magic", - "family": "118", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4079": { - "name": "Work it Off", - "description": "Teleports the target to the dishwashing room", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "4080": { - "name": "Paid in Full", - "description": "Teleports the target to the kitchen", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "4081": { - "name": "Eye of the Tempest", - "description": "Shoots twelve waves of lightning outward from the caster. Each wave does 60-120 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4082": { - "name": "Big Fire", - "description": "A large ball of fire.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "5" - }, - "4083": { - "name": "Kresovus' Warren Portal Sending", - "description": "The mysterious chest in Lord Kresovus' chambers has teleported you...", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4084": { - "name": "Bur Recall", - "description": "Sends the caster to Bur.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4085": { - "name": "Entering Harraag's Hideout", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4086": { - "name": "Icy Shield", - "description": "Increases the target's natural armor by 100 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "100", - "duration": "3600", - "mana": "10" - }, - "4087": { - "name": "Armor Breach", - "description": "Decreases the target's natural armor by 225 points for 10 seconds.", - "school": "Life Magic", - "family": "116", - "difficulty": "325", - "duration": "10", - "mana": "70" - }, - "4088": { - "name": "Withering Poison", - "description": "Decreases the victim's natural healing rate by 75%.", - "school": "Life Magic", - "family": "94", - "difficulty": "500", - "duration": "240", - "mana": "70" - }, - "4089": { - "name": "Assassin's Gift", - "description": "Raises the Assassin's Deception Skill by 100.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "500", - "duration": "3600", - "mana": "70" - }, - "4090": { - "name": "Scarab's Shell", - "description": "Increases the target's natural armor by 260 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "401", - "duration": "7200", - "mana": "70" - }, - "4091": { - "name": "Spear", - "description": "Impales the target for 150-250 points of piercing damage.", - "school": "War Magic", - "family": "241", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "4092": { - "name": "Flame Grenade", - "description": "Burns the target for 80-240 points of fire damage.", - "school": "War Magic", - "family": "241", - "difficulty": "300", - "duration": "-1", - "mana": "200" - }, - "4093": { - "name": "Don't Bite Me", - "description": "Reduces damage the target takes from Bludgeoning by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "4094": { - "name": "Don't Burn Me", - "description": "Reduces damage the target takes from Fire by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "4095": { - "name": "Don't Stab Me", - "description": "Reduces damage the target takes from Piercing by 12%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "12", - "duration": "780", - "mana": "10" - }, - "4096": { - "name": "Flame Chain", - "description": "Shoots five bolts of flame in a row at the target. Each bolt does 26-44 points of fire damage to the first thing it hits. This spell is more effective for long range attacks.", - "school": "War Magic", - "family": "121", - "difficulty": "320", - "duration": "-1", - "mana": "60" - }, - "4097": { - "name": "Violet Rain", - "description": "Rains LOTS of lightning down.", - "school": "War Magic", - "family": "239", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4098": { - "name": "Treasure Room", - "description": "Sends a player to BoneCrunch's Treasure Room.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "320", - "duration": "-1", - "mana": "50" - }, - "4099": { - "name": "Strength of Diemos", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "410", - "duration": "10800", - "mana": "70" - }, - "4100": { - "name": "Breath of Renewal", - "description": "Restores 500-750 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "4101": { - "name": "Champion's Skullduggery", - "description": "Decrease the target's Melee Defense skill by 125 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "325", - "duration": "20", - "mana": "70" - }, - "4102": { - "name": "Champion's Clever Ruse", - "description": "Decrease the target's Magic Defense skill by 125 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "325", - "duration": "20", - "mana": "70" - }, - "4103": { - "name": "Black Water Portal Sending", - "description": "Portals the user to the lair of the Watcher of the Black Water.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4104": { - "name": "Champion Arena", - "description": "Transports the target to Gladiator Diemos' Arena.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4105": { - "name": "Champion Arena", - "description": "Transports the target to The Master's Arena.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4106": { - "name": "Travel to the Paradox-touched Olthoi Queen's Lair", - "description": "Instantly transports the target to the Paradox-touched Olthoi Queen's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4107": { - "name": "Marrow Blight", - "description": "Lowers all of the target's attributes by 10% for 10 seconds.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "500", - "duration": "10", - "mana": "10" - }, - "4108": { - "name": "Apathy", - "description": "You feel as though a great weight has settled on you. You can't seem to gather enough strength to do much of anything.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "400", - "duration": "30", - "mana": "1" - }, - "4109": { - "name": "Greater Marrow Blight", - "description": "You feel a sharp ache deep in your bones. Lowers all of the targets attributes by 50%.", - "school": "Creature Enchantment", - "family": "421", - "difficulty": "400", - "duration": "30", - "mana": "10" - }, - "4110": { - "name": "Poison", - "description": "Drains 40-80 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "350", - "duration": "-1", - "mana": "70" - }, - "4111": { - "name": "Lesser Tusker Hide", - "description": "Increases your natural armor by 200 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "250", - "duration": "60", - "mana": "100" - }, - "4112": { - "name": "Spirit Nullification", - "description": "Your caster's usual glow of elemental power is extinguished.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "4113": { - "name": "FoulRing", - "description": "A wave of foulness.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "4114": { - "name": "Hypnotic Suggestion", - "description": "A sudden urge to cluck like a chicken makes it difficult to defend yourself. Decreases your Melee Defense by 200 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "400", - "duration": "30", - "mana": "70" - }, - "4115": { - "name": "Mesmerizing Gaze", - "description": "Mudmouth stares deep into your eyes and you find your mind wandering. even with the sounds of battle that surround you. Your skills are lowered by 20%.", - "school": "Creature Enchantment", - "family": "424", - "difficulty": "400", - "duration": "60", - "mana": "10" - }, - "4116": { - "name": "Trance", - "description": "Just look at that shiny thing over there! It's sooo beautiful. Decreases your Magic Defense by 200 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "400", - "duration": "30", - "mana": "70" - }, - "4117": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from acid damage by 50%.", - "school": "Life Magic", - "family": "101", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4118": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from lightning damage by 50%.", - "school": "Life Magic", - "family": "107", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4119": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from fire damage by 50%.", - "school": "Life Magic", - "family": "109", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4120": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Cold damage by 50%.", - "school": "Life Magic", - "family": "105", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4121": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from bludgeon damage by 50%.", - "school": "Life Magic", - "family": "103", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4122": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Piercing damage by 50%.", - "school": "Life Magic", - "family": "111", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4123": { - "name": "Dark Shield", - "description": "Reduces damage the caster takes from Slashing damage by 50%.", - "school": "Life Magic", - "family": "113", - "difficulty": "100", - "duration": "60", - "mana": "40" - }, - "4124": { - "name": "Dark Nanners", - "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "235", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4125": { - "name": "Dark Nanners", - "description": "Shoots a wall of ten Dark Nanners at the target. Each Dark Nanner does 50-150 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "234", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4126": { - "name": "Rain of Nanners", - "description": "Dark Nanners streak from the sky dealing 100-300 points of piercing damage to the first thing they hit.", - "school": "War Magic", - "family": "241", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4127": { - "name": "Portal Punch", - "description": "A powerful punch which sends the target to Oolutanga's Refuge.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4128": { - "name": "Call of the Mhoire Forge", - "description": "Calls the spirit to the location of the forge of House Mhoire.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "4129": { - "name": "Travel to the Prodigal Shadow Child's Lair", - "description": "Instantly transports the target to the Prodigal Shadow Child's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "50" - }, - "4130": { - "name": "Travel to the Prodigal Shadow Child's Sanctum", - "description": "Instantly transports the target to the Prodigal Shadow Child's Sanctum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "50" - }, - "4131": { - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4132": { - "name": "Spectral Blood Drinker", - "description": "Increases a weapon's damage value by 30 points for 3 minutes.", - "school": "Item Enchantment", - "family": "473", - "difficulty": "250", - "duration": "180", - "mana": "70" - }, - "4133": { - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4134": { - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4135": { - "name": "Spectral Finesse Weapon Mastery", - "description": "Increases the caster's Finesse Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "472", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4136": { - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4137": { - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4138": { - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4139": { - "name": "Spectral Heavy Weapon Mastery", - "description": "Increases the caster's Heavy Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "508", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4140": { - "name": "Spectral Missile Weapon Mastery", - "description": "Increases the caster's Missile_Weapons skill by 150 points for 9 minutes", - "school": "Creature Enchantment", - "family": "465", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4141": { - "name": "Spectral Light Weapon Mastery", - "description": "Increases the caster's Light Weapons skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "462", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4142": { - "name": "Spectral War Magic Mastery", - "description": "Increases the caster's War Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "511", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4143": { - "name": "Witnessing History", - "description": "Teleports the PC to Branch 4. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4144": { - "name": "Witnessing History", - "description": "Teleports the PC to Branch 5. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4145": { - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 1. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4146": { - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 2. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4147": { - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 3. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4148": { - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 4. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4149": { - "name": "Crossing the Threshold of Darkness", - "description": "Teleports the PC to Branch 5. Stage 6 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4150": { - "name": "Expulsion from Claude's Mind", - "description": "Teleports the PC to Aun Kelauri's tent.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "5" - }, - "4151": { - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 1. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4152": { - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 2. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4153": { - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 3. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4154": { - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 4. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4155": { - "name": "Sending to the Other World", - "description": "Teleports the PC to Branch 5. Stage 1 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4156": { - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 1. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4157": { - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 2. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4158": { - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 3. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4159": { - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 4. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4160": { - "name": "Delving into Claude's Mind", - "description": "Teleports the PC to Branch 5. Stage 2 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4161": { - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 1. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4162": { - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 2. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4163": { - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 3. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4164": { - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 4. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4165": { - "name": "Exploring the Past", - "description": "Teleports the PC to Branch 5. Stage 3 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4166": { - "name": "Witnessing History", - "description": "Teleports the PC to Branch 1. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4167": { - "name": "Witnessing History", - "description": "Teleports the PC to Branch 2. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4168": { - "name": "Witnessing History", - "description": "Teleports the PC to Branch 3. Stage 4 of Vision Quest", - "school": "Item Enchantment", - "family": "214", - "difficulty": "900", - "duration": "-1", - "mana": "150" - }, - "4169": { - "name": "Harbinger Blood Infusion", - "description": "The Harbinger's blood suffuses your being. increasing your natural armor by 300 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "410", - "duration": "900", - "mana": "100" - }, - "4170": { - "name": "Harbinger's Coordination", - "description": "Increases Coordination 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "413", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4171": { - "name": "Harbinger's Endurance", - "description": "Increases Endurance 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "416", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4172": { - "name": "Harbinger's Focus", - "description": "Increases Focus 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "415", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4173": { - "name": "Harbinger's Quickness", - "description": "Increases Quickness 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "522", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4174": { - "name": "Harbinger's Strength", - "description": "Increases Strength 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "414", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4175": { - "name": "Harbinger's Willpower", - "description": "Increases Willpower 1 point above spells and most cantrips.", - "school": "Creature Enchantment", - "family": "417", - "difficulty": "1", - "duration": "7200", - "mana": "10" - }, - "4176": { - "name": "Prodigal Harbinger's Lair", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4177": { - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Acid Prep Room.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4178": { - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Cold Prep Room.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4179": { - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Fire Prep Room.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4180": { - "name": "Prodigal Harbinger's Antechamber", - "description": "Sends the target to the Prodigal Harbinger's Lightning Prep Room.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4181": { - "name": "Essence Bolt", - "description": "A dangerous looking ball of acid.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "120" - }, - "4182": { - "name": "Ball Lightning", - "description": "A sparking ball of lightning that deals 400 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4183": { - "name": "Corrosive Veil", - "description": "A wave of acid that deals 400 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4184": { - "name": "Essence Bolt", - "description": "A dangerous looking ball of flame.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "120" - }, - "4185": { - "name": "Essence Bolt", - "description": "A dangerous looking ball of Frost.", - "school": "War Magic", - "family": "119", - "difficulty": "300", - "duration": "-1", - "mana": "120" - }, - "4186": { - "name": "Hoar Frost", - "description": "A strangely spreading frost that deals 400 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4187": { - "name": "Essence Bolt", - "description": "A dangerous looking ball of lightning.", - "school": "War Magic", - "family": "120", - "difficulty": "300", - "duration": "-1", - "mana": "120" - }, - "4188": { - "name": "Shadowed Flame", - "description": "A dark flame that deals 400 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "4189": { - "name": "Harbinger Acid Protection", - "description": "Reduces damage the target takes from acid by 80%.", - "school": "Life Magic", - "family": "101", - "difficulty": "350", - "duration": "120", - "mana": "70" - }, - "4190": { - "name": "Harbinger Cold Protection", - "description": "Reduces damage the target takes from Cold by 80%.", - "school": "Life Magic", - "family": "105", - "difficulty": "350", - "duration": "120", - "mana": "70" - }, - "4191": { - "name": "Harbinger Flame Protection", - "description": "Reduces damage the target takes from fire by 80%.", - "school": "Life Magic", - "family": "109", - "difficulty": "350", - "duration": "120", - "mana": "70" - }, - "4192": { - "name": "Harbinger Lightning Protection", - "description": "Reduces damage the target takes from Lightning by 80%.", - "school": "Life Magic", - "family": "107", - "difficulty": "350", - "duration": "120", - "mana": "70" - }, - "4193": { - "name": "Harbinger Magic Defense", - "description": "Increases the caster's Magic Defense skill by 400 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "4194": { - "name": "Magical Void", - "description": "Decreases the target's Magic Defense skill by 350 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "350", - "duration": "30", - "mana": "70" - }, - "4195": { - "name": "Harbinger Melee Defense", - "description": "Increases the caster's Melee Defense skill by 400 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "4196": { - "name": "Harbinger Missile Defense", - "description": "Increases the caster's Missile Defense skill by 400 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "400", - "duration": "60", - "mana": "70" - }, - "4197": { - "name": "Naked to the Elements", - "description": "Decrease the target's Melee Defense skill by 350 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "350", - "duration": "30", - "mana": "70" - }, - "4198": { - "name": "Paradox-touched Olthoi Infested Area Recall", - "description": "Transports the caster to the area infested by the Paradox-touched Olthoi.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "225", - "duration": "-1", - "mana": "150" - }, - "4199": { - "name": "Frozen Armor", - "description": "A layer of thin but sturdy frost covers you. increasing your natural armor by 260.", - "school": "Life Magic", - "family": "115", - "difficulty": "401", - "duration": "7200", - "mana": "70" - }, - "4200": { - "name": "Into the Darkness", - "description": "Teleports the target into a dark zombie filled dungeon.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "4201": { - "name": "Numbing Chill", - "description": "A numbing chill that acclimates you to cold.", - "school": "Life Magic", - "family": "106", - "difficulty": "340", - "duration": "180", - "mana": "70" - }, - "4202": { - "name": "Trevor's Zombie Strike", - "description": "Damages the first thing it hits.", - "school": "War Magic", - "family": "233", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4203": { - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4204": { - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4205": { - "name": "Dark Crypt Entrance", - "description": "Sends the target into the Dark Crypt.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4206": { - "name": "Chewy Center", - "description": "Dispels all negative enchantments of level 7 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "350", - "duration": "-1", - "mana": "280" - }, - "4207": { - "name": "Arena of the Pumpkin King", - "description": "Transports the target to the Arena of the Pumpkin King.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4208": { - "name": "Spectral Flame", - "description": "Shoots a bolt of spectral energy dealing 110-180 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4209": { - "name": "Gummy Shield", - "description": "Boosts the targets magic defense skill by 100 for a short time.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "500", - "duration": "30", - "mana": "70" - }, - "4210": { - "name": "The Jitters", - "description": "Boosts the targets missile defense by 100 for a short time.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "500", - "duration": "30", - "mana": "70" - }, - "4211": { - "name": "Licorice Leap", - "description": "Boosts casters jump skill by 100 for a short time.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "500", - "duration": "30", - "mana": "100" - }, - "4212": { - "name": "Sticky Melee", - "description": "Boosts the targets melee defense skill by 100 for a short time.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "500", - "duration": "30", - "mana": "70" - }, - "4213": { - "name": "Colosseum Recall", - "description": "Sends the caster to the Colosseum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4214": { - "name": "Return to the Keep", - "description": "This spell returns the caster to Candeth Keep.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4215": { - "name": "Shadow Armor", - "description": "The darkness envelops this armor. offering magical protection from harm.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "900", - "duration": "3600", - "mana": "70" - }, - "4216": { - "name": "Frost Wave", - "description": "Shoots eight waves of frost forward from the caster. Each wave does 30-60 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "300", - "duration": "-1", - "mana": "80" - }, - "4217": { - "name": "Gourd Guard", - "description": "Improves the Pumpkin Shield's armor value by 300 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "410", - "duration": "3600", - "mana": "70" - }, - "4218": { - "name": "Knockback", - "description": "Knocks the target back from the portal.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4219": { - "name": "Trial of the Arm", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4220": { - "name": "Trial of the Heart", - "description": "Sends the target directly to the Prodigal Harbinger's Lair.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4221": { - "name": "Spectral Life Magic Mastery", - "description": "Increases the caster's Life Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "488", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "4222": { - "name": "Chambers Beneath", - "description": "Sends the target directly to the chambers beneath Linvak Tukal.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4223": { - "name": "Trials Graduation Chamber", - "description": "Portals the target to the Trials Graduation Chamber.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4224": { - "name": "Trial of the Mind", - "description": "Portals the target to Linvak Tukal's Trial of the Mind.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4225": { - "name": "Trials of the Arm. Mind and Heart", - "description": "Sends the target to the Trials of the Arm. Mind and Heart.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4226": { - "name": "Epic Endurance", - "description": "Increases the target's Endurance by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4227": { - "name": "Epic Willpower", - "description": "Increases the target's Self by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4228": { - "name": "Awakening", - "description": "You awake as if from a dream.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4229": { - "name": "Journey Into the Past", - "description": "This spell transports the target into the Apparition Black Death Catacomb.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4230": { - "name": "Bael'Zharon Dream Sending", - "description": "Teleports the player into the dream realm of the Ithaenc Quiddity Seed.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "4231": { - "name": "Leadership Mastery Other Incantation", - "description": "Increases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "325", - "duration": "7200", - "mana": "80" - }, - "4232": { - "name": "Epic Leadership", - "description": "Increases the target's Leadership skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "293", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4233": { - "name": "Aerbax Recall Center Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4234": { - "name": "Aerbax Recall East Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4235": { - "name": "Aerbax Recall North Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4236": { - "name": "Aerbax Recall South Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4237": { - "name": "Aerbax Recall West Platform", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4238": { - "name": "Aerbax Expulsion", - "description": "Portals the target off Aerbax's Platforms.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4239": { - "name": "Ring of Death", - "description": "A large explosion dealing massive ammounts of damage to everyone it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "150" - }, - "4240": { - "name": "Aerbax's Magic Shield", - "description": "Increases the caster's Magic Defense by 900 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4241": { - "name": "Aerbax Magic Shield Down", - "description": "Nullifies Aerbax's Magic Shield.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4242": { - "name": "Aerbax's Melee Shield", - "description": "Increases the caster's Melee Defense by 900 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4243": { - "name": "Aerbax Melee Shield Down", - "description": "Nullifies Aerbax's Melee Shield.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4244": { - "name": "Aerbax's Missile Shield", - "description": "Increases the caster's Missile Defense by 900 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4245": { - "name": "Aerbax Missile Shield Down", - "description": "Nullifies Aerbax's Missile Shield.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "800", - "duration": "180", - "mana": "70" - }, - "4246": { - "name": "MeteorStrike", - "description": "Rains LOTS of red lightning down.", - "school": "War Magic", - "family": "239", - "difficulty": "400", - "duration": "-1", - "mana": "1" - }, - "4247": { - "name": "Tanada Battle Burrows Portal Sending", - "description": "This spell transports the target to the Tanada Battle Burrows.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "4248": { - "name": "Shroud Cabal North Outpost Sending", - "description": "This spell sends the player to the Shroud Cabal Northern Outpost", - "school": "Item Enchantment", - "family": "214", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "4249": { - "name": "Shroud Cabal South Outpost Sending", - "description": "This spell sends the player to the Shroud Cabal Southern Outpost", - "school": "Item Enchantment", - "family": "214", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "4250": { - "name": "Aerbax's Platform", - "description": "Portals the target to the Aerbax's Platform.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4251": { - "name": "Jester's Boot", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4252": { - "name": "Entrance to the Jester's Cell", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4253": { - "name": "Entrance to the Jester's Cell", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4254": { - "name": "Jester's Prison Hallway", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4255": { - "name": "Jester's Prison Entryway", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4256": { - "name": "Jester Recall 1", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4257": { - "name": "Jester Recall 2", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4258": { - "name": "Jester Recall 3", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4259": { - "name": "Jester Recall 4", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4260": { - "name": "Jester Recall 5", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4261": { - "name": "Jester Recall 6", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4262": { - "name": "Jester Recall 7", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4263": { - "name": "Jester Recall 8", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4264": { - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4265": { - "name": "Arcane Pyramid", - "description": "Shoots a pyramid at the target. The pyramid does 130-185 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4266": { - "name": "Blood Bolt", - "description": "Shoots a bolt of blood at your target that does 100-200 points of health damage.", - "school": "Life Magic", - "family": "80", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "4267": { - "name": "Cow", - "description": "Shoots a Cow at your target. Cow does 100-200 points of Bludgeoning damage.", - "school": "War Magic", - "family": "118", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4268": { - "name": "Fireworks", - "description": "Shoots fireworks at your target. The fireworks do 100-200 points of Fire damage.", - "school": "War Magic", - "family": "121", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4269": { - "name": "Present", - "description": "Shoots a Present at your target. Present does 100-200 points of slashing damage.", - "school": "War Magic", - "family": "118", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4270": { - "name": "Table", - "description": "Shoots a Table at your target. Table does 100-200 points of piercing damage.", - "school": "War Magic", - "family": "118", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4271": { - "name": "Acid Whip", - "description": "Sends a line of eight balls of acid towards the target. Each ball does 60-120 points of acid damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "229", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4272": { - "name": "Razor Whip", - "description": "Sends a line of eight whirling blades towards the target. Each ball does 60-120 points of slashing damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "235", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4273": { - "name": "Spray of Coins", - "description": "Sends a wall of thirty coins towards the target. Each coin does 1-30 points of bludgeoning damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "230", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4274": { - "name": "Flame Whip", - "description": "Sends a line of eight balls of fire towards the target. Each ball does 60-120 points of fire damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "233", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4275": { - "name": "Electric Whip", - "description": "Sends a line of eight bolts of lightning towards the target. Each ball does 60-120 points of electric damage to the first thing it hits. The wall is created 2 meters in front of the caster.", - "school": "War Magic", - "family": "232", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4276": { - "name": "Jester's Malevolent Eye", - "description": "Shoots a beam of light at your target. It does 50-150 points of undefined damage.", - "school": "War Magic", - "family": "223", - "difficulty": "300", - "duration": "-1", - "mana": "80" - }, - "4277": { - "name": "Jester's Prison Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4278": { - "name": "Rytheran's Library Portal Sending", - "description": "This spell sends the player to Rytheran's Library.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "300", - "duration": "-1", - "mana": "50" - }, - "4280": { - "name": "Deck of Hands Favor", - "description": "Increases the target's Coordination by 15 points. This spell stacks with normal spells and cantrip spells.", - "school": "Creature Enchantment", - "family": "413", - "difficulty": "15", - "duration": "600", - "mana": "10" - }, - "4281": { - "name": "Deck of Eyes Favor", - "description": "Increases the target's Focus by 15 points. This spell stacks with normal spells and cantrip spells.", - "school": "Creature Enchantment", - "family": "415", - "difficulty": "15", - "duration": "600", - "mana": "10" - }, - "4282": { - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4283": { - "name": "Arcane Death", - "description": "Shoots a pyramid at the target. The pyramid does 250-500 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "4284": { - "name": "Harm Self", - "description": "Drains 100000 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "4285": { - "name": "Harm Self", - "description": "Drains 900000 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "4286": { - "name": "Harm Self", - "description": "Drains 300000 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "4287": { - "name": "Harm Self", - "description": "Drains 700000 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "4288": { - "name": "Harm Self", - "description": "Drains 500000 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "4289": { - "name": "Access the Messenger's Sanctuary", - "description": "Transports the target to the hidden cavern where Falatacot messengers tend to hide.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "1000", - "duration": "-1", - "mana": "150" - }, - "4290": { - "name": "Incantation of Armor Other", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4291": { - "name": "Incantation of Armor Self", - "description": "Increases the caster's natural armor by 250 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4292": { - "name": "Incantation of Bafflement Other", - "description": "Decreases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4293": { - "name": "Incantation of Bafflement Self", - "description": "Decreases the caster's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "10", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4294": { - "name": "Incantation of Clumsiness Other", - "description": "Decreases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4295": { - "name": "Incantation of Clumsiness Self", - "description": "Decreases the caster's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "8", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4296": { - "name": "Incantation of Coordination Other", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4297": { - "name": "Incantation of Coordination Self", - "description": "Increases the caster's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4298": { - "name": "Incantation of Endurance Other", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4299": { - "name": "Incantation of Endurance Self", - "description": "Increases the caster's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4300": { - "name": "Incantation of Enfeeble Other", - "description": "Drains 66-131 points of the target's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4301": { - "name": "Incantation of Enfeeble Self", - "description": "Drains 50-100 points of the caster's Stamina.", - "school": "Life Magic", - "family": "82", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4302": { - "name": "Incantation of Feeblemind Other", - "description": "Decreases the target's Self by 45 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4303": { - "name": "Incantation of Feeblemind Self", - "description": "Decreases the caster's Self by 45 points.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4304": { - "name": "Incantation of Focus Other", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4305": { - "name": "Incantation of Focus Self", - "description": "Increases the caster's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4306": { - "name": "Incantation of Frailty Other", - "description": "Decreases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4307": { - "name": "Incantation of Frailty Self", - "description": "Decreases the caster's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "4", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4308": { - "name": "Incantation of Harm Other", - "description": "Drains 50-95 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4309": { - "name": "Incantation of Harm Self", - "description": "Drains 48-90 points of the caster's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4310": { - "name": "Incantation of Heal Other", - "description": "Restores 90-180 points of the target's Health.", - "school": "Life Magic", - "family": "79", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4311": { - "name": "Incantation of Heal Self", - "description": "Restores 90-180 points of the caster's Health.", - "school": "Life Magic", - "family": "67", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4312": { - "name": "Incantation of Imperil Other", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4313": { - "name": "Incantation of Imperil Self", - "description": "Decreases the caster's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4314": { - "name": "Incantation of Mana Boost Other", - "description": "Restores 51-100 points of the target's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4315": { - "name": "Incantation of Mana Boost Self", - "description": "Restores 51-100 points of the caster's Mana.", - "school": "Life Magic", - "family": "83", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4316": { - "name": "Incantation of Mana Drain Other", - "description": "Drains 52-95 points of the target's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4317": { - "name": "Incantation of Mana Drain Self", - "description": "Drains 48-90 points of the caster's Mana.", - "school": "Life Magic", - "family": "84", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4318": { - "name": "Incantation of Quickness Other", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4319": { - "name": "Incantation of Quickness Self", - "description": "Increases the caster's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4320": { - "name": "Incantation of Revitalize Other", - "description": "Restores 125-250 points of the target's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4321": { - "name": "Incantation of Revitalize Self", - "description": "Restores 125-250 points of the caster's Stamina.", - "school": "Life Magic", - "family": "81", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4322": { - "name": "Incantation of Slowness Other", - "description": "Decreases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4323": { - "name": "Incantation of Slowness Self", - "description": "Decreases the caster's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4324": { - "name": "Incantation of Strength Other", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4325": { - "name": "Incantation of Strength Self", - "description": "Increases the caster's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4326": { - "name": "Incantation of Weakness Other", - "description": "Decreases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4327": { - "name": "Incantation of Weakness Self", - "description": "Decrease the caster's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "2", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4328": { - "name": "Incantation of Willpower Other", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4329": { - "name": "Incantation of Willpower Self", - "description": "Increases the caster's Self by 45 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4330": { - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels all negative enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4331": { - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all negative enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4332": { - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels 2-6 positive enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4333": { - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all positive enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4334": { - "name": "Incantation of Nullify All Magic Other", - "description": "Dispels all enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4335": { - "name": "Incantation of Nullify All Magic Self", - "description": "Dispels all enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4336": { - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4337": { - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 3-6 negative Creature Magic enchantments of level 8 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4338": { - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4339": { - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 2-6 positive Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4340": { - "name": "Incantation of Nullify Creature Magic Other", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the target.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4341": { - "name": "Incantation of Nullify Creature Magic Self", - "description": "Dispels 2-6 Creature Magic enchantments of level 6 or lower from the caster.", - "school": "Creature Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4342": { - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 3-6 negative Item Magic enchantments of level 8 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4343": { - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 2-6 positive Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4344": { - "name": "Incantation of Nullify Item Magic", - "description": "Dispels 2-6 Item Magic enchantments of level 6 or lower from the target.", - "school": "Item Enchantment", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4345": { - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4346": { - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 3-6 negative Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "320" - }, - "4347": { - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4348": { - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 2-6 positive Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4349": { - "name": "Incantation of Nullify Life Magic Other", - "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the target.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4350": { - "name": "Incantation of Nullify Life Magic Self", - "description": "Dispels 2-6 Life Magic enchantments of level 8 or lower from the caster.", - "school": "Life Magic", - "family": "250", - "difficulty": "400", - "duration": "-1", - "mana": "340" - }, - "4351": { - "name": "Incantation of Greater Alacrity of the Conclave", - "description": "Enhances the Coordination of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4352": { - "name": "Incantation of Greater Vivify the Conclave", - "description": "Enhances the Endurance of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4353": { - "name": "Incantation of Greater Acumen of the Conclave", - "description": "Enhances the Focus of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4354": { - "name": "Incantation of Greater Speed the Conclave", - "description": "Enhances the Quickness of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4355": { - "name": "Incantation of Greater Volition of the Conclave", - "description": "Enhances the Self of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4356": { - "name": "Incantation of Greater Empowering the Conclave", - "description": "Enhances the Strength of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4357": { - "name": "Incantation of Greater Corrosive Ward", - "description": "Reduces damage all fellowship members take from acid by 70%", - "school": "Life Magic", - "family": "101", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4358": { - "name": "Incantation of Greater Scythe Ward", - "description": "Reduces damage all fellowship members take from Slashing by 70%", - "school": "Life Magic", - "family": "113", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4359": { - "name": "Incantation of Greater Flange Ward", - "description": "Reduces damage all fellowship members from Bludgeoning by 70%", - "school": "Life Magic", - "family": "103", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4360": { - "name": "Incantation of Greater Frore Ward", - "description": "Reduces damage all fellowship members take from Cold by 70%", - "school": "Life Magic", - "family": "105", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4361": { - "name": "Incantation of Greater Inferno Ward", - "description": "Reduces damage all fellowship members take from fire by 70%", - "school": "Life Magic", - "family": "109", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4362": { - "name": "Incantation of Greater Voltaic Ward", - "description": "Reduces damage all fellowship members take from Lightning by 70%", - "school": "Life Magic", - "family": "107", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4363": { - "name": "Incantation of Greater Lance Ward", - "description": "Reduces damage all fellowship members take from Piercing by 70%", - "school": "Life Magic", - "family": "111", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4364": { - "name": "Incantation of Greater Endless Well", - "description": "Enhances the understanding of the ebb and flow of mana. All fellowship members received a 115% increase to their nautral mana recovery rate.", - "school": "Life Magic", - "family": "97", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4365": { - "name": "Incantation of Greater Soothing Wind", - "description": "Enhances the blood flow and aids in knitting wounds closed. All fellowship member receive a 115% increase to their natural health recovery rate.", - "school": "Life Magic", - "family": "93", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4366": { - "name": "Incantation of Greater Golden Wind", - "description": "Enhances the intake of air and utilization of energy. All fellowship member receive a 115% increase to their natural stamina recovery rate.", - "school": "Life Magic", - "family": "95", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4367": { - "name": "Incantation of Greater Conjurant Chant", - "description": "Enhances the Creature Enchantment skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4368": { - "name": "Incantation of Warden of the Clutch", - "description": "Enhances the Missile Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4369": { - "name": "Incantation of Guardian of the Clutch", - "description": "Enhances the Melee Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4370": { - "name": "Incantation of Greater Artificant Chant", - "description": "Enhances the Item Enchantment skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4371": { - "name": "Incantation of Greater Vitaeic Chant", - "description": "Enhances the Life Magic skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4372": { - "name": "Incantation of Sanctifier of the Clutch", - "description": "Enhances the Magic Defense of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4373": { - "name": "Incantation of Greater Conveyic Chant", - "description": "Enhances the Mana Conversion skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4374": { - "name": "Incantation of Greater Hieromantic Chant", - "description": "Enhances the War Magic skill of all Fellowship members by 45 points for 60 minutes.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4375": { - "name": "Incantation of Blossom Black Firework OUT", - "description": "Shoots out a Black Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4376": { - "name": "Incantation of Blossom Blue Firework OUT", - "description": "Shoots out a Blue Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4377": { - "name": "Incantation of Blossom Green Firework OUT", - "description": "Shoots out a Green Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4378": { - "name": "Incantation of Blossom Orange Firework OUT", - "description": "Shoots out a Orange Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4379": { - "name": "Incantation of Blossom Purple Firework OUT", - "description": "Shoots out a Purple Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4380": { - "name": "Incantation of Blossom Red Firework OUT", - "description": "Shoots out a Red Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4381": { - "name": "Incantation of Blossom White Firework OUT", - "description": "Shoots out a White Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4382": { - "name": "Incantation of Blossom Yellow Firework OUT", - "description": "Shoots out a Yellow Firework.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4383": { - "name": "Incantation of Blossom Black Firework UP", - "description": "Shoots a Black Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4384": { - "name": "Incantation of Blossom Blue Firework UP", - "description": "Shoots a Blue Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4385": { - "name": "Incantation of Blossom Green Firework UP", - "description": "Shoots a Green Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4386": { - "name": "Incantation of Blossom Orange Firework UP", - "description": "Shoots a Orange Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4387": { - "name": "Incantation of Blossom Purple Firework UP", - "description": "Shoots a Purple Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4388": { - "name": "Incantation of Blossom Red Firework UP", - "description": "Shoots a Red Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4389": { - "name": "Incantation of Blossom White Firework UP", - "description": "Shoots a White Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4390": { - "name": "Incantation of Blossom Yellow Firework UP", - "description": "Shoots a Yellow Firework straight up.", - "school": "War Magic", - "family": "409", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4391": { - "name": "Incantation of Acid Bane", - "description": "Increases a shield or piece of armor's resistance to acid damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "162", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4392": { - "name": "Incantation of Acid Lure", - "description": "Decreases a shield or piece of armor's resistance to acid damage by 200%.", - "school": "Item Enchantment", - "family": "163", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4393": { - "name": "Incantation of Blade Bane", - "description": "Increases a shield or piece of armor's resistance to slashing damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "174", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4394": { - "name": "Incantation of Blade Lure", - "description": "Decreases a shield or piece of armor's resistance to slashing damage by 200%.", - "school": "Item Enchantment", - "family": "175", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4395": { - "name": "Aura of Incantation of Blood Drinker Self", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4396": { - "name": "Incantation of Blood Loather", - "description": "Decreases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4397": { - "name": "Incantation of Bludgeon Bane", - "description": "Increases a shield or piece of armor's resistance to bludgeoning damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "164", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4398": { - "name": "Incantation of Bludgeon Lure", - "description": "Decreases a shield or piece of armor's resistance to bludgeoning damage by 200%.", - "school": "Item Enchantment", - "family": "165", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4399": { - "name": "Incantation of Brittlemail", - "description": "Worsens a shield or piece of armor's armor value by 300 points.", - "school": "Item Enchantment", - "family": "161", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4400": { - "name": "Aura of Incantation of Defender Self", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 20%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "4401": { - "name": "Incantation of Flame Bane", - "description": "Increases a shield or piece of armor's resistance to fire damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "170", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4402": { - "name": "Incantation of Flame Lure", - "description": "Decreases a shield or piece of armor's resistance to fire damage by 200%.", - "school": "Item Enchantment", - "family": "171", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4403": { - "name": "Incantation of Frost Bane", - "description": "Increases a shield or piece of armor's resistance to cold damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "166", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4404": { - "name": "Incantation of Frost Lure", - "description": "Decreases a shield or piece of armor's resistance to cold damage by 200%.", - "school": "Item Enchantment", - "family": "167", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4405": { - "name": "Aura of Incantation of Heart Seeker Self", - "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4406": { - "name": "Incantation of Hermetic Void", - "description": "Decreases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "family": "194", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4407": { - "name": "Incantation of Impenetrability", - "description": "Improves a shield or piece of armor's armor value by 240 points. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4408": { - "name": "Incantation of Leaden Weapon", - "description": "Worsens a weapon's speed by 80 points.", - "school": "Item Enchantment", - "family": "159", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4409": { - "name": "Incantation of Lightning Bane", - "description": "Increases a shield or piece of armor's resistance to electric damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "168", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4410": { - "name": "Incantation of Lightning Lure", - "description": "Decreases a shield or piece of armor's resistance to electric damage by 200%.", - "school": "Item Enchantment", - "family": "169", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4411": { - "name": "Incantation of Lure Blade", - "description": "Decreases the Melee Defense skill modifier of a weapon or magic caster by 20%.", - "school": "Item Enchantment", - "family": "157", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4412": { - "name": "Incantation of Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to piercing damage by 200%. Target yourself to cast this spell on all of your equipped armor.", - "school": "Item Enchantment", - "family": "172", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4413": { - "name": "Incantation of Piercing Lure", - "description": "Decreases a shield or piece of armor's resistance to piercing damage by 200%.", - "school": "Item Enchantment", - "family": "173", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4414": { - "name": "Aura of Incantation of Spirit Drinker Self", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4415": { - "name": "Incantation of Spirit Loather", - "description": "Decreases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "family": "155", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4416": { - "name": "Incantation of Strengthen Lock", - "description": "Increases a lock's resistance to picking by 250 points.", - "school": "Item Enchantment", - "family": "192", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4417": { - "name": "Aura of Incantation of Swift Killer Self", - "description": "Improves a weapon's speed by 80 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4418": { - "name": "Aura of Incantation of Hermetic Link Self", - "description": "Increases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4419": { - "name": "Incantation of Turn Blade", - "description": "Decreases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "family": "153", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4420": { - "name": "Incantation of Weaken Lock", - "description": "Decreases a lock's resistance to picking by 250 points.", - "school": "Item Enchantment", - "family": "193", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4421": { - "name": "Incantation of Acid Arc", - "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4422": { - "name": "Incantation of Blade Arc", - "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4423": { - "name": "Incantation of Flame Arc", - "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4424": { - "name": "Incantation of Force Arc", - "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4425": { - "name": "Incantation of Frost Arc", - "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4426": { - "name": "Incantation of Lightning Arc", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4427": { - "name": "Incantation of Shock Arc", - "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4428": { - "name": "Incantation of Martyr's Hecatomb", - "description": "Drains one-quarter of the caster's health into a bolt of energy. When struck by the bolt. the target's health is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4429": { - "name": "Incantation of Martyr's Blight", - "description": "Drains one-quarter of the caster's mana into a bolt of energy. When struck by the bolt. the target's mana is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "84", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4430": { - "name": "Incantation of Martyr's Tenacity", - "description": "Drains one-quarter of the caster's stamina into a bolt of energy. When struck by the bolt. the target's stamina is reduced by 200% of the amount drained.", - "school": "Life Magic", - "family": "82", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4431": { - "name": "Incantation of Acid Blast", - "description": "Shoots five streams of acid outward from the caster. Each stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4432": { - "name": "Incantation of Acid Streak", - "description": "Sends a stream of acid streaking towards the target. The stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4433": { - "name": "Incantation of Acid Stream", - "description": "Shoots a stream of acid at the target. The stream does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4434": { - "name": "Incantation of Acid Volley", - "description": "Shoots five streams of acid toward the target. Each stream does 47-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4435": { - "name": "Incantation of Blade Blast", - "description": "Shoots five whirling blades outward from the caster. Each blade does 47-94 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "137", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4436": { - "name": "Incantation of Blade Volley", - "description": "Shoots five whirling blades toward the target. Each blade does 47-94 points of Slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "213", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4437": { - "name": "Incantation of Bludgeoning Volley", - "description": "Shoots five shock waves toward the target. Each wave does 47-94 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "208", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4438": { - "name": "Incantation of Flame Blast", - "description": "Shoots five bolts of flame outward from the caster. Each bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "135", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4439": { - "name": "Incantation of Flame Bolt", - "description": "Shoots a bolt of flame at the target. The bolt does 142-204 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "121", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4440": { - "name": "Incantation of Flame Streak", - "description": "Sends a bolt of flame streaking towards the target. The bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "247", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4441": { - "name": "Incantation of Flame Volley", - "description": "Shoots five bolts of flame toward the target. Each bolt does 47-94 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "211", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4442": { - "name": "Incantation of Force Blast", - "description": "Shoots five force bolts outward from the caster. Each bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "136", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4443": { - "name": "Incantation of Force Bolt", - "description": "Shoots a bolt of force at the target. The bolt does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4444": { - "name": "Incantation of Force Streak", - "description": "Sends a bolt of force streaking towards the target. The bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "248", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4445": { - "name": "Incantation of Force Volley", - "description": "Shoots five bolts of force toward the target. Each bolt does 47-94 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "212", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4446": { - "name": "Incantation of Frost Blast", - "description": "Shoots five bolts of frost outward from the caster. Each bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "133", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4447": { - "name": "Incantation of Frost Bolt", - "description": "Shoots a bolt of cold at the target. The bolt does 142-204 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "119", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4448": { - "name": "Incantation of Frost Streak", - "description": "Sends a bolt of cold streaking towards the target. The bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "245", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4449": { - "name": "Incantation of Frost Volley", - "description": "Shoots five bolts of frost toward the target. Each bolt does 47-94 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "209", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4450": { - "name": "Incantation of Lightning Blast", - "description": "Shoots five bolts of lightning outward from the caster. Each bolt does 47-94 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4451": { - "name": "Incantation of Lightning Bolt", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4452": { - "name": "Incantation of Lightning Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 47-94 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4453": { - "name": "Incantation of Lightning Volley", - "description": "Shoots five bolts of lightning toward the target. Each bolt does 47-94 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4454": { - "name": "Incantation of Shock Blast", - "description": "Shoots five shock waves outward from the caster. Each wave does 47-94 points of damage to the first thing it hits.", - "school": "War Magic", - "family": "132", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4455": { - "name": "Incantation of Shock Wave", - "description": "Shoots a shock wave at the target. The wave does 142-204 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "118", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4456": { - "name": "Incantation of Shock Wave Streak", - "description": "Sends a shock wave streaking towards the target. The wave does 47-94 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "244", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4457": { - "name": "Incantation of Whirling Blade", - "description": "Shoots a magical blade at the target. The bolt does 142-204 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "123", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "4458": { - "name": "Incantation of Whirling Blade Streak", - "description": "Sends a magical blade streaking towards the target. The bolt does 47-94 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "249", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4459": { - "name": "Incantation of Acid Protection Other", - "description": "Reduces damage the target takes from acid by 68%", - "school": "Life Magic", - "family": "101", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4460": { - "name": "Incantation of Acid Protection Self", - "description": "Reduces damage the caster takes from acid by 68%", - "school": "Life Magic", - "family": "101", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4461": { - "name": "Incantation of Blade Protection Other", - "description": "Reduces damage the target takes from Slashing by 68%", - "school": "Life Magic", - "family": "113", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4462": { - "name": "Incantation of Blade Protection Self", - "description": "Reduces damage the caster takes from Slashing by 68%", - "school": "Life Magic", - "family": "113", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4463": { - "name": "Incantation of Bludgeoning Protection Other", - "description": "Reduces damage the target takes from Bludgeoning by 68%", - "school": "Life Magic", - "family": "103", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4464": { - "name": "Incantation of Bludgeoning Protection Self", - "description": "Reduces damage the caster takes from Bludgeoning by 68%", - "school": "Life Magic", - "family": "103", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4465": { - "name": "Incantation of Cold Protection Other", - "description": "Reduces damage the target takes from Cold by 68%", - "school": "Life Magic", - "family": "105", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4466": { - "name": "Incantation of Cold Protection Self", - "description": "Reduces damage the caster takes from Cold by 68%", - "school": "Life Magic", - "family": "105", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4467": { - "name": "Incantation of Fire Protection Other", - "description": "Reduces damage the target takes from fire by 68%", - "school": "Life Magic", - "family": "109", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4468": { - "name": "Incantation of Fire Protection Self", - "description": "Reduces damage the caster takes from Fire by 68%", - "school": "Life Magic", - "family": "109", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4469": { - "name": "Incantation of Lightning Protection Other", - "description": "Reduces damage the target takes from Lightning by 68%", - "school": "Life Magic", - "family": "107", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4470": { - "name": "Incantation of Lightning Protection Self", - "description": "Reduces damage the caster takes from Lightning by 68%", - "school": "Life Magic", - "family": "107", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4471": { - "name": "Incantation of Piercing Protection Other", - "description": "Reduces damage the target takes from Piercing by 68%", - "school": "Life Magic", - "family": "111", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4472": { - "name": "Incantation of Piercing Protection Self", - "description": "Reduces damage the caster takes from Piercing by 68%", - "school": "Life Magic", - "family": "111", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4473": { - "name": "Incantation of Acid Vulnerability Other", - "description": "Increases damage the target takes from acid by 210%.", - "school": "Life Magic", - "family": "102", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4474": { - "name": "Incantation of Acid Vulnerability Self", - "description": "Increases damage the caster takes from acid by 210%.", - "school": "Life Magic", - "family": "102", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4475": { - "name": "Incantation of Blade Vulnerability Other", - "description": "Increases damage the target takes from Slashing by 210%.", - "school": "Life Magic", - "family": "114", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4476": { - "name": "Incantation of Blade Vulnerability Self", - "description": "Increases damage the caster takes from Slashing by 210%.", - "school": "Life Magic", - "family": "114", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4477": { - "name": "Incantation of Bludgeoning Vulnerability Other", - "description": "Increases damage the target takes from Bludgeoning by 210%.", - "school": "Life Magic", - "family": "104", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4478": { - "name": "Incantation of Bludgeoning Vulnerability Self", - "description": "Increases damage the caster takes from Bludgeoning by 210%.", - "school": "Life Magic", - "family": "104", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4479": { - "name": "Incantation of Cold Vulnerability Other", - "description": "Increases damage the target takes from Cold by 210%.", - "school": "Life Magic", - "family": "106", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4480": { - "name": "Incantation of Cold Vulnerability Self", - "description": "Increases damage the caster takes from Cold by 210%.", - "school": "Life Magic", - "family": "106", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4481": { - "name": "Incantation of Fire Vulnerability Other", - "description": "Increases damage the target takes from Fire by 210%.", - "school": "Life Magic", - "family": "110", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4482": { - "name": "Incantation of Fire Vulnerability Self", - "description": "Increases damage the caster takes from Fire by 210%.", - "school": "Life Magic", - "family": "110", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4483": { - "name": "Incantation of Lightning Vulnerability Other", - "description": "Increases damage the target takes from Lightning by 210%.", - "school": "Life Magic", - "family": "108", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4484": { - "name": "Incantation of Lightning Vulnerability Self", - "description": "Increases damage the caster takes from Lightning by 210%.", - "school": "Life Magic", - "family": "108", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4485": { - "name": "Incantation of Piercing Vulnerability Other", - "description": "Increases damage the target takes from Piercing by 210%.", - "school": "Life Magic", - "family": "112", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4486": { - "name": "Incantation of Piercing Vulnerability Self", - "description": "Increases damage the caster takes from Piercing by 210%.", - "school": "Life Magic", - "family": "112", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4487": { - "name": "Incantation of Exhaustion Other", - "description": "Decreases the rate at which the target regains Stamina by 75%.", - "school": "Life Magic", - "family": "96", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4488": { - "name": "Incantation of Exhaustion Self", - "description": "Decreases the rate at which the caster regains Stamina by 75%.", - "school": "Life Magic", - "family": "96", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4489": { - "name": "Incantation of Fester Other", - "description": "Decrease target's natural healing rate by 75%.", - "school": "Life Magic", - "family": "94", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4490": { - "name": "Incantation of Fester Self", - "description": "Decrease caster's natural healing rate by 75%.", - "school": "Life Magic", - "family": "94", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4491": { - "name": "Incantation of Mana Depletion Other", - "description": "Decreases target's natural mana rate by 75%.", - "school": "Life Magic", - "family": "98", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4492": { - "name": "Incantation of Mana Depletion Self", - "description": "Decreases caster's natural mana rate by 75%.", - "school": "Life Magic", - "family": "98", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4493": { - "name": "Incantation of Mana Renewal Other", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "family": "97", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4494": { - "name": "Incantation of Mana Renewal Self", - "description": "Increases the caster's natural mana rate by 145%.", - "school": "Life Magic", - "family": "97", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4495": { - "name": "Incantation of Regeneration Other", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "family": "93", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4496": { - "name": "Incantation of Regeneration Self", - "description": "Increase caster's natural healing rate by 145%.", - "school": "Life Magic", - "family": "93", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4497": { - "name": "Incantation of Rejuvenation Other", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "family": "95", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4498": { - "name": "Incantation of Rejuvenation Self", - "description": "Increases the rate at which the caster regains Stamina by 145%.", - "school": "Life Magic", - "family": "95", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4499": { - "name": "Incantation of Arcanum Salvaging Self", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4500": { - "name": "Incantation of Arcanum Enlightenment", - "description": "Increases the target's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4501": { - "name": "Incantation of Nuhmudira's Wisdom", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4502": { - "name": "Incantation of Nuhmudira Enlightenment", - "description": "Increases the target's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4503": { - "name": "Incantation of Alchemy Ineptitude Other", - "description": "Decreases the target's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4504": { - "name": "Incantation of Alchemy Ineptitude Self", - "description": "Decreases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "220", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4505": { - "name": "Incantation of Alchemy Mastery Other", - "description": "Increases the target's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4506": { - "name": "Incantation of Alchemy Mastery Self", - "description": "Increases the caster's Alchemy skill by 45 points.", - "school": "Creature Enchantment", - "family": "221", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4507": { - "name": "Incantation of Arcane Benightedness Other", - "description": "Decreases the target's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4508": { - "name": "Incantation of Arcane Benightedness Self", - "description": "Decreases the caster's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "family": "54", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4509": { - "name": "Incantation of Arcane Enlightenment Other", - "description": "Increases the target's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4510": { - "name": "Incantation of Arcane Enlightenment Self", - "description": "Increases the caster's Arcane Lore skill by 45 points.", - "school": "Creature Enchantment", - "family": "53", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4511": { - "name": "Incantation of Armor Tinkering Expertise Other", - "description": "Increases the target's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4512": { - "name": "Incantation of Armor Tinkering Expertise Self", - "description": "Increases the caster's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "55", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4513": { - "name": "Incantation of Armor Tinkering Ignorance Other", - "description": "Decreases the target's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4514": { - "name": "Incantation of Armor Tinkering Ignorance Self", - "description": "Decreases the caster's Armor Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "56", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4515": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4516": { - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4517": { - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4518": { - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4519": { - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4520": { - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4521": { - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4522": { - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4523": { - "name": "Incantation of Cooking Ineptitude Other", - "description": "Decreases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4524": { - "name": "Incantation of Cooking Ineptitude Self", - "description": "Decreases the caster's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "217", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4525": { - "name": "Incantation of Cooking Mastery Other", - "description": "Increases the target's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4526": { - "name": "Incantation of Cooking Mastery Self", - "description": "Increases the caster's Cooking skill by 45 points.", - "school": "Creature Enchantment", - "family": "216", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4527": { - "name": "Incantation of Creature Enchantment Ineptitude Other", - "description": "Decreases the target's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4528": { - "name": "Incantation of Creature Enchantment Ineptitude Self", - "description": "Decreases the caster's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "44", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4529": { - "name": "Incantation of Creature Enchantment Mastery Other", - "description": "Increases the target's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4530": { - "name": "Incantation of Creature Enchantment Mastery Self", - "description": "Increases the caster's Creature Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "43", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4531": { - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4532": { - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4533": { - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4534": { - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4535": { - "name": "Incantation of Finesse Weapon Ineptitude Other", - "description": "Decreases the target's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4536": { - "name": "Incantation of Finesse Weapon Ineptitude Self", - "description": "Decreases the caster's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "24", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4537": { - "name": "Incantation of Finesse Weapon Mastery Other", - "description": "Increases the target's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4538": { - "name": "Incantation of Finesse Weapon Mastery Self", - "description": "Increases the caster's Finesse Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "23", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4539": { - "name": "Incantation of Deception Ineptitude Other", - "description": "Decreases the target's Deception skill by 45 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4540": { - "name": "Incantation of Deception Ineptitude Self", - "description": "Decreases the caster's Deception skill by 45 points.", - "school": "Creature Enchantment", - "family": "66", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4541": { - "name": "Incantation of Deception Mastery Other", - "description": "Increases the target's Deception skill by 45 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4542": { - "name": "Incantation of Deception Mastery Self", - "description": "Increases the caster's Deception skill by 45 points.", - "school": "Creature Enchantment", - "family": "65", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4543": { - "name": "Incantation of Defenselessness Other", - "description": "Decreases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4544": { - "name": "Incantation of Defenselessness Self", - "description": "Decreases the caster's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "40", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4545": { - "name": "Incantation of Faithlessness Other", - "description": "Decreases the target's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4546": { - "name": "Incantation of Faithlessness Self", - "description": "Decreases the caster's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "family": "76", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4547": { - "name": "Incantation of Fealty Other", - "description": "Increases the target's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4548": { - "name": "Incantation of Fealty Self", - "description": "Increases the caster's Loyalty skill by 45 points.", - "school": "Creature Enchantment", - "family": "75", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4549": { - "name": "Incantation of Fletching Ineptitude Other", - "description": "Decreases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4550": { - "name": "Incantation of Fletching Ineptitude Self", - "description": "Decreases the caster's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "219", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4551": { - "name": "Incantation of Fletching Mastery Other", - "description": "Increases the target's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4552": { - "name": "Incantation of Fletching Mastery Self", - "description": "Increases the caster's Fletching skill by 45 points.", - "school": "Creature Enchantment", - "family": "218", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4553": { - "name": "Incantation of Healing Ineptitude Other", - "description": "Decreases the target's Healing skill by 45 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4554": { - "name": "Incantation of Healing Ineptitude Self", - "description": "Decreases the caster's Healing skill by 45 points.", - "school": "Creature Enchantment", - "family": "68", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4555": { - "name": "Incantation of Healing Mastery Other", - "description": "Increases the target's Healing skill by 45 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4556": { - "name": "Incantation of Healing Mastery Self", - "description": "Increases the caster's Healing skill by 45 points.", - "school": "Creature Enchantment", - "family": "67", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4557": { - "name": "Incantation of Impregnability Other", - "description": "Increases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4558": { - "name": "Incantation of Impregnability Self", - "description": "Increases the caster's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4559": { - "name": "Incantation of Invulnerability Other", - "description": "Increases the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4560": { - "name": "Incantation of Invulnerability Self", - "description": "Increases the caster's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4561": { - "name": "Incantation of Item Enchantment Ineptitude Other", - "description": "Decreases the target's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4562": { - "name": "Incantation of Item Enchantment Ineptitude Self", - "description": "Decreases the caster's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "46", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4563": { - "name": "Incantation of Item Enchantment Mastery Other", - "description": "Increases the target's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4564": { - "name": "Incantation of Item Enchantment Mastery Self", - "description": "Increases the caster's Item Enchantment skill by 45 points.", - "school": "Creature Enchantment", - "family": "45", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4565": { - "name": "Incantation of Item Tinkering Expertise Other", - "description": "Increases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4566": { - "name": "Incantation of Item Tinkering Expertise Self", - "description": "Increases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4567": { - "name": "Incantation of Item Tinkering Ignorance Other", - "description": "Decreases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4568": { - "name": "Incantation of Item Tinkering Ignorance Self", - "description": "Decreases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4569": { - "name": "Incantation of Jumping Ineptitude Other", - "description": "Decreases the target's Jump skill by 45 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4570": { - "name": "Incantation of Jumping Ineptitude Self", - "description": "Decreases the caster's Jump skill by 45 points.", - "school": "Creature Enchantment", - "family": "70", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4571": { - "name": "Incantation of Jumping Mastery Other", - "description": "Increases the target's Jump skill by 45 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4572": { - "name": "Incantation of Jumping Mastery Self", - "description": "Increases the caster's Jump skill by 45 points.", - "school": "Creature Enchantment", - "family": "69", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4573": { - "name": "Incantation of Leaden Feet Other", - "description": "Decreases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4574": { - "name": "Incantation of Leaden Feet Self", - "description": "Decreases the caster's Run skill by 45 points.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4575": { - "name": "Incantation of Leadership Ineptitude Other", - "description": "Decreases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4576": { - "name": "Incantation of Leadership Ineptitude Self", - "description": "Decreases the caster's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "family": "72", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4577": { - "name": "Incantation of Leadership Mastery Other", - "description": "Increases the target's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4578": { - "name": "Incantation of Leadership Mastery Self", - "description": "Increases the caster's Leadership skill by 45 points.", - "school": "Creature Enchantment", - "family": "71", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4579": { - "name": "Incantation of Life Magic Ineptitude Other", - "description": "Decreases the target's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4580": { - "name": "Incantation of Life Magic Ineptitude Self", - "description": "Decreases the caster's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "48", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4581": { - "name": "Incantation of Life Magic Mastery Other", - "description": "Increases the target's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4582": { - "name": "Incantation of Life Magic Mastery Self", - "description": "Increases the caster's Life Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "47", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4583": { - "name": "Incantation of Lockpick Ineptitude Other", - "description": "Decreases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4584": { - "name": "Incantation of Lockpick Ineptitude Self", - "description": "Decreases the caster's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "74", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4585": { - "name": "Incantation of Lockpick Mastery Other", - "description": "Increases the target's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4586": { - "name": "Incantation of Lockpick Mastery Self", - "description": "Increases the caster's Lockpick skill by 45 points.", - "school": "Creature Enchantment", - "family": "73", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4587": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4588": { - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4589": { - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4590": { - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4591": { - "name": "Incantation of Magic Item Tinkering Expertise Other", - "description": "Increases the target's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4592": { - "name": "Incantation of Magic Item Tinkering Expertise Self", - "description": "Increases the caster's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "59", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4593": { - "name": "Incantation of Magic Item Tinkering Ignorance Other", - "description": "Decreases the target's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4594": { - "name": "Incantation of Magic Item Tinkering Ignorance Self", - "description": "Decreases the caster's Magic Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "60", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4595": { - "name": "Incantation of Magic Resistance Other", - "description": "Increases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4596": { - "name": "Incantation of Magic Resistance Self", - "description": "Increases the caster's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4597": { - "name": "Incantation of Magic Yield Other", - "description": "Decreases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4598": { - "name": "Incantation of Magic Yield Self", - "description": "Decreases the caster's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "42", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4599": { - "name": "Incantation of Mana Conversion Ineptitude Other", - "description": "Decreases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4600": { - "name": "Incantation of Mana Conversion Ineptitude Self", - "description": "Decreases the caster's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "52", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4601": { - "name": "Incantation of Mana Conversion Mastery Other", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4602": { - "name": "Incantation of Mana Conversion Mastery Self", - "description": "Increases the caster's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4603": { - "name": "Incantation of Monster Attunement Other", - "description": "Increases the target's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4604": { - "name": "Incantation of Monster Attunement Self", - "description": "Increases the caster's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "family": "63", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4605": { - "name": "Incantation of Monster Unfamiliarity Other", - "description": "Decreases the target's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4606": { - "name": "Incantation of Monster Unfamiliarity Self", - "description": "Decreases the caster's Assess Monster skill by 45 points.", - "school": "Creature Enchantment", - "family": "64", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4607": { - "name": "Incantation of Person Attunement Other", - "description": "Increases the target's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4608": { - "name": "Incantation of Person Attunement Self", - "description": "Increases the caster's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "family": "205", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4609": { - "name": "Incantation of Person Unfamiliarity Other", - "description": "Decreases the target's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4610": { - "name": "Incantation of Person Unfamiliarity Self", - "description": "Decreases the caster's Assess Person skill by 45 points.", - "school": "Creature Enchantment", - "family": "206", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4611": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4612": { - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4613": { - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4614": { - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4615": { - "name": "Incantation of Sprint Other", - "description": "Increases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4616": { - "name": "Incantation of Sprint Self", - "description": "Increases the caster's Run skill by 45 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4617": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4618": { - "name": "Incantation of Light Weapon Ineptitude Self", - "description": "Decreases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4619": { - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4620": { - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4621": { - "name": "Incantation of Heavy Weapon Ineptitude Other", - "description": "Decreases the target's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4622": { - "name": "Incantation of Heavy Weapon Ineptitude Self", - "description": "Decreases the caster's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "32", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4623": { - "name": "Incantation of Heavy Weapon Mastery Other", - "description": "Increases the target's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4624": { - "name": "Incantation of Heavy Weapon Mastery Self", - "description": "Increases the caster's Heavy Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "31", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4625": { - "name": "Incantation of Missile Weapon Ineptitude Other", - "description": "Decreases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4626": { - "name": "Incantation of Missile Weapon Ineptitude Self", - "description": "Decreases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "20", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4627": { - "name": "Incantation of Missile Weapon Mastery Other", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4628": { - "name": "Incantation of Missile Weapon Mastery Self", - "description": "Increases the caster's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4629": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4630": { - "name": "Incantation of Light Weapon Mastery Other", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4631": { - "name": "Incantation of Light Weapon Mastery Self", - "description": "Increases the caster's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4632": { - "name": "Incantation of Light Weapon Ineptitude Other", - "description": "Decreases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "18", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4633": { - "name": "Incantation of Vulnerability Other", - "description": "Decrease the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4634": { - "name": "Incantation of Vulnerability Self", - "description": "Decrease the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "38", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4635": { - "name": "Incantation of War Magic Ineptitude Other", - "description": "Decreases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4636": { - "name": "Incantation of War Magic Ineptitude Self", - "description": "Decreases the caster's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "50", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4637": { - "name": "Incantation of War Magic Mastery Other", - "description": "Increases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4638": { - "name": "Incantation of War Magic Mastery Self", - "description": "Increases the caster's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4639": { - "name": "Incantation of Weapon Tinkering Expertise Other", - "description": "Increases the target's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4640": { - "name": "Incantation of Weapon Tinkering Expertise Self", - "description": "Increases the caster's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "61", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4641": { - "name": "Incantation of Weapon Tinkering Ignorance Other", - "description": "Decreases the target's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4642": { - "name": "Incantation of Weapon Tinkering Ignorance Self", - "description": "Decreases the caster's Weapon Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "62", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "4643": { - "name": "Incantation of Drain Health Other", - "description": "Drains 60% of the target's Health and gives 35% of it to the caster.", - "school": "Life Magic", - "family": "87", - "difficulty": "400", - "duration": "-1", - "mana": "68" - }, - "4644": { - "name": "Incantation of Drain Mana Other", - "description": "Drains 60% of the target's Mana and gives it to the caster.", - "school": "Life Magic", - "family": "91", - "difficulty": "400", - "duration": "-1", - "mana": "68" - }, - "4645": { - "name": "Incantation of Drain Stamina Other", - "description": "Drains 60% of the target's Stamina and gives it to the caster.", - "school": "Life Magic", - "family": "89", - "difficulty": "400", - "duration": "-1", - "mana": "68" - }, - "4646": { - "name": "Incantation of Health to Mana Other", - "description": "Drains one-half of the target's Health and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4647": { - "name": "Incantation of Health to Mana Self", - "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "family": "87", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4648": { - "name": "Incantation of Health to Stamina Other", - "description": "Drains one-half of the target's Health and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4649": { - "name": "Incantation of Health to Stamina Self", - "description": "Drains one-half of the caster's Health and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "family": "87", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4650": { - "name": "Incantation of Infuse Health Other", - "description": "Drains one-quarter of the caster's Health and gives 200% of that to the target.", - "school": "Life Magic", - "family": "88", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4651": { - "name": "Incantation of Infuse Mana Other", - "description": "Drains one-quarter of the caster's Mana and gives 200% of that to the target.", - "school": "Life Magic", - "family": "92", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4652": { - "name": "Incantation of Infuse Stamina Other", - "description": "Drains one-quarter of the caster's Stamina and gives 200% of that to the target.", - "school": "Life Magic", - "family": "90", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4653": { - "name": "Incantation of Mana to Health Other", - "description": "Drains one-half of the target's Mana and gives 200% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4654": { - "name": "Incantation of Mana to Health Self", - "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Health.", - "school": "Life Magic", - "family": "91", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4655": { - "name": "Incantation of Mana to Stamina Other", - "description": "Drains one-half of the target's Mana and gives 200% of that to his/her stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4656": { - "name": "Incantation of Mana to Stamina Self", - "description": "Drains one-half of the caster's Mana and gives 200% of that to his/her Stamina.", - "school": "Life Magic", - "family": "91", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4657": { - "name": "Incantation of Stamina to Health Other", - "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4658": { - "name": "Incantation of Stamina to Health Self", - "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Health.", - "school": "Life Magic", - "family": "89", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4659": { - "name": "Incantation of Stamina to Mana Other", - "description": "Drains one-half of the target's Stamina and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4660": { - "name": "Epic Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "381", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4661": { - "name": "Epic Blood Thirst", - "description": "Increases a weapon's damage value by 7 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "4662": { - "name": "Epic Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "383", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4663": { - "name": "Epic Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "6", - "duration": "780", - "mana": "10" - }, - "4664": { - "name": "Epic Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "385", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4665": { - "name": "Epic Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "387", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4666": { - "name": "Epic Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "6", - "duration": "780", - "mana": "10" - }, - "4667": { - "name": "Epic Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 60 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "391", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4668": { - "name": "Epic Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "393", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4669": { - "name": "Epic Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "395", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4670": { - "name": "Epic Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4671": { - "name": "Epic Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 20%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "397", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4672": { - "name": "Epic Swift Hunter", - "description": "Improves a weapon's speed by 30 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "399", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4673": { - "name": "Epic Acid Ward", - "description": "Reduces damage the target takes from Acid by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "285", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4674": { - "name": "Epic Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4675": { - "name": "Epic Flame Ward", - "description": "Reduces damage the target takes from Fire by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4676": { - "name": "Epic Frost Ward", - "description": "Reduces damage the target takes from Cold by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4677": { - "name": "Epic Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4678": { - "name": "Epic Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "403", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4679": { - "name": "Epic Storm Ward", - "description": "Reduces damage the target takes from Lightning by 20%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "291", - "difficulty": "20", - "duration": "780", - "mana": "10" - }, - "4680": { - "name": "Epic Health Gain", - "description": "Increases the rate at which the target regains Health by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "45", - "duration": "780", - "mana": "10" - }, - "4681": { - "name": "Epic Mana Gain", - "description": "Increases the rate at which the target regains Mana by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "45", - "duration": "780", - "mana": "10" - }, - "4682": { - "name": "Epic Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 45%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "45", - "duration": "780", - "mana": "10" - }, - "4683": { - "name": "Epic Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "333", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4684": { - "name": "Epic Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "335", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4685": { - "name": "Epic Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "337", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4686": { - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4687": { - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4688": { - "name": "Epic Cooking Prowess", - "description": "Increases the target's Cooking skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "339", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4689": { - "name": "Epic Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4690": { - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4691": { - "name": "Epic Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4692": { - "name": "Epic Fealty", - "description": "Increases the target's Loyalty skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4693": { - "name": "Epic Fletching Prowess", - "description": "Increases the target's Fletching skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "347", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4694": { - "name": "Epic Healing Prowess", - "description": "Increases the target's Healing skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "349", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4695": { - "name": "Epic Impregnability", - "description": "Increases the target's Missile Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "654", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4696": { - "name": "Epic Invulnerability", - "description": "Increases the target's Melee Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4697": { - "name": "Epic Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4698": { - "name": "Epic Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4699": { - "name": "Epic Jumping Prowess", - "description": "Increases the target's Jump skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "355", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4700": { - "name": "Epic Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4701": { - "name": "Epic Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "359", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4702": { - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4703": { - "name": "Epic Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "361", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4704": { - "name": "Epic Magic Resistance", - "description": "Increases the target's Magic Defense skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4705": { - "name": "Epic Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4706": { - "name": "Epic Monster Attunement", - "description": "Increases the target's Assess Creature skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "365", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4707": { - "name": "Epic Person Attunement", - "description": "Increases the target's Assess Person skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "367", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4708": { - "name": "Epic Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "437", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4709": { - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4710": { - "name": "Epic Sprint", - "description": "Increases the target's Run skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4711": { - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4712": { - "name": "Epic Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4713": { - "name": "Epic Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4714": { - "name": "Epic Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4715": { - "name": "Epic War Magic Aptitude", - "description": "Increases the target's War Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4716": { - "name": "Burning Curse", - "description": "Does 100-250 points of fire damage to the cursed target.", - "school": "Life Magic", - "family": "80", - "difficulty": "350", - "duration": "-1", - "mana": "70" - }, - "4717": { - "name": "Expedient Return to Ulgrim", - "description": "Teleports target far above Ayan Baqur.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "150" - }, - "4718": { - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Waiting Area of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "999", - "duration": "-1", - "mana": "50" - }, - "4719": { - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Outer Receiving Chamber of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "999", - "duration": "-1", - "mana": "50" - }, - "4720": { - "name": "Welcomed by the Blood Witches", - "description": "This spell teleports the character to the Inner Receiving Chamber of the Falatacot Visitor's Alcove.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "999", - "duration": "-1", - "mana": "50" - }, - "4721": { - "name": "Travel to the Ruins of Degar'Alesh", - "description": "Instantly transports the target to the Ruins of Degar'Alesh.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "50" - }, - "4722": { - "name": "Bleed Other", - "description": "Decreases target's health by 10 every heart beat.", - "school": "Life Magic", - "family": "530", - "difficulty": "10", - "duration": "30", - "mana": "20" - }, - "4723": { - "name": "Bleed Self", - "description": "Decreases caster's health by 10 every heart beat.", - "school": "Life Magic", - "family": "530", - "difficulty": "10", - "duration": "30", - "mana": "20" - }, - "4724": { - "name": "Gateway to Nyr'leha", - "description": "The Gateway to Nyr'leha. ancient city from beneath the waves.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "350", - "duration": "-1", - "mana": "50" - }, - "4725": { - "name": "The Pit of Heretics", - "description": "Sends the target to the Sclavus Pit.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "350", - "duration": "-1", - "mana": "50" - }, - "4726": { - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "300", - "duration": "30", - "mana": "10" - }, - "4727": { - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "family": "536", - "difficulty": "300", - "duration": "30", - "mana": "10" - }, - "4728": { - "name": "Poison", - "description": "Lowers the total health of the target by 15%. This spell can stack up to three times.", - "school": "Creature Enchantment", - "family": "537", - "difficulty": "300", - "duration": "30", - "mana": "10" - }, - "4729": { - "name": "Travel to the Catacombs of Tar'Kelyn", - "description": "Instantly transports the target to the Catacombs of Tar'Kelyn.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "400", - "duration": "-1", - "mana": "50" - }, - "4730": { - "name": "Novice Duelist's Coordination", - "description": "Increases the target's Coordination by 3 points.", - "school": "Creature Enchantment", - "family": "568", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4731": { - "name": "Apprentice Duelist's Coordination", - "description": "Increases the target's Coordination by 5 points.", - "school": "Creature Enchantment", - "family": "568", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4732": { - "name": "Journeyman Duelist's Coordination", - "description": "Increases the target's Coordination by 10 points.", - "school": "Creature Enchantment", - "family": "568", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4733": { - "name": "Master Duelist's Coordination", - "description": "Increases the target's Coordination by 20 points.", - "school": "Creature Enchantment", - "family": "568", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4734": { - "name": "Novice Hero's Endurance", - "description": "Increases the target's Endurance by 3 points.", - "school": "Creature Enchantment", - "family": "567", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4735": { - "name": "Apprentice Hero's Endurance", - "description": "Increases the target's Endurance by 5 points.", - "school": "Creature Enchantment", - "family": "567", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4736": { - "name": "Journeyman Hero's Endurance", - "description": "Increases the target's Endurance by 10 points.", - "school": "Creature Enchantment", - "family": "567", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4737": { - "name": "Master Hero's Endurance", - "description": "Increases the target's Endurance by 20 points.", - "school": "Creature Enchantment", - "family": "567", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4738": { - "name": "Novice Sage's Focus", - "description": "Increases the target's Focus by 3 points.", - "school": "Creature Enchantment", - "family": "570", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4739": { - "name": "Apprentice Sage's Focus", - "description": "Increases the target's Focus by 5 points.", - "school": "Creature Enchantment", - "family": "570", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4740": { - "name": "Journeyman Sage's Focus", - "description": "Increases the target's Focus by 10 points.", - "school": "Creature Enchantment", - "family": "570", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4741": { - "name": "Master Sage's Focus", - "description": "Increases the target's Focus by 20 points.", - "school": "Creature Enchantment", - "family": "570", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4742": { - "name": "Novice Rover's Quickness", - "description": "Increases the target's Quickness by 3 points.", - "school": "Creature Enchantment", - "family": "569", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4743": { - "name": "Apprentice Rover's Quickness", - "description": "Increases the target's Quickness by 5 points.", - "school": "Creature Enchantment", - "family": "569", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4744": { - "name": "Journeyman Rover's Quickness", - "description": "Increases the target's Quickness by 10 points.", - "school": "Creature Enchantment", - "family": "569", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4745": { - "name": "Master Rover's Quickness", - "description": "Increases the target's Quickness by 20 points.", - "school": "Creature Enchantment", - "family": "569", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4746": { - "name": "Novice Brute's Strength", - "description": "Increases the target's Strength by 3 points.", - "school": "Creature Enchantment", - "family": "566", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4747": { - "name": "Apprentice Brute's Strength", - "description": "Increases the target's Strength by 5 points.", - "school": "Creature Enchantment", - "family": "566", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4748": { - "name": "Journeyman Brute's Strength", - "description": "Increases the target's Strength by 10 points.", - "school": "Creature Enchantment", - "family": "566", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4749": { - "name": "Master Brute's Strength", - "description": "Increases the target's Strength by 20 points.", - "school": "Creature Enchantment", - "family": "566", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4750": { - "name": "Novice Adherent's Willpower", - "description": "Increases the target's Self by 3 points.", - "school": "Creature Enchantment", - "family": "571", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4751": { - "name": "Apprentice Adherent's Willpower", - "description": "Increases the target's Self by 5 points.", - "school": "Creature Enchantment", - "family": "571", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4752": { - "name": "Journeyman Adherent's Willpower", - "description": "Increases the target's Self by 10 points.", - "school": "Creature Enchantment", - "family": "571", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4753": { - "name": "Master Adherent's Willpower", - "description": "Increases the target's Self by 20 points.", - "school": "Creature Enchantment", - "family": "571", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4754": { - "name": "Apprentice Survivor's Health", - "description": "Increases maximum health by 3 points.", - "school": "Life Magic", - "family": "572", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "4755": { - "name": "Journeyman Survivor's Health", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "family": "572", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "4756": { - "name": "Apprentice Clairvoyant's Mana", - "description": "Increases maximum mana by 6 points.", - "school": "Life Magic", - "family": "574", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "4757": { - "name": "Journeyman Clairvoyant's Mana", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "family": "574", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "4758": { - "name": "Apprentice Tracker's Stamina", - "description": "Increases maximum stamina by 6 points.", - "school": "Life Magic", - "family": "573", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "4759": { - "name": "Journeyman Tracker's Stamina", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "family": "573", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "4760": { - "name": "Incidental Acid Resistance", - "description": "Reduces damage the target takes from Acid by 2%.", - "school": "Life Magic", - "family": "581", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4761": { - "name": "Crude Acid Resistance", - "description": "Reduces damage the target takes from Acid by 5%.", - "school": "Life Magic", - "family": "581", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4762": { - "name": "Effective Acid Resistance", - "description": "Reduces damage the target takes from Acid by 10%.", - "school": "Life Magic", - "family": "581", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4763": { - "name": "Masterwork Acid Resistance", - "description": "Reduces damage the target takes from Acid by 20%.", - "school": "Life Magic", - "family": "581", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4764": { - "name": "Incidental Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 2%.", - "school": "Life Magic", - "family": "578", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4765": { - "name": "Crude Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 5%.", - "school": "Life Magic", - "family": "578", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4766": { - "name": "Effective Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 10%.", - "school": "Life Magic", - "family": "578", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4767": { - "name": "Masterwork Bludgeoning Resistance", - "description": "Reduces damage the target takes from Bludgeoning by 20%.", - "school": "Life Magic", - "family": "578", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4768": { - "name": "Incidental Flame Resistance", - "description": "Reduces damage the target takes from Fire by 2%.", - "school": "Life Magic", - "family": "580", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4769": { - "name": "Crude Flame Resistance", - "description": "Reduces damage the target takes from Fire by 5%.", - "school": "Life Magic", - "family": "580", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4770": { - "name": "Effective Flame Resistance", - "description": "Reduces damage the target takes from Fire by 10%.", - "school": "Life Magic", - "family": "580", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4771": { - "name": "Masterwork Flame Resistance", - "description": "Reduces damage the target takes from Fire by 20%.", - "school": "Life Magic", - "family": "580", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4772": { - "name": "Incidental Frost Resistance", - "description": "Reduces damage the target takes from Cold by 2%.", - "school": "Life Magic", - "family": "582", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4773": { - "name": "Crude Frost Resistance", - "description": "Reduces damage the target takes from Cold by 5%.", - "school": "Life Magic", - "family": "582", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4774": { - "name": "Effective Frost Resistance", - "description": "Reduces damage the target takes from Cold by 10%.", - "school": "Life Magic", - "family": "582", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4775": { - "name": "Masterwork Frost Resistance", - "description": "Reduces damage the target takes from Cold by 20%.", - "school": "Life Magic", - "family": "582", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4776": { - "name": "Incidental Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 2%.", - "school": "Life Magic", - "family": "583", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4777": { - "name": "Crude Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 5%.", - "school": "Life Magic", - "family": "583", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4778": { - "name": "Effective Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 10%.", - "school": "Life Magic", - "family": "583", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4779": { - "name": "Masterwork Lightning Resistance", - "description": "Reduces damage the target takes from Lightning by 20%.", - "school": "Life Magic", - "family": "583", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4780": { - "name": "Incidental Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 2%.", - "school": "Life Magic", - "family": "579", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4781": { - "name": "Crude Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 5%.", - "school": "Life Magic", - "family": "579", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4782": { - "name": "Effective Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 10%.", - "school": "Life Magic", - "family": "579", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4783": { - "name": "Masterwork Piercing Resistance", - "description": "Reduces damage the target takes from Piercing by 20%.", - "school": "Life Magic", - "family": "579", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4784": { - "name": "Incidental Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 2%.", - "school": "Life Magic", - "family": "577", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "4785": { - "name": "Crude Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 5%.", - "school": "Life Magic", - "family": "577", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4786": { - "name": "Effective Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 10%.", - "school": "Life Magic", - "family": "577", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "4787": { - "name": "Masterwork Slashing Resistance", - "description": "Reduces damage the target takes from Slashing by 20%.", - "school": "Life Magic", - "family": "577", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "4788": { - "name": "Novice Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 3 points.", - "school": "Creature Enchantment", - "family": "559", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4789": { - "name": "Apprentice Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 5 points.", - "school": "Creature Enchantment", - "family": "559", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4790": { - "name": "Journeyman Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "559", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4791": { - "name": "Master Concoctor's Alchemy Aptitude", - "description": "Increases the target's Alchemy skill by 20 points.", - "school": "Creature Enchantment", - "family": "559", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4792": { - "name": "Novice Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "family": "561", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4793": { - "name": "Apprentice Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "family": "561", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4794": { - "name": "Journeyman Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "561", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4795": { - "name": "Master Armorer's Armor Tinkering Aptitude", - "description": "Increases the target's Armor Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "561", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4796": { - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4797": { - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4798": { - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4799": { - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4800": { - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4801": { - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4802": { - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4803": { - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4804": { - "name": "Novice Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 3 points.", - "school": "Creature Enchantment", - "family": "556", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4805": { - "name": "Apprentice Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 5 points.", - "school": "Creature Enchantment", - "family": "556", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4806": { - "name": "Journeyman Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "556", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4807": { - "name": "Master Chef's Cooking Aptitude", - "description": "Increases the target's Cooking skill by 20 points.", - "school": "Creature Enchantment", - "family": "556", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4808": { - "name": "Novice Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 3 points.", - "school": "Creature Enchantment", - "family": "549", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4809": { - "name": "Apprentice Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 5 points.", - "school": "Creature Enchantment", - "family": "549", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4810": { - "name": "Journeyman Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "549", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4811": { - "name": "Master Enchanter's Creature Aptitude", - "description": "Increases the target's Creature Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "549", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4812": { - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4813": { - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4814": { - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4815": { - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4816": { - "name": "Novice Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "540", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4817": { - "name": "Apprentice Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "540", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4818": { - "name": "Journeyman Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "540", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4819": { - "name": "Master Soldier's Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "540", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4820": { - "name": "Novice Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 3 points.", - "school": "Creature Enchantment", - "family": "557", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4821": { - "name": "Apprentice Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 5 points.", - "school": "Creature Enchantment", - "family": "557", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4822": { - "name": "Journeyman Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "557", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4823": { - "name": "Master Huntsman's Fletching Aptitude", - "description": "Increases the target's Fletching skill by 20 points.", - "school": "Creature Enchantment", - "family": "557", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4824": { - "name": "Novice Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 3 points.", - "school": "Creature Enchantment", - "family": "548", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4825": { - "name": "Apprentice Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 5 points.", - "school": "Creature Enchantment", - "family": "548", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4826": { - "name": "Journeyman Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "548", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4827": { - "name": "Master Artifex's Item Aptitude", - "description": "Increases the target's Item Enchantment skill by 20 points.", - "school": "Creature Enchantment", - "family": "548", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4828": { - "name": "Novice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4829": { - "name": "Apprentice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4830": { - "name": "Journeyman Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4831": { - "name": "Master Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4832": { - "name": "Novice Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 3 points.", - "school": "Creature Enchantment", - "family": "576", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4833": { - "name": "Apprentice Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 5 points.", - "school": "Creature Enchantment", - "family": "576", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4834": { - "name": "Journeyman Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 10 points.", - "school": "Creature Enchantment", - "family": "576", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4835": { - "name": "Master Leaper's Jumping Aptitude", - "description": "Increases the target's Jump skill by 20 points.", - "school": "Creature Enchantment", - "family": "576", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4836": { - "name": "Novice Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "551", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4837": { - "name": "Apprentice Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "551", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4838": { - "name": "Journeyman Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "551", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4839": { - "name": "Master Theurge's Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "551", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4840": { - "name": "Novice Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 3 points.", - "school": "Creature Enchantment", - "family": "558", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4841": { - "name": "Apprentice Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 5 points.", - "school": "Creature Enchantment", - "family": "558", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4842": { - "name": "Journeyman Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 10 points.", - "school": "Creature Enchantment", - "family": "558", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4843": { - "name": "Master Locksmith's Lockpick Aptitude", - "description": "Increases the target's Lockpick skill by 20 points.", - "school": "Creature Enchantment", - "family": "558", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4844": { - "name": "Yeoman's Loyalty", - "description": "Increases the target's Loyalty skill by 3 points.", - "school": "Creature Enchantment", - "family": "565", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4845": { - "name": "Squire's Loyalty", - "description": "Increases the target's Loyalty skill by 5 points.", - "school": "Creature Enchantment", - "family": "565", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4846": { - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4847": { - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4848": { - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4849": { - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4850": { - "name": "Novice Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 3 points.", - "school": "Creature Enchantment", - "family": "554", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4851": { - "name": "Apprentice Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 5 points.", - "school": "Creature Enchantment", - "family": "554", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4852": { - "name": "Journeyman Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "554", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4853": { - "name": "Master Negator's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "554", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4854": { - "name": "Novice Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "family": "564", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4855": { - "name": "Apprentice Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "family": "564", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4856": { - "name": "Journeyman Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "564", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4857": { - "name": "Master Arcanist's Magic Item Tinkering Aptitude", - "description": "Increases the target's Magic Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "564", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4858": { - "name": "Novice Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 3 points.", - "school": "Creature Enchantment", - "family": "552", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4859": { - "name": "Apprentice Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 5 points.", - "school": "Creature Enchantment", - "family": "552", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4860": { - "name": "Journeyman Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "552", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4861": { - "name": "Master Guardian's Invulnerability", - "description": "Increases the target's Melee Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "552", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4862": { - "name": "Novice Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 3 points.", - "school": "Creature Enchantment", - "family": "553", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4863": { - "name": "Apprentice Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 5 points.", - "school": "Creature Enchantment", - "family": "553", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4864": { - "name": "Journeyman Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "553", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4865": { - "name": "Master Wayfarer's Impregnability", - "description": "Increases the target's Missile Defense skill by 20 points.", - "school": "Creature Enchantment", - "family": "553", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4866": { - "name": "Novice Scavenger's Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 3 points.", - "school": "Creature Enchantment", - "family": "560", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4867": { - "name": "Apprentice Scavenger's Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 5 points.", - "school": "Creature Enchantment", - "family": "560", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4868": { - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4869": { - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4870": { - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4871": { - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4872": { - "name": "Novice Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 3 points.", - "school": "Creature Enchantment", - "family": "575", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4873": { - "name": "Apprentice Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 5 points.", - "school": "Creature Enchantment", - "family": "575", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4874": { - "name": "Journeyman Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 10 points.", - "school": "Creature Enchantment", - "family": "575", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4875": { - "name": "Master Messenger's Sprint Aptitude", - "description": "Increases the target's Run skill by 20 points.", - "school": "Creature Enchantment", - "family": "575", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4876": { - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4877": { - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4878": { - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4879": { - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4880": { - "name": "Novice Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "538", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4881": { - "name": "Apprentice Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "538", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4882": { - "name": "Journeyman Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "538", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4883": { - "name": "Master Soldier's Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "538", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4884": { - "name": "Novice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4885": { - "name": "Apprentice Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4886": { - "name": "Journeyman Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4887": { - "name": "Master Archer's Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "545", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4888": { - "name": "Novice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4889": { - "name": "Apprentice Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4890": { - "name": "Journeyman Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4891": { - "name": "Master Soldier's Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 20 points.", - "school": "Creature Enchantment", - "family": "539", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4892": { - "name": "Novice Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "550", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4893": { - "name": "Apprentice Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "550", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4894": { - "name": "Journeyman Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "550", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4895": { - "name": "Master Warlock's War Magic Aptitude", - "description": "Increases the target's War Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "550", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4896": { - "name": "Novice Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "family": "562", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "4897": { - "name": "Apprentice Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "family": "562", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "4898": { - "name": "Journeyman Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "562", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "4899": { - "name": "Master Swordsmith's Weapon Tinkering Aptitude", - "description": "Increases the target's Weapon Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "562", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "4900": { - "name": "Society Initiate's Blessing", - "description": "Increases all attributes by 3. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "3", - "duration": "3600", - "mana": "10" - }, - "4901": { - "name": "Society Adept's Blessing", - "description": "Increases all attributes by 6. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "6", - "duration": "3600", - "mana": "10" - }, - "4902": { - "name": "Society Knight's Blessing", - "description": "Increases all attributes by 9. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "9", - "duration": "3600", - "mana": "10" - }, - "4903": { - "name": "Society Lord's Blessing", - "description": "Increases all attributes by 12. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "12", - "duration": "3600", - "mana": "10" - }, - "4904": { - "name": "Society Master's Blessing", - "description": "Increases all attributes by 15. This effect layers on top of normal spells as well as cantrips.", - "school": "Creature Enchantment", - "family": "517", - "difficulty": "15", - "duration": "3600", - "mana": "10" - }, - "4905": { - "name": "Novice Challenger's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 30%.", - "school": "Life Magic", - "family": "555", - "difficulty": "1", - "duration": "2700", - "mana": "10" - }, - "4906": { - "name": "Apprentice Challenger's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 100%.", - "school": "Life Magic", - "family": "555", - "difficulty": "2", - "duration": "2700", - "mana": "10" - }, - "4907": { - "name": "Celestial Hand Stronghold Recall", - "description": "Sends the caster to the Celestial Hand Stronghold.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4908": { - "name": "Eldrytch Web Stronghold Recall", - "description": "Sends the caster to the Eldrytch Web Stronghold.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4909": { - "name": "Radiant Blood Stronghold Recall", - "description": "Sends the caster to the Radiant Blood Stronghold.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "4910": { - "name": "Raider Tag", - "description": "Drains 1-2 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "50" - }, - "4911": { - "name": "Epic Armor", - "description": "Increases the target's natural armor by 60 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "60", - "duration": "780", - "mana": "10" - }, - "4912": { - "name": "Epic Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "377", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "4913": { - "name": "Aerlinthe Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4914": { - "name": "Aerlinthe Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4915": { - "name": "A'mun Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4916": { - "name": "A'mun Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4917": { - "name": "Esper Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4918": { - "name": "Esper Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4919": { - "name": "Halaetan Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4920": { - "name": "Halaetan Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4921": { - "name": "Linvak Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4922": { - "name": "Linvak Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4923": { - "name": "Obsidian Pyramid Portal Sending", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4924": { - "name": "Obsidian Pyramid Portal Exit", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4925": { - "name": "Dance", - "description": "Causes the target to dance uncontrollably.", - "school": "Creature Enchantment", - "family": "198", - "difficulty": "800", - "duration": "30", - "mana": "70" - }, - "4926": { - "name": "Smite", - "description": "Drains 400-800 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "10" - }, - "4927": { - "name": "Incantation of Acid Stream with 300 Spellpower", - "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "40" - }, - "4928": { - "name": "Incantation of Acid Stream with 350 Spellpower", - "description": "Shoots a stream of acid at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "350", - "duration": "-1", - "mana": "40" - }, - "4929": { - "name": "Harm", - "description": "Drains 5-10 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4930": { - "name": "Flame Bolt I", - "description": "Shoots a mini fireball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4931": { - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4932": { - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4933": { - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "1", - "duration": "5", - "mana": "10" - }, - "4934": { - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "1", - "duration": "10", - "mana": "10" - }, - "4935": { - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "1", - "duration": "20", - "mana": "10" - }, - "4936": { - "name": "Flame Bolt I", - "description": "Shoots a mini iceball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4937": { - "name": "Flame Bolt I", - "description": "Shoots a mini iceball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4938": { - "name": "Flame Bolt I", - "description": "Shoots a mini arrow", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4939": { - "name": "Mini Uber", - "description": "Shoots a bolt of elemental energy at the target.", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "50" - }, - "4940": { - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4941": { - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4942": { - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4943": { - "name": "Mini Fireball", - "description": "Shoots a mini fireball", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4944": { - "name": "Slowness", - "description": "Decreases the target's Quickness by 9 points.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "1", - "duration": "40", - "mana": "10" - }, - "4945": { - "name": "Flame Bolt I", - "description": "Shoots a mini arrow", - "school": "War Magic", - "family": "121", - "difficulty": "900", - "duration": "-1", - "mana": "5" - }, - "4946": { - "name": "Mini Ring", - "description": "Shoots eight waves of force outward from the caster.", - "school": "War Magic", - "family": "227", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4947": { - "name": "Harm", - "description": "Drains 10-20 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4948": { - "name": "Harm", - "description": "Drains 20-30 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4949": { - "name": "Harm", - "description": "Drains 60-80 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "4950": { - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4951": { - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4952": { - "name": "Tactical Defense", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4953": { - "name": "Test Portal", - "description": "Target is portaled for testing purposes and doesn't really go anywhere.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4954": { - "name": "Crystalline Portal", - "description": "Target is portaled into up to the Crystalline Crag", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4955": { - "name": "Portal Space Eddy", - "description": "Target is portaled for testing purposes and doesn't really go anywhere", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4956": { - "name": "Tanada Sanctum Portal Sending", - "description": "This spell sends the player to the Tanada Clan inner sanctum.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4957": { - "name": "Tanada Sanctum Return", - "description": "This spell sends the player to Tanada Sajo in Hebian-To.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4958": { - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "450", - "duration": "5400", - "mana": "80" - }, - "4959": { - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4960": { - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4961": { - "name": "Lesser Rockslide", - "description": "Increases the target's Missile Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "4962": { - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "425", - "duration": "5400", - "mana": "80" - }, - "4963": { - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "425", - "duration": "5400", - "mana": "80" - }, - "4964": { - "name": "Rockslide", - "description": "Increases the target's Missile Weapons skill by 50 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "425", - "duration": "5400", - "mana": "80" - }, - "4965": { - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "450", - "duration": "5400", - "mana": "80" - }, - "4966": { - "name": "Greater Rockslide", - "description": "Increases the target's Missile Weapons skill by 55 points.", - "school": "Creature Enchantment", - "family": "19", - "difficulty": "450", - "duration": "5400", - "mana": "80" - }, - "4967": { - "name": "Cleansing Ring of Fire", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 31-52 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "4968": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4969": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4970": { - "name": "Ranger's Boon", - "description": "Increases the target's Missile Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "439", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4971": { - "name": "Enchanter's Boon", - "description": "Increases the target's Creature Enchantment skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "430", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4972": { - "name": "Hieromancer's Boon", - "description": "Increases the target's War Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "426", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4973": { - "name": "Fencer's Boon", - "description": "Increases the target's Finesse Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "442", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4974": { - "name": "Life Giver's Boon", - "description": "Increases the target's Life Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "429", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4975": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "4976": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "4977": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "4978": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "4979": { - "name": "Soldier's Boon", - "description": "Increases the target's Heavy Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "447", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "4980": { - "name": "Kern's Boon", - "description": "Increases the target's Light Weapons skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "438", - "difficulty": "2", - "duration": "600", - "mana": "10" - }, - "4981": { - "name": "Incantation of Stamina to Mana Self", - "description": "Drains one-half of the caster's Stamina and gives 200% of that to his/her Mana.", - "school": "Life Magic", - "family": "89", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "4982": { - "name": "Nimble Fingers - Lockpick", - "description": "Increases the target's Lockpick skill by 5 points. This stacks with all other Lockpick bonuses.", - "school": "Creature Enchantment", - "family": "584", - "difficulty": "5", - "duration": "360", - "mana": "70" - }, - "4983": { - "name": "Nimble Fingers - Alchemy", - "description": "Increases the caster's Alchemy skill by 5 points. This stacks with all other Alchemy bonuses.", - "school": "Creature Enchantment", - "family": "587", - "difficulty": "5", - "duration": "360", - "mana": "50" - }, - "4984": { - "name": "Nimble Fingers - Cooking", - "description": "Increases the target's Cooking skill by 5 points. This stacks with all other Cooking bonuses.", - "school": "Creature Enchantment", - "family": "586", - "difficulty": "5", - "duration": "360", - "mana": "70" - }, - "4985": { - "name": "Nimble Fingers - Fletching", - "description": "Increases the target's Fletching skill by 5 points. This stacks with all other Fletching bonuses.", - "school": "Creature Enchantment", - "family": "585", - "difficulty": "5", - "duration": "360", - "mana": "50" - }, - "4986": { - "name": "Assassin's Alchemy Kit", - "description": "Increases the caster's Alchemy skill by 1%. This increase stacks with all other Alchemy increases.", - "school": "Creature Enchantment", - "family": "592", - "difficulty": "1", - "duration": "360", - "mana": "50" - }, - "4987": { - "name": "Olthoi Spit", - "description": "A spell-like projectile of condensed olthoi acid.", - "school": "War Magic", - "family": "117", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "4988": { - "name": "Tunnel Out", - "description": "The olthoi matron tunnels away.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4989": { - "name": "Mysterious Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4990": { - "name": "Floor Puzzle Bypass", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4991": { - "name": "Jump Puzzle Bypass", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4992": { - "name": "Direct Assassin Access", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4993": { - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4994": { - "name": "Get over here!", - "description": "The assassin teleports you to her.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4995": { - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4996": { - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4997": { - "name": "Portal to Derethian Combat Arena", - "description": "Transports the target to the PK Challenge.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "4998": { - "name": "Arena Stamina", - "description": "Increases maximum stamina by 25 points.", - "school": "Life Magic", - "family": "281", - "difficulty": "15", - "duration": "180", - "mana": "70" - }, - "4999": { - "name": "Arena Life", - "description": "Increases maximum health by 25 points.", - "school": "Life Magic", - "family": "279", - "difficulty": "15", - "duration": "180", - "mana": "70" - }, - "5000": { - "name": "Arena Mana", - "description": "Increases maximum mana by 25 points.", - "school": "Life Magic", - "family": "283", - "difficulty": "250", - "duration": "180", - "mana": "70" - }, - "5001": { - "name": "Arena Piercing Protection Other", - "description": "Reduces damage the target takes from Piercing by 70%", - "school": "Life Magic", - "family": "111", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5002": { - "name": "Arena Acid Protection Other", - "description": "Reduces damage the target takes from acid by 70%", - "school": "Life Magic", - "family": "101", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5003": { - "name": "Arena Blade Protection Other", - "description": "Reduces damage the target takes from Slashing by 70%", - "school": "Life Magic", - "family": "113", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5004": { - "name": "Arena Bludgeoning Protection Other", - "description": "Reduces damage the target takes from Bludgeoning by 70%", - "school": "Life Magic", - "family": "103", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5005": { - "name": "Arena Cold Protection Other", - "description": "Reduces damage the target takes from Cold by 70%", - "school": "Life Magic", - "family": "105", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5006": { - "name": "Arena Fire Protection Other", - "description": "Reduces damage the target takes from fire by 70%", - "school": "Life Magic", - "family": "109", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5007": { - "name": "Arena Lightning Protection Other", - "description": "Reduces damage the target takes from Lightning by 70%", - "school": "Life Magic", - "family": "107", - "difficulty": "400", - "duration": "180", - "mana": "80" - }, - "5008": { - "name": "Apostate Nexus Portal Sending", - "description": "Teleports the user to the Apostate Nexus dungeon.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "5009": { - "name": "Aerfalle's Greater Ward", - "description": "Improves a shield or piece of armor's armor value by 400 points.", - "school": "Item Enchantment", - "family": "160", - "difficulty": "401", - "duration": "3600", - "mana": "60" - }, - "5010": { - "name": "Entering Aerfalle's Sanctum", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5011": { - "name": "Geomantic Raze", - "description": "Drains 150-300 points of the target's Health.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "70" - }, - "5012": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5013": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5014": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5015": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5016": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5017": { - "name": "Mar'uun", - "description": "A portal to the town of Mar'uun; there is something strange about it.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5018": { - "name": "Story of the Unknown Warrior", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5019": { - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5020": { - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5021": { - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5022": { - "name": "Portalspace Rift", - "description": "A rift in portal space.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5023": { - "name": "Spectral Two Handed Combat Mastery", - "description": "Increases the caster's Two Handed Combat skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "598", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5024": { - "name": "Spectral Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 150 points.", - "school": "Creature Enchantment", - "family": "453", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5025": { - "name": "Prodigal Item Expertise", - "description": "Increases the caster's Item Tinkering skill by 250 points.", - "school": "Creature Enchantment", - "family": "453", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5026": { - "name": "Prodigal Two Handed Combat Mastery", - "description": "Increases the caster's Two Handed Combat skill by 250 points.", - "school": "Creature Enchantment", - "family": "598", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5027": { - "name": "Greater Cascade", - "description": "Increases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "15", - "duration": "780", - "mana": "30" - }, - "5028": { - "name": "Lesser Cascade", - "description": "Increases the target's Two Handed Combat skill by 8 points.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "8", - "duration": "780", - "mana": "30" - }, - "5029": { - "name": "Cascade", - "description": "Increases the target's Two Handed Combat skill by 12 points.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "12", - "duration": "780", - "mana": "30" - }, - "5030": { - "name": "Two Handed Fighter's Boon", - "description": "Increases the target's Two Handed Combat skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "597", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5031": { - "name": "Two Handed Fighter's Boon", - "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "597", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5032": { - "name": "Incantation of Two Handed Combat Mastery Self", - "description": "Increases the caster's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5033": { - "name": "Epic Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5034": { - "name": "Epic Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5035": { - "name": "Feeble Sword Aptitude", - "description": "Increases the target's Sword skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "5036": { - "name": "Feeble Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 3 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "3", - "duration": "780", - "mana": "10" - }, - "5037": { - "name": "Item Tinkering Ignorance Other I", - "description": "Decreases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5038": { - "name": "Item Tinkering Ignorance Other II", - "description": "Decreases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5039": { - "name": "Item Tinkering Ignorance Other III", - "description": "Decreases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5040": { - "name": "Item Tinkering Ignorance Other IV", - "description": "Decreases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5041": { - "name": "Item Tinkering Ignorance Other V", - "description": "Decreases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5042": { - "name": "Item Tinkering Ignorance Other VI", - "description": "Decreases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5043": { - "name": "Unfortunate Appraisal", - "description": "Decreases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5044": { - "name": "Incantation of Item Tinkering Ignorance Other", - "description": "Decreases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5045": { - "name": "Item Tinkering Ignorance Self I", - "description": "Decreases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "5046": { - "name": "Item Tinkering Ignorance Self II", - "description": "Decreases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "5047": { - "name": "Item Tinkering Ignorance Self III", - "description": "Decreases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "5048": { - "name": "Item Tinkering Ignorance Self IV", - "description": "Decreases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "5049": { - "name": "Item Tinkering Ignorance Self V", - "description": "Decreases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "5050": { - "name": "Item Tinkering Ignorance Self VI", - "description": "Decreases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "5051": { - "name": "Item Tinkering Ignorance Self VII", - "description": "Decreases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5052": { - "name": "Incantation of Item Tinkering Ignorance Self", - "description": "Decreases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "58", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5053": { - "name": "Item Tinkering Expertise Other I", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5054": { - "name": "Item Tinkering Expertise Other II", - "description": "Increases the target's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5055": { - "name": "Item Tinkering Expertise Other III", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5056": { - "name": "Item Tinkering Expertise Other IV", - "description": "Increases the target's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5057": { - "name": "Item Tinkering Expertise Other V", - "description": "Increases the target's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5058": { - "name": "Item Tinkering Expertise Other VI", - "description": "Increases the target's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5059": { - "name": "Yoshi's Boon", - "description": "Increases the target's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5060": { - "name": "Incantation of Item Tinkering Expertise Other", - "description": "Increases the target's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5061": { - "name": "Item Tinkering Expertise Self I", - "description": "Increases the caster's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5062": { - "name": "Item Tinkering Expertise Self II", - "description": "Increases the caster's Item Tinkering skill by 15 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5063": { - "name": "Item Tinkering Expertise Self III", - "description": "Increases the caster's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5064": { - "name": "Item Tinkering Expertise Self IV", - "description": "Increases the caster's Item Tinkering skill by 25 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5065": { - "name": "Item Tinkering Expertise Self V", - "description": "Increases the caster's Item Tinkering skill by 30 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5066": { - "name": "Item Tinkering Expertise Self VI", - "description": "Increases the caster's Item Tinkering skill by 35 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5067": { - "name": "Yoshi's Blessing", - "description": "Increases the caster's Item Tinkering skill by 40 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5068": { - "name": "Incantation of Item Tinkering Expertise Self", - "description": "Increases the caster's Item Tinkering skill by 45 points.", - "school": "Creature Enchantment", - "family": "57", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5069": { - "name": "Major Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5070": { - "name": "Major Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "5071": { - "name": "Minor Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5072": { - "name": "Minor Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "5073": { - "name": "Moderate Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "602", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5074": { - "name": "Moderate Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5075": { - "name": "Two Handed Combat Ineptitude Other I", - "description": "Decreases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5076": { - "name": "Two Handed Combat Ineptitude Other II", - "description": "Decreases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5077": { - "name": "Two Handed Combat Ineptitude Other III", - "description": "Decreases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5078": { - "name": "Two Handed Combat Ineptitude Other IV", - "description": "Decreases the target's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5079": { - "name": "Two Handed Combat Ineptitude Other V", - "description": "Decreases the target's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5080": { - "name": "Two Handed Combat Ineptitude Other VI", - "description": "Decreases the target's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5081": { - "name": "Greased Palms", - "description": "Decreases the target's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5082": { - "name": "Incantation of Two Handed Combat Ineptitude Other", - "description": "Decreases the target's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5083": { - "name": "Two Handed Combat Ineptitude Self I", - "description": "Decreases the caster's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "1", - "duration": "60", - "mana": "15" - }, - "5084": { - "name": "Two Handed Combat Ineptitude Self II", - "description": "Decreases the caster's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "75", - "duration": "90", - "mana": "30" - }, - "5085": { - "name": "Two Handed Combat Ineptitude Self III", - "description": "Decreases the caster's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "125", - "duration": "120", - "mana": "40" - }, - "5086": { - "name": "Two Handed Combat Ineptitude Self IV", - "description": "Decreases the caster's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "175", - "duration": "150", - "mana": "50" - }, - "5087": { - "name": "Two Handed Combat Ineptitude Self V", - "description": "Decreases the caster's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "225", - "duration": "180", - "mana": "60" - }, - "5088": { - "name": "Two Handed Combat Ineptitude Self VI", - "description": "Decreases the caster's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "275", - "duration": "210", - "mana": "70" - }, - "5089": { - "name": "Two Handed Combat Ineptitude Self VII", - "description": "Decreases the caster's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5090": { - "name": "Incantation of Two Handed Combat Ineptitude Self", - "description": "Decreases the caster's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "family": "594", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5091": { - "name": "Two Handed Combat Mastery Other I", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5092": { - "name": "Two Handed Combat Mastery Other II", - "description": "Increases the target's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5093": { - "name": "Two Handed Combat Mastery Other III", - "description": "Increases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5094": { - "name": "Two Handed Combat Mastery Other IV", - "description": "Increases the target's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5095": { - "name": "Two Handed Combat Mastery Other V", - "description": "Increases the target's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5096": { - "name": "Two Handed Combat Mastery Other VI", - "description": "Increases the target's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5097": { - "name": "Boon of T'ing", - "description": "Increases the target's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5098": { - "name": "Incantation of Two Handed Combat Mastery Other", - "description": "Increases the target's Two Handed Combat skill by 45 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5099": { - "name": "Two Handed Combat Mastery Self I", - "description": "Increases the caster's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5100": { - "name": "Two Handed Combat Mastery Self II", - "description": "Increases the caster's Two Handed Combat skill by 15 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5101": { - "name": "Two Handed Combat Mastery Self III", - "description": "Increases the caster's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5102": { - "name": "Two Handed Combat Mastery Self IV", - "description": "Increases the caster's Two Handed Combat skill by 25 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5103": { - "name": "Two Handed Combat Mastery Self V", - "description": "Increases the caster's Two Handed Combat skill by 30 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5104": { - "name": "Two Handed Combat Mastery Self VI", - "description": "Increases the caster's Two Handed Combat skill by 35 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5105": { - "name": "Blessing of T'ing", - "description": "Increases the caster's Two Handed Combat skill by 40 points.", - "school": "Creature Enchantment", - "family": "593", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5106": { - "name": "Master Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 20 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5107": { - "name": "Novice Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 3 points.", - "school": "Creature Enchantment", - "family": "599", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5108": { - "name": "Apprentice Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 5 points.", - "school": "Creature Enchantment", - "family": "599", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5109": { - "name": "Journeyman Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "599", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5110": { - "name": "Master Soldier's Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 20 points.", - "school": "Creature Enchantment", - "family": "599", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5111": { - "name": "Novice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 3 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5112": { - "name": "Apprentice Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 5 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5113": { - "name": "Journeyman Inventor's Item Tinkering Aptitude", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "563", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5114": { - "name": "Expose Weakness VIII", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5115": { - "name": "Expose Weakness I", - "description": "Decreases the target's natural armor by 20 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "25", - "duration": "60", - "mana": "10" - }, - "5116": { - "name": "Expose Weakness II", - "description": "Decreases the target's natural armor by 50 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5117": { - "name": "Expose Weakness III", - "description": "Decreases the target's natural armor by 75 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5118": { - "name": "Expose Weakness IV", - "description": "Decreases the target's natural armor by 100 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5119": { - "name": "Expose Weakness V", - "description": "Decreases the target's natural armor by 150 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5120": { - "name": "Expose Weakness VI", - "description": "Decreases the target's natural armor by 200 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5121": { - "name": "Expose Weakness VII", - "description": "Decreases the target's natural armor by 225 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5122": { - "name": "Call of Leadership V", - "description": "Increases maximum health by 10 points for 30 minutes.", - "school": "Life Magic", - "family": "609", - "difficulty": "400", - "duration": "1800", - "mana": "80" - }, - "5123": { - "name": "Answer of Loyalty (Mana) I", - "description": "Enhances the Mana of all Fellowship members by 2 points for 30 minutes.", - "school": "Life Magic", - "family": "607", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "5124": { - "name": "Answer of Loyalty (Mana) II", - "description": "Enhances the Mana of all Fellowship members by 4 points for 30 minutes.", - "school": "Life Magic", - "family": "607", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "5125": { - "name": "Answer of Loyalty (Mana) III", - "description": "Enhances the Mana of all Fellowship members by 6 points for 30 minutes.", - "school": "Life Magic", - "family": "607", - "difficulty": "275", - "duration": "1800", - "mana": "60" - }, - "5126": { - "name": "Answer of Loyalty (Mana) IV", - "description": "Enhances the Mana of all Fellowship members by 8 points for 30 minutes.", - "school": "Life Magic", - "family": "607", - "difficulty": "325", - "duration": "1800", - "mana": "70" - }, - "5127": { - "name": "Answer of Loyalty (Mana) V", - "description": "Enhances the Mana of all Fellowship members by 10 points for 30 minutes.", - "school": "Life Magic", - "family": "607", - "difficulty": "400", - "duration": "1800", - "mana": "80" - }, - "5128": { - "name": "Answer of Loyalty (Stamina) I", - "description": "Enhances the Endurance of all Fellowship members by 2 points for 30 minutes.", - "school": "Life Magic", - "family": "608", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "5129": { - "name": "Answer of Loyalty (Stamina) II", - "description": "Enhances the Endurance of all Fellowship members by 4 points for 30 minutes.", - "school": "Life Magic", - "family": "608", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "5130": { - "name": "Answer of Loyalty (Stamina) III", - "description": "Enhances the Endurance of all Fellowship members by 6 points for 30 minutes.", - "school": "Life Magic", - "family": "608", - "difficulty": "275", - "duration": "1800", - "mana": "60" - }, - "5131": { - "name": "Answer of Loyalty (Stamina) IV", - "description": "Enhances the Endurance of all Fellowship members by 8 points for 30 minutes.", - "school": "Life Magic", - "family": "608", - "difficulty": "325", - "duration": "1800", - "mana": "70" - }, - "5132": { - "name": "Answer of Loyalty (Stamina) V", - "description": "Enhances the Endurance of all Fellowship members by 10 points for 30 minutes.", - "school": "Life Magic", - "family": "608", - "difficulty": "400", - "duration": "1800", - "mana": "80" - }, - "5133": { - "name": "Call of Leadership I", - "description": "Increases maximum health by 2 points for 30 minutes.", - "school": "Life Magic", - "family": "609", - "difficulty": "175", - "duration": "1800", - "mana": "40" - }, - "5134": { - "name": "Call of Leadership II", - "description": "Increases maximum health by 4 points for 30 minutes.", - "school": "Life Magic", - "family": "609", - "difficulty": "225", - "duration": "1800", - "mana": "50" - }, - "5135": { - "name": "Call of Leadership III", - "description": "Increases maximum health by 6 points for 30 minutes.", - "school": "Life Magic", - "family": "609", - "difficulty": "275", - "duration": "1800", - "mana": "60" - }, - "5136": { - "name": "Call of Leadership IV", - "description": "Increases maximum health by 8 points for 30 minutes.", - "school": "Life Magic", - "family": "609", - "difficulty": "325", - "duration": "1800", - "mana": "70" - }, - "5137": { - "name": "Augmented Understanding III", - "description": "Increases experience by 6%.", - "school": "Life Magic", - "family": "615", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5138": { - "name": "Augmented Damage I", - "description": "Increases damage rating by 1.", - "school": "Life Magic", - "family": "610", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5139": { - "name": "Augmented Damage II", - "description": "Increases damage rating by 2.", - "school": "Life Magic", - "family": "610", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5140": { - "name": "Augmented Damage III", - "description": "Increases damage rating by 3.", - "school": "Life Magic", - "family": "610", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5141": { - "name": "Augmented Damage Reduction I", - "description": "Increases damage reduction rating by 1.", - "school": "Life Magic", - "family": "611", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5142": { - "name": "Augmented Damage Reduction II", - "description": "Increases damage reduction rating by 2.", - "school": "Life Magic", - "family": "611", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5143": { - "name": "Augmented Damage Reduction III", - "description": "Increases damage reduction rating by 3.", - "school": "Life Magic", - "family": "611", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5144": { - "name": "Augmented Health I", - "description": "Increases maximum health by 5 points.", - "school": "Life Magic", - "family": "612", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5145": { - "name": "Augmented Health II", - "description": "Increases maximum health by 10 points.", - "school": "Life Magic", - "family": "612", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5146": { - "name": "Augmented Health III", - "description": "Increases maximum health by 15 points.", - "school": "Life Magic", - "family": "612", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5147": { - "name": "Augmented Mana I", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "family": "614", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5148": { - "name": "Augmented Mana II", - "description": "Increases maximum mana by 20 points.", - "school": "Life Magic", - "family": "614", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5149": { - "name": "Augmented Mana III", - "description": "Increases maximum mana by 30 points.", - "school": "Life Magic", - "family": "614", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5150": { - "name": "Augmented Stamina I", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "family": "613", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5151": { - "name": "Augmented Stamina II", - "description": "Increases maximum stamina by 20 points.", - "school": "Life Magic", - "family": "613", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5152": { - "name": "Augmented Stamina III", - "description": "Increases maximum stamina by 30 points.", - "school": "Life Magic", - "family": "613", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5153": { - "name": "Augmented Understanding I", - "description": "Increases experience by 2%.", - "school": "Life Magic", - "family": "615", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5154": { - "name": "Augmented Understanding II", - "description": "Increases experience by 4%.", - "school": "Life Magic", - "family": "615", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5155": { - "name": "Virindi Whisper IV", - "description": "Increases the target's Arcane Lore skill by 32 points for 60 seconds.", - "school": "Creature Enchantment", - "family": "616", - "difficulty": "150", - "duration": "60", - "mana": "40" - }, - "5156": { - "name": "Virindi Whisper V", - "description": "Increases the target's Arcane Lore skill by 40 points for 60 seconds.", - "school": "Creature Enchantment", - "family": "616", - "difficulty": "225", - "duration": "60", - "mana": "50" - }, - "5157": { - "name": "Virindi Whisper I", - "description": "Increases the target's Arcane Lore skill by 8 points for 60 seconds.", - "school": "Creature Enchantment", - "family": "616", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5158": { - "name": "Virindi Whisper II", - "description": "Increases the target's Arcane Lore skill by 16 points for 60 seconds.", - "school": "Creature Enchantment", - "family": "616", - "difficulty": "50", - "duration": "60", - "mana": "20" - }, - "5159": { - "name": "Virindi Whisper III", - "description": "Increases the target's Arcane Lore skill by 24 points for 60 seconds.", - "school": "Creature Enchantment", - "family": "616", - "difficulty": "100", - "duration": "60", - "mana": "30" - }, - "5160": { - "name": "Mhoire Castle", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5161": { - "name": "Mhoire Castle Great Hall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5162": { - "name": "Mhoire Castle Northeast Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5163": { - "name": "Mhoire Castle Northwest Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5164": { - "name": "Mhoire Castle Southeast Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5165": { - "name": "Mhoire Castle Southwest Tower", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5166": { - "name": "Flaming Skull", - "description": "A burning skull", - "school": "War Magic", - "family": "121", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "5167": { - "name": "Mhoire Castle Exit Portal", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5168": { - "name": "a spectacular view of the Mhoire lands", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5169": { - "name": "a descent into the Mhoire catacombs", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5170": { - "name": "a descent into the Mhoire catacombs", - "description": "You've fallen into the spectral waters!", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5171": { - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. You're feeling pretty good.", - "school": "Life Magic", - "family": "617", - "difficulty": "250", - "duration": "300", - "mana": "80" - }, - "5172": { - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. Your blood is poisoned.", - "school": "Life Magic", - "family": "618", - "difficulty": "250", - "duration": "300", - "mana": "80" - }, - "5173": { - "name": "Spectral Fountain Sip", - "description": "You've sipped the spectral waters. Your wounds are poisoned and don't heal as well.", - "school": "Life Magic", - "family": "619", - "difficulty": "250", - "duration": "300", - "mana": "80" - }, - "5174": { - "name": "Mhoire's Blessing of Power", - "description": "Your damage has been augmented by the magic of the Mhoire blood.", - "school": "Life Magic", - "family": "610", - "difficulty": "250", - "duration": "300", - "mana": "80" - }, - "5175": { - "name": "Facility Hub Recall", - "description": "Transports the caster to the Facilty Hub.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "10" - }, - "5176": { - "name": "Celestial Hand Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5177": { - "name": "Radiant Blood Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5178": { - "name": "Eldrytch Web Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5179": { - "name": "Celestial Hand Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5180": { - "name": "Radiant Blood Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5181": { - "name": "Eldrytch Web Basement", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5182": { - "name": "Aura of Incantation of Spirit Drinker", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "5183": { - "name": "Aura of Incantation of Blood Drinker Self", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "5184": { - "name": "Rare Damage Boost VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5185": { - "name": "Rare Damage Boost VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5186": { - "name": "Rare Damage Boost IX", - "description": "Your damage rating is increased by 9.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5187": { - "name": "Rare Damage Boost X", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5188": { - "name": "Rare Damage Reduction I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5189": { - "name": "Rare Damage Reduction II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5190": { - "name": "Rare Damage Reduction III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5191": { - "name": "Rare Damage Reduction IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5192": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5193": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5194": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5195": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5196": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5197": { - "name": "Rare Damage Reduction V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "634", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5198": { - "name": "Rare Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5199": { - "name": "Rare Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5200": { - "name": "Rare Damage Boost III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5201": { - "name": "Rare Damage Boost IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5202": { - "name": "Rare Damage Boost V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5203": { - "name": "Rare Damage Boost VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "family": "633", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5204": { - "name": "Surge of Destruction", - "description": "The damage rating of the caster is increased by 20.", - "school": "Life Magic", - "family": "628", - "difficulty": "1", - "duration": "8", - "mana": "70" - }, - "5205": { - "name": "Surge of Affliction", - "description": "The target loses 150 points of health over 19 seconds.", - "school": "Life Magic", - "family": "631", - "difficulty": "250", - "duration": "19", - "mana": "80" - }, - "5206": { - "name": "Surge of Protection", - "description": "The damage reduction rating of the caster is increased by 20.", - "school": "Life Magic", - "family": "629", - "difficulty": "1", - "duration": "12", - "mana": "70" - }, - "5207": { - "name": "Surge of Festering", - "description": "The heal rating of the target is decreased by 20.", - "school": "Life Magic", - "family": "619", - "difficulty": "250", - "duration": "12", - "mana": "80" - }, - "5208": { - "name": "Surge of Regeneration", - "description": "The caster gains 150 points of health over 19 seconds.", - "school": "Life Magic", - "family": "630", - "difficulty": "250", - "duration": "19", - "mana": "80" - }, - "5209": { - "name": "Sigil of Fury I (Critical Damage)", - "description": "Your critical damage rating is increased by 1.", - "school": "Life Magic", - "family": "626", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5210": { - "name": "Sigil of Fury II (Critical Damage)", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "family": "626", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5211": { - "name": "Sigil of Fury III (Critical Damage)", - "description": "Your critical damage rating is increased by 3.", - "school": "Life Magic", - "family": "626", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5212": { - "name": "Sigil of Fury IV (Critical Damage)", - "description": "Your critical damage rating is increased by 4.", - "school": "Life Magic", - "family": "626", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5213": { - "name": "Sigil of Fury V (Critical Damage)", - "description": "Your critical damage rating is increased by 5.", - "school": "Life Magic", - "family": "626", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5214": { - "name": "Sigil of Fury VI (Critical Damage)", - "description": "Your critical damage rating is increased by 6.", - "school": "Life Magic", - "family": "626", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5215": { - "name": "Sigil of Fury VII (Critical Damage)", - "description": "Your critical damage rating is increased by 7.", - "school": "Life Magic", - "family": "626", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5216": { - "name": "Sigil of Fury VIII (Critical Damage)", - "description": "Your critical damage rating is increased by 8.", - "school": "Life Magic", - "family": "626", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5217": { - "name": "Sigil of Fury IX (Critical Damage)", - "description": "Your critical damage rating is increased by 9.", - "school": "Life Magic", - "family": "626", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5218": { - "name": "Sigil of Fury X (Critical Damage)", - "description": "Your critical damage rating is increased by 10.", - "school": "Life Magic", - "family": "626", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5219": { - "name": "Sigil of Fury XI (Critical Damage)", - "description": "Your critical damage rating is increased by 11.", - "school": "Life Magic", - "family": "626", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5220": { - "name": "Sigil of Fury XII (Critical Damage)", - "description": "Your critical damage rating is increased by 12.", - "school": "Life Magic", - "family": "626", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5221": { - "name": "Sigil of Fury XIII (Critical Damage)", - "description": "Your critical damage rating is increased by 13.", - "school": "Life Magic", - "family": "626", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5222": { - "name": "Sigil of Fury XIV (Critical Damage)", - "description": "Your critical damage rating is increased by 14.", - "school": "Life Magic", - "family": "626", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5223": { - "name": "Sigil of Fury XV (Critical Damage)", - "description": "Your critical damage rating is increased by 15.", - "school": "Life Magic", - "family": "626", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5224": { - "name": "Sigil of Destruction I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "family": "620", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5225": { - "name": "Sigil of Destruction II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "family": "620", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5226": { - "name": "Sigil of Destruction III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "family": "620", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5227": { - "name": "Sigil of Destruction IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "family": "620", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5228": { - "name": "Sigil of Destruction V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "family": "620", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5229": { - "name": "Sigil of Destruction VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "family": "620", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5230": { - "name": "Sigil of Destruction VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "family": "620", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5231": { - "name": "Sigil of Destruction VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "family": "620", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5232": { - "name": "Sigil of Destruction IX", - "description": "Your damage rating is increased by 9.", - "school": "Life Magic", - "family": "620", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5233": { - "name": "Sigil of Destruction X", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "family": "620", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5234": { - "name": "Sigil of Destruction XI", - "description": "Your damage rating is increased by 11.", - "school": "Life Magic", - "family": "620", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5235": { - "name": "Sigil of Destruction XII", - "description": "Your damage rating is increased by 12.", - "school": "Life Magic", - "family": "620", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5236": { - "name": "Sigil of Destruction XIII", - "description": "Your damage rating is increased by 13.", - "school": "Life Magic", - "family": "620", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5237": { - "name": "Sigil of Destruction XIV", - "description": "Your damage rating is increased by 14.", - "school": "Life Magic", - "family": "620", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5238": { - "name": "Sigil of Destruction XV", - "description": "Your damage rating is increased by 15.", - "school": "Life Magic", - "family": "620", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5239": { - "name": "Sigil of Defense I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "family": "621", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5240": { - "name": "Sigil of Defense II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "621", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5241": { - "name": "Sigil of Defense III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "family": "621", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5242": { - "name": "Sigil of Defense IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "family": "621", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5243": { - "name": "Sigil of Defense V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "621", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5244": { - "name": "Sigil of Defense VI", - "description": "Your damage reduction rating is increased by 6.", - "school": "Life Magic", - "family": "621", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5245": { - "name": "Sigil of Defense VII", - "description": "Your damage reduction rating is increased by 7.", - "school": "Life Magic", - "family": "621", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5246": { - "name": "Sigil of Defense VIII", - "description": "Your damage reduction rating is increased by 8.", - "school": "Life Magic", - "family": "621", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5247": { - "name": "Sigil of Defense IX", - "description": "Your damage reduction rating is increased by 9.", - "school": "Life Magic", - "family": "621", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5248": { - "name": "Sigil of Defense X", - "description": "Your damage reduction rating is increased by 10.", - "school": "Life Magic", - "family": "621", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5249": { - "name": "Sigil of Defense XI", - "description": "Your damage reduction rating is increased by 11.", - "school": "Life Magic", - "family": "621", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5250": { - "name": "Sigil of Defense XII", - "description": "Your damage reduction rating is increased by 12.", - "school": "Life Magic", - "family": "621", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5251": { - "name": "Sigil of Defense XIII", - "description": "Your damage reduction rating is increased by 13.", - "school": "Life Magic", - "family": "621", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5252": { - "name": "Sigil of Defense XIV", - "description": "Your damage reduction rating is increased by 14.", - "school": "Life Magic", - "family": "621", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5253": { - "name": "Sigil of Defense XV", - "description": "Your damage reduction rating is increased by 15.", - "school": "Life Magic", - "family": "621", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5254": { - "name": "Sigil of Growth I", - "description": "Your healing rating is increased by 1.", - "school": "Life Magic", - "family": "627", - "difficulty": "1", - "duration": "300", - "mana": "80" - }, - "5255": { - "name": "Sigil of Growth II", - "description": "Your healing rating is increased by 2.", - "school": "Life Magic", - "family": "627", - "difficulty": "2", - "duration": "300", - "mana": "80" - }, - "5256": { - "name": "Sigil of Growth III", - "description": "Your healing rating is increased by 3.", - "school": "Life Magic", - "family": "627", - "difficulty": "3", - "duration": "300", - "mana": "80" - }, - "5257": { - "name": "Sigil of Growth IV", - "description": "Your healing rating is increased by 4.", - "school": "Life Magic", - "family": "627", - "difficulty": "4", - "duration": "300", - "mana": "80" - }, - "5258": { - "name": "Sigil of Growth V", - "description": "Your healing rating is increased by 5.", - "school": "Life Magic", - "family": "627", - "difficulty": "5", - "duration": "300", - "mana": "80" - }, - "5259": { - "name": "Sigil of Growth VI", - "description": "Your healing rating is increased by 6.", - "school": "Life Magic", - "family": "627", - "difficulty": "6", - "duration": "300", - "mana": "80" - }, - "5260": { - "name": "Sigil of Growth VII", - "description": "Your healing rating is increased by 7.", - "school": "Life Magic", - "family": "627", - "difficulty": "7", - "duration": "300", - "mana": "80" - }, - "5261": { - "name": "Sigil of Growth VIII", - "description": "Your healing rating is increased by 8.", - "school": "Life Magic", - "family": "627", - "difficulty": "8", - "duration": "300", - "mana": "80" - }, - "5262": { - "name": "Sigil of Growth IX", - "description": "Your healing rating is increased by 9.", - "school": "Life Magic", - "family": "627", - "difficulty": "9", - "duration": "300", - "mana": "80" - }, - "5263": { - "name": "Sigil of Growth X", - "description": "Your healing rating is increased by 10.", - "school": "Life Magic", - "family": "627", - "difficulty": "10", - "duration": "300", - "mana": "80" - }, - "5264": { - "name": "Sigil of Growth XI", - "description": "Your healing rating is increased by 11.", - "school": "Life Magic", - "family": "627", - "difficulty": "11", - "duration": "300", - "mana": "80" - }, - "5265": { - "name": "Sigil of Growth XII", - "description": "Your healing rating is increased by 12.", - "school": "Life Magic", - "family": "627", - "difficulty": "12", - "duration": "300", - "mana": "80" - }, - "5266": { - "name": "Sigil of Growth XIII", - "description": "Your healing rating is increased by 13.", - "school": "Life Magic", - "family": "627", - "difficulty": "13", - "duration": "300", - "mana": "80" - }, - "5267": { - "name": "Sigil of Growth XIV", - "description": "Your healing rating is increased by 14.", - "school": "Life Magic", - "family": "627", - "difficulty": "14", - "duration": "300", - "mana": "80" - }, - "5268": { - "name": "Sigil of Growth XV", - "description": "Your healing rating is increased by 15.", - "school": "Life Magic", - "family": "627", - "difficulty": "15", - "duration": "300", - "mana": "80" - }, - "5269": { - "name": "Sigil of Vigor I (Health)", - "description": "Your health is increased by 1.", - "school": "Life Magic", - "family": "623", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5270": { - "name": "Sigil of Vigor II (Health)", - "description": "Your health is increased by 2.", - "school": "Life Magic", - "family": "623", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5271": { - "name": "Sigil of Vigor III (Health)", - "description": "Your health is increased by 3.", - "school": "Life Magic", - "family": "623", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5272": { - "name": "Sigil of Vigor IV (Health)", - "description": "Your health is increased by 4.", - "school": "Life Magic", - "family": "623", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5273": { - "name": "Sigil of Vigor V (Health)", - "description": "Your health is increased by 5.", - "school": "Life Magic", - "family": "623", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5274": { - "name": "Sigil of Vigor VI (Health)", - "description": "Your health is increased by 6.", - "school": "Life Magic", - "family": "623", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5275": { - "name": "Sigil of Vigor VII (Health)", - "description": "Your health is increased by 7.", - "school": "Life Magic", - "family": "623", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5276": { - "name": "Sigil of Vigor VIII (Health)", - "description": "Your health is increased by 8.", - "school": "Life Magic", - "family": "623", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5277": { - "name": "Sigil of Vigor IX (Health)", - "description": "Your health is increased by 9.", - "school": "Life Magic", - "family": "623", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5278": { - "name": "Sigil of Vigor X (Health)", - "description": "Your health is increased by 10.", - "school": "Life Magic", - "family": "623", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5279": { - "name": "Sigil of Vigor XI (Health)", - "description": "Your health is increased by 11.", - "school": "Life Magic", - "family": "623", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5280": { - "name": "Sigil of Vigor XII (Health)", - "description": "Your health is increased by 12.", - "school": "Life Magic", - "family": "623", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5281": { - "name": "Sigil of Vigor XIII (Health)", - "description": "Your health is increased by 13.", - "school": "Life Magic", - "family": "623", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5282": { - "name": "Sigil of Vigor XIV (Health)", - "description": "Your health is increased by 14.", - "school": "Life Magic", - "family": "623", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5283": { - "name": "Sigil of Vigor XV (Health)", - "description": "Your health is increased by 15.", - "school": "Life Magic", - "family": "623", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5284": { - "name": "Sigil of Vigor I (Mana)", - "description": "Your mana is increased by 5.", - "school": "Life Magic", - "family": "625", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5285": { - "name": "Sigil of Vigor II (Mana)", - "description": "Your mana is increased by 10.", - "school": "Life Magic", - "family": "625", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5286": { - "name": "Sigil of Vigor III (Mana)", - "description": "Your mana is increased by 15.", - "school": "Life Magic", - "family": "625", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5287": { - "name": "Sigil of Vigor IV (Mana)", - "description": "Your mana is increased by 20.", - "school": "Life Magic", - "family": "625", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5288": { - "name": "Sigil of Vigor V (Mana)", - "description": "Your mana is increased by 25.", - "school": "Life Magic", - "family": "625", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5289": { - "name": "Sigil of Vigor VI (Mana)", - "description": "Your mana is increased by 30.", - "school": "Life Magic", - "family": "625", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5290": { - "name": "Sigil of Vigor VII (Mana)", - "description": "Your mana is increased by 35.", - "school": "Life Magic", - "family": "625", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5291": { - "name": "Sigil of Vigor VIII (Mana)", - "description": "Your mana is increased by 40.", - "school": "Life Magic", - "family": "625", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5292": { - "name": "Sigil of Vigor IX (Mana)", - "description": "Your mana is increased by 45.", - "school": "Life Magic", - "family": "625", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5293": { - "name": "Sigil of Vigor X (Mana)", - "description": "Your mana is increased by 50.", - "school": "Life Magic", - "family": "625", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5294": { - "name": "Sigil of Vigor XI (Mana)", - "description": "Your mana is increased by 55.", - "school": "Life Magic", - "family": "625", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5295": { - "name": "Sigil of Vigor XII (Mana)", - "description": "Your mana is increased by 60.", - "school": "Life Magic", - "family": "625", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5296": { - "name": "Sigil of Vigor XIII (Mana)", - "description": "Your mana is increased by 65.", - "school": "Life Magic", - "family": "625", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5297": { - "name": "Sigil of Vigor XIV (Mana)", - "description": "Your mana is increased by 70.", - "school": "Life Magic", - "family": "625", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5298": { - "name": "Sigil of Vigor XV (Mana)", - "description": "Your mana is increased by 75.", - "school": "Life Magic", - "family": "625", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5299": { - "name": "Sigil of Vigor I (Stamina)", - "description": "Your stamina is increased by 5.", - "school": "Life Magic", - "family": "624", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5300": { - "name": "Sigil of Vigor II (Stamina)", - "description": "Your stamina is increased by 10.", - "school": "Life Magic", - "family": "624", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5301": { - "name": "Sigil of Vigor III (Stamina)", - "description": "Your stamina is increased by 15.", - "school": "Life Magic", - "family": "624", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5302": { - "name": "Sigil of Vigor IV (Stamina)", - "description": "Your stamina is increased by 20.", - "school": "Life Magic", - "family": "624", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5303": { - "name": "Sigil of Vigor V (Stamina)", - "description": "Your stamina is increased by 25.", - "school": "Life Magic", - "family": "624", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5304": { - "name": "Sigil of Vigor VI (Stamina)", - "description": "Your stamina is increased by 30.", - "school": "Life Magic", - "family": "624", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5305": { - "name": "Sigil of Vigor VII (Stamina)", - "description": "Your stamina is increased by 35.", - "school": "Life Magic", - "family": "624", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5306": { - "name": "Sigil of Vigor VIII (Stamina)", - "description": "Your stamina is increased by 40.", - "school": "Life Magic", - "family": "624", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5307": { - "name": "Sigil of Vigor IX (Stamina)", - "description": "Your stamina is increased by 45.", - "school": "Life Magic", - "family": "624", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5308": { - "name": "Sigil of Vigor X (Stamina)", - "description": "Your stamina is increased by 50.", - "school": "Life Magic", - "family": "624", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5309": { - "name": "Sigil of Vigor XI (Stamina)", - "description": "Your stamina is increased by 55.", - "school": "Life Magic", - "family": "624", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5310": { - "name": "Sigil of Vigor XII (Stamina)", - "description": "Your stamina is increased by 60.", - "school": "Life Magic", - "family": "624", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5311": { - "name": "Sigil of Vigor XIII (Stamina)", - "description": "Your stamina is increased by 65.", - "school": "Life Magic", - "family": "624", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5312": { - "name": "Sigil of Vigor XIV (Stamina)", - "description": "Your stamina is increased by 70.", - "school": "Life Magic", - "family": "624", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5313": { - "name": "Sigil of Vigor XV (Stamina)", - "description": "Your stamina is increased by 75.", - "school": "Life Magic", - "family": "624", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5314": { - "name": "Blessing of Unity", - "description": "You heal 10 points of health every 5 seconds for 50 seconds.", - "school": "Life Magic", - "family": "617", - "difficulty": "250", - "duration": "50", - "mana": "80" - }, - "5315": { - "name": "Sigil of Fury I (Endurance)", - "description": "Your endurance is increased by 1.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5316": { - "name": "Sigil of Fury II (Endurance)", - "description": "Your endurance is increased by 2.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5317": { - "name": "Sigil of Fury III (Endurance)", - "description": "Your endurance is increased by 3.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5318": { - "name": "Sigil of Fury IV (Endurance)", - "description": "Your endurance is increased by 4.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5319": { - "name": "Sigil of Fury V (Endurance)", - "description": "Your endurance is increased by 5.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5320": { - "name": "Sigil of Fury VI (Endurance)", - "description": "Your endurance is increased by 6.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5321": { - "name": "Sigil of Fury VII (Endurance)", - "description": "Your endurance is increased by 7.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5322": { - "name": "Sigil of Fury VIII (Endurance)", - "description": "Your endurance is increased by 8.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5323": { - "name": "Sigil of Fury IX (Endurance)", - "description": "Your endurance is increased by 9.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5324": { - "name": "Sigil of Fury X (Endurance)", - "description": "Your endurance is increased by 10.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5325": { - "name": "Sigil of Fury XI (Endurance)", - "description": "Your endurance is increased by 11.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5326": { - "name": "Sigil of Fury XII (Endurance)", - "description": "Your endurance is increased by 12.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5327": { - "name": "Sigil of Fury XIII (Endurance)", - "description": "Your endurance is increased by 13.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5328": { - "name": "Sigil of Fury XIV (Endurance)", - "description": "Your endurance is increased by 14.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5329": { - "name": "Sigil of Fury XV (Endurance)", - "description": "Your endurance is increased by 15.", - "school": "Life Magic", - "family": "635", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5330": { - "name": "Gear Knight Invasion Area Camp Recall", - "description": "Sends the caster to the Gear Knight Invasion Area Camp.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "5331": { - "name": "Clouded Soul", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 200-250 points of nether damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "700", - "duration": "-1", - "mana": "80" - }, - "5332": { - "name": "Bael'zharon's Nether Streak", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 125-200 points of nether damage to the first thing it hits.", - "school": "War Magic", - "family": "639", - "difficulty": "700", - "duration": "-1", - "mana": "80" - }, - "5333": { - "name": "Bael'zharon's Nether Arc", - "description": "Shoots a bolt of nether at the target. The bolt does 125-200 points of nether damage to the first thing it hits.", - "school": "War Magic", - "family": "640", - "difficulty": "700", - "duration": "-1", - "mana": "40" - }, - "5334": { - "name": "Bael'zharons Curse of Destruction", - "description": "The target loses 600 points of health over 30 seconds.", - "school": "War Magic", - "family": "636", - "difficulty": "700", - "duration": "30", - "mana": "80" - }, - "5335": { - "name": "Bael'zharons Curse of Minor Destruction", - "description": "The target loses 720 points of health over 120 seconds.", - "school": "War Magic", - "family": "637", - "difficulty": "700", - "duration": "240", - "mana": "80" - }, - "5336": { - "name": "Bael'zharons Curse of Festering", - "description": "The heal rating of the target is decreased by 90.", - "school": "Life Magic", - "family": "619", - "difficulty": "700", - "duration": "60", - "mana": "80" - }, - "5337": { - "name": "Destructive Curse VII", - "description": "The target loses 294 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "325", - "duration": "30", - "mana": "70" - }, - "5338": { - "name": "Incantation of Destructive Curse", - "description": "The target loses 357 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "400", - "duration": "30", - "mana": "80" - }, - "5339": { - "name": "Destructive Curse I", - "description": "The target loses 56 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "25", - "duration": "30", - "mana": "10" - }, - "5340": { - "name": "Destructive Curse II", - "description": "The target loses 91 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "75", - "duration": "30", - "mana": "20" - }, - "5341": { - "name": "Destructive Curse III", - "description": "The target loses 126 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "125", - "duration": "30", - "mana": "30" - }, - "5342": { - "name": "Destructive Curse IV", - "description": "The target loses 154 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "175", - "duration": "30", - "mana": "40" - }, - "5343": { - "name": "Destructive Curse V", - "description": "The target loses 189 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "225", - "duration": "30", - "mana": "50" - }, - "5344": { - "name": "Destructive Curse VI", - "description": "The target loses 231 points of health over 30 seconds.", - "school": "Void Magic", - "family": "636", - "difficulty": "275", - "duration": "30", - "mana": "60" - }, - "5345": { - "name": "Nether Streak V", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 35-88 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "5346": { - "name": "Nether Streak VI", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 42-105 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "5347": { - "name": "Nether Streak VII", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 84-130 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "5348": { - "name": "Incantation of Nether Streak", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 126-162 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5349": { - "name": "Nether Bolt I", - "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "5350": { - "name": "Nether Bolt II", - "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "5351": { - "name": "Nether Bolt III", - "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "5352": { - "name": "Nether Bolt IV", - "description": "Shoots a bolt of nether at the target. The bolt does 73-146 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "5353": { - "name": "Nether Bolt V", - "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "5354": { - "name": "Nether Bolt VI", - "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "5355": { - "name": "Nether Bolt VII", - "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "5356": { - "name": "Incantation of Nether Bolt", - "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5357": { - "name": "Nether Streak I", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 10-27 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "5358": { - "name": "Nether Streak II", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 21-42 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "5359": { - "name": "Nether Streak III", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 25-56 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "5360": { - "name": "Nether Streak IV", - "description": "Sends a bolt of nether streaking towards the target. The bolt does 31-73 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "639", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "5361": { - "name": "Clouded Soul", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 94-147 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "641", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "5362": { - "name": "Nether Arc II", - "description": "Shoots a bolt of nether at the target. The bolt does 42-84 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "5363": { - "name": "Nether Arc III", - "description": "Shoots a bolt of nether at the target. The bolt does 63-115 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "5364": { - "name": "Nether Arc IV", - "description": "Shoots a bolt of nether at the target. The bolt does 73-147 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "5365": { - "name": "Nether Arc V", - "description": "Shoots a bolt of nether at the target. The bolt does 84-178 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "5366": { - "name": "Nether Arc VI", - "description": "Shoots a bolt of nether at the target. The bolt does 105-210 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "5367": { - "name": "Nether Arc VII", - "description": "Shoots a bolt of nether at the target. The bolt does 168-262 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "5368": { - "name": "Incantation of Nether Arc", - "description": "Shoots a bolt of nether at the target. The bolt does 252-325 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5369": { - "name": "Nether Arc I", - "description": "Shoots a bolt of nether at the target. The bolt does 21-52 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "640", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "5370": { - "name": "Incantation of Nether Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 42-57 points of electrical damage to the first thing it hits.", - "school": "Void Magic", - "family": "246", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5371": { - "name": "Festering Curse I", - "description": "The heal rating of the target is decreased by 5.", - "school": "Void Magic", - "family": "643", - "difficulty": "25", - "duration": "30", - "mana": "10" - }, - "5372": { - "name": "Festering Curse II", - "description": "The heal rating of the target is decreased by 10.", - "school": "Void Magic", - "family": "643", - "difficulty": "75", - "duration": "30", - "mana": "20" - }, - "5373": { - "name": "Festering Curse III", - "description": "The heal rating of the target is decreased by 15.", - "school": "Void Magic", - "family": "643", - "difficulty": "125", - "duration": "30", - "mana": "30" - }, - "5374": { - "name": "Festering Curse IV", - "description": "The heal rating of the target is decreased by 20.", - "school": "Void Magic", - "family": "643", - "difficulty": "175", - "duration": "30", - "mana": "40" - }, - "5375": { - "name": "Festering Curse V", - "description": "The heal rating of the target is decreased by 25.", - "school": "Void Magic", - "family": "643", - "difficulty": "225", - "duration": "30", - "mana": "50" - }, - "5376": { - "name": "Festering Curse VI", - "description": "The heal rating of the target is decreased by 30.", - "school": "Void Magic", - "family": "643", - "difficulty": "275", - "duration": "30", - "mana": "60" - }, - "5377": { - "name": "Festering Curse VII", - "description": "The heal rating of the target is decreased by 35.", - "school": "Void Magic", - "family": "643", - "difficulty": "325", - "duration": "30", - "mana": "70" - }, - "5378": { - "name": "Incantation of Festering Curse", - "description": "The heal rating of the target is decreased by 45.", - "school": "Void Magic", - "family": "643", - "difficulty": "400", - "duration": "30", - "mana": "80" - }, - "5379": { - "name": "Weakening Curse I", - "description": "Decreases the target's damage rating by 1.", - "school": "Void Magic", - "family": "642", - "difficulty": "25", - "duration": "15", - "mana": "10" - }, - "5380": { - "name": "Weakening Curse II", - "description": "Decreases the target's damage rating by 2.", - "school": "Void Magic", - "family": "642", - "difficulty": "75", - "duration": "15", - "mana": "20" - }, - "5381": { - "name": "Weakening Curse III", - "description": "Decreases the target's damage rating by 4.", - "school": "Void Magic", - "family": "642", - "difficulty": "125", - "duration": "15", - "mana": "30" - }, - "5382": { - "name": "Weakening Curse IV", - "description": "Decreases the target's damage rating by 6.", - "school": "Void Magic", - "family": "642", - "difficulty": "175", - "duration": "15", - "mana": "40" - }, - "5383": { - "name": "Weakening Curse V", - "description": "Decreases the target's damage rating by 8.", - "school": "Void Magic", - "family": "642", - "difficulty": "225", - "duration": "15", - "mana": "50" - }, - "5384": { - "name": "Weakening Curse VI", - "description": "Decreases the target's damage rating by 10.", - "school": "Void Magic", - "family": "642", - "difficulty": "275", - "duration": "15", - "mana": "60" - }, - "5385": { - "name": "Weakening Curse VII", - "description": "Decreases the target's damage rating by 12.", - "school": "Void Magic", - "family": "642", - "difficulty": "325", - "duration": "15", - "mana": "70" - }, - "5386": { - "name": "Incantation of Weakening Curse", - "description": "Decreases the target's damage rating by 15.", - "school": "Void Magic", - "family": "642", - "difficulty": "400", - "duration": "15", - "mana": "80" - }, - "5387": { - "name": "Corrosion I", - "description": "Sends a bolt of corrosion towards the target. The bolt does 76 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "1", - "duration": "-1", - "mana": "5" - }, - "5388": { - "name": "Corrosion II", - "description": "Sends a bolt of corrosion towards the target. The bolt does 116 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "50", - "duration": "-1", - "mana": "10" - }, - "5389": { - "name": "Corrosion III", - "description": "Sends a bolt of corrosion towards the target. The bolt does 152 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "100", - "duration": "-1", - "mana": "15" - }, - "5390": { - "name": "Corrosion IV", - "description": "Sends a bolt of corrosion towards the target. The bolt does 192 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "5391": { - "name": "Corrosion V", - "description": "Sends a bolt of corrosion towards the target. The bolt does 204 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "200", - "duration": "-1", - "mana": "25" - }, - "5392": { - "name": "Corrosion VI", - "description": "Sends a bolt of corrosion towards the target. The bolt does 288 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "5393": { - "name": "Corrosion VII", - "description": "Sends a bolt of corrosion towards the target. The bolt does 360 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "5394": { - "name": "Incantation of Corrosion", - "description": "Sends a bolt of corrosion towards the target. The bolt does 448 points of damage over 15 seconds.", - "school": "Void Magic", - "family": "637", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5395": { - "name": "Corruption I", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 56 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "5396": { - "name": "Corruption II", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 91 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "5397": { - "name": "Corruption III", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 126 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "5398": { - "name": "Corruption IV", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 154 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "5399": { - "name": "Corruption V", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 189 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "5400": { - "name": "Corruption VI", - "description": "Sends 3 bolts of corruption outward from the caster. Each bolt does 231 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "5401": { - "name": "Corruption VII", - "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 294 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "5402": { - "name": "Incantation of Corruption", - "description": "Sends 5 bolts of corruption outward from the caster. Each bolt does 357 points of damage over 30 seconds.", - "school": "Void Magic", - "family": "638", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5403": { - "name": "Void Magic Mastery Other I", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5404": { - "name": "Void Magic Mastery Other II", - "description": "Increases the target's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5405": { - "name": "Void Magic Mastery Other III", - "description": "Increases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5406": { - "name": "Void Magic Mastery Other IV", - "description": "Increases the target's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5407": { - "name": "Void Magic Mastery Other V", - "description": "Increases the target's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5408": { - "name": "Void Magic Mastery Other VI", - "description": "Increases the target's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5409": { - "name": "Void Magic Mastery Other VII", - "description": "Increases the target's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5410": { - "name": "Incantation of Void Magic Mastery Other", - "description": "Increases the target's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5411": { - "name": "Void Magic Mastery Self I", - "description": "Increases the caster's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5412": { - "name": "Void Magic Mastery Self II", - "description": "Increases the caster's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5413": { - "name": "Void Magic Mastery Self III", - "description": "Increases the caster's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5414": { - "name": "Void Magic Mastery Self IV", - "description": "Increases the caster's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5415": { - "name": "Void Magic Mastery Self V", - "description": "Increases the caster's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5416": { - "name": "Void Magic Mastery Self VI", - "description": "Increases the caster's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5417": { - "name": "Void Magic Mastery Self VII", - "description": "Increases the caster's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5418": { - "name": "Incantation of Void Magic Mastery Self", - "description": "Increases the caster's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "645", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5419": { - "name": "Void Magic Ineptitude Other I", - "description": "Decreases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5420": { - "name": "Void Magic Ineptitude Other II", - "description": "Decreases the target's Void Magic skill by 15 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5421": { - "name": "Void Magic Ineptitude Other III", - "description": "Decreases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5422": { - "name": "Void Magic Ineptitude Other IV", - "description": "Decreases the target's Void Magic skill by 25 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5423": { - "name": "Void Magic Ineptitude Other V", - "description": "Decreases the target's Void Magic skill by 30 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5424": { - "name": "Void Magic Ineptitude Other VI", - "description": "Decreases the target's Void Magic skill by 35 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5425": { - "name": "Void Magic Ineptitude Other VII", - "description": "Decreases the target's Void Magic skill by 40 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5426": { - "name": "Incantation of Void Magic Ineptitude Other", - "description": "Decreases the target's Void Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "644", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5427": { - "name": "Minor Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "646", - "difficulty": "5", - "duration": "780", - "mana": "10" - }, - "5428": { - "name": "Major Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "646", - "difficulty": "15", - "duration": "780", - "mana": "10" - }, - "5429": { - "name": "Epic Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "646", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5430": { - "name": "Moderate Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "646", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5431": { - "name": "Novice Shadow's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "647", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5432": { - "name": "Apprentice Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "647", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5433": { - "name": "Journeyman Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "647", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5434": { - "name": "Master Voidlock's Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 20 points.", - "school": "Creature Enchantment", - "family": "647", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5435": { - "name": "Spectral Void Magic Mastery", - "description": "Increases the caster's Void Magic skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "648", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5436": { - "name": "Prodigal Void Magic Mastery", - "description": "Increases the caster's Void Magic skill by 250 points.", - "school": "Creature Enchantment", - "family": "648", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5437": { - "name": "Corruptor's Boon", - "description": "Increases the target's Void Magic skill by 2 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "649", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5438": { - "name": "Corruptor's Boon", - "description": "Increases the target's Void Magic skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "649", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5439": { - "name": "Acid Spit Streak 1", - "description": "Spits a stream of acid streaking towards the target. The stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "5440": { - "name": "Acid Spit 1", - "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "5441": { - "name": "Acid Spit 2", - "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5442": { - "name": "Acid Spit Arc 1", - "description": "Spits a stream of acid at the target. The stream does 149-219 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "300", - "duration": "-1", - "mana": "35" - }, - "5443": { - "name": "Acid Spit Arc 2", - "description": "Spits a stream of acid at the target. The stream does 182-232 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5444": { - "name": "Acid Spit Blast 1", - "description": "Spits five streams of acid outward from the caster. Each stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "5445": { - "name": "Acid Spit Blast 2", - "description": "Spits five streams of acid outward from the caster. Each stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "131", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5446": { - "name": "Acid Spit Volley 1", - "description": "Spits five streams of acid toward the target. Each stream does 54-94 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "5447": { - "name": "Acid Spit Volley 2", - "description": "Shoots five streams of acid toward the target. Each stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "207", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5448": { - "name": "Acid Spit Streak", - "description": "Spits a stream of acid streaking towards the target. The stream does 61-106 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "243", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5449": { - "name": "Surging Strength", - "description": "The damage rating of the caster is increased by 20. This spell stacks with other effects that boost damage rating.", - "school": "Life Magic", - "family": "650", - "difficulty": "2", - "duration": "15", - "mana": "70" - }, - "5450": { - "name": "Towering Defense", - "description": "The damage reduction rating of the caster is increased by 30. This spell stacks with other effects that boost damage reduction rating.", - "school": "Life Magic", - "family": "651", - "difficulty": "2", - "duration": "15", - "mana": "70" - }, - "5451": { - "name": "Luminous Vitality", - "description": "Increases maximum health by 5 points. This spell stacks with other effects that increase health.", - "school": "Life Magic", - "family": "652", - "difficulty": "5", - "duration": "10800", - "mana": "70" - }, - "5452": { - "name": "Queen's Willpower", - "description": "Increases the target's Self by 45 points.", - "school": "Creature Enchantment", - "family": "11", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5453": { - "name": "Queen's Armor", - "description": "Increases the target's natural armor by 250 points.", - "school": "Life Magic", - "family": "115", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5454": { - "name": "Queen's Coordination", - "description": "Increases the target's Coordination by 45 points.", - "school": "Creature Enchantment", - "family": "7", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5455": { - "name": "Queen's Endurance", - "description": "Increases the target's Endurance by 45 points.", - "school": "Creature Enchantment", - "family": "3", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5456": { - "name": "Queen's Focus", - "description": "Increases the target's Focus by 45 points.", - "school": "Creature Enchantment", - "family": "9", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5457": { - "name": "Queen's Quickness", - "description": "Increases the target's Quickness by 45 points.", - "school": "Creature Enchantment", - "family": "5", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5458": { - "name": "Queen's Strength", - "description": "Increases the target's Strength by 45 points.", - "school": "Creature Enchantment", - "family": "1", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5459": { - "name": "Queen's Piercing Protection", - "description": "Reduces damage the target takes from Piercing by 68%", - "school": "Life Magic", - "family": "111", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5460": { - "name": "Queen's Acid Protection", - "description": "Reduces damage the target takes from acid by 68%", - "school": "Life Magic", - "family": "101", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5461": { - "name": "Queen's Blade Protection", - "description": "Reduces damage the target takes from Slashing by 68%", - "school": "Life Magic", - "family": "113", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5462": { - "name": "Queen's Bludgeoning Protection", - "description": "Reduces damage the target takes from Bludgeoning by 68%", - "school": "Life Magic", - "family": "103", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5463": { - "name": "Queen's Cold Protection", - "description": "Reduces damage the target takes from Cold by 68%", - "school": "Life Magic", - "family": "105", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5464": { - "name": "Queen's Fire Protection", - "description": "Reduces damage the target takes from fire by 68%", - "school": "Life Magic", - "family": "109", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5465": { - "name": "Queen's Lightning Protection", - "description": "Reduces damage the target takes from Lightning by 68%", - "school": "Life Magic", - "family": "107", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5466": { - "name": "Queen's Rejuvenation", - "description": "Increases the rate at which the target regains Stamina by 145%.", - "school": "Life Magic", - "family": "95", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5467": { - "name": "Queen's Mana Renewal", - "description": "Increases the target's natural mana rate by 145%.", - "school": "Life Magic", - "family": "97", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5468": { - "name": "Queen's Regeneration", - "description": "Increase target's natural healing rate by 145%.", - "school": "Life Magic", - "family": "93", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5469": { - "name": "Queen's Impregnability Other", - "description": "Increases the target's Missile Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "39", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5470": { - "name": "Queen's Invulnerability Other", - "description": "Increases the target's Melee Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "37", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5471": { - "name": "Queen's Magic Resistance", - "description": "Increases the target's Magic Defense skill by 45 points.", - "school": "Creature Enchantment", - "family": "41", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5472": { - "name": "Queen's Mana Conversion Mastery", - "description": "Increases the target's Mana Conversion skill by 45 points.", - "school": "Creature Enchantment", - "family": "51", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5473": { - "name": "Queen's Salvaging Mastery Other", - "description": "Increases the caster's Salvaging skill by 45 points.", - "school": "Creature Enchantment", - "family": "435", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5474": { - "name": "Queen's Sprint", - "description": "Increases the target's Run skill by 45 points.", - "school": "Creature Enchantment", - "family": "77", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5475": { - "name": "Queen's Light Weapon Mastery", - "description": "Increases the target's Light Weapons skill by 45 points.", - "school": "Creature Enchantment", - "family": "17", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5476": { - "name": "Queen's War Magic Mastery", - "description": "Increases the target's War Magic skill by 45 points.", - "school": "Creature Enchantment", - "family": "49", - "difficulty": "400", - "duration": "10800", - "mana": "80" - }, - "5477": { - "name": "Critical Damage Metamorphi I", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "family": "626", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5478": { - "name": "Critical Damage Metamorphi II", - "description": "Your critical damage rating is increased by 4.", - "school": "Life Magic", - "family": "626", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5479": { - "name": "Critical Damage Metamorphi III", - "description": "Your critical damage rating is increased by 6.", - "school": "Life Magic", - "family": "626", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5480": { - "name": "Critical Damage Metamorphi IV", - "description": "Your critical damage rating is increased by 8.", - "school": "Life Magic", - "family": "626", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5481": { - "name": "Critical Damage Metamorphi V", - "description": "Your critical damage rating is increased by 10.", - "school": "Life Magic", - "family": "626", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5482": { - "name": "Critical Damage Metamorphi VI", - "description": "Your critical damage rating is increased by 12.", - "school": "Life Magic", - "family": "626", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5483": { - "name": "Critical Damage Metamorphi VII", - "description": "Your critical damage rating is increased by 14.", - "school": "Life Magic", - "family": "626", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5484": { - "name": "Critical Damage Metamorphi VIII", - "description": "Your critical damage rating is increased by 16.", - "school": "Life Magic", - "family": "626", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5485": { - "name": "Critical Damage Metamorphi IX", - "description": "Your critical damage rating is increased by 20.", - "school": "Life Magic", - "family": "626", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5486": { - "name": "Critical Damage Metamorphi X", - "description": "Your critical damage rating is increased by 24.", - "school": "Life Magic", - "family": "626", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5487": { - "name": "Critical Damage Metamorphi XI", - "description": "Your critical damage rating is increased by 30.", - "school": "Life Magic", - "family": "626", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5489": { - "name": "Critical Damage Reduction Metamorphi I", - "description": "Your critical damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "653", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5490": { - "name": "Critical Damage Reduction Metamorphi II", - "description": "Your critical damage reduction rating is increased by 4.", - "school": "Life Magic", - "family": "653", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5491": { - "name": "Critical Damage Reduction Metamorphi III", - "description": "Your critical damage reduction rating is increased by 6.", - "school": "Life Magic", - "family": "653", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5492": { - "name": "Critical Damage Reduction Metamorphi IV", - "description": "Your critical damage reduction rating is increased by 8.", - "school": "Life Magic", - "family": "653", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5493": { - "name": "Critical Damage Reduction Metamorphi V", - "description": "Your critical damage reduction rating is increased by 10.", - "school": "Life Magic", - "family": "653", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5494": { - "name": "Critical Damage Reduction Metamorphi VI", - "description": "Your critical damage reduction rating is increased by 12.", - "school": "Life Magic", - "family": "653", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5495": { - "name": "Critical Damage Reduction Metamorphi VII", - "description": "Your critical damage reduction rating is increased by 14.", - "school": "Life Magic", - "family": "653", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5496": { - "name": "Critical Damage Reduction Metamorphi VIII", - "description": "Your critical damage reduction rating is increased by 16.", - "school": "Life Magic", - "family": "653", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5497": { - "name": "Critical Damage Reduction Metamorphi IX", - "description": "Your critical damage reduction rating is increased by 20.", - "school": "Life Magic", - "family": "653", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5498": { - "name": "Critical Damage Reduction Metamorphi X", - "description": "Your critical damage reduction rating is increased by 24.", - "school": "Life Magic", - "family": "653", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5499": { - "name": "Critical Damage Reduction Metamorphi XI", - "description": "Your critical damage reduction rating is increased by 30.", - "school": "Life Magic", - "family": "653", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5500": { - "name": "Damage Metamorphi I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "family": "620", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5501": { - "name": "Damage Metamorphi II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "family": "620", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5502": { - "name": "Damage Metamorphi III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "family": "620", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5503": { - "name": "Damage Metamorphi IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "family": "620", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5504": { - "name": "Damage Metamorphi V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "family": "620", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5505": { - "name": "Damage Metamorphi VI", - "description": "Your damage rating is increased by 6.", - "school": "Life Magic", - "family": "620", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5506": { - "name": "Damage Metamorphi VII", - "description": "Your damage rating is increased by 7.", - "school": "Life Magic", - "family": "620", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5507": { - "name": "Damage Metamorphi VIII", - "description": "Your damage rating is increased by 8.", - "school": "Life Magic", - "family": "620", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5508": { - "name": "Damage Metamorphi IX", - "description": "Your damage rating is increased by 10.", - "school": "Life Magic", - "family": "620", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5509": { - "name": "Damage Metamorphi X", - "description": "Your damage rating is increased by 12.", - "school": "Life Magic", - "family": "620", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5510": { - "name": "Damage Metamorphi XI", - "description": "Your damage rating is increased by 15.", - "school": "Life Magic", - "family": "620", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5511": { - "name": "Damage Reduction Metamorphi I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "family": "621", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5512": { - "name": "Damage Reduction Metamorphi II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "621", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5513": { - "name": "Damage Reduction Metamorphi III", - "description": "Your damage reduction rating is increased by 3.", - "school": "Life Magic", - "family": "621", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5514": { - "name": "Damage Reduction Metamorphi IV", - "description": "Your damage reduction rating is increased by 4.", - "school": "Life Magic", - "family": "621", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5515": { - "name": "Damage Reduction Metamorphi V", - "description": "Your damage reduction rating is increased by 5.", - "school": "Life Magic", - "family": "621", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5516": { - "name": "Damage Reduction Metamorphi VI", - "description": "Your damage reduction rating is increased by 6.", - "school": "Life Magic", - "family": "621", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5517": { - "name": "Damage Reduction Metamorphi VII", - "description": "Your damage reduction rating is increased by 7.", - "school": "Life Magic", - "family": "621", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5518": { - "name": "Damage Reduction Metamorphi VIII", - "description": "Your damage reduction rating is increased by 8.", - "school": "Life Magic", - "family": "621", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5519": { - "name": "Damage Reduction Metamorphi IX", - "description": "Your damage reduction rating is increased by 10.", - "school": "Life Magic", - "family": "621", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5520": { - "name": "Damage Reduction Metamorphi X", - "description": "Your damage reduction rating is increased by 12.", - "school": "Life Magic", - "family": "621", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5521": { - "name": "Damage Reduction Metamorphi XI", - "description": "Your damage reduction rating is increased by 15.", - "school": "Life Magic", - "family": "621", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5522": { - "name": "Acid Spit Vulnerability 1", - "description": "Increases damage the target takes from acid by 185%.", - "school": "War Magic", - "family": "102", - "difficulty": "325", - "duration": "-1", - "mana": "70" - }, - "5523": { - "name": "Acid Spit Vulnerability 2", - "description": "Increases damage the target takes from acid by 210%.", - "school": "War Magic", - "family": "102", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5524": { - "name": "Falling stalactite", - "description": "Stalactites fall from the ceiling piercing anyone below.", - "school": "War Magic", - "family": "237", - "difficulty": "400", - "duration": "-1", - "mana": "120" - }, - "5525": { - "name": "Bloodstone Bolt I", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 16-40 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "1", - "duration": "-1", - "mana": "10" - }, - "5526": { - "name": "Bloodstone Bolt II", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 32-64 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "50", - "duration": "-1", - "mana": "20" - }, - "5527": { - "name": "Bloodstone Bolt III", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 48-88 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "100", - "duration": "-1", - "mana": "30" - }, - "5528": { - "name": "Bloodstone Bolt IV", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 56-112 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "150", - "duration": "-1", - "mana": "40" - }, - "5529": { - "name": "Bloodstone Bolt V", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 64-136 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "200", - "duration": "-1", - "mana": "50" - }, - "5530": { - "name": "Bloodstone Bolt VI", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 80-160 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "250", - "duration": "-1", - "mana": "60" - }, - "5531": { - "name": "Bloodstone Bolt VII", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 128-200 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "300", - "duration": "-1", - "mana": "70" - }, - "5532": { - "name": "Incantation of Bloodstone Bolt", - "description": "Shoots a bolt of corrupted life energy at the target. The bolt drains 192-248 points of health from the first thing it hits.", - "school": "Life Magic", - "family": "80", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5533": { - "name": "Entering Lord Kastellar's Lab", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5534": { - "name": "Entering the Bloodstone Factory", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5535": { - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 80-160 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "250", - "duration": "-1", - "mana": "30" - }, - "5536": { - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 135-195 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5537": { - "name": "Acidic Blood", - "description": "Shoots a stream of acidic blood at the target. The stream does 50-100 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "150", - "duration": "-1", - "mana": "20" - }, - "5538": { - "name": "Darkened Heart", - "description": "Your heart. darkened with hate. provides an increase to your Void Magic skill by 2.", - "school": "Creature Enchantment", - "family": "649", - "difficulty": "2", - "duration": "10800", - "mana": "10" - }, - "5539": { - "name": "Warded Cavern Passage", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5540": { - "name": "Warded Dungeon Passage", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "5541": { - "name": "Lost City of Neftet Recall", - "description": "Sends the caster to the Lost City of Neftet.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "5542": { - "name": "Burning Sands Infliction", - "description": "You've been covered in burning sand. causing damage over time. The target loses 357 points of health over 30 seconds.", - "school": "Life Magic", - "family": "618", - "difficulty": "350", - "duration": "30", - "mana": "80" - }, - "5543": { - "name": "Curse of the Burning Sands", - "description": "Your wounds are cursed and don't heal as well.", - "school": "Life Magic", - "family": "619", - "difficulty": "350", - "duration": "300", - "mana": "80" - }, - "5544": { - "name": "Nether Blast I", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "75", - "duration": "-1", - "mana": "40" - }, - "5545": { - "name": "Nether Blast II", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 10-21 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "75", - "duration": "-1", - "mana": "40" - }, - "5546": { - "name": "Nether Blast III", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 21-47 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "125", - "duration": "-1", - "mana": "15" - }, - "5547": { - "name": "Nether Blast IV", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 31-63 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "175", - "duration": "-1", - "mana": "20" - }, - "5548": { - "name": "Nether Blast V", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 36-73 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "225", - "duration": "-1", - "mana": "25" - }, - "5549": { - "name": "Nether Blast VI", - "description": "Shoots three bolts of nether outward from the caster. Each bolt does 42-89 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "275", - "duration": "-1", - "mana": "30" - }, - "5550": { - "name": "Nether Blast VII", - "description": "Shoots five bolts of nether outward from the caster. Each bolt does 78-126 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "325", - "duration": "-1", - "mana": "35" - }, - "5551": { - "name": "Incantation of Nether Blast", - "description": "Shoots five bolts of nether outward from the caster. Each bolt does 115-158 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "135", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5552": { - "name": "Sigil of Purity IX", - "description": "Your DoT reduction rating is increased by 36.", - "school": "Life Magic", - "family": "658", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5553": { - "name": "Sigil of Perserverance I", - "description": "Your health drain resistance rating is increased by 4.", - "school": "Life Magic", - "family": "657", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5554": { - "name": "Sigil of Perserverance X", - "description": "Your health drain resistance rating is increased by 40.", - "school": "Life Magic", - "family": "657", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5555": { - "name": "Sigil of Perserverance XI", - "description": "Your health drain resistance rating is increased by 44.", - "school": "Life Magic", - "family": "657", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5556": { - "name": "Sigil of Perserverance XII", - "description": "Your health drain resistance rating is increased by 48.", - "school": "Life Magic", - "family": "657", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5557": { - "name": "Sigil of Perserverance XIII", - "description": "desc desc Your health drain resistance rating is increased by 52.", - "school": "Life Magic", - "family": "657", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5558": { - "name": "Sigil of Perserverance XIV", - "description": "desc desc Your health drain resistance rating is increased by 56.", - "school": "Life Magic", - "family": "657", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5559": { - "name": "Sigil of Perserverance XV", - "description": "desc desc Your health drain resistance rating is increased by 50.", - "school": "Life Magic", - "family": "657", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5560": { - "name": "Sigil of Perserverance II", - "description": "Your health drain resistance rating is increased by 8.", - "school": "Life Magic", - "family": "657", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5561": { - "name": "Sigil of Perserverance III", - "description": "Your health drain resistance rating is increased by 12.", - "school": "Life Magic", - "family": "657", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5562": { - "name": "Sigil of Perserverance IV", - "description": "Your health drain resistance rating is increased by 16.", - "school": "Life Magic", - "family": "657", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5563": { - "name": "Sigil of Perserverance V", - "description": "Your health drain resistance rating is increased by 20.", - "school": "Life Magic", - "family": "657", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5564": { - "name": "Sigil of Perserverance VI", - "description": "Your health drain resistance rating is increased by 24.", - "school": "Life Magic", - "family": "657", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5565": { - "name": "Sigil of Perserverance VII", - "description": "Your health drain resistance rating is increased by 28.", - "school": "Life Magic", - "family": "657", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5566": { - "name": "Sigil of Perserverance VIII", - "description": "Your health drain resistance rating is increased by 32.", - "school": "Life Magic", - "family": "657", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5567": { - "name": "Sigil of Perserverance IX", - "description": "Your health drain resistance rating is increased by 36.", - "school": "Life Magic", - "family": "657", - "difficulty": "9", - "duration": "510", - "mana": "70" - }, - "5568": { - "name": "Sigil of Purity I", - "description": "Your DoT reduction rating is increased by 4.", - "school": "Life Magic", - "family": "658", - "difficulty": "1", - "duration": "510", - "mana": "70" - }, - "5569": { - "name": "Sigil of Purity X", - "description": "Your DoT reduction rating is increased by 40.", - "school": "Life Magic", - "family": "658", - "difficulty": "10", - "duration": "510", - "mana": "70" - }, - "5570": { - "name": "Sigil of Purity XI", - "description": "Your DoT reduction rating is increased by 44.", - "school": "Life Magic", - "family": "658", - "difficulty": "11", - "duration": "510", - "mana": "70" - }, - "5571": { - "name": "Sigil of Purity XII", - "description": "Your DoT reduction rating is increased by 48.", - "school": "Life Magic", - "family": "658", - "difficulty": "12", - "duration": "510", - "mana": "70" - }, - "5572": { - "name": "Sigil of Purity XIII", - "description": "Your DoT reduction rating is increased by 52.", - "school": "Life Magic", - "family": "658", - "difficulty": "13", - "duration": "510", - "mana": "70" - }, - "5573": { - "name": "Sigil of Purity XIV", - "description": "Your DoT reduction rating is increased by 56.", - "school": "Life Magic", - "family": "658", - "difficulty": "14", - "duration": "510", - "mana": "70" - }, - "5574": { - "name": "Sigil of Purity XV", - "description": "Your DoT reduction rating is increased by 60.", - "school": "Life Magic", - "family": "658", - "difficulty": "15", - "duration": "510", - "mana": "70" - }, - "5575": { - "name": "Sigil of Purity II", - "description": "Your DoT reduction rating is increased by 8.", - "school": "Life Magic", - "family": "658", - "difficulty": "2", - "duration": "510", - "mana": "70" - }, - "5576": { - "name": "Sigil of Purity III", - "description": "Your DoT reduction rating is increased by 12.", - "school": "Life Magic", - "family": "658", - "difficulty": "3", - "duration": "510", - "mana": "70" - }, - "5577": { - "name": "Sigil of Purity IV", - "description": "Your DoT reduction rating is increased by 16.", - "school": "Life Magic", - "family": "658", - "difficulty": "4", - "duration": "510", - "mana": "70" - }, - "5578": { - "name": "Sigil of Purity V", - "description": "Your DoT reduction rating is increased by 20.", - "school": "Life Magic", - "family": "658", - "difficulty": "5", - "duration": "510", - "mana": "70" - }, - "5579": { - "name": "Sigil of Purity VI", - "description": "Your DoT reduction rating is increased by 24.", - "school": "Life Magic", - "family": "658", - "difficulty": "6", - "duration": "510", - "mana": "70" - }, - "5580": { - "name": "Sigil of Purity VII", - "description": "Your DoT reduction rating is increased by 28.", - "school": "Life Magic", - "family": "658", - "difficulty": "7", - "duration": "510", - "mana": "70" - }, - "5581": { - "name": "Sigil of Purity VIII", - "description": "Your DoT reduction rating is increased by 32.", - "school": "Life Magic", - "family": "658", - "difficulty": "8", - "duration": "510", - "mana": "70" - }, - "5582": { - "name": "Nullify All Rares", - "description": "Dispels all rare enchantments on the player.", - "school": "Life Magic", - "family": "250", - "difficulty": "600", - "duration": "-1", - "mana": "340" - }, - "5583": { - "name": "Weave of Alchemy I", - "description": "Increases the target's Alchemy skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5584": { - "name": "Weave of Alchemy II", - "description": "Increases the target's Alchemy skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5585": { - "name": "Weave of Alchemy III", - "description": "Increases the target's Alchemy skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5586": { - "name": "Weave of Alchemy IV", - "description": "Increases the target's Alchemy skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5587": { - "name": "Weave of Alchemy V", - "description": "Increases the target's Alchemy skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5588": { - "name": "Weave of Arcane Lore I", - "description": "Increases the target's Arcane Lore skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5589": { - "name": "Weave of Arcane Lore II", - "description": "Increases the target's Arcane Lore skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5590": { - "name": "Weave of Arcane Lore III", - "description": "Increases the target's Arcane Lore skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5591": { - "name": "Weave of Arcane Lore IV", - "description": "Increases the target's Arcane Lore skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5592": { - "name": "Weave of Arcane Lore V", - "description": "Increases the target's Arcane Lore skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5593": { - "name": "Weave of Armor Tinkering I", - "description": "Increases the target's Armor Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5594": { - "name": "Weave of Armor Tinkering II", - "description": "Increases the target's Armor Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5595": { - "name": "Weave of Armor Tinkering III", - "description": "Increases the target's Armor Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5596": { - "name": "Weave of Armor Tinkering IV", - "description": "Increases the target's Armor Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5597": { - "name": "Weave of Armor Tinkering V", - "description": "Increases the target's Armor Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5598": { - "name": "Weave of Person Attunement I", - "description": "Increases the target's Assess Person skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5599": { - "name": "Weave of Person Attunement II", - "description": "Increases the target's Assess Person skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5600": { - "name": "Weave of Person Attunement III", - "description": "Increases the target's Assess Person skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5601": { - "name": "Weave of Person Attunement IV", - "description": "Increases the target's Assess Person skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5602": { - "name": "Weave of the Person Attunement V", - "description": "Increases the target's Assess Person skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5603": { - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5604": { - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5605": { - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5606": { - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5607": { - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5608": { - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5609": { - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5610": { - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5611": { - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5612": { - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5613": { - "name": "Weave of Cooking I", - "description": "Increases the target's Cooking skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5614": { - "name": "Weave of Cooking II", - "description": "Increases the target's Cooking skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5615": { - "name": "Weave of Cooking III", - "description": "Increases the target's Cooking skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5616": { - "name": "Weave of Cooking IV", - "description": "Increases the target's Cooking skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5617": { - "name": "Weave of the Cooking V", - "description": "Increases the target's Cooking skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5618": { - "name": "Weave of Creature Enchantment I", - "description": "Increases the target's Creature Enchantment skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5619": { - "name": "Weave of Creature Enchantment II", - "description": "Increases the target's Creature Enchantment skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5620": { - "name": "Weave of Creature Enchantment III", - "description": "Increases the target's Creature Enchantment skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5621": { - "name": "Weave of Creature Enchantment IV", - "description": "Increases the target's Creature Enchantment skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5622": { - "name": "Weave of the Creature Enchantment V", - "description": "Increases the target's Creature Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5623": { - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5624": { - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5625": { - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5626": { - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5627": { - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5628": { - "name": "Weave of Finesse Weapons I", - "description": "Increases the target's Finesse Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5629": { - "name": "Weave of Finesse Weapons II", - "description": "Increases the target's Finesse Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5630": { - "name": "Weave of Finesse Weapons III", - "description": "Increases the target's Finesse Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5631": { - "name": "Weave of Finesse Weapons IV", - "description": "Increases the target's Finesse Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5632": { - "name": "Weave of Finesse Weapons V", - "description": "Increases the target's Finesse Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5633": { - "name": "Weave of Deception I", - "description": "Increases the target's Deception skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5634": { - "name": "Weave of the Deception II", - "description": "Increases the target's Deception skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5635": { - "name": "Weave of the Deception III", - "description": "Increases the target's Deception skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5636": { - "name": "Weave of the Deception IV", - "description": "Increases the target's Deception skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5637": { - "name": "Weave of the Deception V", - "description": "Increases the target's Deception skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5638": { - "name": "Weave of Fletching I", - "description": "Increases the target's Fletching skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5639": { - "name": "Weave of the Fletching II", - "description": "Increases the target's Fletching skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5640": { - "name": "Weave of the Fletching III", - "description": "Increases the target's Fletching skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5641": { - "name": "Weave of the Fletching IV", - "description": "Increases the target's Fletching skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5642": { - "name": "Weave of the Fletching V", - "description": "Increases the target's Fletching skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5643": { - "name": "Weave of Healing I", - "description": "Increases the target's Healing skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5644": { - "name": "Weave of the Healing II", - "description": "Increases the target's Healing skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5645": { - "name": "Weave of the Healing III", - "description": "Increases the target's Healing skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5646": { - "name": "Weave of the Healing IV", - "description": "Increases the target's Healing skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5647": { - "name": "Weave of the Healing V", - "description": "Increases the target's Healing skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5648": { - "name": "Weave of Item Enchantment I", - "description": "Increases the target's Item Enchantment skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5649": { - "name": "Weave of Item Enchantment II", - "description": "Increases the target's Item Enchantment skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5650": { - "name": "Weave of Item Enchantment III", - "description": "Increases the target's Item Enchantment skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5651": { - "name": "Weave of Item Enchantment IV", - "description": "Increases the target's Item Enchantment skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5652": { - "name": "Weave of the Item Enchantment V", - "description": "Increases the target's Item Enchantment skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5653": { - "name": "Weave of Item Tinkering I", - "description": "Increases the target's Item Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5654": { - "name": "Weave of Item Tinkering II", - "description": "Increases the target's Item Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5655": { - "name": "Weave of Item Tinkering III", - "description": "Increases the target's Item Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5656": { - "name": "Weave of Item Tinkering IV", - "description": "Increases the target's Item Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5657": { - "name": "Weave of the Item Tinkering V", - "description": "Increases the target's Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5658": { - "name": "Weave of Leadership I", - "description": "Increases the target's Leadership skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5659": { - "name": "Weave of Leadership II", - "description": "Increases the target's Leadership skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5660": { - "name": "Weave of Leadership III", - "description": "Increases the target's Leadership skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5661": { - "name": "Weave of Leadership IV", - "description": "Increases the target's Leadership skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5662": { - "name": "Weave of Leadership V", - "description": "Increases the target's Leadership skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5663": { - "name": "Weave of Life Magic I", - "description": "Increases the target's Life Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5664": { - "name": "Weave of Life Magic II", - "description": "Increases the target's Life Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5665": { - "name": "Weave of Life Magic III", - "description": "Increases the target's Life Magic skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5666": { - "name": "Weave of Life Magic IV", - "description": "Increases the target's Life Magic skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5667": { - "name": "Weave of Life Magic V", - "description": "Increases the target's Life Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5668": { - "name": "Weave of Fealty I", - "description": "Increases the target's Loyalty skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5669": { - "name": "Weave of Fealty II", - "description": "Increases the target's Loyalty skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5670": { - "name": "Weave of Fealty III", - "description": "Increases the target's Loyalty skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5671": { - "name": "Weave of Fealty IV", - "description": "Increases the target's Loyalty skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5672": { - "name": "Weave of Fealty V", - "description": "Increases the target's Loyalty skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5673": { - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5674": { - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5675": { - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5676": { - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5677": { - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5678": { - "name": "Weave of Magic Resistance I", - "description": "Increases the target's Magic Defense skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5679": { - "name": "Weave of Magic Resistance II", - "description": "Increases the target's Magic Defense skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5680": { - "name": "Weave of Magic Resistance III", - "description": "Increases the target's Magic Defense skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5681": { - "name": "Weave of Magic Resistance IV", - "description": "Increases the target's Magic Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5682": { - "name": "Weave of the Magic Resistance V", - "description": "Increases the target's Magic Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5683": { - "name": "Weave of Magic Item Tinkering I", - "description": "Increases the target's Magic Item Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5684": { - "name": "Weave of Magic Item Tinkering II", - "description": "Increases the target's Magic Item Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5685": { - "name": "Weave of Magic Item Tinkering III", - "description": "Increases the target's Magic Item Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5686": { - "name": "Weave of Magic Item Tinkering IV", - "description": "Increases the target's Magic Item Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5687": { - "name": "Weave of the Magic Item Tinkering V", - "description": "Increases the target's Magic Item Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5688": { - "name": "Weave of Mana Conversion I", - "description": "Increases the target's Mana Conversion skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5689": { - "name": "Weave of Mana Conversion II", - "description": "Increases the target's Mana Conversion skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5690": { - "name": "Weave of Mana Conversion III", - "description": "Increases the target's Mana Conversion skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5691": { - "name": "Weave of Mana Conversion IV", - "description": "Increases the target's Mana Conversion skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5692": { - "name": "Weave of Mana Conversion V", - "description": "Increases the target's Mana Conversion skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5693": { - "name": "Weave of Invulnerability I", - "description": "Increases the target's Melee Defense skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5694": { - "name": "Weave of Invulnerability II", - "description": "Increases the target's Melee Defense skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5695": { - "name": "Weave of Invulnerability III", - "description": "Increases the target's Melee Defense skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5696": { - "name": "Weave of Invulnerability IV", - "description": "Increases the target's Melee Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5697": { - "name": "Weave of the Invulnerability V", - "description": "Increases the target's Melee Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5698": { - "name": "Weave of Impregnability I", - "description": "Increases the target's Missile Defense skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5699": { - "name": "Weave of Impregnability II", - "description": "Increases the target's Missile Defense skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5700": { - "name": "Weave of Impregnability III", - "description": "Increases the target's Missile Defense skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5701": { - "name": "Weave of Impregnability IV", - "description": "Increases the target's Missile Defense skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5702": { - "name": "Weave of the Impregnability V", - "description": "Increases the target's Missile Defense skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5703": { - "name": "Weave of Salvaging I", - "description": "Increases the target's Salvaging skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5704": { - "name": "Weave of Salvaging II", - "description": "Increases the target's Salvaging skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5705": { - "name": "Weave of Salvaging III", - "description": "Increases the target's Salvaging skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5706": { - "name": "Weave of Salvaging IV", - "description": "Increases the target's Salvaging skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5707": { - "name": "Weave of Salvaging V", - "description": "Increases the target's Salvaging skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5708": { - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5709": { - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5710": { - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5711": { - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5712": { - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5713": { - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5714": { - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5715": { - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5716": { - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5717": { - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5718": { - "name": "Weave of Heavy Weapons I", - "description": "Increases the target's Heavy Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5719": { - "name": "Weave of Heavy Weapons II", - "description": "Increases the target's Heavy Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5720": { - "name": "Weave of Heavy Weapons III", - "description": "Increases the target's Heavy Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5721": { - "name": "Weave of Heavy Weapons IV", - "description": "Increases the target's Heavy Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5722": { - "name": "Weave of Heavy Weapons V", - "description": "Increases the target's Heavy Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5723": { - "name": "Weave of Missile Weapons I", - "description": "Increases the target's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5724": { - "name": "Weave of Missile Weapons II", - "description": "Increases the target's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5725": { - "name": "Weave of Missile Weapons III", - "description": "Increases the target's Missile Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5726": { - "name": "Weave of Missile Weapons IV", - "description": "Increases the target's Missile Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5727": { - "name": "Weave of Missile Weapons V", - "description": "Increases the target's Missile Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5728": { - "name": "Weave of Two Handed Combat I", - "description": "Increases the target's Two Handed Combat skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5729": { - "name": "Weave of Two Handed Combat II", - "description": "Increases the target's Two Handed Combat skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5730": { - "name": "Weave of Two Handed Combat III", - "description": "Increases the target's Two Handed Combat skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5731": { - "name": "Weave of Two Handed Combat IV", - "description": "Increases the target's Two Handed Combat skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5732": { - "name": "Weave of Two Handed Combat V", - "description": "Increases the target's Two Handed Combat skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5733": { - "name": "Weave of Light Weapons I", - "description": "Increases the target's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5734": { - "name": "Weave of Light Weapons II", - "description": "Increases the target's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5735": { - "name": "Weave of Light Weapons III", - "description": "Increases the target's Light Weapons skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5736": { - "name": "Weave of Light Weapons IV", - "description": "Increases the target's Light Weapons skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5737": { - "name": "Weave of Light Weapons V", - "description": "Increases the target's Light Weapons skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5738": { - "name": "Weave of Void Magic I", - "description": "Increases the target's Void Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5739": { - "name": "Weave of Void Magic II", - "description": "Increases the target's Void Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5740": { - "name": "Weave of Void Magic III", - "description": "Increases the target's Void Magic skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5741": { - "name": "Weave of Void Magic IV", - "description": "Increases the target's Void Magic skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5742": { - "name": "Weave of Void Magic V", - "description": "Increases the target's Void Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5743": { - "name": "Weave of War Magic I", - "description": "Increases the target's War Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5744": { - "name": "Weave of War Magic II", - "description": "Increases the target's War Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5745": { - "name": "Weave of War Magic III", - "description": "Increases the target's War Magic skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5746": { - "name": "Weave of War Magic IV", - "description": "Increases the target's War Magic skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5747": { - "name": "Weave of War Magic V", - "description": "Increases the target's War Magic skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5748": { - "name": "Weave of Weapon Tinkering I", - "description": "Increases the target's Weapon Tinkering skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5749": { - "name": "Weave of Weapon Tinkering II", - "description": "Increases the target's Weapon Tinkering skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5750": { - "name": "Weave of Weapon Tinkering III", - "description": "Increases the target's Weapon Tinkering skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5751": { - "name": "Weave of Weapon Tinkering IV", - "description": "Increases the target's Weapon Tinkering skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5752": { - "name": "Weave of the Weapon Tinkering V", - "description": "Increases the target's Weapon Tinkering skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5753": { - "name": "Cloaked in Skill", - "description": "Increases all of the target's skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "family": "660", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5754": { - "name": "Shroud of Darkness (Magic)", - "description": "Decreases the target's Magic Defense skill by half.", - "school": "Creature Enchantment", - "family": "661", - "difficulty": "1", - "duration": "-1", - "mana": "70" - }, - "5755": { - "name": "Shroud of Darkness (Melee)", - "description": "Decreases the targets's Melee Defense skill by half.", - "school": "Creature Enchantment", - "family": "662", - "difficulty": "1", - "duration": "-1", - "mana": "70" - }, - "5756": { - "name": "Shroud of Darkness (Missile)", - "description": "Decreases the target's Missile Defense skill by half.", - "school": "Creature Enchantment", - "family": "663", - "difficulty": "1", - "duration": "-1", - "mana": "70" - }, - "5757": { - "name": "Weave of Creature Attunement III", - "description": "Increases the target's Assess Creature skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5758": { - "name": "Weave of Creature Attunement IV", - "description": "Increases the target's Assess Creature skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5759": { - "name": "Weave of the Creature Attunement V", - "description": "Increases the target's Assess Creature skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5760": { - "name": "Weave of Creature Attunement I", - "description": "Increases the target's Assess Creature skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5761": { - "name": "Weave of Creature Attunement II", - "description": "Increases the target's Assess Creature skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5762": { - "name": "Rolling Death", - "description": "A giant snowball.", - "school": "War Magic", - "family": "117", - "difficulty": "320", - "duration": "-1", - "mana": "120" - }, - "5763": { - "name": "Dirty Fighting Ineptitude Other I", - "description": "Decreases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5764": { - "name": "Dirty Fighting Ineptitude Other II", - "description": "Decreases the target's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5765": { - "name": "Dirty Fighting Ineptitude Other III", - "description": "Decreases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5766": { - "name": "Dirty Fighting Ineptitude Other IV", - "description": "Decreases the target's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5767": { - "name": "Dirty Fighting Ineptitude Other V", - "description": "Decreases the target's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5768": { - "name": "Dirty Fighting Ineptitude Other VI", - "description": "Decreases the target's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5769": { - "name": "Dirty Fighting Ineptitude Other VII", - "description": "Decreases the target's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5770": { - "name": "Incantation of Dirty Fighting Ineptitude Other", - "description": "Decreases the target's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "family": "664", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5771": { - "name": "Dirty Fighting Mastery Other I", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5772": { - "name": "Dirty Fighting Mastery Other II", - "description": "Increases the target's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5773": { - "name": "Dirty Fighting Mastery Other III", - "description": "Increases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5774": { - "name": "Dirty Fighting Mastery Other IV", - "description": "Increases the target's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5775": { - "name": "Dirty Fighting Mastery Other V", - "description": "Increases the target's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5776": { - "name": "Dirty Fighting Mastery Other VI", - "description": "Increases the target's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5777": { - "name": "Dirty Fighting Mastery Other VII", - "description": "Increases the target's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5778": { - "name": "Incantation of Dirty Fighting Mastery Other", - "description": "Increases the target's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5779": { - "name": "Dirty Fighting Mastery Self I", - "description": "Increases the caster's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5780": { - "name": "Dirty Fighting Mastery Self II", - "description": "Increases the caster's Dirty Fighting skill by 15 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5781": { - "name": "Dirty Fighting Mastery Self III", - "description": "Increases the caster's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5782": { - "name": "Dirty Fighting Mastery Self IV", - "description": "Increases the caster's Dirty Fighting skill by 25 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5783": { - "name": "Dirty Fighting Mastery Self V", - "description": "Increases the caster's Dirty Fighting skill by 30 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5784": { - "name": "Dirty Fighting Mastery Self VI", - "description": "Increases the caster's Dirty Fighting skill by 35 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5785": { - "name": "Dirty Fighting Mastery Self VII", - "description": "Increases the caster's Dirty Fighting skill by 40 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5786": { - "name": "Incantation of Dirty Fighting Mastery Self", - "description": "Increases the caster's Dirty Fighting skill by 45 points.", - "school": "Creature Enchantment", - "family": "665", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5787": { - "name": "Dual Wield Ineptitude Other I", - "description": "Decreases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5788": { - "name": "Dual Wield Ineptitude Other II", - "description": "Decreases the target's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5789": { - "name": "Dual Wield Ineptitude Other III", - "description": "Decreases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5790": { - "name": "Dual Wield Ineptitude Other IV", - "description": "Decreases the target's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5791": { - "name": "Dual Wield Ineptitude Other V", - "description": "Decreases the target's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5792": { - "name": "Dual Wield Ineptitude Other VI", - "description": "Decreases the target's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5793": { - "name": "Dual Wield Ineptitude Other VII", - "description": "Decreases the target's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5794": { - "name": "Incantation of Dual Wield Ineptitude Other", - "description": "Decreases the target's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "family": "667", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5795": { - "name": "Dual Wield Mastery Other I", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5796": { - "name": "Dual Wield Mastery Other II", - "description": "Increases the target's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5797": { - "name": "Dual Wield Mastery Other III", - "description": "Increases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5798": { - "name": "Dual Wield Mastery Other IV", - "description": "Increases the target's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5799": { - "name": "Dual Wield Mastery Other V", - "description": "Increases the target's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5800": { - "name": "Dual Wield Mastery Other VI", - "description": "Increases the target's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5801": { - "name": "Dual Wield Mastery Other VII", - "description": "Increases the target's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5802": { - "name": "Incantation of Dual Wield Mastery Other", - "description": "Increases the target's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5803": { - "name": "Dual Wield Mastery Self I", - "description": "Increases the caster's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5804": { - "name": "Dual Wield Mastery Self II", - "description": "Increases the caster's Dual Wield skill by 15 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5805": { - "name": "Dual Wield Mastery Self III", - "description": "Increases the caster's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5806": { - "name": "Dual Wield Mastery Self IV", - "description": "Increases the caster's Dual Wield skill by 25 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5807": { - "name": "Dual Wield Mastery Self V", - "description": "Increases the caster's Dual Wield skill by 30 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5808": { - "name": "Dual Wield Mastery Self VI", - "description": "Increases the caster's Dual Wield skill by 35 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5809": { - "name": "Dual Wield Mastery Self VII", - "description": "Increases the caster's Dual Wield skill by 40 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5810": { - "name": "Incantation of Dual Wield Mastery Self", - "description": "Increases the caster's Dual Wield skill by 45 points.", - "school": "Creature Enchantment", - "family": "668", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5811": { - "name": "Recklessness Ineptitude Other I", - "description": "Decreases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5812": { - "name": "Recklessness Ineptitude Other II", - "description": "Decreases the target's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5813": { - "name": "Recklessness Ineptitude Other III", - "description": "Decreases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5814": { - "name": "Recklessness Ineptitude Other IV", - "description": "Decreases the target's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5815": { - "name": "Recklessness Ineptitude Other V", - "description": "Decreases the target's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5816": { - "name": "Recklessness Ineptitude Other VI", - "description": "Decreases the target's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5817": { - "name": "Recklessness Ineptitude Other VII", - "description": "Decreases the target's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5818": { - "name": "Incantation of Recklessness Ineptitude Other", - "description": "Decreases the target's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "family": "670", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5819": { - "name": "Recklessness Mastery Other I", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5820": { - "name": "Recklessness Mastery Other II", - "description": "Increases the target's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5821": { - "name": "Recklessness Mastery Other III", - "description": "Increases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5822": { - "name": "Recklessness Mastery Other IV", - "description": "Increases the target's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5823": { - "name": "Recklessness Mastery Other V", - "description": "Increases the target's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5824": { - "name": "Recklessness Mastery Other VI", - "description": "Increases the target's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5825": { - "name": "Recklessness Mastery Other VII", - "description": "Increases the target's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5826": { - "name": "Incantation of Recklessness Mastery Other", - "description": "Increases the target's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5827": { - "name": "Recklessness Mastery Self I", - "description": "Increases the caster's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5828": { - "name": "Recklessness Mastery Self II", - "description": "Increases the caster's Recklessness skill by 15 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5829": { - "name": "Recklessness Mastery Self III", - "description": "Increases the caster's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5830": { - "name": "Recklessness Mastery Self IV", - "description": "Increases the caster's Recklessness skill by 25 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5831": { - "name": "Recklessness Mastery Self V", - "description": "Increases the caster's Recklessness skill by 30 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5832": { - "name": "Recklessness Mastery Self VI", - "description": "Increases the caster's Recklessness skill by 35 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5833": { - "name": "Recklessness Mastery Self VII", - "description": "Increases the caster's Recklessness skill by 40 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5834": { - "name": "Incantation of Recklessness Mastery Self", - "description": "Increases the caster's Recklessness skill by 45 points.", - "school": "Creature Enchantment", - "family": "671", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5835": { - "name": "Shield Ineptitude Other I", - "description": "Decreases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5836": { - "name": "Shield Ineptitude Other II", - "description": "Decreases the target's Shield skill by 15 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5837": { - "name": "Shield Ineptitude Other III", - "description": "Decreases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5838": { - "name": "Shield Ineptitude Other IV", - "description": "Decreases the target's Shield skill by 25 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5839": { - "name": "Shield Ineptitude Other V", - "description": "Decreases the target's Shield skill by 30 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5840": { - "name": "Shield Ineptitude Other VI", - "description": "Decreases the target's Shield skill by 35 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5841": { - "name": "Shield Ineptitude Other VII", - "description": "Decreases the target's Shield skill by 40 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5842": { - "name": "Incantation of Shield Ineptitude Other", - "description": "Decreases the target's Shield skill by 45 points.", - "school": "Creature Enchantment", - "family": "673", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5843": { - "name": "Shield Mastery Other I", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5844": { - "name": "Shield Mastery Other II", - "description": "Increases the target's Shield skill by 15 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5845": { - "name": "Shield Mastery Other III", - "description": "Increases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5846": { - "name": "Shield Mastery Other IV", - "description": "Increases the target's Shield skill by 25 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5847": { - "name": "Shield Mastery Other V", - "description": "Increases the target's Shield skill by 30 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5848": { - "name": "Shield Mastery Other VI", - "description": "Increases the target's Shield skill by 35 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5849": { - "name": "Shield Mastery Other VII", - "description": "Increases the target's Shield skill by 40 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5850": { - "name": "Incantation of Shield Mastery Other", - "description": "Increases the target's Shield skill by 45 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5851": { - "name": "Shield Mastery Self I", - "description": "Increases the caster's Shield skill by 10 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5852": { - "name": "Shield Mastery Self II", - "description": "Increases the caster's Shield skill by 15 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5853": { - "name": "Shield Mastery Self III", - "description": "Increases the caster's Shield skill by 20 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5854": { - "name": "Shield Mastery Self IV", - "description": "Increases the caster's Shield skill by 25 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5855": { - "name": "Shield Mastery Self V", - "description": "Increases the caster's Shield skill by 30 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5856": { - "name": "Shield Mastery Self VI", - "description": "Increases the caster's Shield skill by 35 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5857": { - "name": "Shield Mastery Self VII", - "description": "Increases the caster's Shield skill by 40 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5858": { - "name": "Incantation of Shield Mastery Self", - "description": "Increases the caster's Shield skill by 45 points.", - "school": "Creature Enchantment", - "family": "674", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5859": { - "name": "Sneak Attack Ineptitude Other I", - "description": "Decreases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "5860": { - "name": "Sneak Attack Ineptitude Other II", - "description": "Decreases the target's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "5861": { - "name": "Sneak Attack Ineptitude Other III", - "description": "Decreases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "5862": { - "name": "Sneak Attack Ineptitude Other IV", - "description": "Decreases the target's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "5863": { - "name": "Sneak Attack Ineptitude Other V", - "description": "Decreases the target's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "5864": { - "name": "Sneak Attack Ineptitude Other VI", - "description": "Decreases the target's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "5865": { - "name": "Sneak Attack Ineptitude Other VII", - "description": "Decreases the target's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "5866": { - "name": "Incantation of Sneak Attack Ineptitude Other", - "description": "Decreases the target's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "family": "676", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "5867": { - "name": "Sneak Attack Mastery Other I", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5868": { - "name": "Sneak Attack Mastery Other II", - "description": "Increases the target's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5869": { - "name": "Sneak Attack Mastery Other III", - "description": "Increases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5870": { - "name": "Sneak Attack Mastery Other IV", - "description": "Increases the target's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5871": { - "name": "Sneak Attack Mastery Other V", - "description": "Increases the target's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5872": { - "name": "Sneak Attack Mastery Other VI", - "description": "Increases the target's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5873": { - "name": "Sneak Attack Mastery Other VII", - "description": "Increases the target's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5874": { - "name": "Incantation of Sneak Attack Mastery Other", - "description": "Increases the target's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5875": { - "name": "Sneak Attack Mastery Self I", - "description": "Increases the caster's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "5876": { - "name": "Sneak Attack Mastery Self II", - "description": "Increases the caster's Sneak Attack skill by 15 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "5877": { - "name": "Sneak Attack Mastery Self III", - "description": "Increases the caster's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "5878": { - "name": "Sneak Attack Mastery Self IV", - "description": "Increases the caster's Sneak Attack skill by 25 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "5879": { - "name": "Sneak Attack Mastery Self V", - "description": "Increases the caster's Sneak Attack skill by 30 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "5880": { - "name": "Sneak Attack Mastery Self VI", - "description": "Increases the caster's Sneak Attack skill by 35 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "5881": { - "name": "Sneak Attack Mastery Self VII", - "description": "Increases the caster's Sneak Attack skill by 40 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5882": { - "name": "Incantation of Sneak Attack Mastery Self", - "description": "Increases the caster's Sneak Attack skill by 45 points.", - "school": "Creature Enchantment", - "family": "677", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5883": { - "name": "Minor Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "666", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5884": { - "name": "Minor Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "669", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5885": { - "name": "Minor Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "672", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5886": { - "name": "Minor Shield Aptitude", - "description": "Increases the target's Shield skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "675", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5887": { - "name": "Minor Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "678", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "5888": { - "name": "Major Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "666", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5889": { - "name": "Major Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "669", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5890": { - "name": "Major Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "672", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5891": { - "name": "Major Shield Aptitude", - "description": "Increases the target's Shield skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "675", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5892": { - "name": "Major Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "678", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "5893": { - "name": "Epic Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "666", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5894": { - "name": "Epic Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "669", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5895": { - "name": "Epic Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "672", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5896": { - "name": "Epic Shield Aptitude", - "description": "Increases the target's Shield skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "675", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5897": { - "name": "Epic Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "678", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "5898": { - "name": "Moderate Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "666", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5899": { - "name": "Moderate Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "669", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5900": { - "name": "Moderate Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "672", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5901": { - "name": "Moderate Shield Aptitude", - "description": "Increases the target's Shield skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "675", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5902": { - "name": "Moderate Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "678", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "5903": { - "name": "Prodigal Dual Wield Mastery", - "description": "Increases the caster's Dual Wield skill by 250 points.", - "school": "Creature Enchantment", - "family": "680", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5904": { - "name": "Spectral Dual Wield Mastery", - "description": "Increases the caster's Dual Wield skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "680", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5905": { - "name": "Prodigal Recklessness Mastery", - "description": "Increases the caster's Recklessness skill by 250 points.", - "school": "Creature Enchantment", - "family": "681", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5906": { - "name": "Spectral Recklessness Mastery", - "description": "Increases the caster's Recklessness skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "681", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5907": { - "name": "Prodigal Shield Mastery", - "description": "Increases the caster's Shield skill by 250 points.", - "school": "Creature Enchantment", - "family": "682", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5908": { - "name": "Spectral Shield Mastery", - "description": "Increases the caster's Shield skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "682", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5909": { - "name": "Prodigal Sneak Attack Mastery", - "description": "Increases the caster's Sneak Attack skill by 250 points.", - "school": "Creature Enchantment", - "family": "683", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5910": { - "name": "Spectral Sneak Attack Mastery", - "description": "Increases the caster's Sneak Attack skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "683", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5911": { - "name": "Prodigal Dirty Fighting Mastery", - "description": "Increases the caster's Dirty Fighting skill by 250 points.", - "school": "Creature Enchantment", - "family": "679", - "difficulty": "600", - "duration": "900", - "mana": "70" - }, - "5912": { - "name": "Spectral Dirty Fighting Mastery", - "description": "Increases the caster's Dirty Fighting skill by 150 points for 9 minutes.", - "school": "Creature Enchantment", - "family": "679", - "difficulty": "250", - "duration": "540", - "mana": "70" - }, - "5913": { - "name": "Weave of Dirty Fighting I", - "description": "Increases the target's Dirty Fighting skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5914": { - "name": "Weave of Dirty Fighting II", - "description": "Increases the target's Dirty Fighting skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5915": { - "name": "Weave of Dirty Fighting III", - "description": "Increases the target's Dirty Fighting skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5916": { - "name": "Weave of Dirty Fighting IV", - "description": "Increases the target's Dirty Fighting skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5917": { - "name": "Weave of Dirty Fighting V", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5918": { - "name": "Weave of Dual Wield I", - "description": "Increases the target's Dual Wield skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5919": { - "name": "Weave of Dual Wield II", - "description": "Increases the target's Dual Wield skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5920": { - "name": "Weave of Dual Wield III", - "description": "Increases the target's Dual Wield skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5921": { - "name": "Weave of Dual Wield IV", - "description": "Increases the target's Dual Wield skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5922": { - "name": "Weave of Dual Wield V", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5923": { - "name": "Weave of Recklessness I", - "description": "Increases the target's Recklessness skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5924": { - "name": "Weave of Recklessness II", - "description": "Increases the target's Recklessness skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5925": { - "name": "Weave of Recklessness III", - "description": "Increases the target's Recklessness skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5926": { - "name": "Weave of Recklessness IV", - "description": "Increases the target's Recklessness skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5927": { - "name": "Weave of Recklessness V", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5928": { - "name": "Weave of Shield I", - "description": "Increases the target's Shield skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5929": { - "name": "Weave of Shield II", - "description": "Increases the target's Shield skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5930": { - "name": "Weave of Shield III", - "description": "Increases the target's Shield skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5931": { - "name": "Weave of Shield IV", - "description": "Increases the target's Shield skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5932": { - "name": "Weave of Shield V", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5933": { - "name": "Weave of Sneak Attack I", - "description": "Increases the target's Sneak Attack skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "5934": { - "name": "Weave of Sneak Attack II", - "description": "Increases the target's Sneak Attack skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "5935": { - "name": "Weave of Sneak Attack III", - "description": "Increases the target's Sneak Attack skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "5936": { - "name": "Weave of Sneak Attack IV", - "description": "Increases the target's Sneak Attack skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "5937": { - "name": "Weave of Sneak Attack V", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "5938": { - "name": "Blinding Assault", - "description": "Decreases all of the target's attack skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "family": "684", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5939": { - "name": "Bleeding Assault", - "description": "The target loses 120 points of health over 20 seconds.", - "school": "Life Magic", - "family": "685", - "difficulty": "250", - "duration": "20", - "mana": "80" - }, - "5940": { - "name": "Unbalancing Assault", - "description": "Decreases all of the target's defense skills by 20 for 20 seconds.", - "school": "Creature Enchantment", - "family": "686", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5941": { - "name": "Traumatic Assault", - "description": "Decreases heals cast on the target by a rating of 20 for 20 seconds.", - "school": "Creature Enchantment", - "family": "687", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5942": { - "name": "Blinding Blow", - "description": "Decreases all of the target's attack skills by 10 for 20 seconds.", - "school": "Creature Enchantment", - "family": "684", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5943": { - "name": "Bleeding Blow", - "description": "The target loses 60 points of health over 20 seconds.", - "school": "Life Magic", - "family": "685", - "difficulty": "250", - "duration": "20", - "mana": "80" - }, - "5944": { - "name": "Unbalancing Blow", - "description": "Decreases all of the target's defense skills by 10 for 20 seconds.", - "school": "Creature Enchantment", - "family": "686", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5945": { - "name": "Traumatic Blow", - "description": "Decreases heals cast on the target by a rating of 10 for 20 seconds.", - "school": "Creature Enchantment", - "family": "687", - "difficulty": "1", - "duration": "20", - "mana": "70" - }, - "5946": { - "name": "Novice Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 3 points.", - "school": "Creature Enchantment", - "family": "688", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5947": { - "name": "Apprentice Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 5 points.", - "school": "Creature Enchantment", - "family": "688", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5948": { - "name": "Journeyman Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 10 points.", - "school": "Creature Enchantment", - "family": "688", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5949": { - "name": "Master Soldier's Dirty Fighting Aptitude", - "description": "Increases the target's Dirty Fighting skill by 20 points.", - "school": "Creature Enchantment", - "family": "688", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5950": { - "name": "Novice Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 3 points.", - "school": "Creature Enchantment", - "family": "689", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5951": { - "name": "Apprentice Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 5 points.", - "school": "Creature Enchantment", - "family": "689", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5952": { - "name": "Journeyman Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 10 points.", - "school": "Creature Enchantment", - "family": "689", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5953": { - "name": "Master Soldier's Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 20 points.", - "school": "Creature Enchantment", - "family": "689", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5954": { - "name": "Novice Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 3 points.", - "school": "Creature Enchantment", - "family": "690", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5955": { - "name": "Apprentice Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 5 points.", - "school": "Creature Enchantment", - "family": "690", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5956": { - "name": "Journeyman Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 10 points.", - "school": "Creature Enchantment", - "family": "690", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5957": { - "name": "Master Soldier's Recklessness Aptitude", - "description": "Increases the target's Recklessness skill by 20 points.", - "school": "Creature Enchantment", - "family": "690", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5958": { - "name": "Novice Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 3 points.", - "school": "Creature Enchantment", - "family": "691", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5959": { - "name": "Apprentice Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 5 points.", - "school": "Creature Enchantment", - "family": "691", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5960": { - "name": "Journeyman Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 10 points.", - "school": "Creature Enchantment", - "family": "691", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5961": { - "name": "Master Soldier's Shield Aptitude", - "description": "Increases the target's Shield skill by 20 points.", - "school": "Creature Enchantment", - "family": "691", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5962": { - "name": "Novice Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 3 points.", - "school": "Creature Enchantment", - "family": "692", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5963": { - "name": "Apprentice Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 5 points.", - "school": "Creature Enchantment", - "family": "692", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "5964": { - "name": "Journeyman Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 10 points.", - "school": "Creature Enchantment", - "family": "692", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "5965": { - "name": "Master Soldier's Sneak Attack Aptitude", - "description": "Increases the target's Sneak Attack skill by 20 points.", - "school": "Creature Enchantment", - "family": "692", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "5966": { - "name": "Vigor of Mhoire", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "family": "693", - "difficulty": "20", - "duration": "10800", - "mana": "70" - }, - "5967": { - "name": "Galvanic Arc", - "description": "Shoots a blue bolt of lighting at the target. The bolt does 200-300 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5968": { - "name": "Galvanic Blast", - "description": "Shoots five blue bolts of lightning outward from the caster. Each bolt does 50-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "134", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5969": { - "name": "Galvanic Strike", - "description": "Shoots a bolt of blue lighting at the target. The bolt does 200-300 points of electrical damage to the target.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "35" - }, - "5970": { - "name": "Galvanic Streak", - "description": "Sends a bolt of lighting streaking towards the target. The bolt does 50-100 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "246", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5971": { - "name": "Galvanic Volley", - "description": "Shoots five blue bolts of lightning toward the target. Each bolt does 50-100 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "210", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "5972": { - "name": "Galvanic Bomb", - "description": "Shoots 12 waves of blue lightning outward from the caster. Each wave does 200-1000 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "5973": { - "name": "Protection of Mouf", - "description": "Reduces damage the target takes from Cold by 15%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "15", - "duration": "5400", - "mana": "10" - }, - "5974": { - "name": "Rare Armor Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "family": "694", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5975": { - "name": "Rare Armor Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "family": "694", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5976": { - "name": "Rare Armor Damage Boost III", - "description": "Your damage rating is increased by 3.", - "school": "Life Magic", - "family": "694", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5977": { - "name": "Rare Armor Damage Boost IV", - "description": "Your damage rating is increased by 4.", - "school": "Life Magic", - "family": "694", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5978": { - "name": "Rare Armor Damage Boost V", - "description": "Your damage rating is increased by 5.", - "school": "Life Magic", - "family": "694", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "5979": { - "name": "Blighted Touch", - "description": "Sath'tik's blighted touch wracks your body. you are afflicted with his corruption and suffer greatly. All secondary attributes are reduced by 40% for the duration of the spell.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "327", - "duration": "60", - "mana": "10" - }, - "5980": { - "name": "Corrupted Touch", - "description": "Sath'tik's corruption has seeped into your skin. causing damage over time. The target loses 357 points of health over 30 seconds.", - "school": "Life Magic", - "family": "618", - "difficulty": "350", - "duration": "30", - "mana": "80" - }, - "5981": { - "name": "Sath'tik's Curse", - "description": "Your wounds are cursed and don't heal as well.", - "school": "Life Magic", - "family": "619", - "difficulty": "350", - "duration": "300", - "mana": "80" - }, - "5982": { - "name": "Aura of Hermetic Link Other I", - "description": "Increases a magic casting implement's mana conversion bonus by 10%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "25", - "duration": "1800", - "mana": "10" - }, - "5983": { - "name": "Aura of Hermetic Link Other II", - "description": "Increases a magic casting implement's mana conversion bonus by 20%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5984": { - "name": "Aura of Hermetic Link Other III", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5985": { - "name": "Aura of Hermetic Link Other IV", - "description": "Increases a magic casting implement's mana conversion bonus by 40%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5986": { - "name": "Aura of Hermetic Link Other V", - "description": "Increases a magic casting implement's mana conversion bonus by 50%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5987": { - "name": "Aura of Hermetic Link Other VI", - "description": "Increases a magic casting implement's mana conversion bonus by 60%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5988": { - "name": "Aura of Hermetic Link Other VII", - "description": "Increases a magic casting implement's mana conversion bonus by 70%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5989": { - "name": "Aura of Incantation of Hermetic Link Other", - "description": "Increases a magic casting implement's mana conversion bonus by 80%.", - "school": "Item Enchantment", - "family": "195", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5990": { - "name": "Aura of Blood Drinker Other I", - "description": "Increases a weapon's damage value by 2 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "5991": { - "name": "Aura of Blood Drinker Other II", - "description": "Increases a weapon's damage value by 4 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "5992": { - "name": "Aura of Blood Drinker Other III", - "description": "Increases a weapon's damage value by 8 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "5993": { - "name": "Aura of Blood Drinker Other IV", - "description": "Increases a weapon's damage value by 12 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "5994": { - "name": "Aura of Blood Drinker Other V", - "description": "Increases a weapon's damage value by 16 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "5995": { - "name": "Aura of Blood Drinker Other VI", - "description": "Increases a weapon's damage value by 20 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "5996": { - "name": "Aura of Blood Drinker Other VII", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "5997": { - "name": "Aura of Incantation of Blood Drinker Other", - "description": "Increases a weapon's damage value by 24 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "5998": { - "name": "Aura of Incantation of Blood Drinker Other", - "description": "Increases a weapon's damage value by 22 points.", - "school": "Item Enchantment", - "family": "154", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "5999": { - "name": "Aura of Defender Other I", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 3%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6000": { - "name": "Aura of Defender Other II", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 5%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "6001": { - "name": "Aura of Defender Other III", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 7.5%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "6002": { - "name": "Aura of Defender Other IV", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 10%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "6003": { - "name": "Aura of Defender Other V", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 13%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "6004": { - "name": "Aura of Defender Other VI", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 15%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "6005": { - "name": "Aura of Defender Other VII", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6006": { - "name": "Aura of Incantation of Defender Other", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 17%.", - "school": "Item Enchantment", - "family": "156", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "6007": { - "name": "Aura of Heart Seeker Other I", - "description": "Increases a weapon's Attack Skill modifier by 2.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6008": { - "name": "Aura of Heart Seeker Other II", - "description": "Increases a weapon's Attack Skill modifier by 5.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "6009": { - "name": "Aura of Heart Seeker Other III", - "description": "Increases a weapon's Attack Skill modifier by 7.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "6010": { - "name": "Aura of Heart Seeker Other IV", - "description": "Increases a weapon's Attack Skill modifier by 10.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "6011": { - "name": "Aura of Heart Seeker Other V", - "description": "Increases a weapon's Attack Skill modifier by 12.5 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "6012": { - "name": "Aura of Heart Seeker Other VI", - "description": "Increases a weapon's Attack Skill modifier by 15.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "6013": { - "name": "Aura of Heart Seeker Other VII", - "description": "Increases a weapon's Attack Skill modifier by 17.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6014": { - "name": "Aura of Incantation of Heart Seeker Other", - "description": "Increases a weapon's Attack Skill modifier by 20.0 percentage points.", - "school": "Item Enchantment", - "family": "152", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "6015": { - "name": "Aura of Spirit Drinker Other I", - "description": "Increases the elemental damage bonus of an elemental magic caster by 1%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6016": { - "name": "Aura of Spirit Drinker Other II", - "description": "Increases the elemental damage bonus of an elemental magic caster by 2%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "6017": { - "name": "Aura of Spirit Drinker Other III", - "description": "Increases the elemental damage bonus of an elemental magic caster by 3%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "6018": { - "name": "Aura of Spirit Drinker Other IV", - "description": "Increases the elemental damage bonus of an elemental magic caster by 4%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "6019": { - "name": "Aura of Spirit Drinker Other V", - "description": "Increases the elemental damage bonus of an elemental magic caster by 5%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "6020": { - "name": "Aura of Spirit Drinker Other VI", - "description": "Increases the elemental damage bonus of an elemental magic caster by 6%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "6021": { - "name": "Aura of Spirit Drinker Other VII", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6022": { - "name": "Aura of Incantation of Spirit Drinker Other", - "description": "Increases the elemental damage bonus of an elemental magic caster by 8%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "6023": { - "name": "Aura of Incantation of Spirit Drinker Other", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%.", - "school": "Item Enchantment", - "family": "695", - "difficulty": "350", - "duration": "5400", - "mana": "80" - }, - "6024": { - "name": "Aura of Swift Killer Other I", - "description": "Improves a weapon's speed by 10 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6025": { - "name": "Aura of Swift Killer Other II", - "description": "Improves a weapon's speed by 20 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "6026": { - "name": "Aura of Swift Killer Other III", - "description": "Improves a weapon's speed by 30 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "6027": { - "name": "Aura of Swift Killer Other IV", - "description": "Improves a weapon's speed by 40 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "6028": { - "name": "Aura of Swift Killer Other V", - "description": "Improves a weapon's speed by 50 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "6029": { - "name": "Aura of Swift Killer Other VI", - "description": "Improves a weapon's speed by 60 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "6030": { - "name": "Aura of Swift Killer Other VII", - "description": "Improves a weapon's speed by 70 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6031": { - "name": "Aura of Incantation of Swift Killer Other", - "description": "Improves a weapon's speed by 80 points.", - "school": "Item Enchantment", - "family": "158", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "6032": { - "name": "Imprisoned", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6033": { - "name": "Impudence", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6034": { - "name": "Proving Grounds Rolling Death", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6035": { - "name": "Spirit of Izexi", - "description": "Infuses a magic caster with the spirit of the Dark Falatacot. Izexi. Increases the elemental damage bonus of an elemental magic caster by 1%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "1", - "duration": "10800", - "mana": "10" - }, - "6036": { - "name": "No Escape", - "description": "There is no escape! Target's run skill is reduced by 95%.", - "school": "Creature Enchantment", - "family": "78", - "difficulty": "500", - "duration": "180", - "mana": "10" - }, - "6037": { - "name": "Fleeting Will", - "description": "The voices in your head command you. This spell decreases the target's Self by 80%.", - "school": "Creature Enchantment", - "family": "12", - "difficulty": "285", - "duration": "180", - "mana": "10" - }, - "6038": { - "name": "Warm and Fuzzy", - "description": "The cider makes you feel all warm and fuzzy inside. raising your Stamina by 10% for 1 hour.", - "school": "Creature Enchantment", - "family": "411", - "difficulty": "300", - "duration": "3600", - "mana": "10" - }, - "6039": { - "name": "Legendary Weapon Tinkering Expertise", - "description": "Increases the target's Weapon Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "377", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6040": { - "name": "Legendary Alchemical Prowess", - "description": "Increases the target's Alchemy skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "333", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6041": { - "name": "Legendary Arcane Prowess", - "description": "Increases the target's Arcane Lore skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "335", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6042": { - "name": "Legendary Armor Tinkering Expertise", - "description": "Increases the target's Armor Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "337", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6043": { - "name": "Legendary Light Weapon Aptitude", - "description": "Increases the target's Light Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "311", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6044": { - "name": "Legendary Missile Weapon Aptitude", - "description": "Increases the target's Missile Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "331", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6045": { - "name": "Legendary Cooking Prowess", - "description": "Increases the target's Cooking skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "339", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6046": { - "name": "Legendary Creature Enchantment Aptitude", - "description": "Increases the target's Creature Enchantment skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "251", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6047": { - "name": "Legendary Finesse Weapon Aptitude", - "description": "Increases the target's Finesse Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "313", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6048": { - "name": "Legendary Deception Prowess", - "description": "Increases the target's Deception skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "343", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6049": { - "name": "Legendary Dirty Fighting Prowess", - "description": "Increases the target's Dirty Fighting skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "666", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6050": { - "name": "Legendary Dual Wield Aptitude", - "description": "Increases the target's Dual Wield skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "669", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6051": { - "name": "Legendary Fealty", - "description": "Increases the target's Loyalty skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "345", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6052": { - "name": "Legendary Fletching Prowess", - "description": "Increases the target's Fletching skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "347", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6053": { - "name": "Legendary Healing Prowess", - "description": "Increases the target's Healing skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "349", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6054": { - "name": "Legendary Impregnability", - "description": "Increases the target's Missile Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "654", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6055": { - "name": "Legendary Invulnerability", - "description": "Increases the target's Melee Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "351", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6056": { - "name": "Legendary Item Enchantment Aptitude", - "description": "Increases the target's Item Enchantment skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "253", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6057": { - "name": "Legendary Item Tinkering Expertise", - "description": "Increases the target's Item Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "353", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6058": { - "name": "Legendary Jumping Prowess", - "description": "Increases the target's Jump skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "355", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6059": { - "name": "Legendary Leadership", - "description": "Increases the target's Leadership skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "293", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6060": { - "name": "Legendary Life Magic Aptitude", - "description": "Increases the target's Life Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "357", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6061": { - "name": "Legendary Lockpick Prowess", - "description": "Increases the target's Lockpick skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "359", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6062": { - "name": "Legendary Magic Item Tinkering Expertise", - "description": "Increases the target's Magic Item Tinkering skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "361", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6063": { - "name": "Legendary Magic Resistance", - "description": "Increases the target's Magic Defense skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "299", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6064": { - "name": "Legendary Mana Conversion Prowess", - "description": "Increases the target's Mana Conversion skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "363", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6065": { - "name": "Legendary Monster Attunement", - "description": "Increases the target's Assess Creature skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "365", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6066": { - "name": "Legendary Person Attunement", - "description": "Increases the target's Assess Person skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "367", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6067": { - "name": "Legendary Recklessness Prowess", - "description": "Increases the target's Recklessness skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "672", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6068": { - "name": "Legendary Salvaging Aptitude", - "description": "Increases the target's Salvaging skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "437", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6069": { - "name": "Legendary Shield Aptitude", - "description": "Increases the target's Shield skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "675", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6070": { - "name": "Legendary Sneak Attack Prowess", - "description": "Increases the target's Sneak Attack skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "678", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6071": { - "name": "Legendary Sprint", - "description": "Increases the target's Run skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "369", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6072": { - "name": "Legendary Heavy Weapon Aptitude", - "description": "Increases the target's Heavy Weapons skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "371", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6073": { - "name": "Legendary Two Handed Combat Aptitude", - "description": "Increases the target's Two Handed Combat skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "595", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6074": { - "name": "Legendary Void Magic Aptitude", - "description": "Increases the target's Void Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "646", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6075": { - "name": "Legendary War Magic Aptitude", - "description": "Increases the target's War Magic skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "255", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6076": { - "name": "Legendary Stamina Gain", - "description": "Increases the rate at which the target regains Stamina by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "407", - "difficulty": "60", - "duration": "780", - "mana": "10" - }, - "6077": { - "name": "Legendary Health Gain", - "description": "Increases the rate at which the target regains Health by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "257", - "difficulty": "60", - "duration": "780", - "mana": "10" - }, - "6078": { - "name": "Legendary Mana Gain", - "description": "Increases the rate at which the target regains Mana by 60%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "259", - "difficulty": "60", - "duration": "780", - "mana": "10" - }, - "6079": { - "name": "Legendary Storm Ward", - "description": "Reduces damage the target takes from Lightning by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "291", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6080": { - "name": "Legendary Acid Ward", - "description": "Reduces damage the target takes from Acid by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "285", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6081": { - "name": "Legendary Bludgeoning Ward", - "description": "Reduces damage the target takes from Bludgeoning by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "401", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6082": { - "name": "Legendary Flame Ward", - "description": "Reduces damage the target takes from Fire by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "287", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6083": { - "name": "Legendary Frost Ward", - "description": "Reduces damage the target takes from Cold by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "289", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6084": { - "name": "Legendary Piercing Ward", - "description": "Reduces damage the target takes from Piercing by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "405", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6085": { - "name": "Legendary Slashing Ward", - "description": "Reduces damage the target takes from Slashing by 25%. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "403", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6086": { - "name": "Epic Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 25%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "25", - "duration": "1800", - "mana": "10" - }, - "6087": { - "name": "Legendary Hermetic Link", - "description": "Increases a magic casting implement's mana conversion bonus by 30%.", - "school": "Item Enchantment", - "family": "425", - "difficulty": "30", - "duration": "1800", - "mana": "10" - }, - "6088": { - "name": "Legendary Acid Bane", - "description": "Increases a shield or piece of armor's resistance to Acid damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "381", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6089": { - "name": "Legendary Blood Thirst", - "description": "Increases a weapon's damage value by 10 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "6090": { - "name": "Legendary Bludgeoning Bane", - "description": "Increases a shield or piece of armor's resistance to Bludgeoning damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "383", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6091": { - "name": "Legendary Defender", - "description": "Increases the Melee Defense skill modifier of a weapon or magic caster by 9%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "329", - "difficulty": "9", - "duration": "780", - "mana": "10" - }, - "6092": { - "name": "Legendary Flame Bane", - "description": "Increases a shield or piece of armor's resistance to Fire damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "385", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6093": { - "name": "Legendary Frost Bane", - "description": "Increases a shield or piece of armor's resistance to Cold damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "387", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6094": { - "name": "Legendary Heart Thirst", - "description": "Increases a weapon's Attack Skill modifier by 9%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "389", - "difficulty": "9", - "duration": "780", - "mana": "10" - }, - "6095": { - "name": "Legendary Impenetrability", - "description": "Improves a shield or piece of armor's Armor value by 80 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "391", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6096": { - "name": "Legendary Piercing Bane", - "description": "Increases a shield or piece of armor's resistance to Piercing damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "393", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6097": { - "name": "Legendary Slashing Bane", - "description": "Increases a shield or piece of armor's resistance to Slashing damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "395", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6098": { - "name": "Legendary Spirit Thirst", - "description": "Increases the elemental damage bonus of an elemental magic caster by 7%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "323", - "difficulty": "7", - "duration": "780", - "mana": "10" - }, - "6099": { - "name": "Legendary Storm Bane", - "description": "Increases a shield or piece of armor's resistance to Electric damage by 25%. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "397", - "difficulty": "4", - "duration": "780", - "mana": "10" - }, - "6100": { - "name": "Legendary Swift Hunter", - "description": "Improves a weapon's speed by 40 points. Additional spells can be layered over this.", - "school": "Item Enchantment", - "family": "399", - "difficulty": "40", - "duration": "780", - "mana": "10" - }, - "6101": { - "name": "Legendary Willpower", - "description": "Increases the target's Self by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "271", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6102": { - "name": "Legendary Armor", - "description": "Increases the target's natural armor by 80 points. Additional spells can be layered over this.", - "school": "Life Magic", - "family": "379", - "difficulty": "80", - "duration": "780", - "mana": "10" - }, - "6103": { - "name": "Legendary Coordination", - "description": "Increases the target's Coordination by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "267", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6104": { - "name": "Legendary Endurance", - "description": "Increases the target's Endurance by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "263", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6105": { - "name": "Legendary Focus", - "description": "Increases the target's Focus by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "269", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6106": { - "name": "Legendary Quickness", - "description": "Increases the target's Quickness by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "265", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6107": { - "name": "Legendary Strength", - "description": "Increases the target's Strength by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "261", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6108": { - "name": "Summoning Mastery Other I", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6109": { - "name": "Summoning Mastery Other II", - "description": "Increases the target's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "50", - "duration": "1800", - "mana": "20" - }, - "6110": { - "name": "Summoning Mastery Other III", - "description": "Increases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "100", - "duration": "1800", - "mana": "30" - }, - "6111": { - "name": "Summoning Mastery Other IV", - "description": "Increases the target's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "150", - "duration": "1800", - "mana": "40" - }, - "6112": { - "name": "Summoning Mastery Other V", - "description": "Increases the target's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "200", - "duration": "1800", - "mana": "50" - }, - "6113": { - "name": "Summoning Mastery Other VI", - "description": "Increases the target's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "250", - "duration": "2700", - "mana": "60" - }, - "6114": { - "name": "Summoning Mastery Other VII", - "description": "Increases the target's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6115": { - "name": "Incantation of Summoning Mastery Other", - "description": "Increases the target's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "6116": { - "name": "Summoning Mastery Self I", - "description": "Increases the caster's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "1", - "duration": "1800", - "mana": "15" - }, - "6117": { - "name": "Summoning Mastery Self II", - "description": "Increases the caster's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "50", - "duration": "1800", - "mana": "30" - }, - "6118": { - "name": "Summoning Mastery Self III", - "description": "Increases the caster's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "100", - "duration": "1800", - "mana": "40" - }, - "6119": { - "name": "Summoning Mastery Self IV", - "description": "Increases the caster's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "150", - "duration": "1800", - "mana": "50" - }, - "6120": { - "name": "Summoning Mastery Self V", - "description": "Increases the caster's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "200", - "duration": "1800", - "mana": "60" - }, - "6121": { - "name": "Summoning Mastery Self VI", - "description": "Increases the caster's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "250", - "duration": "2700", - "mana": "70" - }, - "6122": { - "name": "Summoning Mastery Self VII", - "description": "Increases the caster's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "300", - "duration": "3600", - "mana": "70" - }, - "6123": { - "name": "Incantation of Summoning Mastery Self", - "description": "Increases the caster's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "family": "696", - "difficulty": "400", - "duration": "5400", - "mana": "80" - }, - "6124": { - "name": "Epic Summoning Prowess", - "description": "Increases the target's Summoning skill by 25 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "698", - "difficulty": "25", - "duration": "780", - "mana": "10" - }, - "6125": { - "name": "Legendary Summoning Prowess", - "description": "Increases the target's Summoning skill by 35 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "698", - "difficulty": "35", - "duration": "780", - "mana": "10" - }, - "6126": { - "name": "Major Summoning Prowess", - "description": "Increases the target's Summoning skill by 15 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "698", - "difficulty": "2", - "duration": "780", - "mana": "10" - }, - "6127": { - "name": "Minor Summoning Prowess", - "description": "Increases the target's Summoning skill by 5 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "698", - "difficulty": "1", - "duration": "780", - "mana": "10" - }, - "6128": { - "name": "Moderate Summoning Prowess", - "description": "Increases the target's Summoning skill by 10 points. Additional spells can be layered over this.", - "school": "Creature Enchantment", - "family": "698", - "difficulty": "10", - "duration": "780", - "mana": "10" - }, - "6129": { - "name": "Summoning Ineptitude Other I", - "description": "Decreases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "1", - "duration": "60", - "mana": "10" - }, - "6130": { - "name": "Summoning Ineptitude Other II", - "description": "Decreases the target's Summoning skill by 15 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "75", - "duration": "90", - "mana": "20" - }, - "6131": { - "name": "Summoning Ineptitude Other III", - "description": "Decreases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "125", - "duration": "120", - "mana": "30" - }, - "6132": { - "name": "Summoning Ineptitude Other IV", - "description": "Decreases the target's Summoning skill by 25 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "175", - "duration": "150", - "mana": "40" - }, - "6133": { - "name": "Summoning Ineptitude Other V", - "description": "Decreases the target's Summoning skill by 30 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "225", - "duration": "180", - "mana": "50" - }, - "6134": { - "name": "Summoning Ineptitude Other VI", - "description": "Decreases the target's Summoning skill by 35 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "275", - "duration": "210", - "mana": "60" - }, - "6135": { - "name": "Summoning Ineptitude Other VII", - "description": "Decreases the target's Summoning skill by 40 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "325", - "duration": "240", - "mana": "70" - }, - "6136": { - "name": "Incantation of Summoning Ineptitude Other", - "description": "Decreases the target's Summoning skill by 45 points.", - "school": "Creature Enchantment", - "family": "697", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "6137": { - "name": "Weave of Summoning II", - "description": "Increases the target's Summoning skill by 4 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "4", - "duration": "500", - "mana": "70" - }, - "6138": { - "name": "Weave of Summoning III", - "description": "Increases the target's Summoning skill by 6 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "6", - "duration": "500", - "mana": "70" - }, - "6139": { - "name": "Weave of Summoning IV", - "description": "Increases the target's Summoning skill by 8 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "8", - "duration": "500", - "mana": "70" - }, - "6140": { - "name": "Weave of Summoning V", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "10", - "duration": "500", - "mana": "70" - }, - "6141": { - "name": "Weave of Summoning I", - "description": "Increases the target's Summoning skill by 2 points.", - "school": "Creature Enchantment", - "family": "659", - "difficulty": "2", - "duration": "500", - "mana": "70" - }, - "6142": { - "name": "Novice Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 3 points.", - "school": "Creature Enchantment", - "family": "699", - "difficulty": "1", - "duration": "1800", - "mana": "10" - }, - "6143": { - "name": "Apprentice Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 5 points.", - "school": "Creature Enchantment", - "family": "699", - "difficulty": "2", - "duration": "1800", - "mana": "10" - }, - "6144": { - "name": "Journeyman Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 10 points.", - "school": "Creature Enchantment", - "family": "699", - "difficulty": "3", - "duration": "1800", - "mana": "10" - }, - "6145": { - "name": "Master Invoker's Summoning Aptitude", - "description": "Increases the target's Summoning skill by 20 points.", - "school": "Creature Enchantment", - "family": "699", - "difficulty": "4", - "duration": "1800", - "mana": "10" - }, - "6146": { - "name": "Ride The Lightning", - "description": "Reduces damage the target takes from Lightning by 70%.", - "school": "Life Magic", - "family": "107", - "difficulty": "425", - "duration": "10800", - "mana": "80" - }, - "6147": { - "name": "Entrance to the Frozen Valley", - "description": "Transports target to the Frozen Valley.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6148": { - "name": "Begone and Be Afraid", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6149": { - "name": "Rynthid Vision", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6150": { - "name": "Rynthid Recall", - "description": "Transports the caster to the area overrun by the Rynthid.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "225", - "duration": "-1", - "mana": "150" - }, - "6151": { - "name": "Crimson Storm", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 42-84 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "200", - "duration": "-1", - "mana": "80" - }, - "6152": { - "name": "Rocky Shrapnel", - "description": "Shoots 12 waves of boulders outward from the caster. Each wave does 100-400 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "6153": { - "name": "Tryptophan Coma", - "description": "You are soooooo sleepy. reducing your Quickness.", - "school": "Creature Enchantment", - "family": "6", - "difficulty": "400", - "duration": "300", - "mana": "80" - }, - "6154": { - "name": "Entering the Basement", - "description": "Entering the Basement", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6155": { - "name": "Earthen Stomp", - "description": "The stomp of these creatures creates powerful rings of destructive force.", - "school": "Life Magic", - "family": "223", - "difficulty": "1200", - "duration": "-1", - "mana": "80" - }, - "6156": { - "name": "Viridian Ring", - "description": "A powerful emanation that creates a ring of overwhelming life magic.", - "school": "Life Magic", - "family": "80", - "difficulty": "1200", - "duration": "-1", - "mana": "150" - }, - "6157": { - "name": "Withering Ring", - "description": "A terrible emanation that destroys the victim's ability to heal wounds.", - "school": "Life Magic", - "family": "643", - "difficulty": "1200", - "duration": "-1", - "mana": "150" - }, - "6158": { - "name": "Poison Breath", - "description": "A deadly cone of poison.", - "school": "Life Magic", - "family": "530", - "difficulty": "1200", - "duration": "-1", - "mana": "40" - }, - "6159": { - "name": "Thorn Volley", - "description": "A cone of thorns and quill like projectiles.", - "school": "Life Magic", - "family": "136", - "difficulty": "600", - "duration": "-1", - "mana": "40" - }, - "6160": { - "name": "Thorns", - "description": "Shoots a cluster of sharp thorns at the target. The cluster does 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "6161": { - "name": "Acidic Thorns", - "description": "Shoots a cluster of acidic thorns at the target. The cluster does 142-204 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "117", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "6162": { - "name": "Thorn Arc", - "description": "Shoots a cluster of sharp thorns at the target. The thorns do 142-204 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "122", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "6163": { - "name": "Ring of Thorns", - "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "300", - "duration": "-1", - "mana": "80" - }, - "6164": { - "name": "Deadly Ring of Thorns", - "description": "Shoots eight clusters of thorns outward from the caster. Each does 42-84 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "1200", - "duration": "-1", - "mana": "80" - }, - "6165": { - "name": "Deadly Thorn Volley", - "description": "A deadly cone of thorns and quill like projectiles.", - "school": "Life Magic", - "family": "136", - "difficulty": "1200", - "duration": "-1", - "mana": "40" - }, - "6166": { - "name": "Poisoned Wounds", - "description": "Your wounds are poisoned and don't heal as well.", - "school": "Life Magic", - "family": "619", - "difficulty": "350", - "duration": "30", - "mana": "80" - }, - "6167": { - "name": "Poisoned Vitality", - "description": "Poison flows in your veins reducing your total health by 50%.", - "school": "Creature Enchantment", - "family": "410", - "difficulty": "50", - "duration": "30", - "mana": "10" - }, - "6168": { - "name": "Deadly Ring of Lightning", - "description": "The power of storms creates a deadly ring of lightning.", - "school": "War Magic", - "family": "225", - "difficulty": "1200", - "duration": "-1", - "mana": "80" - }, - "6169": { - "name": "Deadly Lightning Volley", - "description": "A deadly cone of lightning.", - "school": "War Magic", - "family": "134", - "difficulty": "1200", - "duration": "-1", - "mana": "40" - }, - "6170": { - "name": "Honeyed Life Mead", - "description": "Increases maximum health by 20 points.", - "school": "Life Magic", - "family": "700", - "difficulty": "20", - "duration": "10800", - "mana": "70" - }, - "6171": { - "name": "Honeyed Mana Mead", - "description": "Increases maximum mana by 50 points.", - "school": "Life Magic", - "family": "701", - "difficulty": "20", - "duration": "10800", - "mana": "70" - }, - "6172": { - "name": "Honeyed Vigor Mead", - "description": "Increases maximum stamina by 50 points.", - "school": "Life Magic", - "family": "702", - "difficulty": "20", - "duration": "10800", - "mana": "70" - }, - "6173": { - "name": "Raging Heart", - "description": "Increases maximum health by 65 points for 1 hour.", - "school": "Life Magic", - "family": "279", - "difficulty": "65", - "duration": "3600", - "mana": "70" - }, - "6174": { - "name": "Twisting Wounds", - "description": "The Critical Damage Rating of the caster is increased by 10.", - "school": "Life Magic", - "family": "703", - "difficulty": "2", - "duration": "1200", - "mana": "70" - }, - "6175": { - "name": "Increasing Pain", - "description": "The damage rating of the caster is increased by 10. This spell does not stack with Luminous Crystal of Surging Strength.", - "school": "Life Magic", - "family": "650", - "difficulty": "2", - "duration": "1200", - "mana": "70" - }, - "6176": { - "name": "Genius", - "description": "Increases the caster's Focus by 50 points for a short period of time.", - "school": "Creature Enchantment", - "family": "15", - "difficulty": "250", - "duration": "30", - "mana": "60" - }, - "6177": { - "name": "Gauntlet Item Mastery", - "description": "Increases the caster's Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "family": "453", - "difficulty": "250", - "duration": "600", - "mana": "70" - }, - "6178": { - "name": "Gauntlet Weapon Mastery", - "description": "Increases the caster's Weapon Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "family": "455", - "difficulty": "250", - "duration": "600", - "mana": "70" - }, - "6179": { - "name": "Gauntlet Magic Item Mastery", - "description": "Increases the caster's Magic Item Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "family": "454", - "difficulty": "250", - "duration": "600", - "mana": "70" - }, - "6180": { - "name": "Gauntlet Armor Mastery", - "description": "Increases the caster's Armor Tinkering skill by 150 points for 10 minutes. This effect does not stack with Prodigal rare spells.", - "school": "Creature Enchantment", - "family": "452", - "difficulty": "250", - "duration": "600", - "mana": "70" - }, - "6181": { - "name": "Singeing Flames", - "description": "Shoots eight waves of flame forward from the caster. Each wave does 150-250 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "400", - "duration": "-1", - "mana": "80" - }, - "6182": { - "name": "Over-Exerted", - "description": "Decreases all of the target's defense skills by 500 for 1 minute.", - "school": "Creature Enchantment", - "family": "686", - "difficulty": "100", - "duration": "60", - "mana": "70" - }, - "6183": { - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6184": { - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6185": { - "name": "Return to the Stronghold", - "description": "Transports the target to the Gauntlet.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "125", - "duration": "-1", - "mana": "50" - }, - "6186": { - "name": "Deafening Wail", - "description": "The bark of these creatures creates powerful rings of destructive force.", - "school": "War Magic", - "family": "223", - "difficulty": "1200", - "duration": "-1", - "mana": "80" - }, - "6187": { - "name": "Screeching Howl", - "description": "A deafening howl creating deadly shockwaves.", - "school": "War Magic", - "family": "132", - "difficulty": "1200", - "duration": "-1", - "mana": "40" - }, - "6188": { - "name": "Earthquake", - "description": "The stomp of this creature violently shakes the ground.", - "school": "War Magic", - "family": "223", - "difficulty": "1200", - "duration": "-1", - "mana": "80" - }, - "6189": { - "name": "Searing Disc II", - "description": "Shoots eight waves of acid outward from the caster. Each wave does 49-96 points of acid damage to the first thing it hits.", - "school": "War Magic", - "family": "222", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6190": { - "name": "Horizon's Blades II", - "description": "Shoots eight blades outward from the caster. Each blade does 49-98 points of slashing damage to the first thing it hits.", - "school": "War Magic", - "family": "228", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6191": { - "name": "Cassius' Ring of Fire II", - "description": "Shoots eight waves of flame outward from the caster. Each wave does 49-98 points of fire damage to the first thing it hits.", - "school": "War Magic", - "family": "226", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6192": { - "name": "Nuhmudira's Spines II", - "description": "Shoots eight waves of force outward from the caster. Each wave does 49-98 points of piercing damage to the first thing it hits.", - "school": "War Magic", - "family": "227", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6193": { - "name": "Halo of Frost II", - "description": "Shoots eight waves of frost outward from the caster. Each wave does 49-98 points of cold damage to the first thing it hits.", - "school": "War Magic", - "family": "224", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6194": { - "name": "Eye of the Storm II", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6195": { - "name": "Clouded Soul II", - "description": "Shoots eight waves of nether outward from the caster. Each wave does 109-172 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "641", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6196": { - "name": "Tectonic Rifts II", - "description": "Shoots eight shock waves outward from the caster. Each wave does 49-96 points of bludgeoning damage to the first thing it hits.", - "school": "War Magic", - "family": "223", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6197": { - "name": "Eye of the Storm II", - "description": "Shoots eight waves of lightning outward from the caster. Each wave does 49-98 points of electric damage to the first thing it hits.", - "school": "War Magic", - "family": "225", - "difficulty": "250", - "duration": "-1", - "mana": "90" - }, - "6198": { - "name": "Incantation of Lightning Bolt", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "6199": { - "name": "Incantation of Lightning Arc", - "description": "Shoots a bolt of lighting at the target. The bolt does 142-204 points of electrical damage to the first thing it hits.", - "school": "War Magic", - "family": "120", - "difficulty": "400", - "duration": "-1", - "mana": "40" - }, - "6200": { - "name": "Paragon's Dual Wield Mastery V", - "description": "Increases the wielder's Dual Wield skill by 5 points.", - "school": "Creature Enchantment", - "family": "708", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6201": { - "name": "Paragon's Finesse Weapon Mastery I", - "description": "Increases the wielder's Finesse Weapons skill by 1 point.", - "school": "Creature Enchantment", - "family": "716", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6202": { - "name": "Paragon's Finesse Weapon Mastery II", - "description": "Increases the wielder's Finesse Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "716", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6203": { - "name": "Paragon's Finesse Weapon Mastery III", - "description": "Increases the wielder's Finesse Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "716", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6204": { - "name": "Paragon's Finesse Weapon Mastery IV", - "description": "Increases the wielder's Finesse Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "716", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6205": { - "name": "Paragon's Finesse Weapon Mastery V", - "description": "Increases the wielder's Finesse Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "716", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6206": { - "name": "Paragon's Heavy Weapon Mastery I", - "description": "Increases the wielder's Heavy Weapons skill by 1 point.", - "school": "Creature Enchantment", - "family": "717", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6207": { - "name": "Paragon's Heavy Weapon Mastery II", - "description": "Increases the wielder's Heavy Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "717", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6208": { - "name": "Paragon's Heavy Weapon Mastery III", - "description": "Increases the wielder's Heavy Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "717", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6209": { - "name": "Paragon's Heavy Weapon Mastery IV", - "description": "Increases the wielder's Heavy Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "717", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6210": { - "name": "Paragon's Heavy Weapon Mastery V", - "description": "Increases the wielder's Heavy Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "717", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6211": { - "name": "Paragon's Life Magic Mastery I", - "description": "Increases the wielder's Life Magic skill by 1 point.", - "school": "Creature Enchantment", - "family": "719", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6212": { - "name": "Paragon's Life Magic Mastery II", - "description": "Increases the wielder's Life Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "719", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6213": { - "name": "Paragon's Life Magic Mastery III", - "description": "Increases the wielder's Life Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "719", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6214": { - "name": "Paragon's Life Magic Mastery IV", - "description": "Increases the wielder's Life Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "719", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6215": { - "name": "Paragon's Life Magic Mastery V", - "description": "Increases the wielder's Life Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "719", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6216": { - "name": "Paragon's Light Weapon Mastery I", - "description": "Increases the wielder's Light Weapons skill by 1 point.", - "school": "Creature Enchantment", - "family": "715", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6217": { - "name": "Paragon's Light Weapon Mastery II", - "description": "Increases the wielder's Light Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "715", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6218": { - "name": "Paragon's Light Weapon Mastery III", - "description": "Increases the wielder's Light Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "715", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6219": { - "name": "Paragon's Light Weapon Mastery IV", - "description": "Increases the wielder's Light Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "715", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6220": { - "name": "Paragon's Light Weapon Mastery V", - "description": "Increases the wielder's Light Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "715", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6221": { - "name": "Paragon's Missile Weapon Mastery I", - "description": "Increases the wielder's Missile Weapons skill by 1 point.", - "school": "Creature Enchantment", - "family": "721", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6222": { - "name": "Paragon's Missile Weapon Mastery II", - "description": "Increases the wielder's Missile Weapons skill by 2 points.", - "school": "Creature Enchantment", - "family": "721", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6223": { - "name": "Paragon's Missile Weapon Mastery III", - "description": "Increases the wielder's Missile Weapons skill by 3 points.", - "school": "Creature Enchantment", - "family": "721", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6224": { - "name": "Paragon's Missile Weapon Mastery IV", - "description": "Increases the wielder's Missile Weapons skill by 4 points.", - "school": "Creature Enchantment", - "family": "721", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6225": { - "name": "Paragon's Missile Weapon Mastery V", - "description": "Increases the wielder's Missile Weapons skill by 5 points.", - "school": "Creature Enchantment", - "family": "721", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6226": { - "name": "Paragon's Recklessness Mastery I", - "description": "Increases the wielder's Recklessness skill by 1 point.", - "school": "Creature Enchantment", - "family": "709", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6227": { - "name": "Paragon's Recklessness Mastery II", - "description": "Increases the wielder's Recklessness skill by 2 points.", - "school": "Creature Enchantment", - "family": "709", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6228": { - "name": "Paragon's Recklessness Mastery III", - "description": "Increases the wielder's Recklessness skill by 3 points.", - "school": "Creature Enchantment", - "family": "709", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6229": { - "name": "Paragon's Recklessness Mastery IV", - "description": "Increases the wielder's Recklessness skill by 4 points.", - "school": "Creature Enchantment", - "family": "709", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6230": { - "name": "Paragon's Recklessness Mastery V", - "description": "Increases the wielder's Recklessness skill by 5 points.", - "school": "Creature Enchantment", - "family": "709", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6231": { - "name": "Paragon's Sneak Attack Mastery I", - "description": "Increases the wielder's Sneak Attack skill by 1 point.", - "school": "Creature Enchantment", - "family": "710", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6232": { - "name": "Paragon's Sneak Attack Mastery II", - "description": "Increases the wielder's Sneak Attack skill by 2 points.", - "school": "Creature Enchantment", - "family": "710", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6233": { - "name": "Paragon's Sneak Attack Mastery III", - "description": "Increases the wielder's Sneak Attack skill by 3 points.", - "school": "Creature Enchantment", - "family": "710", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6234": { - "name": "Paragon's Sneak Attack Mastery IV", - "description": "Increases the wielder's Sneak Attack skill by 4 points.", - "school": "Creature Enchantment", - "family": "710", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6235": { - "name": "Paragon's Sneak Attack Mastery V", - "description": "Increases the wielder's Sneak Attack skill by 5 points.", - "school": "Creature Enchantment", - "family": "710", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6236": { - "name": "Paragon's Two Handed Combat Mastery I", - "description": "Increases the wielder's Two Handed Combat skill by 1 point.", - "school": "Creature Enchantment", - "family": "727", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6237": { - "name": "Paragon's Two Handed Combat Mastery II", - "description": "Increases the wielder's Two Handed Combat skill by 2 points.", - "school": "Creature Enchantment", - "family": "727", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6238": { - "name": "Paragon's Two Handed Combat Mastery III", - "description": "Increases the wielder's Two Handed Combat skill by 3 points.", - "school": "Creature Enchantment", - "family": "727", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6239": { - "name": "Paragon's Two Handed Combat Mastery IV", - "description": "Increases the wielder's Two Handed Combat skill by 4 points.", - "school": "Creature Enchantment", - "family": "727", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6240": { - "name": "Paragon's Two Handed Combat Mastery V", - "description": "Increases the wielder's Two Handed Combat skill by 5 points.", - "school": "Creature Enchantment", - "family": "727", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6241": { - "name": "Paragon's Void Magic Mastery I", - "description": "Increases the wielder's Void Magic skill by 1 point.", - "school": "Creature Enchantment", - "family": "720", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6242": { - "name": "Paragon's Void Magic Mastery II", - "description": "Increases the wielder's Void Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "720", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6243": { - "name": "Paragon's Void Magic Mastery III", - "description": "Increases the wielder's Void Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "720", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6244": { - "name": "Paragon's Void Magic Mastery IV", - "description": "Increases the wielder's Void Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "720", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6245": { - "name": "Paragon's Void Magic Mastery V", - "description": "Increases the wielder's Void Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "720", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6246": { - "name": "Paragon's War Magic Mastery I", - "description": "Increases the wielder's War Magic skill by 1 point.", - "school": "Creature Enchantment", - "family": "718", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6247": { - "name": "Paragon's War Magic Mastery II", - "description": "Increases the wielder's War Magic skill by 2 points.", - "school": "Creature Enchantment", - "family": "718", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6248": { - "name": "Paragon's War Magic Mastery III", - "description": "Increases the wielder's War Magic skill by 3 points.", - "school": "Creature Enchantment", - "family": "718", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6249": { - "name": "Paragon's War Magic Mastery IV", - "description": "Increases the wielder's War Magic skill by 4 points.", - "school": "Creature Enchantment", - "family": "718", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6250": { - "name": "Paragon's War Magic Mastery V", - "description": "Increases the wielder's War Magic skill by 5 points.", - "school": "Creature Enchantment", - "family": "718", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6251": { - "name": "Paragon's Dirty Fighting Mastery I", - "description": "Increases the wielder's Dirty Fighting skill by 1 point.", - "school": "Creature Enchantment", - "family": "707", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6252": { - "name": "Paragon's Dirty Fighting Mastery II", - "description": "Increases the wielder's Dirty Fighting skill by 2 points.", - "school": "Creature Enchantment", - "family": "707", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6253": { - "name": "Paragon's Dirty Fighting Mastery III", - "description": "Increases the wielder's Dirty Fighting skill by 3 points.", - "school": "Creature Enchantment", - "family": "707", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6254": { - "name": "Paragon's Dirty Fighting Mastery IV", - "description": "Increases the wielder's Dirty Fighting skill by 4 points.", - "school": "Creature Enchantment", - "family": "707", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6255": { - "name": "Paragon's Dirty Fighting Mastery V", - "description": "Increases the wielder's Dirty Fighting skill by 5 points.", - "school": "Creature Enchantment", - "family": "707", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6256": { - "name": "Paragon's Dual Wield Mastery I", - "description": "Increases the wielder's Dual Wield skill by 1 point.", - "school": "Creature Enchantment", - "family": "708", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6257": { - "name": "Paragon's Dual Wield Mastery II", - "description": "Increases the wielder's Dual Wield skill by 2 points.", - "school": "Creature Enchantment", - "family": "708", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6258": { - "name": "Paragon's Dual Wield Mastery III", - "description": "Increases the wielder's Dual Wield skill by 3 points.", - "school": "Creature Enchantment", - "family": "708", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6259": { - "name": "Paragon's Dual Wield Mastery IV", - "description": "Increases the wielder's Dual Wield skill by 4 points.", - "school": "Creature Enchantment", - "family": "708", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6260": { - "name": "Paragon's Willpower V", - "description": "Increases the wielder's Self by 5 points.", - "school": "Creature Enchantment", - "family": "726", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6261": { - "name": "Paragon's Coordination I", - "description": "Increases the wielder's Coordination by 1 point.", - "school": "Creature Enchantment", - "family": "723", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6262": { - "name": "Paragon's Coordination II", - "description": "Increases the wielder's Coordination by 2 points.", - "school": "Creature Enchantment", - "family": "723", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6263": { - "name": "Paragon's Coordination III", - "description": "Increases the wielder's Coordination by 3 points.", - "school": "Creature Enchantment", - "family": "723", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6264": { - "name": "Paragon's Coordination IV", - "description": "Increases the wielder's Coordination by 4 points.", - "school": "Creature Enchantment", - "family": "723", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6265": { - "name": "Paragon's Coordination V", - "description": "Increases the wielder's Coordination by 5 points.", - "school": "Creature Enchantment", - "family": "723", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6266": { - "name": "Paragon's Endurance I", - "description": "Increases the wielder's Endurance by 1 point.", - "school": "Creature Enchantment", - "family": "704", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6267": { - "name": "Paragon's Endurance II", - "description": "Increases the wielder's Endurance by 2 points.", - "school": "Creature Enchantment", - "family": "704", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6268": { - "name": "Paragon's Endurance III", - "description": "Increases the wielder's Endurance by 3 points.", - "school": "Creature Enchantment", - "family": "704", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6269": { - "name": "Paragon's Endurance IV", - "description": "Increases the wielder's Endurance by 4 points.", - "school": "Creature Enchantment", - "family": "704", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6270": { - "name": "Paragon's Endurance V", - "description": "Increases the wielder's Endurance by 5 points.", - "school": "Creature Enchantment", - "family": "704", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6271": { - "name": "Paragon's Focus I", - "description": "Increases the wielder's Focus by 1 point.", - "school": "Creature Enchantment", - "family": "725", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6272": { - "name": "Paragon's Focus II", - "description": "Increases the wielder's Focus by 2 points.", - "school": "Creature Enchantment", - "family": "725", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6273": { - "name": "Paragon's Focus III", - "description": "Increases the wielder's Focus by 3 points.", - "school": "Creature Enchantment", - "family": "725", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6274": { - "name": "Paragon's Focus IV", - "description": "Increases the wielder's Focus by 4 points.", - "school": "Creature Enchantment", - "family": "725", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6275": { - "name": "Paragon's Focus V", - "description": "Increases the wielder's Focus by 5 points.", - "school": "Creature Enchantment", - "family": "725", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6276": { - "name": "Paragon Quickness I", - "description": "Increases the wielder's Quickness by 1 point.", - "school": "Creature Enchantment", - "family": "724", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6277": { - "name": "Paragon Quickness II", - "description": "Increases the wielder's Quickness by 2 points.", - "school": "Creature Enchantment", - "family": "724", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6278": { - "name": "Paragon Quickness III", - "description": "Increases the wielder's Quickness by 3 points.", - "school": "Creature Enchantment", - "family": "724", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6279": { - "name": "Paragon Quickness IV", - "description": "Increases the wielder's Quickness by 4 points.", - "school": "Creature Enchantment", - "family": "724", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6280": { - "name": "Paragon Quickness V", - "description": "Increases the wielder's Quickness by 5 points.", - "school": "Creature Enchantment", - "family": "724", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6281": { - "name": "Paragon's Strength I", - "description": "Increases the wielder's Strength by 1 point.", - "school": "Creature Enchantment", - "family": "722", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6282": { - "name": "Paragon's Strength II", - "description": "Increases the wielder's Strength by 2 points.", - "school": "Creature Enchantment", - "family": "722", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6283": { - "name": "Paragon's Strength III", - "description": "Increases the wielder's Strength by 3 points.", - "school": "Creature Enchantment", - "family": "722", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6284": { - "name": "Paragon's Strength IV", - "description": "Increases the wielder's Strength by 4 points.", - "school": "Creature Enchantment", - "family": "722", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6285": { - "name": "Paragon's Strength V", - "description": "Increases the wielder's Strength by 5 points.", - "school": "Creature Enchantment", - "family": "722", - "difficulty": "5", - "duration": "5400", - "mana": "80" - }, - "6286": { - "name": "Paragon's Willpower I", - "description": "Increases the wielder's Self by 1 point.", - "school": "Creature Enchantment", - "family": "726", - "difficulty": "1", - "duration": "5400", - "mana": "80" - }, - "6287": { - "name": "Paragon's Willpower II", - "description": "Increases the wielder's Self by 2 points.", - "school": "Creature Enchantment", - "family": "726", - "difficulty": "2", - "duration": "5400", - "mana": "80" - }, - "6288": { - "name": "Paragon's Willpower III", - "description": "Increases the wielder's Self by 3 points.", - "school": "Creature Enchantment", - "family": "726", - "difficulty": "3", - "duration": "5400", - "mana": "80" - }, - "6289": { - "name": "Paragon's Willpower IV", - "description": "Increases the wielder's Self by 4 points.", - "school": "Creature Enchantment", - "family": "726", - "difficulty": "4", - "duration": "5400", - "mana": "80" - }, - "6290": { - "name": "Paragon's Stamina V", - "description": "Increases maximum stamina by 10 points.", - "school": "Life Magic", - "family": "706", - "difficulty": "10", - "duration": "5400", - "mana": "70" - }, - "6291": { - "name": "Paragon's Critical Boost I", - "description": "The critical damage rating of the wielder is increased by 1.", - "school": "Life Magic", - "family": "713", - "difficulty": "1", - "duration": "5400", - "mana": "70" - }, - "6292": { - "name": "Paragon's Critical Damage Boost II", - "description": "The critical damage rating of the wielder is increased by 2.", - "school": "Life Magic", - "family": "713", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6293": { - "name": "Paragon's Critical Damage Boost III", - "description": "The critical damage rating of the wielder is increased by 3.", - "school": "Life Magic", - "family": "713", - "difficulty": "3", - "duration": "5400", - "mana": "70" - }, - "6294": { - "name": "Paragon's Critical Damage Boost IV", - "description": "The damage rating of the wielder is increased by 4.", - "school": "Life Magic", - "family": "713", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6295": { - "name": "Paragon's Critical Damage Boost V", - "description": "The critical damage rating of the wielder is increased by 5.", - "school": "Life Magic", - "family": "713", - "difficulty": "5", - "duration": "5400", - "mana": "70" - }, - "6296": { - "name": "Paragon's Critical Damage Reduction I", - "description": "The critical damage reduction rating of the wielder is increased by 1.", - "school": "Life Magic", - "family": "714", - "difficulty": "1", - "duration": "5400", - "mana": "70" - }, - "6297": { - "name": "Paragon's Critical Damage Reduction II", - "description": "The critical damage reduction rating of the wielder is increased by 2.", - "school": "Life Magic", - "family": "714", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6298": { - "name": "Paragon's Critical Damage Reduction III", - "description": "The critical damage reduction rating of the wielder is increased by 3.", - "school": "Life Magic", - "family": "714", - "difficulty": "3", - "duration": "5400", - "mana": "70" - }, - "6299": { - "name": "Paragon's Critical Damage Reduction IV", - "description": "The critical damage reduction rating of the wielder is increased by 4.", - "school": "Life Magic", - "family": "714", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6300": { - "name": "Paragon's Critical Damage Reduction V", - "description": "The critical damage reduction rating of the wielder is increased by 5.", - "school": "Life Magic", - "family": "714", - "difficulty": "5", - "duration": "5400", - "mana": "70" - }, - "6301": { - "name": "Paragon's Damage Boost I", - "description": "The damage rating of the wielder is increased by 1.", - "school": "Life Magic", - "family": "711", - "difficulty": "1", - "duration": "5400", - "mana": "70" - }, - "6302": { - "name": "Paragon's Damage Boost II", - "description": "The damage rating of the wielder is increased by 2.", - "school": "Life Magic", - "family": "711", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6303": { - "name": "Paragon's Damage Boost III", - "description": "The damage rating of the wielder is increased by 3.", - "school": "Life Magic", - "family": "711", - "difficulty": "3", - "duration": "5400", - "mana": "70" - }, - "6304": { - "name": "Paragon's Damage Boost IV", - "description": "The damage rating of the wielder is increased by 4.", - "school": "Life Magic", - "family": "711", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6305": { - "name": "Paragon's Damage Boost V", - "description": "The damage rating of the wielder is increased by 5.", - "school": "Life Magic", - "family": "711", - "difficulty": "5", - "duration": "5400", - "mana": "70" - }, - "6306": { - "name": "Paragon's Damage Reduction I", - "description": "The damage reduction rating of the wielder is increased by 1.", - "school": "Life Magic", - "family": "712", - "difficulty": "1", - "duration": "5400", - "mana": "70" - }, - "6307": { - "name": "Paragon's Damage Reduction II", - "description": "The damage reduction rating of the wielder is increased by 2.", - "school": "Life Magic", - "family": "712", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6308": { - "name": "Paragon's Damage Reduction III", - "description": "The damage reduction rating of the wielder is increased by 3.", - "school": "Life Magic", - "family": "712", - "difficulty": "3", - "duration": "5400", - "mana": "70" - }, - "6309": { - "name": "Paragon's Damage Reduction IV", - "description": "The damage reduction rating of the wielder is increased by 4.", - "school": "Life Magic", - "family": "712", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6310": { - "name": "Paragon's Damage Reduction V", - "description": "The damage reduction rating of the wielder is increased by 5.", - "school": "Life Magic", - "family": "712", - "difficulty": "5", - "duration": "5400", - "mana": "70" - }, - "6311": { - "name": "Paragon's Mana I", - "description": "Increases maximum mana by 2 points.", - "school": "Life Magic", - "family": "705", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6312": { - "name": "Paragon's Mana II", - "description": "Increases maximum mana by 4 points.", - "school": "Life Magic", - "family": "705", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6313": { - "name": "Paragon's Mana III", - "description": "Increases maximum mana by 6 points.", - "school": "Life Magic", - "family": "705", - "difficulty": "6", - "duration": "5400", - "mana": "70" - }, - "6314": { - "name": "Paragon's Mana IV", - "description": "Increases maximum mana by 8 points.", - "school": "Life Magic", - "family": "705", - "difficulty": "8", - "duration": "5400", - "mana": "70" - }, - "6315": { - "name": "Paragon's Mana V", - "description": "Increases maximum mana by 10 points.", - "school": "Life Magic", - "family": "705", - "difficulty": "10", - "duration": "5400", - "mana": "70" - }, - "6316": { - "name": "Paragon's Stamina I", - "description": "Increases maximum stamina by 2 points.", - "school": "Life Magic", - "family": "706", - "difficulty": "2", - "duration": "5400", - "mana": "70" - }, - "6317": { - "name": "Paragon's Stamina II", - "description": "Increases maximum stamina by 4 points.", - "school": "Life Magic", - "family": "706", - "difficulty": "4", - "duration": "5400", - "mana": "70" - }, - "6318": { - "name": "Paragon's Stamina III", - "description": "Increases maximum stamina by 6 points.", - "school": "Life Magic", - "family": "706", - "difficulty": "6", - "duration": "5400", - "mana": "70" - }, - "6319": { - "name": "Paragon's Stamina IV", - "description": "Increases maximum stamina by 8 points.", - "school": "Life Magic", - "family": "706", - "difficulty": "8", - "duration": "5400", - "mana": "70" - }, - "6320": { - "name": "Ring of Skulls II", - "description": "Shoots eight nether skulls outward from the caster. Each skull does 109-172 points of nether damage to the first thing it hits.", - "school": "Void Magic", - "family": "641", - "difficulty": "300", - "duration": "-1", - "mana": "90" - }, - "6321": { - "name": "Viridian Rise Recall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "250", - "duration": "-1", - "mana": "150" - }, - "6322": { - "name": "Viridian Rise Great Tree Recall", - "description": "Transports the target to the specified destination.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "250", - "duration": "-1", - "mana": "150" - }, - "6323": { - "name": "Gauntlet Imperil Self", - "description": "Decreases the caster's natural armor by 300 points.", - "school": "Life Magic", - "family": "116", - "difficulty": "400", - "duration": "1800", - "mana": "80" - }, - "6324": { - "name": "Gauntlet Vulnerability Self", - "description": "Increases damage the caster takes from Fire by 210%.", - "school": "Life Magic", - "family": "110", - "difficulty": "400", - "duration": "1800", - "mana": "80" - }, - "6325": { - "name": "Celestial Hand Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Celestial Hand.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "6326": { - "name": "Eldrytch Web Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Eldrytch Web.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "6327": { - "name": "Radiant Blood Stronghold Recall", - "description": "Sends the caster to the Stronghold of the Radiant Blood.", - "school": "Item Enchantment", - "family": "214", - "difficulty": "150", - "duration": "-1", - "mana": "50" - }, - "6328": { - "name": "Gauntlet Critical Damage Boost I", - "description": "Your critical damage rating is increased by 1.", - "school": "Life Magic", - "family": "732", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6329": { - "name": "Gauntlet Critical Damage Boost II", - "description": "Your critical damage rating is increased by 2.", - "school": "Life Magic", - "family": "732", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6330": { - "name": "Gauntlet Damage Boost I", - "description": "Your damage rating is increased by 1.", - "school": "Life Magic", - "family": "729", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6331": { - "name": "Gauntlet Damage Boost II", - "description": "Your damage rating is increased by 2.", - "school": "Life Magic", - "family": "729", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6332": { - "name": "Gauntlet Damage Reduction I", - "description": "Your damage reduction rating is increased by 1.", - "school": "Life Magic", - "family": "728", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6333": { - "name": "Gauntlet Damage Reduction II", - "description": "Your damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "728", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6334": { - "name": "Gauntlet Critical Damage Reduction I", - "description": "Your critical damage reduction rating is increased by 1.", - "school": "Life Magic", - "family": "733", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6335": { - "name": "Gauntlet Critical Damage Reduction II", - "description": "Your critical damage reduction rating is increased by 2.", - "school": "Life Magic", - "family": "733", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6336": { - "name": "Gauntlet Healing Boost I", - "description": "Your healing rating is increased by 1.", - "school": "Life Magic", - "family": "730", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6337": { - "name": "Gauntlet Healing Boost II", - "description": "Your healing rating is increased by 2.", - "school": "Life Magic", - "family": "730", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6338": { - "name": "Gauntlet Vitality I", - "description": "Your vitality is increased by 1.", - "school": "Life Magic", - "family": "731", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6339": { - "name": "Gauntlet Vitality II", - "description": "Your vitality is increased by 2.", - "school": "Life Magic", - "family": "731", - "difficulty": "1", - "duration": "10800", - "mana": "70" - }, - "6340": { - "name": "Gauntlet Vitality III", - "description": "Your vitality is increased by 3.", - "school": "Life Magic", - "family": "731", - "difficulty": "1", - "duration": "10800", - "mana": "70" - } - } -} \ No newline at end of file diff --git a/main.py b/main.py index 0db32326..fdb48928 100644 --- a/main.py +++ b/main.py @@ -1,788 +1,34 @@ -""" -main.py - FastAPI-based telemetry server for Dereth Tracker. - -This service ingests real-time position and event data from plugin clients via WebSockets, -stores telemetry and statistics in a TimescaleDB backend, and exposes HTTP and WebSocket -endpoints for browser clients to retrieve live and historical data, trails, and per-character stats. -""" from datetime import datetime, timedelta, timezone import json -import logging -import os -import sys -import time -from typing import Dict, List, Any -from pathlib import Path -import asyncio -import socket -import struct +import sqlite3 +from typing import Dict -from fastapi import FastAPI, Header, HTTPException, Query, WebSocket, WebSocketDisconnect, Request -from fastapi.responses import JSONResponse, Response +from fastapi import FastAPI, Header, HTTPException, Query, WebSocket, WebSocketDisconnect +from fastapi.responses import JSONResponse from fastapi.routing import APIRoute from fastapi.staticfiles import StaticFiles -from fastapi.encoders import jsonable_encoder from pydantic import BaseModel from typing import Optional -import httpx -# Async database support -from sqlalchemy.dialects.postgresql import insert as pg_insert -from db_async import ( - database, - telemetry_events, - char_stats, - rare_stats, - rare_stats_sessions, - spawn_events, - rare_events, - character_inventories, - portals, - server_health_checks, - server_status, - init_db_async, - cleanup_old_portals -) +from db import init_db, save_snapshot, DB_FILE import asyncio - -# Configure logging -logging.basicConfig( - level=logging.INFO, - format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', - handlers=[ - logging.StreamHandler(sys.stdout), - ] -) -logger = logging.getLogger(__name__) - -# Get log level from environment (DEBUG, INFO, WARNING, ERROR) -log_level = os.getenv('LOG_LEVEL', 'INFO').upper() -logger.setLevel(getattr(logging, log_level, logging.INFO)) - -# Inventory service configuration -INVENTORY_SERVICE_URL = os.getenv('INVENTORY_SERVICE_URL', 'http://inventory-service:8000') -# In-memory caches for REST endpoints -_cached_live: dict = {"players": []} -_cached_trails: dict = {"trails": []} -_cached_total_rares: dict = {"all_time": 0, "today": 0, "last_updated": None} -_cache_task: asyncio.Task | None = None -_rares_cache_task: asyncio.Task | None = None -_cleanup_task: asyncio.Task | None = None - -# Player tracking for debug purposes -_player_history: list = [] # List of player sets from last 10 refreshes -_player_events: list = [] # List of player enter/exit events -_max_history_size = 10 # Keep last 10 player sets -_max_events_size = 100 # Keep last 100 events - -# Telemetry timing tracking for debug purposes -_player_telemetry_times: dict = {} # character_name -> list of timestamps -_max_telemetry_history = 20 # Keep last 20 telemetry timestamps per player - -# Simple WebSocket connection counters (Phase 1) -_plugin_connections = 0 -_browser_connections = 0 - -# Simple database query performance counters (Phase 2) -_total_queries = 0 -_total_query_time = 0.0 - -# Simple recent activity tracking (Phase 3) -_recent_telemetry_messages = [] -_max_recent_messages = 50 - -# Server health monitoring -_server_health_task = None -_server_status_cache = { - "status": "unknown", - "latency_ms": None, - "player_count": None, - "last_check": None, - "uptime_seconds": 0, - "last_restart": None -} - -# Quest status cache - stores last received quest data per player -# Structure: {character_name: {quest_name: countdown_value}} -_quest_status_cache: Dict[str, Dict[str, str]] = {} - -# AC Hash32 checksum algorithm (based on ThwargLauncher) -def calculate_hash32(data: bytes) -> int: - """Calculate AC Hash32 checksum as used in ThwargLauncher.""" - length = len(data) - checksum = (length << 16) & 0xFFFFFFFF - - # Process 4-byte chunks - for i in range(0, length - 3, 4): - chunk = struct.unpack(' tuple[bool, float, int]: - """Check AC server health via UDP packet with retry logic. - - Retries 6 times with 5-second delays before declaring server down. - Returns: (is_up, latency_ms, player_count) - """ - max_retries = 6 - retry_delay = 5.0 - - for attempt in range(max_retries): - logger.debug(f"๐Ÿ” Health check attempt {attempt + 1}/{max_retries} for {address}:{port}") - start_time = time.time() - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) - sock.setblocking(False) - - try: - # Send login packet (same as ThwargLauncher) - await asyncio.get_event_loop().sock_sendto(sock, AC_LOGIN_PACKET, (address, port)) - - # Wait for response with timeout - try: - data, addr = await asyncio.wait_for( - asyncio.get_event_loop().sock_recvfrom(sock, 1024), - timeout=timeout - ) - - latency_ms = (time.time() - start_time) * 1000 - logger.debug(f"๐Ÿ“ฅ Received response from {addr}: {len(data)} bytes, latency: {latency_ms:.1f}ms") - - # Check if valid response (support both TimeSynch 0x800000 and ConnectRequest 0x40000) - if len(data) >= 24: - flags = struct.unpack(' int: - """Get player count from TreeStats.net API (same as ThwargLauncher).""" - try: - async with httpx.AsyncClient() as client: - response = await client.get("http://treestats.net/player_counts-latest.json", timeout=10) - if response.status_code == 200: - data = response.json() - for server_data in data: - if server_data.get("server") == server_name: - return server_data.get("count", 0) - return 0 - except Exception as e: - logger.debug(f"Failed to get player count from TreeStats.net: {e}") - return 0 - -async def monitor_server_health(): - """Background task to monitor server health every 30 seconds and cleanup old portals every minute.""" - server_name = "Coldeve" - server_address = "play.coldeve.ac" - server_port = 9000 - check_interval = 30 # seconds - player_count_interval = 300 # 5 minutes (like ThwargLauncher's 10 minutes, but more frequent) - portal_cleanup_interval = 60 # 1 minute - last_player_count_check = 0 - last_portal_cleanup = 0 - current_player_count = None - - # Initialize server status in database - try: - existing = await database.fetch_one( - "SELECT * FROM server_status WHERE server_name = :name", - {"name": server_name} - ) - if not existing: - await database.execute( - server_status.insert().values( - server_name=server_name, - current_status="unknown", - total_uptime_seconds=0 - ) - ) - except Exception as e: - logger.error(f"Failed to initialize server status: {e}") - - while True: - try: - logger.debug(f"๐Ÿฅ Running scheduled health check for {server_name} ({server_address}:{server_port})") - # Check server health via UDP (for status and latency) - is_up, latency_ms, _ = await check_server_health(server_address, server_port) - status = "up" if is_up else "down" - now = datetime.now(timezone.utc) - - # Get player count from TreeStats.net API (like ThwargLauncher) - current_time = time.time() - if current_time - last_player_count_check >= player_count_interval or current_player_count is None: - new_player_count = await get_player_count_from_treestats(server_name) - if new_player_count > 0: # Only update if we got a valid count - current_player_count = new_player_count - last_player_count_check = current_time - logger.info(f"๐Ÿฅ Updated player count from TreeStats.net: {current_player_count}") - - logger.debug(f"๐Ÿฅ Health check result: {status}, latency: {latency_ms}, players: {current_player_count}") - - # Record health check - await database.execute( - server_health_checks.insert().values( - server_name=server_name, - server_address=f"{server_address}:{server_port}", - timestamp=now, - status=status, - latency_ms=latency_ms, - player_count=current_player_count - ) - ) - - # Get previous status - prev_status = await database.fetch_one( - "SELECT * FROM server_status WHERE server_name = :name", - {"name": server_name} - ) - - # Calculate uptime and detect restarts - last_restart = prev_status["last_restart"] if prev_status else None - - if prev_status and prev_status["current_status"] == "down" and status == "up": - # Server came back up - this is a restart - last_restart = now - logger.info(f"Server {server_name} came back online") - # Broadcast to all browser clients - await _broadcast_to_browser_clients({ - "type": "server_status", - "server": server_name, - "status": "up", - "message": "Server is back online" - }) - - # Calculate uptime from last restart time (not accumulated) - if last_restart and status == "up": - uptime_seconds = int((now - last_restart).total_seconds()) - else: - uptime_seconds = 0 - - # Update server status (always include current_player_count if we have it) - await database.execute( - """ - INSERT INTO server_status (server_name, current_status, last_seen_up, last_restart, - total_uptime_seconds, last_check, last_latency_ms, last_player_count) - VALUES (:name, :status, :last_seen, :restart, :uptime, :check, :latency, :players) - ON CONFLICT (server_name) DO UPDATE SET - current_status = :status, - last_seen_up = CASE WHEN :status = 'up' THEN :last_seen ELSE server_status.last_seen_up END, - last_restart = :restart, - total_uptime_seconds = :uptime, - last_check = :check, - last_latency_ms = :latency, - last_player_count = CASE WHEN :players IS NOT NULL THEN :players ELSE server_status.last_player_count END - """, - { - "name": server_name, - "status": status, - "last_seen": now if status == "up" else None, - "restart": last_restart, - "uptime": uptime_seconds, - "check": now, - "latency": latency_ms, - "players": current_player_count - } - ) - - # Update cache - global _server_status_cache - _server_status_cache = { - "status": status, - "latency_ms": latency_ms, - "player_count": current_player_count, - "last_check": now.isoformat(), - "uptime_seconds": uptime_seconds, - "last_restart": last_restart.isoformat() if last_restart else None - } - - logger.debug(f"Server health check: {status}, latency={latency_ms}ms, players={current_player_count}") - - # Portal cleanup (run every minute) - current_time = time.time() - if current_time - last_portal_cleanup >= portal_cleanup_interval: - try: - deleted_count = await cleanup_old_portals() - logger.info(f"Portal cleanup: removed {deleted_count} portals older than 1 hour") - last_portal_cleanup = current_time - except Exception as cleanup_error: - logger.error(f"Portal cleanup error: {cleanup_error}", exc_info=True) - - except Exception as e: - logger.error(f"Server health monitoring error: {e}", exc_info=True) - - await asyncio.sleep(check_interval) - -async def cleanup_connections_loop(): - """Background task to clean up stale WebSocket connections every 5 minutes.""" - cleanup_interval = 300 # 5 minutes - - logger.info("๐Ÿงน Starting WebSocket connection cleanup task") - - while True: - try: - await asyncio.sleep(cleanup_interval) - logger.debug("๐Ÿงน Running periodic WebSocket connection cleanup") - await cleanup_stale_connections() - except Exception as e: - logger.error(f"WebSocket cleanup task error: {e}", exc_info=True) - -def _track_player_changes(new_players: list) -> None: - """Track player changes for debugging flapping issues.""" - from datetime import datetime, timezone - - # Get current player names - current_players = {p["character_name"] for p in new_players} - timestamp = datetime.now(timezone.utc) - - # Track telemetry timing for each player - for player_data in new_players: - player_name = player_data["character_name"] - player_timestamp = player_data.get("timestamp") - - # Convert timestamp if it's a string - if isinstance(player_timestamp, str): - try: - player_timestamp = datetime.fromisoformat(player_timestamp.replace('Z', '+00:00')) - except: - player_timestamp = timestamp - elif player_timestamp is None: - player_timestamp = timestamp - - # Initialize player telemetry tracking if needed - if player_name not in _player_telemetry_times: - _player_telemetry_times[player_name] = [] - - # Add this telemetry timestamp - _player_telemetry_times[player_name].append(player_timestamp) - - # Trim to max history - if len(_player_telemetry_times[player_name]) > _max_telemetry_history: - _player_telemetry_times[player_name].pop(0) - - # Get previous player names if we have history - previous_players = set() - if _player_history: - previous_players = {p["character_name"] for p in _player_history[-1]["players"]} - - # Find players who entered and exited - entered_players = current_players - previous_players - exited_players = previous_players - current_players - - # Log events with telemetry timing analysis - for player in entered_players: - # Check if this is due to timing gap - timing_gap = None - if player in _player_telemetry_times and len(_player_telemetry_times[player]) >= 2: - last_two = _player_telemetry_times[player][-2:] - timing_gap = (last_two[1] - last_two[0]).total_seconds() - - event = { - "timestamp": timestamp, - "type": "enter", - "character_name": player, - "total_players": len(current_players), - "timing_gap": timing_gap - } - _player_events.append(event) - gap_info = f" (gap: {timing_gap:.1f}s)" if timing_gap and timing_gap > 25 else "" - logger.debug(f"Player entered: {player} (total: {len(current_players)}){gap_info}") - - for player in exited_players: - # Calculate time since last telemetry - last_telemetry_age = None - if player in _player_telemetry_times and _player_telemetry_times[player]: - last_telemetry = _player_telemetry_times[player][-1] - last_telemetry_age = (timestamp - last_telemetry).total_seconds() - - event = { - "timestamp": timestamp, - "type": "exit", - "character_name": player, - "total_players": len(current_players), - "last_telemetry_age": last_telemetry_age - } - _player_events.append(event) - age_info = f" (last telemetry: {last_telemetry_age:.1f}s ago)" if last_telemetry_age else "" - logger.debug(f"Player exited: {player} (total: {len(current_players)}){age_info}") - - # Add current state to history - history_entry = { - "timestamp": timestamp, - "players": new_players, - "player_count": len(new_players), - "player_names": list(current_players) - } - _player_history.append(history_entry) - - # Trim history to max size - if len(_player_history) > _max_history_size: - _player_history.pop(0) - - # Trim events to max size - if len(_player_events) > _max_events_size: - _player_events.pop(0) - -def _analyze_flapping_patterns() -> dict: - """Analyze player events to identify flapping patterns.""" - from collections import Counter, defaultdict - - if not _player_events: - return {"flapping_players": [], "frequent_events": [], "analysis": "No events to analyze"} - - # Count events per player - player_event_counts = Counter() - player_flap_counts = defaultdict(int) - - # Track recent activity per player (last 10 events) - recent_player_activity = defaultdict(list) - - for event in _player_events[-50:]: # Analyze last 50 events - player = event["character_name"] - event_type = event["type"] - player_event_counts[player] += 1 - recent_player_activity[player].append(event_type) - - # Identify flapping players (players with many enter/exit cycles) - flapping_players = [] - for player, activity in recent_player_activity.items(): - if len(activity) >= 4: # At least 4 events - # Count alternating enter/exit patterns - flap_score = 0 - for i in range(1, len(activity)): - if activity[i] != activity[i-1]: # Different from previous - flap_score += 1 - - if flap_score >= 3: # At least 3 transitions - flapping_players.append({ - "character_name": player, - "events": len(activity), - "flap_score": flap_score, - "recent_activity": activity[-10:] # Last 10 events - }) - - # Sort by flap score - flapping_players.sort(key=lambda x: x["flap_score"], reverse=True) - - # Most active players - frequent_events = [ - {"character_name": player, "event_count": count} - for player, count in player_event_counts.most_common(10) - ] - - # Recent activity summary - recent_enters = sum(1 for e in _player_events[-20:] if e["type"] == "enter") - recent_exits = sum(1 for e in _player_events[-20:] if e["type"] == "exit") - - return { - "flapping_players": flapping_players, - "frequent_events": frequent_events, - "recent_activity": { - "enters": recent_enters, - "exits": recent_exits, - "net_change": recent_enters - recent_exits - }, - "analysis": f"Found {len(flapping_players)} potentially flapping players" - } - -def _analyze_telemetry_timing() -> dict: - """Analyze telemetry timing patterns for all players.""" - from datetime import datetime, timezone - - timing_analysis = {} - problem_players = [] - - for player_name, timestamps in _player_telemetry_times.items(): - if len(timestamps) < 2: - continue - - # Calculate intervals between telemetry messages - intervals = [] - for i in range(1, len(timestamps)): - interval = (timestamps[i] - timestamps[i-1]).total_seconds() - intervals.append(interval) - - if not intervals: - continue - - # Calculate timing statistics - avg_interval = sum(intervals) / len(intervals) - min_interval = min(intervals) - max_interval = max(intervals) - - # Count problematic intervals (>30s) - long_gaps = [i for i in intervals if i > 30] - recent_long_gaps = [i for i in intervals[-5:] if i > 30] # Last 5 intervals - - # Determine if this player has timing issues - has_timing_issues = len(long_gaps) > 0 or max_interval > 35 - - timing_stats = { - "character_name": player_name, - "total_messages": len(timestamps), - "avg_interval": round(avg_interval, 1), - "min_interval": round(min_interval, 1), - "max_interval": round(max_interval, 1), - "long_gaps_count": len(long_gaps), - "recent_long_gaps": len(recent_long_gaps), - "last_message_age": (datetime.now(timezone.utc) - timestamps[-1]).total_seconds() if timestamps else 0, - "has_timing_issues": has_timing_issues, - "recent_intervals": [round(i, 1) for i in intervals[-5:]] # Last 5 intervals - } - - timing_analysis[player_name] = timing_stats - - if has_timing_issues: - problem_players.append(timing_stats) - - # Sort problem players by severity (max interval) - problem_players.sort(key=lambda x: x["max_interval"], reverse=True) - - return { - "all_players": timing_analysis, - "problem_players": problem_players, - "summary": { - "total_tracked_players": len(timing_analysis), - "players_with_issues": len(problem_players), - "avg_intervals": [stats["avg_interval"] for stats in timing_analysis.values()], - } - } - -async def _refresh_cache_loop() -> None: - """Background task: refresh `/live` and `/trails` caches every 5 seconds.""" - consecutive_failures = 0 - max_consecutive_failures = 5 - - while True: - try: - # Recompute live players (last 30s) - cutoff = datetime.now(timezone.utc) - ACTIVE_WINDOW - sql_live = """ - SELECT sub.*, - COALESCE(rs.total_rares, 0) AS total_rares, - COALESCE(rss.session_rares, 0) AS session_rares, - COALESCE(cs.total_kills, 0) AS total_kills - FROM ( - SELECT DISTINCT ON (character_name) * - FROM telemetry_events - WHERE timestamp > :cutoff - ORDER BY character_name, timestamp DESC - ) sub - LEFT JOIN rare_stats rs - ON sub.character_name = rs.character_name - LEFT JOIN rare_stats_sessions rss - ON sub.character_name = rss.character_name - AND sub.session_id = rss.session_id - LEFT JOIN char_stats cs - ON sub.character_name = cs.character_name - """ - - # Use a single connection for both queries to reduce connection churn - async with database.connection() as conn: - rows = await conn.fetch_all(sql_live, {"cutoff": cutoff}) - new_players = [dict(r) for r in rows] - - # Track player changes for debugging - _track_player_changes(new_players) - - _cached_live["players"] = new_players - - # Recompute trails (last 600s) - cutoff2 = datetime.utcnow().replace(tzinfo=timezone.utc) - timedelta(seconds=600) - sql_trail = """ - SELECT timestamp, character_name, ew, ns, z - FROM telemetry_events - WHERE timestamp >= :cutoff - ORDER BY character_name, timestamp - """ - rows2 = await conn.fetch_all(sql_trail, {"cutoff": cutoff2}) - _cached_trails["trails"] = [ - {"timestamp": r["timestamp"], "character_name": r["character_name"], - "ew": r["ew"], "ns": r["ns"], "z": r["z"]} - for r in rows2 - ] - - # Reset failure counter on success - consecutive_failures = 0 - logger.debug(f"Cache refreshed: {len(_cached_live['players'])} players, {len(_cached_trails['trails'])} trail points") - - except Exception as e: - consecutive_failures += 1 - logger.error(f"Cache refresh failed ({consecutive_failures}/{max_consecutive_failures}): {e}", exc_info=True) - - # If too many consecutive failures, wait longer and try to reconnect - if consecutive_failures >= max_consecutive_failures: - logger.warning(f"Too many consecutive cache refresh failures. Attempting database reconnection...") - try: - await database.disconnect() - await asyncio.sleep(2) - await database.connect() - logger.info("Database reconnected successfully") - consecutive_failures = 0 - except Exception as reconnect_error: - logger.error(f"Database reconnection failed: {reconnect_error}") - await asyncio.sleep(10) # Wait longer before retrying - continue - - await asyncio.sleep(5) - -async def _refresh_total_rares_cache() -> None: - """Background task: refresh total rares cache every 5 minutes.""" - consecutive_failures = 0 - max_consecutive_failures = 3 - - while True: - try: - async with database.connection() as conn: - # Get all-time total rares (sum of all characters) - gracefully handle missing table - try: - all_time_query = "SELECT COALESCE(SUM(total_rares), 0) as total FROM rare_stats" - all_time_result = await conn.fetch_one(all_time_query) - all_time_total = all_time_result["total"] if all_time_result else 0 - except Exception as e: - logger.debug(f"rare_stats table not available: {e}") - all_time_total = 0 - - # Get today's rares from rare_events table - gracefully handle missing table - try: - today_query = """ - SELECT COUNT(*) as today_count - FROM rare_events - WHERE timestamp >= CURRENT_DATE - """ - today_result = await conn.fetch_one(today_query) - today_total = today_result["today_count"] if today_result else 0 - except Exception as e: - logger.debug(f"rare_events table not available or empty: {e}") - today_total = 0 - - # Update cache - _cached_total_rares["all_time"] = all_time_total - _cached_total_rares["today"] = today_total - _cached_total_rares["last_updated"] = datetime.now(timezone.utc) - - consecutive_failures = 0 - logger.debug(f"Total rares cache updated: All-time: {all_time_total}, Today: {today_total}") - - except Exception as e: - consecutive_failures += 1 - logger.error(f"Total rares cache refresh failed ({consecutive_failures}/{max_consecutive_failures}): {e}", exc_info=True) - - if consecutive_failures >= max_consecutive_failures: - logger.warning("Too many consecutive total rares cache failures, waiting longer...") - await asyncio.sleep(60) # Wait longer on repeated failures - continue - - # Sleep for 5 minutes (300 seconds) - await asyncio.sleep(300) +from starlette.concurrency import run_in_threadpool # ------------------------------------------------------------------ app = FastAPI() -# In-memory store mapping character_name to the most recent telemetry snapshot -live_snapshots: Dict[str, dict] = {} -live_vitals: Dict[str, dict] = {} -# Shared secret used to authenticate plugin WebSocket connections (override for production) +# In-memory store of the last packet per character +live_snapshots: Dict[str, dict] = {} + SHARED_SECRET = "your_shared_secret" # LOG_FILE = "telemetry_log.jsonl" # ------------------------------------------------------------------ -ACTIVE_WINDOW = timedelta(seconds=30) # Time window defining โ€œonlineโ€ players (last 30 seconds) - -""" -Data models for plugin events: - - TelemetrySnapshot: periodic telemetry data from a player client - - SpawnEvent: information about a mob spawn event - - RareEvent: details of a rare mob event -""" +ACTIVE_WINDOW = timedelta(seconds=30) # player is โ€œonlineโ€ if seen in last 30 s class TelemetrySnapshot(BaseModel): character_name: str - char_tag: Optional[str] = None + char_tag: str session_id: str timestamp: datetime @@ -791,150 +37,43 @@ class TelemetrySnapshot(BaseModel): z: float kills: int - kills_per_hour: Optional[float] = None - onlinetime: Optional[str] = None + kills_per_hour: Optional[str] = None # now optional + onlinetime: Optional[str] = None # now optional deaths: int - total_deaths: Optional[int] = None - # Removed from telemetry payload; always enforced to 0 and tracked via rare events - rares_found: Optional[int] = 0 + rares_found: int prismatic_taper_count: int vt_state: str - # Optional telemetry metrics - mem_mb: Optional[float] = None - cpu_pct: Optional[float] = None - mem_handles: Optional[int] = None - latency_ms: Optional[float] = None - - -class SpawnEvent(BaseModel): - """ - Model for a spawn event emitted by plugin clients when a mob appears. - Records character context, mob type, timestamp, and spawn location. - """ - character_name: str - mob: str - timestamp: datetime - ew: float - ns: float - z: float = 0.0 - -class RareEvent(BaseModel): - """ - Model for a rare mob event when a player encounters or discovers a rare entity. - Includes character, event name, timestamp, and location coordinates. - """ - character_name: str - name: str - timestamp: datetime - ew: float - ns: float - z: float = 0.0 - - -class FullInventoryMessage(BaseModel): - """ - Model for the full_inventory WebSocket message type. - Contains complete character inventory snapshot with raw item data. - """ - character_name: str - timestamp: datetime - item_count: int - items: List[Dict[str, Any]] - - -class VitalsMessage(BaseModel): - """ - Model for the vitals WebSocket message type. - Contains character health, stamina, mana, and vitae information. - """ - character_name: str - timestamp: datetime - health_current: int - health_max: int - health_percentage: float - stamina_current: int - stamina_max: int - stamina_percentage: float - mana_current: int - mana_max: int - mana_percentage: float - vitae: int @app.on_event("startup") -async def on_startup(): - """Event handler triggered when application starts up. +def on_startup(): + init_db() - Attempts to connect to the database with retry logic to accommodate - potential startup delays (e.g., waiting for Postgres to be ready). - """ - max_attempts = 5 - for attempt in range(1, max_attempts + 1): - try: - await database.connect() - await init_db_async() - logger.info(f"Database connected successfully on attempt {attempt}") - # Log connection pool configuration - try: - logger.info(f"Database connection established with pool configuration") - except Exception as pool_error: - logger.debug(f"Could not access pool details: {pool_error}") - break - except Exception as e: - logger.warning(f"Database connection failed (attempt {attempt}/{max_attempts}): {e}") - if attempt < max_attempts: - await asyncio.sleep(5) - else: - raise RuntimeError(f"Could not connect to database after {max_attempts} attempts") - # Start background cache refresh (live & trails) - global _cache_task, _rares_cache_task, _server_health_task, _cleanup_task - _cache_task = asyncio.create_task(_refresh_cache_loop()) - _rares_cache_task = asyncio.create_task(_refresh_total_rares_cache()) - _server_health_task = asyncio.create_task(monitor_server_health()) - _cleanup_task = asyncio.create_task(cleanup_connections_loop()) - logger.info("Background cache refresh, server monitoring, and connection cleanup tasks started") -@app.on_event("shutdown") -async def on_shutdown(): - """Event handler triggered when application is shutting down. - Ensures the database connection is closed cleanly. - """ - # Stop cache refresh tasks - global _cache_task, _rares_cache_task, _server_health_task, _cleanup_task - if _cache_task: - logger.info("Stopping background cache refresh task") - _cache_task.cancel() - try: - await _cache_task - except asyncio.CancelledError: - pass - - if _rares_cache_task: - logger.info("Stopping total rares cache refresh task") - _rares_cache_task.cancel() - try: - await _rares_cache_task - except asyncio.CancelledError: - pass - - if _server_health_task: - logger.info("Stopping server health monitoring task") - _server_health_task.cancel() - try: - await _server_health_task - except asyncio.CancelledError: - pass - - if _cleanup_task: - logger.info("Stopping WebSocket connection cleanup task") - _cleanup_task.cancel() - try: - await _cleanup_task - except asyncio.CancelledError: - pass - logger.info("Disconnecting from database") - await database.disconnect() +# ------------------------ POST ---------------------------------- +@app.post("/position") +@app.post("/position/") +async def receive_snapshot( + snapshot: TelemetrySnapshot, x_plugin_secret: str = Header(None) +): + if x_plugin_secret != SHARED_SECRET: + raise HTTPException(status_code=401, detail="Unauthorized") + # cache for /live + live_snapshots[snapshot.character_name] = snapshot.dict() + + # save in sqlite + save_snapshot(snapshot.dict()) + + # optional log-file append + # with open(LOG_FILE, "a") as f: + # f.write(json.dumps(snapshot.dict(), default=str) + "\n") + + print( + f"[{datetime.now()}] {snapshot.character_name} @ NS={snapshot.ns:+.2f}, EW={snapshot.ew:+.2f}" + ) + + return {"status": "ok"} # ------------------------ GET ----------------------------------- @@ -942,1334 +81,163 @@ async def on_shutdown(): def debug(): return {"status": "OK"} -@app.get("/debug/player-flapping") -async def get_player_flapping_debug(): - """Return player tracking data for debugging flapping issues.""" - try: - # Analyze flapping patterns - flapping_analysis = _analyze_flapping_patterns() - - # Analyze telemetry timing - timing_analysis = _analyze_telemetry_timing() - - # Get recent events (last 50) - recent_events = _player_events[-50:] if len(_player_events) > 50 else _player_events - - # Convert timestamps to ISO format for JSON serialization - formatted_events = [] - for event in recent_events: - formatted_event = event.copy() - formatted_event["timestamp"] = event["timestamp"].isoformat() - formatted_events.append(formatted_event) - - # Format history - formatted_history = [] - for entry in _player_history: - formatted_entry = { - "timestamp": entry["timestamp"].isoformat(), - "player_count": entry["player_count"], - "player_names": entry["player_names"] - } - formatted_history.append(formatted_entry) - - # Format timing data for JSON serialization - formatted_timing = {} - for player_name, timing_data in timing_analysis["all_players"].items(): - formatted_timing[player_name] = timing_data.copy() - # Round last_message_age for readability - formatted_timing[player_name]["last_message_age"] = round(timing_data["last_message_age"], 1) - - return { - "current_players": len(_cached_live.get("players", [])), - "history": formatted_history, - "recent_events": formatted_events, - "flapping_analysis": flapping_analysis, - "timing_analysis": { - "all_players": formatted_timing, - "problem_players": timing_analysis["problem_players"], - "summary": timing_analysis["summary"] - }, - "tracking_stats": { - "history_entries": len(_player_history), - "total_events": len(_player_events), - "tracked_players": len(_player_telemetry_times), - "max_history_size": _max_history_size, - "max_events_size": _max_events_size - } + +@app.get("/live") +@app.get("/live/") +def get_live_players(): + conn = sqlite3.connect(DB_FILE) + conn.row_factory = sqlite3.Row + rows = conn.execute("SELECT * FROM live_state").fetchall() + conn.close() + + # aware cutoff (UTC) + cutoff = datetime.utcnow().replace(tzinfo=timezone.utc) - ACTIVE_WINDOW + + players = [ + dict(r) + for r in rows + if datetime.fromisoformat(r["timestamp"].replace("Z", "+00:00")) > cutoff + ] + + return JSONResponse(content={"players": players}) + + +@app.get("/history/") +@app.get("/history") +def get_history( + from_ts: str | None = Query(None, alias="from"), + to_ts: str | None = Query(None, alias="to"), +): + """ + Returns a timeโ€ordered list of telemetry snapshots: + - timestamp: ISO8601 string + - character_name: str + - kills: cumulative kill count (int) + - kph: kills_per_hour (float) + """ + conn = sqlite3.connect(DB_FILE) + conn.row_factory = sqlite3.Row + + # Build the base query + sql = """ + SELECT + timestamp, + character_name, + kills, + CAST(kills_per_hour AS REAL) AS kph + FROM telemetry_log + """ + params: list[str] = [] + conditions: list[str] = [] + + # Add optional filters + if from_ts: + conditions.append("timestamp >= ?") + params.append(from_ts) + if to_ts: + conditions.append("timestamp <= ?") + params.append(to_ts) + if conditions: + sql += " WHERE " + " AND ".join(conditions) + + sql += " ORDER BY timestamp" + + rows = conn.execute(sql, params).fetchall() + conn.close() + + data = [ + { + "timestamp": row["timestamp"], + "character_name": row["character_name"], + "kills": row["kills"], + "kph": row["kph"], } - except Exception as e: - logger.error(f"Failed to get player flapping debug data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/debug/websocket-health") -async def get_websocket_health(): - """Return simple WebSocket connection counts.""" - try: - return { - "plugin_connections": _plugin_connections, - "browser_connections": _browser_connections, - "total_connections": _plugin_connections + _browser_connections - } - except Exception as e: - logger.error(f"Failed to get WebSocket health data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/debug/database-performance") -async def get_database_performance(): - """Return simple database query performance statistics.""" - try: - avg_query_time = (_total_query_time / _total_queries) if _total_queries > 0 else 0.0 - return { - "total_queries": _total_queries, - "total_query_time": round(_total_query_time, 3), - "average_query_time": round(avg_query_time, 3) - } - except Exception as e: - logger.error(f"Failed to get database performance data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/debug/recent-activity") -async def get_recent_activity(): - """Return recent telemetry activity feed.""" - try: - return { - "recent_messages": _recent_telemetry_messages.copy(), - "total_messages": len(_recent_telemetry_messages), - "max_messages": _max_recent_messages - } - except Exception as e: - logger.error(f"Failed to get recent activity data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/server-health") -async def get_server_health(): - """Return current server health status.""" - try: - # Get latest status from database if cache is stale - if not _server_status_cache.get("last_check") or \ - (datetime.now(timezone.utc) - datetime.fromisoformat(_server_status_cache["last_check"].replace('Z', '+00:00')) > timedelta(minutes=2)): - - row = await database.fetch_one( - "SELECT * FROM server_status WHERE server_name = :name", - {"name": "Coldeve"} - ) - - if row: - _server_status_cache.update({ - "status": row["current_status"], - "latency_ms": row["last_latency_ms"], - "player_count": row["last_player_count"], - "last_check": row["last_check"].isoformat() if row["last_check"] else None, - "uptime_seconds": row["total_uptime_seconds"], - "last_restart": row["last_restart"].isoformat() if row["last_restart"] else None - }) - - # Format uptime - uptime_seconds = _server_status_cache.get("uptime_seconds", 0) - days = uptime_seconds // 86400 - hours = (uptime_seconds % 86400) // 3600 - minutes = (uptime_seconds % 3600) // 60 - - uptime_str = f"{days}d {hours}h {minutes}m" if days > 0 else f"{hours}h {minutes}m" - - return { - "server_name": "Coldeve", - "status": _server_status_cache.get("status", "unknown"), - "latency_ms": _server_status_cache.get("latency_ms"), - "player_count": _server_status_cache.get("player_count"), - "uptime": uptime_str, - "uptime_seconds": uptime_seconds, - "last_restart": _server_status_cache.get("last_restart"), - "last_check": _server_status_cache.get("last_check") - } - - except Exception as e: - logger.error(f"Failed to get server health data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/quest-status") -async def get_quest_status(): - """Return current cached quest status for all players.""" - try: - # Return the quest cache with structured data - return { - "quest_data": _quest_status_cache, - "tracked_quests": [ - "Stipend Collection Timer", - "Blank Augmentation Gem Pickup Timer", - "Insatiable Eater Jaw" - ], - "player_count": len(_quest_status_cache) - } - except Exception as e: - logger.error(f"Failed to get quest status data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/portals") -async def get_portals(): - """Return all active portals (less than 1 hour old).""" - try: - # No need for cutoff check - cleanup job handles expiration - query = """ - SELECT portal_name, ns, ew, z, discovered_at, discovered_by - FROM portals - ORDER BY discovered_at DESC - """ - - rows = await database.fetch_all(query) - - portals = [] - for row in rows: - portal = { - "portal_name": row["portal_name"], - "coordinates": { - "ns": row["ns"], - "ew": row["ew"], - "z": row["z"] - }, - "discovered_at": row["discovered_at"].isoformat(), - "discovered_by": row["discovered_by"] - } - portals.append(portal) - - return { - "portals": portals, - "portal_count": len(portals) - } - - except Exception as e: - logger.error(f"Failed to get portals data: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - -@app.get("/live", response_model=dict) -@app.get("/live/", response_model=dict) -async def get_live_players(): - """Return cached live telemetry per character.""" - try: - return JSONResponse(content=jsonable_encoder(_cached_live)) - except Exception as e: - logger.error(f"Failed to get live players: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") + for row in rows + ] + return JSONResponse(content={"data": data}) - - -# --- GET Trails --------------------------------- +# ------------------------ GET Trails --------------------------------- @app.get("/trails") @app.get("/trails/") -async def get_trails( - seconds: int = Query(600, ge=0, description="Lookback window in seconds"), -): - """Return cached trails (updated every 5 seconds).""" - try: - return JSONResponse(content=jsonable_encoder(_cached_trails)) - except Exception as e: - logger.error(f"Failed to get trails: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/total-rares") -@app.get("/total-rares/") -async def get_total_rares(): - """Return cached total rares statistics (updated every 5 minutes).""" - try: - return JSONResponse(content=jsonable_encoder(_cached_total_rares)) - except Exception as e: - logger.error(f"Failed to get total rares: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -# --- GET Spawn Heat Map Endpoint --------------------------------- -@app.get("/spawns/heatmap") -async def get_spawn_heatmap_data( - hours: int = Query(24, ge=1, le=168, description="Lookback window in hours (1-168)"), - limit: int = Query(10000, ge=100, le=50000, description="Maximum number of spawn points to return") +def get_trails( + seconds: int = Query(600, ge=0, description="Lookback window in seconds") ): """ - Aggregate spawn locations for heat-map visualization. - - Returns spawn event coordinates grouped by location with intensity counts - for the specified time window. - - Response format: - { - "spawn_points": [{"ew": float, "ns": float, "intensity": int}, ...], - "total_points": int, - "timestamp": "UTC-ISO" - } + Return position snapshots (timestamp, character_name, ew, ns, z) + for the past `seconds` seconds. """ - try: - cutoff = datetime.now(timezone.utc) - timedelta(hours=hours) - - # Aggregate spawn events by coordinates within time window - query = """ - SELECT ew, ns, COUNT(*) AS spawn_count - FROM spawn_events - WHERE timestamp >= :cutoff - GROUP BY ew, ns - ORDER BY spawn_count DESC - LIMIT :limit + # match the same string format as stored timestamps (via str(datetime)) + cutoff_dt = datetime.utcnow().replace(tzinfo=timezone.utc) - timedelta( + seconds=seconds + ) + cutoff = str(cutoff_dt) + conn = sqlite3.connect(DB_FILE) + conn.row_factory = sqlite3.Row + rows = conn.execute( """ - - rows = await database.fetch_all(query, {"cutoff": cutoff, "limit": limit}) - - spawn_points = [ - { - "ew": float(row["ew"]), - "ns": float(row["ns"]), - "intensity": int(row["spawn_count"]) - } - for row in rows - ] - - result = { - "spawn_points": spawn_points, - "total_points": len(spawn_points), - "timestamp": datetime.now(timezone.utc).isoformat(), - "hours_window": hours + SELECT timestamp, character_name, ew, ns, z + FROM telemetry_log + WHERE timestamp >= ? + ORDER BY character_name, timestamp + """, + (cutoff,), + ).fetchall() + conn.close() + trails = [ + { + "timestamp": r["timestamp"], + "character_name": r["character_name"], + "ew": r["ew"], + "ns": r["ns"], + "z": r["z"], } - - logger.debug(f"Heat map data: {len(spawn_points)} unique spawn locations from last {hours} hours") - return JSONResponse(content=jsonable_encoder(result)) - - except Exception as e: - logger.error(f"Heat map query failed: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Spawn heat map query failed") - - -# --- GET Inventory Endpoints --------------------------------- -@app.get("/inventory/{character_name}") -async def get_character_inventory(character_name: str): - """Get the complete inventory for a specific character - inventory service only.""" - try: - async with httpx.AsyncClient(timeout=10.0) as client: - response = await client.get( - f"{INVENTORY_SERVICE_URL}/inventory/{character_name}" - ) - - if response.status_code == 200: - return JSONResponse(content=response.json()) - elif response.status_code == 404: - raise HTTPException(status_code=404, detail=f"No inventory found for character '{character_name}'") - else: - logger.error(f"Inventory service returned {response.status_code} for {character_name}") - raise HTTPException(status_code=502, detail="Inventory service error") - - except httpx.RequestError as e: - logger.error(f"Could not reach inventory service: {e}") - raise HTTPException(status_code=503, detail="Inventory service unavailable") - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to get inventory for {character_name}: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/inventory/{character_name}/search") -async def search_character_inventory( - character_name: str, - name: str = Query(None, description="Search by item name (partial match)"), - object_class: int = Query(None, description="Filter by ObjectClass"), - min_value: int = Query(None, description="Minimum item value"), - max_value: int = Query(None, description="Maximum item value"), - min_burden: int = Query(None, description="Minimum burden"), - max_burden: int = Query(None, description="Maximum burden") -): - """Search and filter inventory items for a character with various criteria.""" - try: - conditions = ["character_name = :character_name"] - params = {"character_name": character_name} - - if name: - conditions.append("name ILIKE :name") - params["name"] = f"%{name}%" - - if object_class is not None: - conditions.append("object_class = :object_class") - params["object_class"] = object_class - - if min_value is not None: - conditions.append("value >= :min_value") - params["min_value"] = min_value - - if max_value is not None: - conditions.append("value <= :max_value") - params["max_value"] = max_value - - if min_burden is not None: - conditions.append("burden >= :min_burden") - params["min_burden"] = min_burden - - if max_burden is not None: - conditions.append("burden <= :max_burden") - params["max_burden"] = max_burden - - query = f""" - SELECT name, icon, object_class, value, burden, has_id_data, item_data, timestamp - FROM character_inventories - WHERE {' AND '.join(conditions)} - ORDER BY value DESC, name - """ - - rows = await database.fetch_all(query, params) - - items = [] - for row in rows: - item = dict(row) - items.append(item) - - return JSONResponse(content=jsonable_encoder({ - "character_name": character_name, - "item_count": len(items), - "search_criteria": { - "name": name, - "object_class": object_class, - "min_value": min_value, - "max_value": max_value, - "min_burden": min_burden, - "max_burden": max_burden - }, - "items": items - })) - except Exception as e: - logger.error(f"Failed to search inventory for {character_name}: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/inventories") -async def list_characters_with_inventories(): - """List all characters that have stored inventories with item counts.""" - try: - query = """ - SELECT character_name, COUNT(*) as item_count, MAX(timestamp) as last_updated - FROM character_inventories - GROUP BY character_name - ORDER BY last_updated DESC - """ - rows = await database.fetch_all(query) - - characters = [] - for row in rows: - characters.append({ - "character_name": row["character_name"], - "item_count": row["item_count"], - "last_updated": row["last_updated"] - }) - - return JSONResponse(content=jsonable_encoder({ - "characters": characters, - "total_characters": len(characters) - })) - except Exception as e: - logger.error(f"Failed to list inventory characters: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -# --- Inventory Service Character List Proxy --------------------- -@app.get("/inventory-characters") -async def get_inventory_characters(): - """Get character list from inventory service - proxy to avoid routing conflicts.""" - try: - async with httpx.AsyncClient(timeout=10.0) as client: - response = await client.get(f"{INVENTORY_SERVICE_URL}/characters/list") - - if response.status_code == 200: - return JSONResponse(content=response.json()) - else: - logger.error(f"Inventory service returned {response.status_code}: {response.text}") - raise HTTPException(status_code=response.status_code, detail="Failed to get characters from inventory service") - - except Exception as e: - logger.error(f"Failed to proxy inventory characters request: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Failed to get inventory characters") - - -# --- Inventory Search Service Proxy Endpoints ------------------- -@app.get("/search/items") -async def search_items_proxy( - text: str = Query(None, description="Search item names, descriptions, or properties"), - character: str = Query(None, description="Limit search to specific character"), - include_all_characters: bool = Query(False, description="Search across all characters"), - equipment_status: str = Query(None, description="equipped, unequipped, or all"), - equipment_slot: int = Query(None, description="Equipment slot mask"), - # Item category filtering - armor_only: bool = Query(False, description="Show only armor items"), - jewelry_only: bool = Query(False, description="Show only jewelry items"), - weapon_only: bool = Query(False, description="Show only weapon items"), - # Spell filtering - has_spell: str = Query(None, description="Must have this specific spell (by name)"), - spell_contains: str = Query(None, description="Spell name contains this text"), - legendary_cantrips: str = Query(None, description="Comma-separated list of legendary cantrip names"), - # Combat properties - min_damage: int = Query(None, description="Minimum damage"), - max_damage: int = Query(None, description="Maximum damage"), - min_armor: int = Query(None, description="Minimum armor level"), - max_armor: int = Query(None, description="Maximum armor level"), - min_attack_bonus: float = Query(None, description="Minimum attack bonus"), - min_crit_damage_rating: int = Query(None, description="Minimum critical damage rating"), - min_damage_rating: int = Query(None, description="Minimum damage rating"), - min_heal_boost_rating: int = Query(None, description="Minimum heal boost rating"), - max_level: int = Query(None, description="Maximum wield level requirement"), - min_level: int = Query(None, description="Minimum wield level requirement"), - material: str = Query(None, description="Material type (partial match)"), - min_workmanship: float = Query(None, description="Minimum workmanship"), - has_imbue: bool = Query(None, description="Has imbue effects"), - item_set: str = Query(None, description="Item set name (partial match)"), - min_tinks: int = Query(None, description="Minimum tinker count"), - bonded: bool = Query(None, description="Bonded status"), - attuned: bool = Query(None, description="Attuned status"), - unique: bool = Query(None, description="Unique item status"), - is_rare: bool = Query(None, description="Rare item status"), - min_condition: int = Query(None, description="Minimum condition percentage"), - min_value: int = Query(None, description="Minimum item value"), - max_value: int = Query(None, description="Maximum item value"), - max_burden: int = Query(None, description="Maximum burden"), - sort_by: str = Query("name", description="Sort field: name, value, damage, armor, workmanship"), - sort_dir: str = Query("asc", description="Sort direction: asc or desc"), - page: int = Query(1, ge=1, description="Page number"), - limit: int = Query(50, ge=1, le=200, description="Items per page") -): - """Proxy to inventory service comprehensive item search.""" - try: - # Build query parameters - params = {} - if text: params["text"] = text - if character: params["character"] = character - if include_all_characters: params["include_all_characters"] = include_all_characters - if equipment_status: params["equipment_status"] = equipment_status - if equipment_slot is not None: params["equipment_slot"] = equipment_slot - # Category filtering - if armor_only: params["armor_only"] = armor_only - if jewelry_only: params["jewelry_only"] = jewelry_only - if weapon_only: params["weapon_only"] = weapon_only - # Spell filtering - if has_spell: params["has_spell"] = has_spell - if spell_contains: params["spell_contains"] = spell_contains - if legendary_cantrips: params["legendary_cantrips"] = legendary_cantrips - # Combat properties - if min_damage is not None: params["min_damage"] = min_damage - if max_damage is not None: params["max_damage"] = max_damage - if min_armor is not None: params["min_armor"] = min_armor - if max_armor is not None: params["max_armor"] = max_armor - if min_attack_bonus is not None: params["min_attack_bonus"] = min_attack_bonus - if min_crit_damage_rating is not None: params["min_crit_damage_rating"] = min_crit_damage_rating - if min_damage_rating is not None: params["min_damage_rating"] = min_damage_rating - if min_heal_boost_rating is not None: params["min_heal_boost_rating"] = min_heal_boost_rating - if max_level is not None: params["max_level"] = max_level - if min_level is not None: params["min_level"] = min_level - if material: params["material"] = material - if min_workmanship is not None: params["min_workmanship"] = min_workmanship - if has_imbue is not None: params["has_imbue"] = has_imbue - if item_set: params["item_set"] = item_set - if min_tinks is not None: params["min_tinks"] = min_tinks - if bonded is not None: params["bonded"] = bonded - if attuned is not None: params["attuned"] = attuned - if unique is not None: params["unique"] = unique - if is_rare is not None: params["is_rare"] = is_rare - if min_condition is not None: params["min_condition"] = min_condition - if min_value is not None: params["min_value"] = min_value - if max_value is not None: params["max_value"] = max_value - if max_burden is not None: params["max_burden"] = max_burden - params["sort_by"] = sort_by - params["sort_dir"] = sort_dir - params["page"] = page - params["limit"] = limit - - async with httpx.AsyncClient(timeout=30.0) as client: - response = await client.get( - f"{INVENTORY_SERVICE_URL}/search/items", - params=params - ) - - if response.status_code == 200: - return JSONResponse(content=response.json()) - else: - logger.error(f"Inventory search service returned {response.status_code}") - raise HTTPException(status_code=response.status_code, detail="Inventory search service error") - - except httpx.RequestError as e: - logger.error(f"Could not reach inventory service: {e}") - raise HTTPException(status_code=503, detail="Inventory service unavailable") - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to search items: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/search/equipped/{character_name}") -async def search_equipped_items_proxy( - character_name: str, - slot: int = Query(None, description="Specific equipment slot mask") -): - """Proxy to inventory service equipped items search.""" - try: - params = {} - if slot is not None: - params["slot"] = slot - - async with httpx.AsyncClient(timeout=10.0) as client: - response = await client.get( - f"{INVENTORY_SERVICE_URL}/search/equipped/{character_name}", - params=params - ) - - if response.status_code == 200: - return JSONResponse(content=response.json()) - elif response.status_code == 404: - raise HTTPException(status_code=404, detail=f"No equipped items found for character '{character_name}'") - else: - logger.error(f"Inventory service returned {response.status_code} for equipped items search") - raise HTTPException(status_code=response.status_code, detail="Inventory service error") - - except httpx.RequestError as e: - logger.error(f"Could not reach inventory service: {e}") - raise HTTPException(status_code=503, detail="Inventory service unavailable") - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to search equipped items for {character_name}: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/search/upgrades/{character_name}/{slot}") -async def find_equipment_upgrades_proxy( - character_name: str, - slot: int, - upgrade_type: str = Query("damage", description="What to optimize for: damage, armor, workmanship, value") -): - """Proxy to inventory service equipment upgrades search.""" - try: - params = {"upgrade_type": upgrade_type} - - async with httpx.AsyncClient(timeout=10.0) as client: - response = await client.get( - f"{INVENTORY_SERVICE_URL}/search/upgrades/{character_name}/{slot}", - params=params - ) - - if response.status_code == 200: - return JSONResponse(content=response.json()) - elif response.status_code == 404: - raise HTTPException(status_code=404, detail=f"No upgrade options found for character '{character_name}' slot {slot}") - else: - logger.error(f"Inventory service returned {response.status_code} for upgrades search") - raise HTTPException(status_code=response.status_code, detail="Inventory service error") - - except httpx.RequestError as e: - logger.error(f"Could not reach inventory service: {e}") - raise HTTPException(status_code=503, detail="Inventory service unavailable") - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to find equipment upgrades for {character_name} slot {slot}: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - - -@app.get("/sets/list") -async def list_equipment_sets_proxy(): - """Proxy to inventory service equipment sets list.""" - try: - async with httpx.AsyncClient(timeout=10.0) as client: - response = await client.get(f"{INVENTORY_SERVICE_URL}/sets/list") - - if response.status_code == 200: - return JSONResponse(content=response.json()) - else: - logger.error(f"Inventory service returned {response.status_code} for sets list") - raise HTTPException(status_code=response.status_code, detail="Inventory service error") - - except httpx.RequestError as e: - logger.error(f"Could not reach inventory service: {e}") - raise HTTPException(status_code=503, detail="Inventory service unavailable") - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to list equipment sets: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - + for r in rows + ] + return JSONResponse(content={"trails": trails}) # -------------------- WebSocket endpoints ----------------------- -## WebSocket connection tracking -# Set of browser WebSocket clients subscribed to live updates browser_conns: set[WebSocket] = set() -# Mapping of plugin clients by character_name to their WebSocket for command forwarding -plugin_conns: Dict[str, WebSocket] = {} async def _broadcast_to_browser_clients(snapshot: dict): - """Broadcast a telemetry or chat message to all connected browser clients. - - Converts any non-serializable types (e.g., datetime) before sending. - Handles connection errors gracefully and removes stale connections. - """ - # Convert snapshot payload to JSON-friendly types - data = jsonable_encoder(snapshot) - # Use list() to avoid "set changed size during iteration" errors - disconnected_clients = [] - for ws in list(browser_conns): try: - await ws.send_json(data) - except (WebSocketDisconnect, RuntimeError, ConnectionAbortedError) as e: - # Collect disconnected clients for cleanup - disconnected_clients.append(ws) - logger.debug(f"Detected disconnected browser client: {e}") - except Exception as e: - # Handle any other unexpected errors - disconnected_clients.append(ws) - logger.warning(f"Unexpected error broadcasting to browser client: {e}") - - # Clean up disconnected clients - for ws in disconnected_clients: - browser_conns.discard(ws) - - -async def _forward_to_inventory_service(inventory_msg: FullInventoryMessage): - """Forward inventory data to the inventory microservice for processing.""" - try: - # Prepare data for inventory service - inventory_data = { - "character_name": inventory_msg.character_name, - "timestamp": inventory_msg.timestamp.isoformat(), - "items": inventory_msg.items - } - - async with httpx.AsyncClient(timeout=30.0) as client: - response = await client.post( - f"{INVENTORY_SERVICE_URL}/process-inventory", - json=inventory_data - ) - - if response.status_code == 200: - result = response.json() - logger.info(f"Inventory service processed {result['processed']} items for {inventory_msg.character_name}") - else: - logger.error(f"Inventory service error {response.status_code}: {response.text}") - - except Exception as e: - logger.error(f"Failed to forward inventory to service: {e}") - # Don't raise - this shouldn't block the main storage - -async def _store_inventory(inventory_msg: FullInventoryMessage): - """Forward inventory data to inventory microservice for processing and storage.""" - try: - # Forward to inventory microservice for enhanced processing and storage - await _forward_to_inventory_service(inventory_msg) - - # Optional: Create JSON file for debugging (can be removed in production) - inventory_dir = Path("./inventory") - inventory_dir.mkdir(exist_ok=True) - - file_path = inventory_dir / f"{inventory_msg.character_name}_inventory.json" - inventory_data = { - "character_name": inventory_msg.character_name, - "timestamp": inventory_msg.timestamp.isoformat(), - "item_count": inventory_msg.item_count, - "items": inventory_msg.items - } - - with open(file_path, 'w') as f: - json.dump(inventory_data, f, indent=2) - - except Exception as e: - logger.error(f"Failed to forward inventory for {inventory_msg.character_name}: {e}", exc_info=True) - raise - + await ws.send_json(snapshot) + except WebSocketDisconnect: + browser_conns.remove(ws) @app.websocket("/ws/position") -async def ws_receive_snapshots( - websocket: WebSocket, - secret: str | None = Query(None), - x_plugin_secret: str | None = Header(None) -): - """WebSocket endpoint for plugin clients to send telemetry and events. - - Validates a shared secret for authentication, then listens for messages of - various types (register, spawn, telemetry, rare, chat) and handles each: - - register: record plugin WebSocket for command forwarding - - spawn: persist spawn event - - telemetry: store snapshot, update stats, broadcast to browsers - - rare: update total and session rare counts, persist event - - chat: broadcast chat messages to browsers - """ - global _plugin_connections - - # Authenticate plugin connection using shared secret - key = secret or x_plugin_secret - if key != SHARED_SECRET: - # Reject without completing the WebSocket handshake - logger.warning(f"Plugin WebSocket authentication failed from {websocket.client}") +async def ws_receive_snapshots(websocket: WebSocket, secret: str = Query(...)): + await websocket.accept() + if secret != SHARED_SECRET: await websocket.close(code=1008) return - # Accept the WebSocket connection - await websocket.accept() - logger.info(f"๐Ÿ”Œ PLUGIN_CONNECTED: {websocket.client}") - - # Track plugin connection - _plugin_connections += 1 - try: while True: - # Read next text frame - try: - raw = await websocket.receive_text() - # Debug: log all incoming plugin WebSocket messages - logger.debug(f"Plugin WebSocket RX from {websocket.client}: {raw}") - except WebSocketDisconnect: - logger.info(f"๐Ÿ”Œ PLUGIN_DISCONNECTED: {websocket.client}") - break - # Parse JSON payload - try: - data = json.loads(raw) - except json.JSONDecodeError as e: - logger.warning(f"Invalid JSON from plugin {websocket.client}: {e}") - continue - msg_type = data.get("type") - # --- Registration: associate character_name with this plugin socket --- - if msg_type == "register": - name = data.get("character_name") or data.get("player_name") - if isinstance(name, str): - plugin_conns[name] = websocket - logger.info(f"๐Ÿ“‹ PLUGIN_REGISTERED: {name} from {websocket.client}") - continue - # --- Spawn event: persist to spawn_events table --- - if msg_type == "spawn": - payload = data.copy() - payload.pop("type", None) - try: - spawn = SpawnEvent.parse_obj(payload) - await database.execute( - spawn_events.insert().values(**spawn.dict()) - ) - logger.debug(f"Recorded spawn event: {spawn.mob} by {spawn.character_name}") - except Exception as e: - logger.error(f"Failed to process spawn event: {e}") - continue - continue - # --- Telemetry message: persist snapshot and update kill stats --- - if msg_type == "telemetry": - # Parse telemetry snapshot and update in-memory state - payload = data.copy() - payload.pop("type", None) - character_name = payload.get('character_name', 'unknown') - - # Track message receipt and start timing - telemetry_start_time = time.time() - logger.info(f"๐Ÿ“จ TELEMETRY_RECEIVED: {character_name} from {websocket.client}") - - try: - snap = TelemetrySnapshot.parse_obj(payload) - live_snapshots[snap.character_name] = snap.dict() - # Prepare data and compute kill delta - db_data = snap.dict() - db_data['rares_found'] = 0 - key = (snap.session_id, snap.character_name) - - # Get last recorded kill count for this session - if key in ws_receive_snapshots._last_kills: - last = ws_receive_snapshots._last_kills[key] - else: - # Cache miss - check database for last kill count for this session - row = await database.fetch_one( - "SELECT kills FROM telemetry_events WHERE character_name = :char AND session_id = :session ORDER BY timestamp DESC LIMIT 1", - {"char": snap.character_name, "session": snap.session_id} - ) - last = row["kills"] if row else 0 - logger.debug(f"Cache miss for {snap.character_name} session {snap.session_id[:8]}: loaded last_kills={last} from database") - - delta = snap.kills - last - # Persist snapshot and any kill delta in a single transaction - db_start_time = time.time() - - # Log connection pool status before database operation - try: - pool_status = f"pool_size:{database._pool._queue.qsize()}" if hasattr(database, '_pool') and hasattr(database._pool, '_queue') else "pool_status:unknown" - except: - pool_status = "pool_status:error" - - logger.info(f"๐Ÿ’พ TELEMETRY_DB_WRITE_ATTEMPT: {snap.character_name} session:{snap.session_id[:8]} kills:{snap.kills} delta:{delta} {pool_status}") - - try: - async with database.transaction(): - await database.execute( - telemetry_events.insert().values(**db_data) - ) - if delta > 0: - stmt = pg_insert(char_stats).values( - character_name=snap.character_name, - total_kills=delta - ).on_conflict_do_update( - index_elements=["character_name"], - set_={"total_kills": char_stats.c.total_kills + delta}, - ) - await database.execute(stmt) - logger.debug(f"Updated kills for {snap.character_name}: +{delta} (total from {last} to {snap.kills})") - - # Success: log timing and update cache - db_duration = (time.time() - db_start_time) * 1000 - ws_receive_snapshots._last_kills[key] = snap.kills - - # Track database performance (Phase 2) - global _total_queries, _total_query_time - _total_queries += 1 - _total_query_time += db_duration / 1000.0 # Convert ms to seconds - - # Track recent activity (Phase 3) - global _recent_telemetry_messages, _max_recent_messages - activity_entry = { - "timestamp": datetime.now(timezone.utc).isoformat(), - "character_name": snap.character_name, - "kills": snap.kills, - "kill_delta": delta, - "query_time": round(db_duration, 1) - } - _recent_telemetry_messages.append(activity_entry) - if len(_recent_telemetry_messages) > _max_recent_messages: - _recent_telemetry_messages.pop(0) - - - # Log final pool status after successful operation - try: - final_pool_status = f"pool_size:{database._pool._queue.qsize()}" if hasattr(database, '_pool') and hasattr(database._pool, '_queue') else "pool_status:unknown" - except: - final_pool_status = "pool_status:error" - - logger.info(f"โœ… TELEMETRY_DB_WRITE_SUCCESS: {snap.character_name} took {db_duration:.1f}ms {final_pool_status}") - - except Exception as db_error: - db_duration = (time.time() - db_start_time) * 1000 - - - # Log pool status during failure - try: - error_pool_status = f"pool_size:{database._pool._queue.qsize()}" if hasattr(database, '_pool') and hasattr(database._pool, '_queue') else "pool_status:unknown" - except: - error_pool_status = "pool_status:error" - - logger.error(f"โŒ TELEMETRY_DB_WRITE_FAILED: {snap.character_name} session:{snap.session_id[:8]} took {db_duration:.1f}ms {error_pool_status} error:{db_error}", exc_info=True) - continue - # Broadcast updated snapshot to all browser clients - await _broadcast_to_browser_clients(snap.dict()) - - # Log successful processing completion with timing - total_duration = (time.time() - telemetry_start_time) * 1000 - logger.info(f"โฑ๏ธ TELEMETRY_PROCESSING_COMPLETE: {snap.character_name} took {total_duration:.1f}ms total") - - except Exception as e: - total_duration = (time.time() - telemetry_start_time) * 1000 - logger.error(f"โŒ TELEMETRY_PROCESSING_FAILED: {character_name} took {total_duration:.1f}ms error:{e}", exc_info=True) - continue - # --- Rare event: update total and session counters and persist --- - if msg_type == "rare": - name = data.get("character_name") - if isinstance(name, str) and name.strip(): - try: - # Total rare count per character - stmt_tot = pg_insert(rare_stats).values( - character_name=name, - total_rares=1 - ).on_conflict_do_update( - index_elements=["character_name"], - set_={"total_rares": rare_stats.c.total_rares + 1}, - ) - await database.execute(stmt_tot) - # Session-specific rare count (use live cache or fallback to latest telemetry) - session_id = live_snapshots.get(name, {}).get("session_id") - if not session_id: - row = await database.fetch_one( - "SELECT session_id FROM telemetry_events" - " WHERE character_name = :name" - " ORDER BY timestamp DESC LIMIT 1", - {"name": name} - ) - if row: - session_id = row["session_id"] - if session_id: - stmt_sess = pg_insert(rare_stats_sessions).values( - character_name=name, - session_id=session_id, - session_rares=1 - ).on_conflict_do_update( - index_elements=["character_name", "session_id"], - set_={"session_rares": rare_stats_sessions.c.session_rares + 1}, - ) - await database.execute(stmt_sess) - # Persist individual rare event for future analysis - payload = data.copy() - payload.pop("type", None) - try: - rare_ev = RareEvent.parse_obj(payload) - await database.execute( - rare_events.insert().values(**rare_ev.dict()) - ) - logger.info(f"Recorded rare event: {rare_ev.name} by {name}") - # Broadcast rare event to browser clients for epic notifications - await _broadcast_to_browser_clients(data) - except Exception as e: - logger.error(f"Failed to persist rare event: {e}") - except Exception as e: - logger.error(f"Failed to process rare event for {name}: {e}", exc_info=True) - continue - # --- Chat message: forward chat payload to browser clients --- - if msg_type == "chat": - await _broadcast_to_browser_clients(data) - logger.debug(f"Broadcasted chat message from {data.get('character_name', 'unknown')}") - continue - # --- Full inventory message: store complete inventory snapshot --- - if msg_type == "full_inventory": - payload = data.copy() - payload.pop("type", None) - try: - inventory_msg = FullInventoryMessage.parse_obj(payload) - await _store_inventory(inventory_msg) - logger.info(f"Stored inventory for {inventory_msg.character_name}: {inventory_msg.item_count} items") - except Exception as e: - logger.error(f"Failed to process inventory for {data.get('character_name', 'unknown')}: {e}", exc_info=True) - continue - # --- Vitals message: store character health/stamina/mana and broadcast --- - if msg_type == "vitals": - payload = data.copy() - payload.pop("type", None) - try: - vitals_msg = VitalsMessage.parse_obj(payload) - live_vitals[vitals_msg.character_name] = vitals_msg.dict() - await _broadcast_to_browser_clients(data) - logger.debug(f"Updated vitals for {vitals_msg.character_name}: {vitals_msg.health_percentage}% HP, {vitals_msg.stamina_percentage}% Stam, {vitals_msg.mana_percentage}% Mana") - except Exception as e: - logger.error(f"Failed to process vitals for {data.get('character_name', 'unknown')}: {e}", exc_info=True) - continue - # --- Quest message: update cache and broadcast (no database storage) --- - if msg_type == "quest": - character_name = data.get("character_name") - quest_name = data.get("quest_name") - countdown = data.get("countdown") - - if character_name and quest_name and countdown is not None: - # Only track specific quest types - allowed_quests = { - "Stipend Collection Timer", - "Blank Augmentation Gem Pickup Timer", - "Insatiable Eater Jaw" - } - - if quest_name in allowed_quests: - # Update quest cache - if character_name not in _quest_status_cache: - _quest_status_cache[character_name] = {} - _quest_status_cache[character_name][quest_name] = countdown - - # Broadcast to browser clients for real-time updates - await _broadcast_to_browser_clients(data) - logger.debug(f"Updated quest status for {character_name}: {quest_name} = {countdown}") - else: - logger.debug(f"Ignoring non-tracked quest: {quest_name}") - else: - logger.warning(f"Invalid quest message format from {websocket.client}: missing required fields") - continue - # --- Portal message: store in database and broadcast --- - if msg_type == "portal": - character_name = data.get("character_name") - portal_name = data.get("portal_name") - ns = data.get("ns") - ew = data.get("ew") - z = data.get("z") - timestamp_str = data.get("timestamp") - - if all([character_name, portal_name, ns, ew, z, timestamp_str]): - try: - # Parse timestamp - timestamp = datetime.fromisoformat(timestamp_str.replace('Z', '+00:00')) - - # Convert coordinates to floats for database storage - ns = float(ns) - ew = float(ew) - z = float(z) - - # Round coordinates for display (0.1 tolerance to match DB constraint) - ns_rounded = round(ns, 1) - ew_rounded = round(ew, 1) - - # Use PostgreSQL UPSERT to handle race conditions atomically - # This completely eliminates duplicate key errors - result = await database.fetch_one( - """ - INSERT INTO portals (portal_name, ns, ew, z, discovered_at, discovered_by) - VALUES (:portal_name, :ns, :ew, :z, :timestamp, :character_name) - ON CONFLICT (ROUND(ns::numeric, 1), ROUND(ew::numeric, 1)) - DO UPDATE SET - discovered_at = EXCLUDED.discovered_at, - discovered_by = EXCLUDED.discovered_by, - portal_name = EXCLUDED.portal_name - RETURNING (xmax = 0) AS was_inserted - """, - { - "portal_name": portal_name, - "ns": ns, - "ew": ew, - "z": z, - "timestamp": timestamp, - "character_name": character_name - } - ) - - # Log whether this was a new discovery or an update - # xmax = 0 means it was an INSERT (new portal) - # xmax != 0 means it was an UPDATE (existing portal) - if result and result["was_inserted"]: - logger.info(f"New portal discovered: {portal_name} at {ns_rounded}, {ew_rounded} by {character_name}") - else: - logger.debug(f"Portal timestamp updated: {portal_name} at {ns_rounded}, {ew_rounded} by {character_name}") - - # Broadcast to browser clients for map updates - await _broadcast_to_browser_clients(data) - - except Exception as e: - logger.error(f"Failed to process portal discovery for {character_name}: {e}", exc_info=True) - else: - logger.warning(f"Invalid portal message format from {websocket.client}: missing required fields") - continue - # Unknown message types are ignored - if msg_type: - logger.warning(f"Unknown message type '{msg_type}' from {websocket.client}") - finally: - # Track plugin disconnection - _plugin_connections = max(0, _plugin_connections - 1) - - # Clean up any plugin registrations for this socket - to_remove = [n for n, ws in plugin_conns.items() if ws is websocket] - for n in to_remove: - # Use pop() instead of del to avoid KeyError if already removed - plugin_conns.pop(n, None) - - # Also clean up any entries in the kill tracking cache for this session - # Remove entries that might be associated with disconnected clients - stale_keys = [] - for (session_id, char_name), _ in ws_receive_snapshots._last_kills.items(): - if char_name in to_remove: - stale_keys.append((session_id, char_name)) - for key in stale_keys: - ws_receive_snapshots._last_kills.pop(key, None) - - if to_remove: - logger.info(f"Cleaned up plugin connections for characters: {to_remove} from {websocket.client}") - if stale_keys: - logger.debug(f"Cleaned up {len(stale_keys)} kill tracking cache entries") - else: - logger.debug(f"No plugin registrations to clean up for {websocket.client}") - -# In-memory cache of last seen kill counts per (session_id, character_name) -# Used to compute deltas for updating persistent kill statistics efficiently -ws_receive_snapshots._last_kills = {} - -async def cleanup_stale_connections(): - """Periodic cleanup of stale WebSocket connections. - - This function can be called periodically to clean up connections - that may have become stale but weren't properly cleaned up. - """ - # Clean up plugin connections that no longer have valid WebSockets - stale_plugins = [] - for char_name, ws in list(plugin_conns.items()): - try: - # Test if the WebSocket is still alive by checking its state - if ws.client_state.name != 'CONNECTED': - stale_plugins.append(char_name) - except Exception: - # If we can't check the state, consider it stale - stale_plugins.append(char_name) - - for char_name in stale_plugins: - plugin_conns.pop(char_name, None) - logger.info(f"Cleaned up stale plugin connection: {char_name}") - - # Clean up browser connections - stale_browsers = [] - for ws in list(browser_conns): - try: - if ws.client_state.name != 'CONNECTED': - stale_browsers.append(ws) - except Exception: - stale_browsers.append(ws) - - for ws in stale_browsers: - browser_conns.discard(ws) - - if stale_browsers: - logger.info(f"Cleaned up {len(stale_browsers)} stale browser connections") - - logger.debug(f"Connection health check: {len(plugin_conns)} plugins, {len(browser_conns)} browsers") + data = await websocket.receive_json() + snap = TelemetrySnapshot.parse_obj(data) + live_snapshots[snap.character_name] = snap.dict() + await run_in_threadpool(save_snapshot, snap.dict()) + await _broadcast_to_browser_clients(snap.dict()) + except WebSocketDisconnect: + pass @app.websocket("/ws/live") async def ws_live_updates(websocket: WebSocket): - """WebSocket endpoint for browser clients to receive live updates and send commands. - - Manages a set of connected browser clients; listens for incoming command messages - and forwards them to the appropriate plugin client WebSocket. - """ - global _browser_connections - # Add new browser client to the set await websocket.accept() browser_conns.add(websocket) - logger.info(f"Browser WebSocket connected: {websocket.client}") - - # Track browser connection - _browser_connections += 1 - try: while True: - # Receive command messages from browser - try: - data = await websocket.receive_json() - # Debug: log all incoming browser WebSocket messages - logger.debug(f"Browser WebSocket RX from {websocket.client}: {data}") - except WebSocketDisconnect: - logger.info(f"Browser WebSocket disconnected: {websocket.client}") - break - # Determine command envelope format (new or legacy) - if "player_name" in data and "command" in data: - # New format: { player_name, command } - target_name = data["player_name"] - payload = data - elif data.get("type") == "command" and "character_name" in data and "text" in data: - # Legacy format: { type: 'command', character_name, text } - target_name = data.get("character_name") - payload = {"player_name": target_name, "command": data.get("text")} - else: - # Not a recognized command envelope - continue - # Forward command envelope to the appropriate plugin WebSocket - target_ws = plugin_conns.get(target_name) - if target_ws: - try: - await target_ws.send_json(payload) - logger.debug(f"Forwarded command to plugin for {target_name}: {payload}") - except (WebSocketDisconnect, RuntimeError, ConnectionAbortedError) as e: - logger.warning(f"Failed to forward command to {target_name}: {e}") - # Remove stale connection - plugin_conns.pop(target_name, None) - except Exception as e: - logger.error(f"Unexpected error forwarding command to {target_name}: {e}") - # Remove potentially corrupted connection - plugin_conns.pop(target_name, None) - else: - logger.warning(f"No plugin connection found for target character: {target_name}") + await asyncio.sleep(3600) except WebSocketDisconnect: - pass - finally: - # Track browser disconnection - _browser_connections = max(0, _browser_connections - 1) - - browser_conns.discard(websocket) - logger.debug(f"Removed browser WebSocket from connection pool: {websocket.client}") + browser_conns.remove(websocket) -## -------------------- static frontend --------------------------- -## (static mount moved to end of file, below API routes) - -# list routes for convenience -logger.info("๐Ÿ” Registered HTTP API routes:") -for route in app.routes: - if isinstance(route, APIRoute): - # Log the path and allowed methods for each API route - logger.info(f"{route.path} -> {route.methods}") - # Add stats endpoint for per-character metrics -@app.get("/stats/{character_name}") -async def get_stats(character_name: str): - """ - HTTP GET endpoint to retrieve per-character metrics: - - latest_snapshot: most recent telemetry entry for the character - - total_kills: accumulated kills from char_stats - - total_rares: accumulated rares from rare_stats - Returns 404 if character has no recorded telemetry. - """ - try: - # Single optimized query with LEFT JOINs to get all data in one round trip - sql = """ - WITH latest AS ( - SELECT * FROM telemetry_events - WHERE character_name = :cn - ORDER BY timestamp DESC LIMIT 1 - ) - SELECT - l.*, - COALESCE(cs.total_kills, 0) as total_kills, - COALESCE(rs.total_rares, 0) as total_rares - FROM latest l - LEFT JOIN char_stats cs ON l.character_name = cs.character_name - LEFT JOIN rare_stats rs ON l.character_name = rs.character_name - """ - row = await database.fetch_one(sql, {"cn": character_name}) - if not row: - logger.warning(f"No telemetry data found for character: {character_name}") - raise HTTPException(status_code=404, detail="Character not found") - - # Extract latest snapshot data (exclude the added total_kills/total_rares) - snap_dict = {k: v for k, v in dict(row).items() - if k not in ("total_kills", "total_rares")} - - result = { - "character_name": character_name, - "latest_snapshot": snap_dict, - "total_kills": row["total_kills"], - "total_rares": row["total_rares"], - } - logger.debug(f"Retrieved stats for character: {character_name} (optimized query)") - return JSONResponse(content=jsonable_encoder(result)) - except HTTPException: - raise - except Exception as e: - logger.error(f"Failed to get stats for character {character_name}: {e}", exc_info=True) - raise HTTPException(status_code=500, detail="Internal server error") - # -------------------- static frontend --------------------------- -# Custom icon handler that prioritizes clean icons over originals -from fastapi.responses import FileResponse - -@app.get("/icons/{icon_filename}") -async def serve_icon(icon_filename: str): - """Serve icons from static/icons directory""" - - # Serve from static/icons directory - icon_path = Path("static/icons") / icon_filename - if icon_path.exists(): - return FileResponse(icon_path, media_type="image/png") - - # Icon not found - raise HTTPException(status_code=404, detail="Icon not found") - -# -------------------- Inventory Service Proxy --------------------------- - -@app.get("/inv/test") -async def test_inventory_route(): - """Test route to verify inventory proxy is working""" - return {"message": "Inventory proxy route is working"} - -@app.api_route("/inv/{path:path}", methods=["GET", "POST"]) -async def proxy_inventory_service(path: str, request: Request): - """Proxy all inventory service requests""" - try: - inventory_service_url = os.getenv('INVENTORY_SERVICE_URL', 'http://inventory-service:8000') - logger.info(f"Proxying to inventory service: {inventory_service_url}/{path}") - - # Forward the request to inventory service - async with httpx.AsyncClient() as client: - response = await client.request( - method=request.method, - url=f"{inventory_service_url}/{path}", - params=request.query_params, - headers=dict(request.headers), - content=await request.body() - ) - return Response( - content=response.content, - status_code=response.status_code, - headers=dict(response.headers) - ) - except Exception as e: - logger.error(f"Failed to proxy inventory request: {e}") - raise HTTPException(status_code=500, detail="Inventory service unavailable") - -# Icons are now served from static/icons directory -# Serve SPA files (catch-all for frontend routes) -# Mount the single-page application frontend (static assets) at root path app.mount("/", StaticFiles(directory="static", html=True), name="static") + +# list routes for convenience +print("๐Ÿ” Registered routes:") +for route in app.routes: + if isinstance(route, APIRoute): + print(f"{route.path} -> {route.methods}") diff --git a/static/debug.html b/static/debug.html deleted file mode 100644 index 3f6199bc..00000000 --- a/static/debug.html +++ /dev/null @@ -1,654 +0,0 @@ - - - - - Player Debug - Dereth Tracker - - - -
-
-

๐Ÿ” Player Debug Dashboard

-

Real-time tracking of player list changes to debug flapping issues

-
- -
-
Loading player debug data...
-
- - - - - -
-
- - - - \ No newline at end of file diff --git a/static/favicon.ico b/static/favicon.ico deleted file mode 100644 index 3be83f80..00000000 Binary files a/static/favicon.ico and /dev/null differ diff --git a/static/icons/06000133.png b/static/icons/06000133.png deleted file mode 100755 index b24367a1..00000000 Binary files a/static/icons/06000133.png and /dev/null differ diff --git a/static/icons/0600015D.png b/static/icons/0600015D.png deleted file mode 100755 index ccd35e1b..00000000 Binary files a/static/icons/0600015D.png and /dev/null differ diff --git a/static/icons/0600015F.png b/static/icons/0600015F.png deleted file mode 100755 index 967ecb6c..00000000 Binary files a/static/icons/0600015F.png and /dev/null differ diff --git a/static/icons/06000160.png b/static/icons/06000160.png deleted file mode 100755 index 97217067..00000000 Binary files a/static/icons/06000160.png and /dev/null differ diff --git a/static/icons/06000162.png b/static/icons/06000162.png deleted file mode 100755 index f110f9d0..00000000 Binary files a/static/icons/06000162.png and /dev/null differ diff --git a/static/icons/06000163.png b/static/icons/06000163.png deleted file mode 100755 index f8b2d235..00000000 Binary files a/static/icons/06000163.png and /dev/null differ diff --git a/static/icons/06000164.png b/static/icons/06000164.png deleted file mode 100755 index 2db0addd..00000000 Binary files a/static/icons/06000164.png and /dev/null differ diff --git a/static/icons/06000165.png b/static/icons/06000165.png deleted file mode 100755 index dfd98909..00000000 Binary files a/static/icons/06000165.png and /dev/null differ diff --git a/static/icons/06000167.png b/static/icons/06000167.png deleted file mode 100755 index 94bb966f..00000000 Binary files a/static/icons/06000167.png and /dev/null differ diff --git a/static/icons/0600016A.png b/static/icons/0600016A.png deleted file mode 100755 index f709c122..00000000 Binary files a/static/icons/0600016A.png and /dev/null differ diff --git a/static/icons/0600016B.png b/static/icons/0600016B.png deleted file mode 100755 index 1be49b43..00000000 Binary files a/static/icons/0600016B.png and /dev/null differ diff --git a/static/icons/0600016D.png b/static/icons/0600016D.png deleted file mode 100755 index f81c2bd6..00000000 Binary files a/static/icons/0600016D.png and /dev/null differ diff --git a/static/icons/0600016E.png b/static/icons/0600016E.png deleted file mode 100755 index ca328d5d..00000000 Binary files a/static/icons/0600016E.png and /dev/null differ diff --git a/static/icons/0600016F.png b/static/icons/0600016F.png deleted file mode 100755 index b7acd50c..00000000 Binary files a/static/icons/0600016F.png and /dev/null differ diff --git a/static/icons/06000170.png b/static/icons/06000170.png deleted file mode 100755 index dc1c9516..00000000 Binary files a/static/icons/06000170.png and /dev/null differ diff --git a/static/icons/06000173.png b/static/icons/06000173.png deleted file mode 100755 index 4216f380..00000000 Binary files a/static/icons/06000173.png and /dev/null differ diff --git a/static/icons/06000178.png b/static/icons/06000178.png deleted file mode 100755 index a4c665b7..00000000 Binary files a/static/icons/06000178.png and /dev/null differ diff --git a/static/icons/0600017B.png b/static/icons/0600017B.png deleted file mode 100755 index bc7c1efe..00000000 Binary files a/static/icons/0600017B.png and /dev/null differ diff --git a/static/icons/0600017C.png b/static/icons/0600017C.png deleted file mode 100755 index cd607886..00000000 Binary files a/static/icons/0600017C.png and /dev/null differ diff --git a/static/icons/06000261.png b/static/icons/06000261.png deleted file mode 100755 index a8ccd9b8..00000000 Binary files a/static/icons/06000261.png and /dev/null differ diff --git a/static/icons/060002C4.png b/static/icons/060002C4.png deleted file mode 100755 index b8fb21f1..00000000 Binary files a/static/icons/060002C4.png and /dev/null differ diff --git a/static/icons/060002C5.png b/static/icons/060002C5.png deleted file mode 100755 index 6a50bda5..00000000 Binary files a/static/icons/060002C5.png and /dev/null differ diff --git a/static/icons/060002C6.png b/static/icons/060002C6.png deleted file mode 100755 index ef1f5e27..00000000 Binary files a/static/icons/060002C6.png and /dev/null differ diff --git a/static/icons/060002C7.png b/static/icons/060002C7.png deleted file mode 100755 index 39bb1be9..00000000 Binary files a/static/icons/060002C7.png and /dev/null differ diff --git a/static/icons/060002C8.png b/static/icons/060002C8.png deleted file mode 100755 index 407287b7..00000000 Binary files a/static/icons/060002C8.png and /dev/null differ diff --git a/static/icons/060002C9.png b/static/icons/060002C9.png deleted file mode 100755 index de47cea3..00000000 Binary files a/static/icons/060002C9.png and /dev/null differ diff --git a/static/icons/060004C6.png b/static/icons/060004C6.png deleted file mode 100755 index eb60df4d..00000000 Binary files a/static/icons/060004C6.png and /dev/null differ diff --git a/static/icons/060004C8.png b/static/icons/060004C8.png deleted file mode 100755 index ee847572..00000000 Binary files a/static/icons/060004C8.png and /dev/null differ diff --git a/static/icons/060004CA.png b/static/icons/060004CA.png deleted file mode 100755 index 5d09c369..00000000 Binary files a/static/icons/060004CA.png and /dev/null differ diff --git a/static/icons/060004DA.png b/static/icons/060004DA.png deleted file mode 100755 index fa695d20..00000000 Binary files a/static/icons/060004DA.png and /dev/null differ diff --git a/static/icons/060004DB.png b/static/icons/060004DB.png deleted file mode 100755 index 38adb513..00000000 Binary files a/static/icons/060004DB.png and /dev/null differ diff --git a/static/icons/06000F50.png b/static/icons/06000F50.png deleted file mode 100755 index 72f9b800..00000000 Binary files a/static/icons/06000F50.png and /dev/null differ diff --git a/static/icons/06000F52.png b/static/icons/06000F52.png deleted file mode 100755 index 8d0e06ad..00000000 Binary files a/static/icons/06000F52.png and /dev/null differ diff --git a/static/icons/06000F53.png b/static/icons/06000F53.png deleted file mode 100755 index e283c960..00000000 Binary files a/static/icons/06000F53.png and /dev/null differ diff --git a/static/icons/06000F54.png b/static/icons/06000F54.png deleted file mode 100755 index 7a622a72..00000000 Binary files a/static/icons/06000F54.png and /dev/null differ diff --git a/static/icons/06000F5A.png b/static/icons/06000F5A.png deleted file mode 100755 index ebe46e6e..00000000 Binary files a/static/icons/06000F5A.png and /dev/null differ diff --git a/static/icons/06000F5D.png b/static/icons/06000F5D.png deleted file mode 100755 index 6b87d4f9..00000000 Binary files a/static/icons/06000F5D.png and /dev/null differ diff --git a/static/icons/06000F5E.png b/static/icons/06000F5E.png deleted file mode 100755 index e39dd67f..00000000 Binary files a/static/icons/06000F5E.png and /dev/null differ diff --git a/static/icons/06000F66.png b/static/icons/06000F66.png deleted file mode 100755 index 845d7f5f..00000000 Binary files a/static/icons/06000F66.png and /dev/null differ diff --git a/static/icons/06000F68.png b/static/icons/06000F68.png deleted file mode 100755 index 86673e81..00000000 Binary files a/static/icons/06000F68.png and /dev/null differ diff --git a/static/icons/06000F6A.png b/static/icons/06000F6A.png deleted file mode 100755 index 6b87d4f9..00000000 Binary files a/static/icons/06000F6A.png and /dev/null differ diff --git a/static/icons/06000F6B.png b/static/icons/06000F6B.png deleted file mode 100755 index 8d9d8602..00000000 Binary files a/static/icons/06000F6B.png and /dev/null differ diff --git a/static/icons/06000F6C.png b/static/icons/06000F6C.png deleted file mode 100755 index d4214151..00000000 Binary files a/static/icons/06000F6C.png and /dev/null differ diff --git a/static/icons/06000F6E.png b/static/icons/06000F6E.png deleted file mode 100755 index bf2091bb..00000000 Binary files a/static/icons/06000F6E.png and /dev/null differ diff --git a/static/icons/06000F86.png b/static/icons/06000F86.png deleted file mode 100755 index 30054c42..00000000 Binary files a/static/icons/06000F86.png and /dev/null differ diff --git a/static/icons/06000F89.png b/static/icons/06000F89.png deleted file mode 100755 index 1dff6432..00000000 Binary files a/static/icons/06000F89.png and /dev/null differ diff --git a/static/icons/06000F8A.png b/static/icons/06000F8A.png deleted file mode 100755 index 23ff232e..00000000 Binary files a/static/icons/06000F8A.png and /dev/null differ diff --git a/static/icons/06000F90.png b/static/icons/06000F90.png deleted file mode 100755 index 040e83b3..00000000 Binary files a/static/icons/06000F90.png and /dev/null differ diff --git a/static/icons/06000F93.png b/static/icons/06000F93.png deleted file mode 100755 index f98ff3ff..00000000 Binary files a/static/icons/06000F93.png and /dev/null differ diff --git a/static/icons/06000F98.png b/static/icons/06000F98.png deleted file mode 100755 index 7a58af26..00000000 Binary files a/static/icons/06000F98.png and /dev/null differ diff --git a/static/icons/06000FAA.png b/static/icons/06000FAA.png deleted file mode 100755 index b2fa2008..00000000 Binary files a/static/icons/06000FAA.png and /dev/null differ diff --git a/static/icons/06000FAC.png b/static/icons/06000FAC.png deleted file mode 100755 index 0cc35a9a..00000000 Binary files a/static/icons/06000FAC.png and /dev/null differ diff --git a/static/icons/06000FAD.png b/static/icons/06000FAD.png deleted file mode 100755 index 2464a1a8..00000000 Binary files a/static/icons/06000FAD.png and /dev/null differ diff --git a/static/icons/06000FAE.png b/static/icons/06000FAE.png deleted file mode 100755 index a71ce3f4..00000000 Binary files a/static/icons/06000FAE.png and /dev/null differ diff --git a/static/icons/06000FB1.png b/static/icons/06000FB1.png deleted file mode 100755 index 6e318f0f..00000000 Binary files a/static/icons/06000FB1.png and /dev/null differ diff --git a/static/icons/06000FB5.png b/static/icons/06000FB5.png deleted file mode 100755 index 94ef66a6..00000000 Binary files a/static/icons/06000FB5.png and /dev/null differ diff --git a/static/icons/06000FB7.png b/static/icons/06000FB7.png deleted file mode 100755 index af8a8616..00000000 Binary files a/static/icons/06000FB7.png and /dev/null differ diff --git a/static/icons/06000FB8.png b/static/icons/06000FB8.png deleted file mode 100755 index 6cd459e2..00000000 Binary files a/static/icons/06000FB8.png and /dev/null differ diff --git a/static/icons/06000FBB.png b/static/icons/06000FBB.png deleted file mode 100755 index 9caf0cbc..00000000 Binary files a/static/icons/06000FBB.png and /dev/null differ diff --git a/static/icons/06000FBC.png b/static/icons/06000FBC.png deleted file mode 100755 index 2277bc7e..00000000 Binary files a/static/icons/06000FBC.png and /dev/null differ diff --git a/static/icons/06000FBD.png b/static/icons/06000FBD.png deleted file mode 100755 index 6b81290a..00000000 Binary files a/static/icons/06000FBD.png and /dev/null differ diff --git a/static/icons/06000FBE.png b/static/icons/06000FBE.png deleted file mode 100755 index bf6f85a8..00000000 Binary files a/static/icons/06000FBE.png and /dev/null differ diff --git a/static/icons/06000FC2.png b/static/icons/06000FC2.png deleted file mode 100755 index 851bcd47..00000000 Binary files a/static/icons/06000FC2.png and /dev/null differ diff --git a/static/icons/06000FC3.png b/static/icons/06000FC3.png deleted file mode 100755 index d3474a13..00000000 Binary files a/static/icons/06000FC3.png and /dev/null differ diff --git a/static/icons/06000FC4.png b/static/icons/06000FC4.png deleted file mode 100755 index 0667f0ad..00000000 Binary files a/static/icons/06000FC4.png and /dev/null differ diff --git a/static/icons/06000FC6.png b/static/icons/06000FC6.png deleted file mode 100755 index 404fc911..00000000 Binary files a/static/icons/06000FC6.png and /dev/null differ diff --git a/static/icons/06000FC7.png b/static/icons/06000FC7.png deleted file mode 100755 index 3ef25835..00000000 Binary files a/static/icons/06000FC7.png and /dev/null differ diff --git a/static/icons/06000FCA.png b/static/icons/06000FCA.png deleted file mode 100755 index 986f5a3d..00000000 Binary files a/static/icons/06000FCA.png and /dev/null differ diff --git a/static/icons/06000FCB.png b/static/icons/06000FCB.png deleted file mode 100755 index 82fbd607..00000000 Binary files a/static/icons/06000FCB.png and /dev/null differ diff --git a/static/icons/06000FCC.png b/static/icons/06000FCC.png deleted file mode 100755 index e0a57423..00000000 Binary files a/static/icons/06000FCC.png and /dev/null differ diff --git a/static/icons/06000FCD.png b/static/icons/06000FCD.png deleted file mode 100755 index 40e05f1d..00000000 Binary files a/static/icons/06000FCD.png and /dev/null differ diff --git a/static/icons/06000FCE.png b/static/icons/06000FCE.png deleted file mode 100755 index 282c6b78..00000000 Binary files a/static/icons/06000FCE.png and /dev/null differ diff --git a/static/icons/06000FCF.png b/static/icons/06000FCF.png deleted file mode 100755 index 8cc90ecc..00000000 Binary files a/static/icons/06000FCF.png and /dev/null differ diff --git a/static/icons/06000FD3.png b/static/icons/06000FD3.png deleted file mode 100755 index cda04288..00000000 Binary files a/static/icons/06000FD3.png and /dev/null differ diff --git a/static/icons/06000FD5.png b/static/icons/06000FD5.png deleted file mode 100755 index 7baf5b09..00000000 Binary files a/static/icons/06000FD5.png and /dev/null differ diff --git a/static/icons/06000FD6.png b/static/icons/06000FD6.png deleted file mode 100755 index 5b0f7335..00000000 Binary files a/static/icons/06000FD6.png and /dev/null differ diff --git a/static/icons/06000FD7.png b/static/icons/06000FD7.png deleted file mode 100755 index aaa35033..00000000 Binary files a/static/icons/06000FD7.png and /dev/null differ diff --git a/static/icons/06000FD8.png b/static/icons/06000FD8.png deleted file mode 100755 index 50eb36ad..00000000 Binary files a/static/icons/06000FD8.png and /dev/null differ diff --git a/static/icons/06000FD9.png b/static/icons/06000FD9.png deleted file mode 100755 index 13f71ab8..00000000 Binary files a/static/icons/06000FD9.png and /dev/null differ diff --git a/static/icons/06000FDA.png b/static/icons/06000FDA.png deleted file mode 100755 index f78794fd..00000000 Binary files a/static/icons/06000FDA.png and /dev/null differ diff --git a/static/icons/06000FDB.png b/static/icons/06000FDB.png deleted file mode 100755 index fcea2242..00000000 Binary files a/static/icons/06000FDB.png and /dev/null differ diff --git a/static/icons/06000FDC.png b/static/icons/06000FDC.png deleted file mode 100755 index 654e0fc9..00000000 Binary files a/static/icons/06000FDC.png and /dev/null differ diff --git a/static/icons/06000FDD.png b/static/icons/06000FDD.png deleted file mode 100755 index b541439c..00000000 Binary files a/static/icons/06000FDD.png and /dev/null differ diff --git a/static/icons/06000FDE.png b/static/icons/06000FDE.png deleted file mode 100755 index 92e61d62..00000000 Binary files a/static/icons/06000FDE.png and /dev/null differ diff --git a/static/icons/06000FE0.png b/static/icons/06000FE0.png deleted file mode 100755 index 9962b23c..00000000 Binary files a/static/icons/06000FE0.png and /dev/null differ diff --git a/static/icons/06000FE1.png b/static/icons/06000FE1.png deleted file mode 100755 index a4e00bc7..00000000 Binary files a/static/icons/06000FE1.png and /dev/null differ diff --git a/static/icons/06000FE2.png b/static/icons/06000FE2.png deleted file mode 100755 index e2af5d80..00000000 Binary files a/static/icons/06000FE2.png and /dev/null differ diff --git a/static/icons/06000FE4.png b/static/icons/06000FE4.png deleted file mode 100755 index 67df636f..00000000 Binary files a/static/icons/06000FE4.png and /dev/null differ diff --git a/static/icons/06000FE5.png b/static/icons/06000FE5.png deleted file mode 100755 index 97b0767e..00000000 Binary files a/static/icons/06000FE5.png and /dev/null differ diff --git a/static/icons/06000FE6.png b/static/icons/06000FE6.png deleted file mode 100755 index 7a6996a5..00000000 Binary files a/static/icons/06000FE6.png and /dev/null differ diff --git a/static/icons/06000FE7.png b/static/icons/06000FE7.png deleted file mode 100755 index 84a7a62b..00000000 Binary files a/static/icons/06000FE7.png and /dev/null differ diff --git a/static/icons/06000FE8.png b/static/icons/06000FE8.png deleted file mode 100755 index c500844e..00000000 Binary files a/static/icons/06000FE8.png and /dev/null differ diff --git a/static/icons/06000FE9.png b/static/icons/06000FE9.png deleted file mode 100755 index 9f8270d6..00000000 Binary files a/static/icons/06000FE9.png and /dev/null differ diff --git a/static/icons/06000FEA.png b/static/icons/06000FEA.png deleted file mode 100755 index 2cf8ac72..00000000 Binary files a/static/icons/06000FEA.png and /dev/null differ diff --git a/static/icons/06000FEB.png b/static/icons/06000FEB.png deleted file mode 100755 index 7e31ff16..00000000 Binary files a/static/icons/06000FEB.png and /dev/null differ diff --git a/static/icons/06000FEC.png b/static/icons/06000FEC.png deleted file mode 100755 index a62a7ff4..00000000 Binary files a/static/icons/06000FEC.png and /dev/null differ diff --git a/static/icons/06000FED.png b/static/icons/06000FED.png deleted file mode 100755 index 8339745e..00000000 Binary files a/static/icons/06000FED.png and /dev/null differ diff --git a/static/icons/06000FEE.png b/static/icons/06000FEE.png deleted file mode 100755 index c5c7d238..00000000 Binary files a/static/icons/06000FEE.png and /dev/null differ diff --git a/static/icons/06000FEF.png b/static/icons/06000FEF.png deleted file mode 100755 index 8381b92c..00000000 Binary files a/static/icons/06000FEF.png and /dev/null differ diff --git a/static/icons/06000FF0.png b/static/icons/06000FF0.png deleted file mode 100755 index 416daf57..00000000 Binary files a/static/icons/06000FF0.png and /dev/null differ diff --git a/static/icons/06000FF1.png b/static/icons/06000FF1.png deleted file mode 100755 index 1ef3c107..00000000 Binary files a/static/icons/06000FF1.png and /dev/null differ diff --git a/static/icons/06000FF2.png b/static/icons/06000FF2.png deleted file mode 100755 index 54ad1a6f..00000000 Binary files a/static/icons/06000FF2.png and /dev/null differ diff --git a/static/icons/06000FF3.png b/static/icons/06000FF3.png deleted file mode 100755 index b5704ad2..00000000 Binary files a/static/icons/06000FF3.png and /dev/null differ diff --git a/static/icons/06000FF4.png b/static/icons/06000FF4.png deleted file mode 100755 index 6ab52260..00000000 Binary files a/static/icons/06000FF4.png and /dev/null differ diff --git a/static/icons/06000FF5.png b/static/icons/06000FF5.png deleted file mode 100755 index 918484cb..00000000 Binary files a/static/icons/06000FF5.png and /dev/null differ diff --git a/static/icons/06000FFA.png b/static/icons/06000FFA.png deleted file mode 100755 index 2a904305..00000000 Binary files a/static/icons/06000FFA.png and /dev/null differ diff --git a/static/icons/06000FFC.png b/static/icons/06000FFC.png deleted file mode 100755 index 9c435185..00000000 Binary files a/static/icons/06000FFC.png and /dev/null differ diff --git a/static/icons/06001007.png b/static/icons/06001007.png deleted file mode 100755 index de96f323..00000000 Binary files a/static/icons/06001007.png and /dev/null differ diff --git a/static/icons/06001010.png b/static/icons/06001010.png deleted file mode 100755 index 180f2a8c..00000000 Binary files a/static/icons/06001010.png and /dev/null differ diff --git a/static/icons/06001011.png b/static/icons/06001011.png deleted file mode 100755 index 0a124401..00000000 Binary files a/static/icons/06001011.png and /dev/null differ diff --git a/static/icons/06001012.png b/static/icons/06001012.png deleted file mode 100755 index ae3361e2..00000000 Binary files a/static/icons/06001012.png and /dev/null differ diff --git a/static/icons/06001013.png b/static/icons/06001013.png deleted file mode 100755 index 2508c6f1..00000000 Binary files a/static/icons/06001013.png and /dev/null differ diff --git a/static/icons/06001015.png b/static/icons/06001015.png deleted file mode 100755 index 809bb0e4..00000000 Binary files a/static/icons/06001015.png and /dev/null differ diff --git a/static/icons/06001018.png b/static/icons/06001018.png deleted file mode 100755 index 37bd94ee..00000000 Binary files a/static/icons/06001018.png and /dev/null differ diff --git a/static/icons/0600101E.png b/static/icons/0600101E.png deleted file mode 100755 index af7ee547..00000000 Binary files a/static/icons/0600101E.png and /dev/null differ diff --git a/static/icons/0600101F.png b/static/icons/0600101F.png deleted file mode 100755 index f6c4bfc1..00000000 Binary files a/static/icons/0600101F.png and /dev/null differ diff --git a/static/icons/06001020.png b/static/icons/06001020.png deleted file mode 100755 index e878bf5d..00000000 Binary files a/static/icons/06001020.png and /dev/null differ diff --git a/static/icons/06001022.png b/static/icons/06001022.png deleted file mode 100755 index 34c02ef1..00000000 Binary files a/static/icons/06001022.png and /dev/null differ diff --git a/static/icons/06001024.png b/static/icons/06001024.png deleted file mode 100755 index c75c6b1b..00000000 Binary files a/static/icons/06001024.png and /dev/null differ diff --git a/static/icons/06001026.png b/static/icons/06001026.png deleted file mode 100755 index de242f9c..00000000 Binary files a/static/icons/06001026.png and /dev/null differ diff --git a/static/icons/06001027.png b/static/icons/06001027.png deleted file mode 100755 index 91161140..00000000 Binary files a/static/icons/06001027.png and /dev/null differ diff --git a/static/icons/06001028.png b/static/icons/06001028.png deleted file mode 100755 index 8a26f31a..00000000 Binary files a/static/icons/06001028.png and /dev/null differ diff --git a/static/icons/0600102C.png b/static/icons/0600102C.png deleted file mode 100755 index 565d6fb4..00000000 Binary files a/static/icons/0600102C.png and /dev/null differ diff --git a/static/icons/06001030.png b/static/icons/06001030.png deleted file mode 100755 index 603b6507..00000000 Binary files a/static/icons/06001030.png and /dev/null differ diff --git a/static/icons/06001031.png b/static/icons/06001031.png deleted file mode 100755 index 5d9a8168..00000000 Binary files a/static/icons/06001031.png and /dev/null differ diff --git a/static/icons/06001032.png b/static/icons/06001032.png deleted file mode 100755 index 330e05fa..00000000 Binary files a/static/icons/06001032.png and /dev/null differ diff --git a/static/icons/06001033.png b/static/icons/06001033.png deleted file mode 100755 index b193b8ff..00000000 Binary files a/static/icons/06001033.png and /dev/null differ diff --git a/static/icons/06001034.png b/static/icons/06001034.png deleted file mode 100755 index 11167e0a..00000000 Binary files a/static/icons/06001034.png and /dev/null differ diff --git a/static/icons/06001035.png b/static/icons/06001035.png deleted file mode 100755 index d22eda4b..00000000 Binary files a/static/icons/06001035.png and /dev/null differ diff --git a/static/icons/06001036.png b/static/icons/06001036.png deleted file mode 100755 index 0e59168e..00000000 Binary files a/static/icons/06001036.png and /dev/null differ diff --git a/static/icons/06001037.png b/static/icons/06001037.png deleted file mode 100755 index e58a2bb5..00000000 Binary files a/static/icons/06001037.png and /dev/null differ diff --git a/static/icons/06001038.png b/static/icons/06001038.png deleted file mode 100755 index 51f8e816..00000000 Binary files a/static/icons/06001038.png and /dev/null differ diff --git a/static/icons/06001039.png b/static/icons/06001039.png deleted file mode 100755 index be462ba5..00000000 Binary files a/static/icons/06001039.png and /dev/null differ diff --git a/static/icons/0600103A.png b/static/icons/0600103A.png deleted file mode 100755 index 013cb35f..00000000 Binary files a/static/icons/0600103A.png and /dev/null differ diff --git a/static/icons/0600103B.png b/static/icons/0600103B.png deleted file mode 100755 index 79dde46d..00000000 Binary files a/static/icons/0600103B.png and /dev/null differ diff --git a/static/icons/0600103C.png b/static/icons/0600103C.png deleted file mode 100755 index f8d1b31d..00000000 Binary files a/static/icons/0600103C.png and /dev/null differ diff --git a/static/icons/0600103D.png b/static/icons/0600103D.png deleted file mode 100755 index 104afc19..00000000 Binary files a/static/icons/0600103D.png and /dev/null differ diff --git a/static/icons/0600103F.png b/static/icons/0600103F.png deleted file mode 100755 index fa9edc08..00000000 Binary files a/static/icons/0600103F.png and /dev/null differ diff --git a/static/icons/06001040.png b/static/icons/06001040.png deleted file mode 100755 index 277af763..00000000 Binary files a/static/icons/06001040.png and /dev/null differ diff --git a/static/icons/06001041.png b/static/icons/06001041.png deleted file mode 100755 index d34b288b..00000000 Binary files a/static/icons/06001041.png and /dev/null differ diff --git a/static/icons/06001042.png b/static/icons/06001042.png deleted file mode 100755 index c84e7d4c..00000000 Binary files a/static/icons/06001042.png and /dev/null differ diff --git a/static/icons/06001043.png b/static/icons/06001043.png deleted file mode 100755 index 70701a86..00000000 Binary files a/static/icons/06001043.png and /dev/null differ diff --git a/static/icons/06001044.png b/static/icons/06001044.png deleted file mode 100755 index 653e0fab..00000000 Binary files a/static/icons/06001044.png and /dev/null differ diff --git a/static/icons/06001045.png b/static/icons/06001045.png deleted file mode 100755 index 04247860..00000000 Binary files a/static/icons/06001045.png and /dev/null differ diff --git a/static/icons/06001046.png b/static/icons/06001046.png deleted file mode 100755 index e1422299..00000000 Binary files a/static/icons/06001046.png and /dev/null differ diff --git a/static/icons/06001048.png b/static/icons/06001048.png deleted file mode 100755 index daec6b22..00000000 Binary files a/static/icons/06001048.png and /dev/null differ diff --git a/static/icons/06001049.png b/static/icons/06001049.png deleted file mode 100755 index 86990a3f..00000000 Binary files a/static/icons/06001049.png and /dev/null differ diff --git a/static/icons/0600104A.png b/static/icons/0600104A.png deleted file mode 100755 index 2c6a1c07..00000000 Binary files a/static/icons/0600104A.png and /dev/null differ diff --git a/static/icons/0600104C.png b/static/icons/0600104C.png deleted file mode 100755 index fa6174eb..00000000 Binary files a/static/icons/0600104C.png and /dev/null differ diff --git a/static/icons/0600104D.png b/static/icons/0600104D.png deleted file mode 100755 index 5a1f8732..00000000 Binary files a/static/icons/0600104D.png and /dev/null differ diff --git a/static/icons/0600104E.png b/static/icons/0600104E.png deleted file mode 100755 index 17579bfa..00000000 Binary files a/static/icons/0600104E.png and /dev/null differ diff --git a/static/icons/06001052.png b/static/icons/06001052.png deleted file mode 100755 index 828777a6..00000000 Binary files a/static/icons/06001052.png and /dev/null differ diff --git a/static/icons/06001055.png b/static/icons/06001055.png deleted file mode 100755 index ea3f7c46..00000000 Binary files a/static/icons/06001055.png and /dev/null differ diff --git a/static/icons/06001056.png b/static/icons/06001056.png deleted file mode 100755 index 38876142..00000000 Binary files a/static/icons/06001056.png and /dev/null differ diff --git a/static/icons/0600105A.png b/static/icons/0600105A.png deleted file mode 100755 index eb8d466c..00000000 Binary files a/static/icons/0600105A.png and /dev/null differ diff --git a/static/icons/0600105B.png b/static/icons/0600105B.png deleted file mode 100755 index 98273e63..00000000 Binary files a/static/icons/0600105B.png and /dev/null differ diff --git a/static/icons/0600105C.png b/static/icons/0600105C.png deleted file mode 100755 index e43c73b0..00000000 Binary files a/static/icons/0600105C.png and /dev/null differ diff --git a/static/icons/0600105D.png b/static/icons/0600105D.png deleted file mode 100755 index 4e4783b1..00000000 Binary files a/static/icons/0600105D.png and /dev/null differ diff --git a/static/icons/0600105E.png b/static/icons/0600105E.png deleted file mode 100755 index 87985572..00000000 Binary files a/static/icons/0600105E.png and /dev/null differ diff --git a/static/icons/0600105F.png b/static/icons/0600105F.png deleted file mode 100755 index 0fd5d644..00000000 Binary files a/static/icons/0600105F.png and /dev/null differ diff --git a/static/icons/06001061.png b/static/icons/06001061.png deleted file mode 100755 index 4536f9a5..00000000 Binary files a/static/icons/06001061.png and /dev/null differ diff --git a/static/icons/06001063.png b/static/icons/06001063.png deleted file mode 100755 index 8adb1208..00000000 Binary files a/static/icons/06001063.png and /dev/null differ diff --git a/static/icons/06001065.png b/static/icons/06001065.png deleted file mode 100755 index 08384a2c..00000000 Binary files a/static/icons/06001065.png and /dev/null differ diff --git a/static/icons/06001066.png b/static/icons/06001066.png deleted file mode 100755 index 34fbca80..00000000 Binary files a/static/icons/06001066.png and /dev/null differ diff --git a/static/icons/0600106B.png b/static/icons/0600106B.png deleted file mode 100755 index e48cc293..00000000 Binary files a/static/icons/0600106B.png and /dev/null differ diff --git a/static/icons/0600106C.png b/static/icons/0600106C.png deleted file mode 100755 index 8530f13f..00000000 Binary files a/static/icons/0600106C.png and /dev/null differ diff --git a/static/icons/0600106E.png b/static/icons/0600106E.png deleted file mode 100755 index eb4c4273..00000000 Binary files a/static/icons/0600106E.png and /dev/null differ diff --git a/static/icons/0600106F.png b/static/icons/0600106F.png deleted file mode 100755 index b01435f8..00000000 Binary files a/static/icons/0600106F.png and /dev/null differ diff --git a/static/icons/06001070.png b/static/icons/06001070.png deleted file mode 100755 index 879b5860..00000000 Binary files a/static/icons/06001070.png and /dev/null differ diff --git a/static/icons/06001071.png b/static/icons/06001071.png deleted file mode 100755 index 9cfd7a1b..00000000 Binary files a/static/icons/06001071.png and /dev/null differ diff --git a/static/icons/06001072.png b/static/icons/06001072.png deleted file mode 100755 index 623c3ef7..00000000 Binary files a/static/icons/06001072.png and /dev/null differ diff --git a/static/icons/06001073.png b/static/icons/06001073.png deleted file mode 100755 index 30a8c9fd..00000000 Binary files a/static/icons/06001073.png and /dev/null differ diff --git a/static/icons/06001074.png b/static/icons/06001074.png deleted file mode 100755 index 46e85c16..00000000 Binary files a/static/icons/06001074.png and /dev/null differ diff --git a/static/icons/06001075.png b/static/icons/06001075.png deleted file mode 100755 index 6d84765f..00000000 Binary files a/static/icons/06001075.png and /dev/null differ diff --git a/static/icons/0600107E.png b/static/icons/0600107E.png deleted file mode 100755 index a112af19..00000000 Binary files a/static/icons/0600107E.png and /dev/null differ diff --git a/static/icons/06001080.png b/static/icons/06001080.png deleted file mode 100755 index 7c9f08c0..00000000 Binary files a/static/icons/06001080.png and /dev/null differ diff --git a/static/icons/0600109A.png b/static/icons/0600109A.png deleted file mode 100755 index fcc7ffec..00000000 Binary files a/static/icons/0600109A.png and /dev/null differ diff --git a/static/icons/0600109D.png b/static/icons/0600109D.png deleted file mode 100755 index b82c7895..00000000 Binary files a/static/icons/0600109D.png and /dev/null differ diff --git a/static/icons/0600109E.png b/static/icons/0600109E.png deleted file mode 100755 index b8f18e1f..00000000 Binary files a/static/icons/0600109E.png and /dev/null differ diff --git a/static/icons/0600109F.png b/static/icons/0600109F.png deleted file mode 100755 index 74dfa29f..00000000 Binary files a/static/icons/0600109F.png and /dev/null differ diff --git a/static/icons/060010A0.png b/static/icons/060010A0.png deleted file mode 100755 index 24f8546d..00000000 Binary files a/static/icons/060010A0.png and /dev/null differ diff --git a/static/icons/060010A1.png b/static/icons/060010A1.png deleted file mode 100755 index e22eaa1e..00000000 Binary files a/static/icons/060010A1.png and /dev/null differ diff --git a/static/icons/060010A2.png b/static/icons/060010A2.png deleted file mode 100755 index 45a2dffd..00000000 Binary files a/static/icons/060010A2.png and /dev/null differ diff --git a/static/icons/060010A3.png b/static/icons/060010A3.png deleted file mode 100755 index 30cb8a3b..00000000 Binary files a/static/icons/060010A3.png and /dev/null differ diff --git a/static/icons/060010A4.png b/static/icons/060010A4.png deleted file mode 100755 index a246490f..00000000 Binary files a/static/icons/060010A4.png and /dev/null differ diff --git a/static/icons/060010A5.png b/static/icons/060010A5.png deleted file mode 100755 index e00c218b..00000000 Binary files a/static/icons/060010A5.png and /dev/null differ diff --git a/static/icons/060010A6.png b/static/icons/060010A6.png deleted file mode 100755 index 6fd497a0..00000000 Binary files a/static/icons/060010A6.png and /dev/null differ diff --git a/static/icons/060010B2.png b/static/icons/060010B2.png deleted file mode 100755 index 73cfc479..00000000 Binary files a/static/icons/060010B2.png and /dev/null differ diff --git a/static/icons/060010B5.png b/static/icons/060010B5.png deleted file mode 100755 index d7ccd5fe..00000000 Binary files a/static/icons/060010B5.png and /dev/null differ diff --git a/static/icons/060010BB.png b/static/icons/060010BB.png deleted file mode 100755 index 4b194e0c..00000000 Binary files a/static/icons/060010BB.png and /dev/null differ diff --git a/static/icons/060010BC.png b/static/icons/060010BC.png deleted file mode 100755 index c3644009..00000000 Binary files a/static/icons/060010BC.png and /dev/null differ diff --git a/static/icons/060010BD.png b/static/icons/060010BD.png deleted file mode 100755 index 386c0069..00000000 Binary files a/static/icons/060010BD.png and /dev/null differ diff --git a/static/icons/060010BE.png b/static/icons/060010BE.png deleted file mode 100755 index bad04201..00000000 Binary files a/static/icons/060010BE.png and /dev/null differ diff --git a/static/icons/060010BF.png b/static/icons/060010BF.png deleted file mode 100755 index 341974a3..00000000 Binary files a/static/icons/060010BF.png and /dev/null differ diff --git a/static/icons/060010C0.png b/static/icons/060010C0.png deleted file mode 100755 index 8574f12f..00000000 Binary files a/static/icons/060010C0.png and /dev/null differ diff --git a/static/icons/060010C3.png b/static/icons/060010C3.png deleted file mode 100755 index 4bea26c9..00000000 Binary files a/static/icons/060010C3.png and /dev/null differ diff --git a/static/icons/060010C4.png b/static/icons/060010C4.png deleted file mode 100755 index 0e5c3f61..00000000 Binary files a/static/icons/060010C4.png and /dev/null differ diff --git a/static/icons/060010C5.png b/static/icons/060010C5.png deleted file mode 100755 index 1eadc08c..00000000 Binary files a/static/icons/060010C5.png and /dev/null differ diff --git a/static/icons/060010C6.png b/static/icons/060010C6.png deleted file mode 100755 index 5ab78b00..00000000 Binary files a/static/icons/060010C6.png and /dev/null differ diff --git a/static/icons/060010C7.png b/static/icons/060010C7.png deleted file mode 100755 index 6d65dea5..00000000 Binary files a/static/icons/060010C7.png and /dev/null differ diff --git a/static/icons/060010C8.png b/static/icons/060010C8.png deleted file mode 100755 index 107e7472..00000000 Binary files a/static/icons/060010C8.png and /dev/null differ diff --git a/static/icons/060010C9.png b/static/icons/060010C9.png deleted file mode 100755 index bfdd21f3..00000000 Binary files a/static/icons/060010C9.png and /dev/null differ diff --git a/static/icons/060010CA.png b/static/icons/060010CA.png deleted file mode 100755 index 0fb22cce..00000000 Binary files a/static/icons/060010CA.png and /dev/null differ diff --git a/static/icons/060010CB.png b/static/icons/060010CB.png deleted file mode 100755 index 780455b4..00000000 Binary files a/static/icons/060010CB.png and /dev/null differ diff --git a/static/icons/060010CC.png b/static/icons/060010CC.png deleted file mode 100755 index f24a79a0..00000000 Binary files a/static/icons/060010CC.png and /dev/null differ diff --git a/static/icons/060010CD.png b/static/icons/060010CD.png deleted file mode 100755 index 1bdd2a96..00000000 Binary files a/static/icons/060010CD.png and /dev/null differ diff --git a/static/icons/060010CE.png b/static/icons/060010CE.png deleted file mode 100755 index 416da650..00000000 Binary files a/static/icons/060010CE.png and /dev/null differ diff --git a/static/icons/060010CF.png b/static/icons/060010CF.png deleted file mode 100755 index b751d01c..00000000 Binary files a/static/icons/060010CF.png and /dev/null differ diff --git a/static/icons/060010D0.png b/static/icons/060010D0.png deleted file mode 100755 index aaf0175a..00000000 Binary files a/static/icons/060010D0.png and /dev/null differ diff --git a/static/icons/060010D2.png b/static/icons/060010D2.png deleted file mode 100755 index bb54abe0..00000000 Binary files a/static/icons/060010D2.png and /dev/null differ diff --git a/static/icons/060010D4.png b/static/icons/060010D4.png deleted file mode 100755 index 43c5430e..00000000 Binary files a/static/icons/060010D4.png and /dev/null differ diff --git a/static/icons/060010D5.png b/static/icons/060010D5.png deleted file mode 100755 index f68d04d1..00000000 Binary files a/static/icons/060010D5.png and /dev/null differ diff --git a/static/icons/060010D6.png b/static/icons/060010D6.png deleted file mode 100755 index 9b25840a..00000000 Binary files a/static/icons/060010D6.png and /dev/null differ diff --git a/static/icons/060010D8.png b/static/icons/060010D8.png deleted file mode 100755 index 2adae671..00000000 Binary files a/static/icons/060010D8.png and /dev/null differ diff --git a/static/icons/060010D9.png b/static/icons/060010D9.png deleted file mode 100755 index 35a5183a..00000000 Binary files a/static/icons/060010D9.png and /dev/null differ diff --git a/static/icons/060010DA.png b/static/icons/060010DA.png deleted file mode 100755 index e9697444..00000000 Binary files a/static/icons/060010DA.png and /dev/null differ diff --git a/static/icons/060010DD.png b/static/icons/060010DD.png deleted file mode 100755 index 0c2dd733..00000000 Binary files a/static/icons/060010DD.png and /dev/null differ diff --git a/static/icons/060010DE.png b/static/icons/060010DE.png deleted file mode 100755 index 2f37fdea..00000000 Binary files a/static/icons/060010DE.png and /dev/null differ diff --git a/static/icons/060010E2.png b/static/icons/060010E2.png deleted file mode 100755 index 3e3118bd..00000000 Binary files a/static/icons/060010E2.png and /dev/null differ diff --git a/static/icons/060010E3.png b/static/icons/060010E3.png deleted file mode 100755 index ceb4b73f..00000000 Binary files a/static/icons/060010E3.png and /dev/null differ diff --git a/static/icons/060010E5.png b/static/icons/060010E5.png deleted file mode 100755 index 5004716c..00000000 Binary files a/static/icons/060010E5.png and /dev/null differ diff --git a/static/icons/060010E6.png b/static/icons/060010E6.png deleted file mode 100755 index a5a9fc8d..00000000 Binary files a/static/icons/060010E6.png and /dev/null differ diff --git a/static/icons/060010E7.png b/static/icons/060010E7.png deleted file mode 100755 index 0c503cc5..00000000 Binary files a/static/icons/060010E7.png and /dev/null differ diff --git a/static/icons/060010E8.png b/static/icons/060010E8.png deleted file mode 100755 index 5175b4bd..00000000 Binary files a/static/icons/060010E8.png and /dev/null differ diff --git a/static/icons/060010F9.png b/static/icons/060010F9.png deleted file mode 100755 index 8594d67b..00000000 Binary files a/static/icons/060010F9.png and /dev/null differ diff --git a/static/icons/060010FA.png b/static/icons/060010FA.png deleted file mode 100755 index 6b75a49e..00000000 Binary files a/static/icons/060010FA.png and /dev/null differ diff --git a/static/icons/060010FB.png b/static/icons/060010FB.png deleted file mode 100755 index 4343e508..00000000 Binary files a/static/icons/060010FB.png and /dev/null differ diff --git a/static/icons/060010FC.png b/static/icons/060010FC.png deleted file mode 100755 index 223f4184..00000000 Binary files a/static/icons/060010FC.png and /dev/null differ diff --git a/static/icons/060010FD.png b/static/icons/060010FD.png deleted file mode 100755 index 983aee97..00000000 Binary files a/static/icons/060010FD.png and /dev/null differ diff --git a/static/icons/060010FE.png b/static/icons/060010FE.png deleted file mode 100755 index 74c2e0a4..00000000 Binary files a/static/icons/060010FE.png and /dev/null differ diff --git a/static/icons/060010FF.png b/static/icons/060010FF.png deleted file mode 100755 index 1ec1194f..00000000 Binary files a/static/icons/060010FF.png and /dev/null differ diff --git a/static/icons/06001100.png b/static/icons/06001100.png deleted file mode 100755 index 5503fd92..00000000 Binary files a/static/icons/06001100.png and /dev/null differ diff --git a/static/icons/06001101.png b/static/icons/06001101.png deleted file mode 100755 index bb4784f5..00000000 Binary files a/static/icons/06001101.png and /dev/null differ diff --git a/static/icons/06001102.png b/static/icons/06001102.png deleted file mode 100755 index cdbb04a9..00000000 Binary files a/static/icons/06001102.png and /dev/null differ diff --git a/static/icons/06001103.png b/static/icons/06001103.png deleted file mode 100755 index caecd38a..00000000 Binary files a/static/icons/06001103.png and /dev/null differ diff --git a/static/icons/06001106.png b/static/icons/06001106.png deleted file mode 100755 index bdafd388..00000000 Binary files a/static/icons/06001106.png and /dev/null differ diff --git a/static/icons/0600110C.png b/static/icons/0600110C.png deleted file mode 100755 index 800c95f4..00000000 Binary files a/static/icons/0600110C.png and /dev/null differ diff --git a/static/icons/0600110F.png b/static/icons/0600110F.png deleted file mode 100755 index 5ea9637a..00000000 Binary files a/static/icons/0600110F.png and /dev/null differ diff --git a/static/icons/06001111.png b/static/icons/06001111.png deleted file mode 100755 index 5d3eec45..00000000 Binary files a/static/icons/06001111.png and /dev/null differ diff --git a/static/icons/06001115.png b/static/icons/06001115.png deleted file mode 100755 index 71dd72fb..00000000 Binary files a/static/icons/06001115.png and /dev/null differ diff --git a/static/icons/06001116.png b/static/icons/06001116.png deleted file mode 100755 index 4cf11c89..00000000 Binary files a/static/icons/06001116.png and /dev/null differ diff --git a/static/icons/06001118.png b/static/icons/06001118.png deleted file mode 100755 index 170076b2..00000000 Binary files a/static/icons/06001118.png and /dev/null differ diff --git a/static/icons/06001119.png b/static/icons/06001119.png deleted file mode 100755 index 0c027bf5..00000000 Binary files a/static/icons/06001119.png and /dev/null differ diff --git a/static/icons/0600111B.png b/static/icons/0600111B.png deleted file mode 100755 index 62217547..00000000 Binary files a/static/icons/0600111B.png and /dev/null differ diff --git a/static/icons/0600111C.png b/static/icons/0600111C.png deleted file mode 100755 index 40162016..00000000 Binary files a/static/icons/0600111C.png and /dev/null differ diff --git a/static/icons/0600111E.png b/static/icons/0600111E.png deleted file mode 100755 index 1ceff664..00000000 Binary files a/static/icons/0600111E.png and /dev/null differ diff --git a/static/icons/0600111F.png b/static/icons/0600111F.png deleted file mode 100755 index bd0c1702..00000000 Binary files a/static/icons/0600111F.png and /dev/null differ diff --git a/static/icons/06001121.png b/static/icons/06001121.png deleted file mode 100755 index acbe88f5..00000000 Binary files a/static/icons/06001121.png and /dev/null differ diff --git a/static/icons/06001122.png b/static/icons/06001122.png deleted file mode 100755 index e3f18dba..00000000 Binary files a/static/icons/06001122.png and /dev/null differ diff --git a/static/icons/06001124.png b/static/icons/06001124.png deleted file mode 100755 index 3f825791..00000000 Binary files a/static/icons/06001124.png and /dev/null differ diff --git a/static/icons/06001125.png b/static/icons/06001125.png deleted file mode 100755 index f5632a7a..00000000 Binary files a/static/icons/06001125.png and /dev/null differ diff --git a/static/icons/06001126.png b/static/icons/06001126.png deleted file mode 100755 index 5cc284a7..00000000 Binary files a/static/icons/06001126.png and /dev/null differ diff --git a/static/icons/06001127.png b/static/icons/06001127.png deleted file mode 100755 index 0e12a3f8..00000000 Binary files a/static/icons/06001127.png and /dev/null differ diff --git a/static/icons/06001128.png b/static/icons/06001128.png deleted file mode 100755 index 454fedfe..00000000 Binary files a/static/icons/06001128.png and /dev/null differ diff --git a/static/icons/06001129.png b/static/icons/06001129.png deleted file mode 100755 index 1db9b136..00000000 Binary files a/static/icons/06001129.png and /dev/null differ diff --git a/static/icons/0600112A.png b/static/icons/0600112A.png deleted file mode 100755 index 3c35b052..00000000 Binary files a/static/icons/0600112A.png and /dev/null differ diff --git a/static/icons/0600112B.png b/static/icons/0600112B.png deleted file mode 100755 index f5d4bfd0..00000000 Binary files a/static/icons/0600112B.png and /dev/null differ diff --git a/static/icons/0600112C.png b/static/icons/0600112C.png deleted file mode 100755 index 14c99f1f..00000000 Binary files a/static/icons/0600112C.png and /dev/null differ diff --git a/static/icons/06001131.png b/static/icons/06001131.png deleted file mode 100755 index 691bee88..00000000 Binary files a/static/icons/06001131.png and /dev/null differ diff --git a/static/icons/06001132.png b/static/icons/06001132.png deleted file mode 100755 index 11a78765..00000000 Binary files a/static/icons/06001132.png and /dev/null differ diff --git a/static/icons/06001133.png b/static/icons/06001133.png deleted file mode 100755 index 46fdc81e..00000000 Binary files a/static/icons/06001133.png and /dev/null differ diff --git a/static/icons/06001134.png b/static/icons/06001134.png deleted file mode 100755 index 9805ee9b..00000000 Binary files a/static/icons/06001134.png and /dev/null differ diff --git a/static/icons/06001135.png b/static/icons/06001135.png deleted file mode 100755 index 4c61687b..00000000 Binary files a/static/icons/06001135.png and /dev/null differ diff --git a/static/icons/06001136.png b/static/icons/06001136.png deleted file mode 100755 index 90a233a9..00000000 Binary files a/static/icons/06001136.png and /dev/null differ diff --git a/static/icons/06001137.png b/static/icons/06001137.png deleted file mode 100755 index 6a1fbcc4..00000000 Binary files a/static/icons/06001137.png and /dev/null differ diff --git a/static/icons/06001138.png b/static/icons/06001138.png deleted file mode 100755 index f2ca329f..00000000 Binary files a/static/icons/06001138.png and /dev/null differ diff --git a/static/icons/06001139.png b/static/icons/06001139.png deleted file mode 100755 index 62651880..00000000 Binary files a/static/icons/06001139.png and /dev/null differ diff --git a/static/icons/0600113A.png b/static/icons/0600113A.png deleted file mode 100755 index 80bdb958..00000000 Binary files a/static/icons/0600113A.png and /dev/null differ diff --git a/static/icons/0600113F.png b/static/icons/0600113F.png deleted file mode 100755 index 14a4c036..00000000 Binary files a/static/icons/0600113F.png and /dev/null differ diff --git a/static/icons/06001140.png b/static/icons/06001140.png deleted file mode 100755 index bfdaa599..00000000 Binary files a/static/icons/06001140.png and /dev/null differ diff --git a/static/icons/06001141.png b/static/icons/06001141.png deleted file mode 100755 index d6489e8f..00000000 Binary files a/static/icons/06001141.png and /dev/null differ diff --git a/static/icons/06001142.png b/static/icons/06001142.png deleted file mode 100755 index f3a5526a..00000000 Binary files a/static/icons/06001142.png and /dev/null differ diff --git a/static/icons/06001143.png b/static/icons/06001143.png deleted file mode 100755 index f5e4ed8b..00000000 Binary files a/static/icons/06001143.png and /dev/null differ diff --git a/static/icons/06001144.png b/static/icons/06001144.png deleted file mode 100755 index 6467567f..00000000 Binary files a/static/icons/06001144.png and /dev/null differ diff --git a/static/icons/06001145.png b/static/icons/06001145.png deleted file mode 100755 index f3d37c9e..00000000 Binary files a/static/icons/06001145.png and /dev/null differ diff --git a/static/icons/06001146.png b/static/icons/06001146.png deleted file mode 100755 index ca5bc43d..00000000 Binary files a/static/icons/06001146.png and /dev/null differ diff --git a/static/icons/06001147.png b/static/icons/06001147.png deleted file mode 100755 index f9b92fae..00000000 Binary files a/static/icons/06001147.png and /dev/null differ diff --git a/static/icons/06001148.png b/static/icons/06001148.png deleted file mode 100755 index 191b69a9..00000000 Binary files a/static/icons/06001148.png and /dev/null differ diff --git a/static/icons/06001149.png b/static/icons/06001149.png deleted file mode 100755 index eaafdb27..00000000 Binary files a/static/icons/06001149.png and /dev/null differ diff --git a/static/icons/0600114A.png b/static/icons/0600114A.png deleted file mode 100755 index 88b1e0f9..00000000 Binary files a/static/icons/0600114A.png and /dev/null differ diff --git a/static/icons/0600114C.png b/static/icons/0600114C.png deleted file mode 100755 index ed7fd846..00000000 Binary files a/static/icons/0600114C.png and /dev/null differ diff --git a/static/icons/0600114D.png b/static/icons/0600114D.png deleted file mode 100755 index 80f84968..00000000 Binary files a/static/icons/0600114D.png and /dev/null differ diff --git a/static/icons/06001152.png b/static/icons/06001152.png deleted file mode 100755 index f644fc0e..00000000 Binary files a/static/icons/06001152.png and /dev/null differ diff --git a/static/icons/06001155.png b/static/icons/06001155.png deleted file mode 100755 index da28c3d4..00000000 Binary files a/static/icons/06001155.png and /dev/null differ diff --git a/static/icons/06001157.png b/static/icons/06001157.png deleted file mode 100755 index 06bf62a5..00000000 Binary files a/static/icons/06001157.png and /dev/null differ diff --git a/static/icons/06001159.png b/static/icons/06001159.png deleted file mode 100755 index 89c67f36..00000000 Binary files a/static/icons/06001159.png and /dev/null differ diff --git a/static/icons/0600115A.png b/static/icons/0600115A.png deleted file mode 100755 index b7c62f20..00000000 Binary files a/static/icons/0600115A.png and /dev/null differ diff --git a/static/icons/0600115E.png b/static/icons/0600115E.png deleted file mode 100755 index 400df8a8..00000000 Binary files a/static/icons/0600115E.png and /dev/null differ diff --git a/static/icons/0600116D.png b/static/icons/0600116D.png deleted file mode 100755 index ab31c7b2..00000000 Binary files a/static/icons/0600116D.png and /dev/null differ diff --git a/static/icons/0600116F.png b/static/icons/0600116F.png deleted file mode 100755 index 148fc927..00000000 Binary files a/static/icons/0600116F.png and /dev/null differ diff --git a/static/icons/06001171.png b/static/icons/06001171.png deleted file mode 100755 index c8826b54..00000000 Binary files a/static/icons/06001171.png and /dev/null differ diff --git a/static/icons/06001172.png b/static/icons/06001172.png deleted file mode 100755 index 00494abc..00000000 Binary files a/static/icons/06001172.png and /dev/null differ diff --git a/static/icons/06001176.png b/static/icons/06001176.png deleted file mode 100755 index 8e8a6123..00000000 Binary files a/static/icons/06001176.png and /dev/null differ diff --git a/static/icons/06001185.png b/static/icons/06001185.png deleted file mode 100755 index c97d73fb..00000000 Binary files a/static/icons/06001185.png and /dev/null differ diff --git a/static/icons/06001187.png b/static/icons/06001187.png deleted file mode 100755 index 3a6f702d..00000000 Binary files a/static/icons/06001187.png and /dev/null differ diff --git a/static/icons/06001189.png b/static/icons/06001189.png deleted file mode 100755 index afee9583..00000000 Binary files a/static/icons/06001189.png and /dev/null differ diff --git a/static/icons/0600118A.png b/static/icons/0600118A.png deleted file mode 100755 index 8adde4ef..00000000 Binary files a/static/icons/0600118A.png and /dev/null differ diff --git a/static/icons/0600118B.png b/static/icons/0600118B.png deleted file mode 100755 index 1d43923f..00000000 Binary files a/static/icons/0600118B.png and /dev/null differ diff --git a/static/icons/0600118E.png b/static/icons/0600118E.png deleted file mode 100755 index 70cca047..00000000 Binary files a/static/icons/0600118E.png and /dev/null differ diff --git a/static/icons/060011A5.png b/static/icons/060011A5.png deleted file mode 100755 index 380cd056..00000000 Binary files a/static/icons/060011A5.png and /dev/null differ diff --git a/static/icons/060011A6.png b/static/icons/060011A6.png deleted file mode 100755 index ae8fac94..00000000 Binary files a/static/icons/060011A6.png and /dev/null differ diff --git a/static/icons/060011AB.png b/static/icons/060011AB.png deleted file mode 100755 index cb0e97c4..00000000 Binary files a/static/icons/060011AB.png and /dev/null differ diff --git a/static/icons/060011B9.png b/static/icons/060011B9.png deleted file mode 100755 index f8948a9c..00000000 Binary files a/static/icons/060011B9.png and /dev/null differ diff --git a/static/icons/060011BA.png b/static/icons/060011BA.png deleted file mode 100755 index d5ca556a..00000000 Binary files a/static/icons/060011BA.png and /dev/null differ diff --git a/static/icons/060011BB.png b/static/icons/060011BB.png deleted file mode 100755 index d7ab882a..00000000 Binary files a/static/icons/060011BB.png and /dev/null differ diff --git a/static/icons/060011BC.png b/static/icons/060011BC.png deleted file mode 100755 index 83656e38..00000000 Binary files a/static/icons/060011BC.png and /dev/null differ diff --git a/static/icons/060011BD.png b/static/icons/060011BD.png deleted file mode 100755 index 6cb00fe2..00000000 Binary files a/static/icons/060011BD.png and /dev/null differ diff --git a/static/icons/060011C5.png b/static/icons/060011C5.png deleted file mode 100755 index ca21c619..00000000 Binary files a/static/icons/060011C5.png and /dev/null differ diff --git a/static/icons/060011C6.png b/static/icons/060011C6.png deleted file mode 100755 index be68bc49..00000000 Binary files a/static/icons/060011C6.png and /dev/null differ diff --git a/static/icons/060011CA.png b/static/icons/060011CA.png deleted file mode 100755 index 3a889129..00000000 Binary files a/static/icons/060011CA.png and /dev/null differ diff --git a/static/icons/060011CB.png b/static/icons/060011CB.png deleted file mode 100755 index 5e6127d7..00000000 Binary files a/static/icons/060011CB.png and /dev/null differ diff --git a/static/icons/060011CC.png b/static/icons/060011CC.png deleted file mode 100755 index e909a774..00000000 Binary files a/static/icons/060011CC.png and /dev/null differ diff --git a/static/icons/060011CD.png b/static/icons/060011CD.png deleted file mode 100755 index 87a7f7c3..00000000 Binary files a/static/icons/060011CD.png and /dev/null differ diff --git a/static/icons/060011CE.png b/static/icons/060011CE.png deleted file mode 100755 index f4228ba1..00000000 Binary files a/static/icons/060011CE.png and /dev/null differ diff --git a/static/icons/060011CF.png b/static/icons/060011CF.png deleted file mode 100755 index fe458485..00000000 Binary files a/static/icons/060011CF.png and /dev/null differ diff --git a/static/icons/060011D0.png b/static/icons/060011D0.png deleted file mode 100755 index 811ad6d7..00000000 Binary files a/static/icons/060011D0.png and /dev/null differ diff --git a/static/icons/060011D1.png b/static/icons/060011D1.png deleted file mode 100755 index 7982bf95..00000000 Binary files a/static/icons/060011D1.png and /dev/null differ diff --git a/static/icons/060011D2.png b/static/icons/060011D2.png deleted file mode 100755 index 5bb6d6ec..00000000 Binary files a/static/icons/060011D2.png and /dev/null differ diff --git a/static/icons/060011D3.png b/static/icons/060011D3.png deleted file mode 100755 index 924d0129..00000000 Binary files a/static/icons/060011D3.png and /dev/null differ diff --git a/static/icons/060011D4.png b/static/icons/060011D4.png deleted file mode 100755 index 4fc9fa7d..00000000 Binary files a/static/icons/060011D4.png and /dev/null differ diff --git a/static/icons/060011D5.png b/static/icons/060011D5.png deleted file mode 100755 index fccc0a07..00000000 Binary files a/static/icons/060011D5.png and /dev/null differ diff --git a/static/icons/060011F3.png b/static/icons/060011F3.png deleted file mode 100755 index 162eb743..00000000 Binary files a/static/icons/060011F3.png and /dev/null differ diff --git a/static/icons/060011F4.png b/static/icons/060011F4.png deleted file mode 100755 index 1240cf15..00000000 Binary files a/static/icons/060011F4.png and /dev/null differ diff --git a/static/icons/060011F7.png b/static/icons/060011F7.png deleted file mode 100755 index 9539c723..00000000 Binary files a/static/icons/060011F7.png and /dev/null differ diff --git a/static/icons/060011F8.png b/static/icons/060011F8.png deleted file mode 100755 index 41f2bead..00000000 Binary files a/static/icons/060011F8.png and /dev/null differ diff --git a/static/icons/060011F9.png b/static/icons/060011F9.png deleted file mode 100755 index ea42fbd6..00000000 Binary files a/static/icons/060011F9.png and /dev/null differ diff --git a/static/icons/060011FA.png b/static/icons/060011FA.png deleted file mode 100755 index 86a70e90..00000000 Binary files a/static/icons/060011FA.png and /dev/null differ diff --git a/static/icons/060011FB.png b/static/icons/060011FB.png deleted file mode 100755 index c8440a2d..00000000 Binary files a/static/icons/060011FB.png and /dev/null differ diff --git a/static/icons/06001200.png b/static/icons/06001200.png deleted file mode 100755 index 180b8ef2..00000000 Binary files a/static/icons/06001200.png and /dev/null differ diff --git a/static/icons/0600120E.png b/static/icons/0600120E.png deleted file mode 100755 index f6ad9c2b..00000000 Binary files a/static/icons/0600120E.png and /dev/null differ diff --git a/static/icons/0600120F.png b/static/icons/0600120F.png deleted file mode 100755 index be5bda63..00000000 Binary files a/static/icons/0600120F.png and /dev/null differ diff --git a/static/icons/0600121A.png b/static/icons/0600121A.png deleted file mode 100755 index df6ece3e..00000000 Binary files a/static/icons/0600121A.png and /dev/null differ diff --git a/static/icons/0600121B.png b/static/icons/0600121B.png deleted file mode 100755 index aa378941..00000000 Binary files a/static/icons/0600121B.png and /dev/null differ diff --git a/static/icons/0600121C.png b/static/icons/0600121C.png deleted file mode 100755 index 36d9e775..00000000 Binary files a/static/icons/0600121C.png and /dev/null differ diff --git a/static/icons/0600121D.png b/static/icons/0600121D.png deleted file mode 100755 index 6e925b35..00000000 Binary files a/static/icons/0600121D.png and /dev/null differ diff --git a/static/icons/0600121E.png b/static/icons/0600121E.png deleted file mode 100755 index 480db673..00000000 Binary files a/static/icons/0600121E.png and /dev/null differ diff --git a/static/icons/0600121F.png b/static/icons/0600121F.png deleted file mode 100755 index d5c3a849..00000000 Binary files a/static/icons/0600121F.png and /dev/null differ diff --git a/static/icons/06001220.png b/static/icons/06001220.png deleted file mode 100755 index 85786fc4..00000000 Binary files a/static/icons/06001220.png and /dev/null differ diff --git a/static/icons/06001221.png b/static/icons/06001221.png deleted file mode 100755 index d11791a6..00000000 Binary files a/static/icons/06001221.png and /dev/null differ diff --git a/static/icons/06001222.png b/static/icons/06001222.png deleted file mode 100755 index b93e1ff7..00000000 Binary files a/static/icons/06001222.png and /dev/null differ diff --git a/static/icons/06001223.png b/static/icons/06001223.png deleted file mode 100755 index 782d8b57..00000000 Binary files a/static/icons/06001223.png and /dev/null differ diff --git a/static/icons/06001224.png b/static/icons/06001224.png deleted file mode 100755 index 9bd18fcd..00000000 Binary files a/static/icons/06001224.png and /dev/null differ diff --git a/static/icons/06001226.png b/static/icons/06001226.png deleted file mode 100755 index 4ea80222..00000000 Binary files a/static/icons/06001226.png and /dev/null differ diff --git a/static/icons/06001227.png b/static/icons/06001227.png deleted file mode 100755 index c6d94bdd..00000000 Binary files a/static/icons/06001227.png and /dev/null differ diff --git a/static/icons/06001228.png b/static/icons/06001228.png deleted file mode 100755 index d5198b47..00000000 Binary files a/static/icons/06001228.png and /dev/null differ diff --git a/static/icons/0600124C.png b/static/icons/0600124C.png deleted file mode 100755 index fcad2b66..00000000 Binary files a/static/icons/0600124C.png and /dev/null differ diff --git a/static/icons/0600124D.png b/static/icons/0600124D.png deleted file mode 100755 index ef7ddcb7..00000000 Binary files a/static/icons/0600124D.png and /dev/null differ diff --git a/static/icons/0600124E.png b/static/icons/0600124E.png deleted file mode 100755 index 8a697be0..00000000 Binary files a/static/icons/0600124E.png and /dev/null differ diff --git a/static/icons/06001265.png b/static/icons/06001265.png deleted file mode 100755 index e1c85d10..00000000 Binary files a/static/icons/06001265.png and /dev/null differ diff --git a/static/icons/06001266.png b/static/icons/06001266.png deleted file mode 100755 index 292daeb4..00000000 Binary files a/static/icons/06001266.png and /dev/null differ diff --git a/static/icons/06001267.png b/static/icons/06001267.png deleted file mode 100755 index 6d87a68a..00000000 Binary files a/static/icons/06001267.png and /dev/null differ diff --git a/static/icons/06001268.png b/static/icons/06001268.png deleted file mode 100755 index 4238c1c8..00000000 Binary files a/static/icons/06001268.png and /dev/null differ diff --git a/static/icons/06001269.png b/static/icons/06001269.png deleted file mode 100755 index 57ef88d7..00000000 Binary files a/static/icons/06001269.png and /dev/null differ diff --git a/static/icons/0600126A.png b/static/icons/0600126A.png deleted file mode 100755 index 9bb906b7..00000000 Binary files a/static/icons/0600126A.png and /dev/null differ diff --git a/static/icons/0600126B.png b/static/icons/0600126B.png deleted file mode 100755 index e15a5d1f..00000000 Binary files a/static/icons/0600126B.png and /dev/null differ diff --git a/static/icons/0600126C.png b/static/icons/0600126C.png deleted file mode 100755 index 3da68ac4..00000000 Binary files a/static/icons/0600126C.png and /dev/null differ diff --git a/static/icons/0600126D.png b/static/icons/0600126D.png deleted file mode 100755 index ba77ec57..00000000 Binary files a/static/icons/0600126D.png and /dev/null differ diff --git a/static/icons/0600126E.png b/static/icons/0600126E.png deleted file mode 100755 index 180be394..00000000 Binary files a/static/icons/0600126E.png and /dev/null differ diff --git a/static/icons/0600126F.png b/static/icons/0600126F.png deleted file mode 100755 index f5191fc1..00000000 Binary files a/static/icons/0600126F.png and /dev/null differ diff --git a/static/icons/06001270.png b/static/icons/06001270.png deleted file mode 100755 index 6c679a00..00000000 Binary files a/static/icons/06001270.png and /dev/null differ diff --git a/static/icons/06001271.png b/static/icons/06001271.png deleted file mode 100755 index fd35200b..00000000 Binary files a/static/icons/06001271.png and /dev/null differ diff --git a/static/icons/06001272.png b/static/icons/06001272.png deleted file mode 100755 index 1954f9b6..00000000 Binary files a/static/icons/06001272.png and /dev/null differ diff --git a/static/icons/06001273.png b/static/icons/06001273.png deleted file mode 100755 index 98b64d17..00000000 Binary files a/static/icons/06001273.png and /dev/null differ diff --git a/static/icons/06001274.png b/static/icons/06001274.png deleted file mode 100755 index 905a1614..00000000 Binary files a/static/icons/06001274.png and /dev/null differ diff --git a/static/icons/06001275.png b/static/icons/06001275.png deleted file mode 100755 index bc442c9d..00000000 Binary files a/static/icons/06001275.png and /dev/null differ diff --git a/static/icons/06001276.png b/static/icons/06001276.png deleted file mode 100755 index 84b9f390..00000000 Binary files a/static/icons/06001276.png and /dev/null differ diff --git a/static/icons/06001279.png b/static/icons/06001279.png deleted file mode 100755 index 69390511..00000000 Binary files a/static/icons/06001279.png and /dev/null differ diff --git a/static/icons/0600127A.png b/static/icons/0600127A.png deleted file mode 100755 index ebdda03c..00000000 Binary files a/static/icons/0600127A.png and /dev/null differ diff --git a/static/icons/0600127D.png b/static/icons/0600127D.png deleted file mode 100755 index a218bf2f..00000000 Binary files a/static/icons/0600127D.png and /dev/null differ diff --git a/static/icons/0600127E.png b/static/icons/0600127E.png deleted file mode 100755 index 8bdd6bdf..00000000 Binary files a/static/icons/0600127E.png and /dev/null differ diff --git a/static/icons/06001282.png b/static/icons/06001282.png deleted file mode 100755 index 2e5d808a..00000000 Binary files a/static/icons/06001282.png and /dev/null differ diff --git a/static/icons/06001283.png b/static/icons/06001283.png deleted file mode 100755 index 6055a7f4..00000000 Binary files a/static/icons/06001283.png and /dev/null differ diff --git a/static/icons/06001285.png b/static/icons/06001285.png deleted file mode 100755 index 3c5a642b..00000000 Binary files a/static/icons/06001285.png and /dev/null differ diff --git a/static/icons/06001286.png b/static/icons/06001286.png deleted file mode 100755 index 0a6148d1..00000000 Binary files a/static/icons/06001286.png and /dev/null differ diff --git a/static/icons/0600128A.png b/static/icons/0600128A.png deleted file mode 100755 index 256f5100..00000000 Binary files a/static/icons/0600128A.png and /dev/null differ diff --git a/static/icons/0600129C.png b/static/icons/0600129C.png deleted file mode 100755 index feb5c79b..00000000 Binary files a/static/icons/0600129C.png and /dev/null differ diff --git a/static/icons/0600129D.png b/static/icons/0600129D.png deleted file mode 100755 index feb5c79b..00000000 Binary files a/static/icons/0600129D.png and /dev/null differ diff --git a/static/icons/0600129E.png b/static/icons/0600129E.png deleted file mode 100755 index feb5c79b..00000000 Binary files a/static/icons/0600129E.png and /dev/null differ diff --git a/static/icons/060012A8.png b/static/icons/060012A8.png deleted file mode 100755 index 0fbe5e97..00000000 Binary files a/static/icons/060012A8.png and /dev/null differ diff --git a/static/icons/060012A9.png b/static/icons/060012A9.png deleted file mode 100755 index 95882fe3..00000000 Binary files a/static/icons/060012A9.png and /dev/null differ diff --git a/static/icons/060012AA.png b/static/icons/060012AA.png deleted file mode 100755 index 3a2136b1..00000000 Binary files a/static/icons/060012AA.png and /dev/null differ diff --git a/static/icons/060012B1.png b/static/icons/060012B1.png deleted file mode 100755 index d2a5a5b5..00000000 Binary files a/static/icons/060012B1.png and /dev/null differ diff --git a/static/icons/060012B2.png b/static/icons/060012B2.png deleted file mode 100755 index 6d349877..00000000 Binary files a/static/icons/060012B2.png and /dev/null differ diff --git a/static/icons/060012B3.png b/static/icons/060012B3.png deleted file mode 100755 index e3be88d6..00000000 Binary files a/static/icons/060012B3.png and /dev/null differ diff --git a/static/icons/060012B4.png b/static/icons/060012B4.png deleted file mode 100755 index a43d47f8..00000000 Binary files a/static/icons/060012B4.png and /dev/null differ diff --git a/static/icons/060012B8.png b/static/icons/060012B8.png deleted file mode 100755 index b5ee48a6..00000000 Binary files a/static/icons/060012B8.png and /dev/null differ diff --git a/static/icons/060012B9.png b/static/icons/060012B9.png deleted file mode 100755 index 4b49b26b..00000000 Binary files a/static/icons/060012B9.png and /dev/null differ diff --git a/static/icons/060012BA.png b/static/icons/060012BA.png deleted file mode 100755 index 062400f5..00000000 Binary files a/static/icons/060012BA.png and /dev/null differ diff --git a/static/icons/060012BB.png b/static/icons/060012BB.png deleted file mode 100755 index 8e7a7d38..00000000 Binary files a/static/icons/060012BB.png and /dev/null differ diff --git a/static/icons/060012BC.png b/static/icons/060012BC.png deleted file mode 100755 index 3839e1f9..00000000 Binary files a/static/icons/060012BC.png and /dev/null differ diff --git a/static/icons/060012BD.png b/static/icons/060012BD.png deleted file mode 100755 index 7f9a18e5..00000000 Binary files a/static/icons/060012BD.png and /dev/null differ diff --git a/static/icons/060012C3.png b/static/icons/060012C3.png deleted file mode 100755 index 41f4fb26..00000000 Binary files a/static/icons/060012C3.png and /dev/null differ diff --git a/static/icons/060012C4.png b/static/icons/060012C4.png deleted file mode 100755 index 3660b9dd..00000000 Binary files a/static/icons/060012C4.png and /dev/null differ diff --git a/static/icons/060012C5.png b/static/icons/060012C5.png deleted file mode 100755 index 3bfe7bd6..00000000 Binary files a/static/icons/060012C5.png and /dev/null differ diff --git a/static/icons/060012C6.png b/static/icons/060012C6.png deleted file mode 100755 index d3fa3dd3..00000000 Binary files a/static/icons/060012C6.png and /dev/null differ diff --git a/static/icons/060012C7.png b/static/icons/060012C7.png deleted file mode 100755 index 8f4fc5a7..00000000 Binary files a/static/icons/060012C7.png and /dev/null differ diff --git a/static/icons/060012C8.png b/static/icons/060012C8.png deleted file mode 100755 index 1e97022d..00000000 Binary files a/static/icons/060012C8.png and /dev/null differ diff --git a/static/icons/060012C9.png b/static/icons/060012C9.png deleted file mode 100755 index 16c55659..00000000 Binary files a/static/icons/060012C9.png and /dev/null differ diff --git a/static/icons/060012CA.png b/static/icons/060012CA.png deleted file mode 100755 index 1670915b..00000000 Binary files a/static/icons/060012CA.png and /dev/null differ diff --git a/static/icons/060012CB.png b/static/icons/060012CB.png deleted file mode 100755 index 74e7997f..00000000 Binary files a/static/icons/060012CB.png and /dev/null differ diff --git a/static/icons/060012CD.png b/static/icons/060012CD.png deleted file mode 100755 index 70f5b43f..00000000 Binary files a/static/icons/060012CD.png and /dev/null differ diff --git a/static/icons/060012CE.png b/static/icons/060012CE.png deleted file mode 100755 index 0405e9fb..00000000 Binary files a/static/icons/060012CE.png and /dev/null differ diff --git a/static/icons/060012CF.png b/static/icons/060012CF.png deleted file mode 100755 index ea899daa..00000000 Binary files a/static/icons/060012CF.png and /dev/null differ diff --git a/static/icons/060012D0.png b/static/icons/060012D0.png deleted file mode 100755 index 2431ebf1..00000000 Binary files a/static/icons/060012D0.png and /dev/null differ diff --git a/static/icons/060012D1.png b/static/icons/060012D1.png deleted file mode 100755 index 5ed1fc37..00000000 Binary files a/static/icons/060012D1.png and /dev/null differ diff --git a/static/icons/060012D2.png b/static/icons/060012D2.png deleted file mode 100755 index 1329abd6..00000000 Binary files a/static/icons/060012D2.png and /dev/null differ diff --git a/static/icons/060012D3.png b/static/icons/060012D3.png deleted file mode 100755 index e5b42f0c..00000000 Binary files a/static/icons/060012D3.png and /dev/null differ diff --git a/static/icons/060012D4.png b/static/icons/060012D4.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060012D4.png and /dev/null differ diff --git a/static/icons/060012D5.png b/static/icons/060012D5.png deleted file mode 100755 index 7fa5c418..00000000 Binary files a/static/icons/060012D5.png and /dev/null differ diff --git a/static/icons/060012D7.png b/static/icons/060012D7.png deleted file mode 100755 index 615b557f..00000000 Binary files a/static/icons/060012D7.png and /dev/null differ diff --git a/static/icons/060012D8.png b/static/icons/060012D8.png deleted file mode 100755 index d1241ec9..00000000 Binary files a/static/icons/060012D8.png and /dev/null differ diff --git a/static/icons/060012D9.png b/static/icons/060012D9.png deleted file mode 100755 index 84b143fa..00000000 Binary files a/static/icons/060012D9.png and /dev/null differ diff --git a/static/icons/060012DA.png b/static/icons/060012DA.png deleted file mode 100755 index 3d37f831..00000000 Binary files a/static/icons/060012DA.png and /dev/null differ diff --git a/static/icons/060012DB.png b/static/icons/060012DB.png deleted file mode 100755 index 1fa5b570..00000000 Binary files a/static/icons/060012DB.png and /dev/null differ diff --git a/static/icons/060012DC.png b/static/icons/060012DC.png deleted file mode 100755 index e873e796..00000000 Binary files a/static/icons/060012DC.png and /dev/null differ diff --git a/static/icons/060012DD.png b/static/icons/060012DD.png deleted file mode 100755 index 233a7679..00000000 Binary files a/static/icons/060012DD.png and /dev/null differ diff --git a/static/icons/060012DE.png b/static/icons/060012DE.png deleted file mode 100755 index 5fc45f1c..00000000 Binary files a/static/icons/060012DE.png and /dev/null differ diff --git a/static/icons/060012E0.png b/static/icons/060012E0.png deleted file mode 100755 index 83ddb58e..00000000 Binary files a/static/icons/060012E0.png and /dev/null differ diff --git a/static/icons/060012E1.png b/static/icons/060012E1.png deleted file mode 100755 index 1f35cb10..00000000 Binary files a/static/icons/060012E1.png and /dev/null differ diff --git a/static/icons/060012E3.png b/static/icons/060012E3.png deleted file mode 100755 index ce87c367..00000000 Binary files a/static/icons/060012E3.png and /dev/null differ diff --git a/static/icons/060012EB.png b/static/icons/060012EB.png deleted file mode 100755 index ad82f957..00000000 Binary files a/static/icons/060012EB.png and /dev/null differ diff --git a/static/icons/060012EC.png b/static/icons/060012EC.png deleted file mode 100755 index f562235e..00000000 Binary files a/static/icons/060012EC.png and /dev/null differ diff --git a/static/icons/060012ED.png b/static/icons/060012ED.png deleted file mode 100755 index 6347f4cd..00000000 Binary files a/static/icons/060012ED.png and /dev/null differ diff --git a/static/icons/060012EE.png b/static/icons/060012EE.png deleted file mode 100755 index 10f9d45e..00000000 Binary files a/static/icons/060012EE.png and /dev/null differ diff --git a/static/icons/060012EF.png b/static/icons/060012EF.png deleted file mode 100755 index a08e5812..00000000 Binary files a/static/icons/060012EF.png and /dev/null differ diff --git a/static/icons/060012F0.png b/static/icons/060012F0.png deleted file mode 100755 index 444898a2..00000000 Binary files a/static/icons/060012F0.png and /dev/null differ diff --git a/static/icons/060012F1.png b/static/icons/060012F1.png deleted file mode 100755 index df1f8cc7..00000000 Binary files a/static/icons/060012F1.png and /dev/null differ diff --git a/static/icons/060012F2.png b/static/icons/060012F2.png deleted file mode 100755 index 4b82ed2a..00000000 Binary files a/static/icons/060012F2.png and /dev/null differ diff --git a/static/icons/060012F3.png b/static/icons/060012F3.png deleted file mode 100755 index acf94380..00000000 Binary files a/static/icons/060012F3.png and /dev/null differ diff --git a/static/icons/060012F5.png b/static/icons/060012F5.png deleted file mode 100755 index 2b9b613e..00000000 Binary files a/static/icons/060012F5.png and /dev/null differ diff --git a/static/icons/060012F6.png b/static/icons/060012F6.png deleted file mode 100755 index 9d5e3307..00000000 Binary files a/static/icons/060012F6.png and /dev/null differ diff --git a/static/icons/060012F7.png b/static/icons/060012F7.png deleted file mode 100755 index 351aa5fb..00000000 Binary files a/static/icons/060012F7.png and /dev/null differ diff --git a/static/icons/060012F8.png b/static/icons/060012F8.png deleted file mode 100755 index e963fce4..00000000 Binary files a/static/icons/060012F8.png and /dev/null differ diff --git a/static/icons/060012F9.png b/static/icons/060012F9.png deleted file mode 100755 index 0eea68f9..00000000 Binary files a/static/icons/060012F9.png and /dev/null differ diff --git a/static/icons/060012FB.png b/static/icons/060012FB.png deleted file mode 100755 index e3284dd5..00000000 Binary files a/static/icons/060012FB.png and /dev/null differ diff --git a/static/icons/060012FC.png b/static/icons/060012FC.png deleted file mode 100755 index 407bc1c9..00000000 Binary files a/static/icons/060012FC.png and /dev/null differ diff --git a/static/icons/060012FE.png b/static/icons/060012FE.png deleted file mode 100755 index bc314435..00000000 Binary files a/static/icons/060012FE.png and /dev/null differ diff --git a/static/icons/060012FF.png b/static/icons/060012FF.png deleted file mode 100755 index 66d133b1..00000000 Binary files a/static/icons/060012FF.png and /dev/null differ diff --git a/static/icons/06001300.png b/static/icons/06001300.png deleted file mode 100755 index 41fc6dee..00000000 Binary files a/static/icons/06001300.png and /dev/null differ diff --git a/static/icons/06001301.png b/static/icons/06001301.png deleted file mode 100755 index 944b7414..00000000 Binary files a/static/icons/06001301.png and /dev/null differ diff --git a/static/icons/06001302.png b/static/icons/06001302.png deleted file mode 100755 index deefc5b0..00000000 Binary files a/static/icons/06001302.png and /dev/null differ diff --git a/static/icons/06001304.png b/static/icons/06001304.png deleted file mode 100755 index be271881..00000000 Binary files a/static/icons/06001304.png and /dev/null differ diff --git a/static/icons/06001305.png b/static/icons/06001305.png deleted file mode 100755 index 1b1528aa..00000000 Binary files a/static/icons/06001305.png and /dev/null differ diff --git a/static/icons/06001306.png b/static/icons/06001306.png deleted file mode 100755 index 64912c07..00000000 Binary files a/static/icons/06001306.png and /dev/null differ diff --git a/static/icons/06001307.png b/static/icons/06001307.png deleted file mode 100755 index d935efaf..00000000 Binary files a/static/icons/06001307.png and /dev/null differ diff --git a/static/icons/06001308.png b/static/icons/06001308.png deleted file mode 100755 index 0905f0d5..00000000 Binary files a/static/icons/06001308.png and /dev/null differ diff --git a/static/icons/06001309.png b/static/icons/06001309.png deleted file mode 100755 index 9ec8c909..00000000 Binary files a/static/icons/06001309.png and /dev/null differ diff --git a/static/icons/0600130A.png b/static/icons/0600130A.png deleted file mode 100755 index 07113295..00000000 Binary files a/static/icons/0600130A.png and /dev/null differ diff --git a/static/icons/0600130B.png b/static/icons/0600130B.png deleted file mode 100755 index 937a7460..00000000 Binary files a/static/icons/0600130B.png and /dev/null differ diff --git a/static/icons/0600130C.png b/static/icons/0600130C.png deleted file mode 100755 index f278c797..00000000 Binary files a/static/icons/0600130C.png and /dev/null differ diff --git a/static/icons/0600130D.png b/static/icons/0600130D.png deleted file mode 100755 index be0f70d5..00000000 Binary files a/static/icons/0600130D.png and /dev/null differ diff --git a/static/icons/0600130E.png b/static/icons/0600130E.png deleted file mode 100755 index 0c78f479..00000000 Binary files a/static/icons/0600130E.png and /dev/null differ diff --git a/static/icons/0600130F.png b/static/icons/0600130F.png deleted file mode 100755 index 51186415..00000000 Binary files a/static/icons/0600130F.png and /dev/null differ diff --git a/static/icons/06001310.png b/static/icons/06001310.png deleted file mode 100755 index 9034770b..00000000 Binary files a/static/icons/06001310.png and /dev/null differ diff --git a/static/icons/06001311.png b/static/icons/06001311.png deleted file mode 100755 index 371dfd50..00000000 Binary files a/static/icons/06001311.png and /dev/null differ diff --git a/static/icons/06001312.png b/static/icons/06001312.png deleted file mode 100755 index fc1aa4db..00000000 Binary files a/static/icons/06001312.png and /dev/null differ diff --git a/static/icons/06001315.png b/static/icons/06001315.png deleted file mode 100755 index 6347f4cd..00000000 Binary files a/static/icons/06001315.png and /dev/null differ diff --git a/static/icons/06001316.png b/static/icons/06001316.png deleted file mode 100755 index ec195cbc..00000000 Binary files a/static/icons/06001316.png and /dev/null differ diff --git a/static/icons/06001317.png b/static/icons/06001317.png deleted file mode 100755 index 6d85a27c..00000000 Binary files a/static/icons/06001317.png and /dev/null differ diff --git a/static/icons/06001343.png b/static/icons/06001343.png deleted file mode 100755 index 3b02c55e..00000000 Binary files a/static/icons/06001343.png and /dev/null differ diff --git a/static/icons/06001344.png b/static/icons/06001344.png deleted file mode 100755 index 2b2054fa..00000000 Binary files a/static/icons/06001344.png and /dev/null differ diff --git a/static/icons/0600134A.png b/static/icons/0600134A.png deleted file mode 100755 index 37c7b538..00000000 Binary files a/static/icons/0600134A.png and /dev/null differ diff --git a/static/icons/0600134C.png b/static/icons/0600134C.png deleted file mode 100755 index 41e5e943..00000000 Binary files a/static/icons/0600134C.png and /dev/null differ diff --git a/static/icons/0600134D.png b/static/icons/0600134D.png deleted file mode 100755 index b8c75ac6..00000000 Binary files a/static/icons/0600134D.png and /dev/null differ diff --git a/static/icons/0600134F.png b/static/icons/0600134F.png deleted file mode 100755 index 16c4dbb1..00000000 Binary files a/static/icons/0600134F.png and /dev/null differ diff --git a/static/icons/06001350.png b/static/icons/06001350.png deleted file mode 100755 index da3dcbdb..00000000 Binary files a/static/icons/06001350.png and /dev/null differ diff --git a/static/icons/06001351.png b/static/icons/06001351.png deleted file mode 100755 index 43ca4759..00000000 Binary files a/static/icons/06001351.png and /dev/null differ diff --git a/static/icons/06001352.png b/static/icons/06001352.png deleted file mode 100755 index f6390412..00000000 Binary files a/static/icons/06001352.png and /dev/null differ diff --git a/static/icons/06001353.png b/static/icons/06001353.png deleted file mode 100755 index bda550f0..00000000 Binary files a/static/icons/06001353.png and /dev/null differ diff --git a/static/icons/06001354.png b/static/icons/06001354.png deleted file mode 100755 index cb162d5c..00000000 Binary files a/static/icons/06001354.png and /dev/null differ diff --git a/static/icons/06001355.png b/static/icons/06001355.png deleted file mode 100755 index 8e4053cb..00000000 Binary files a/static/icons/06001355.png and /dev/null differ diff --git a/static/icons/06001356.png b/static/icons/06001356.png deleted file mode 100755 index 4e5914a8..00000000 Binary files a/static/icons/06001356.png and /dev/null differ diff --git a/static/icons/06001357.png b/static/icons/06001357.png deleted file mode 100755 index 8f0268ed..00000000 Binary files a/static/icons/06001357.png and /dev/null differ diff --git a/static/icons/0600135B.png b/static/icons/0600135B.png deleted file mode 100755 index 5587153d..00000000 Binary files a/static/icons/0600135B.png and /dev/null differ diff --git a/static/icons/0600135C.png b/static/icons/0600135C.png deleted file mode 100755 index c31482dd..00000000 Binary files a/static/icons/0600135C.png and /dev/null differ diff --git a/static/icons/06001360.png b/static/icons/06001360.png deleted file mode 100755 index 874897d1..00000000 Binary files a/static/icons/06001360.png and /dev/null differ diff --git a/static/icons/06001361.png b/static/icons/06001361.png deleted file mode 100755 index 40155e64..00000000 Binary files a/static/icons/06001361.png and /dev/null differ diff --git a/static/icons/06001362.png b/static/icons/06001362.png deleted file mode 100755 index e64e79a0..00000000 Binary files a/static/icons/06001362.png and /dev/null differ diff --git a/static/icons/06001363.png b/static/icons/06001363.png deleted file mode 100755 index 5a2baba4..00000000 Binary files a/static/icons/06001363.png and /dev/null differ diff --git a/static/icons/06001364.png b/static/icons/06001364.png deleted file mode 100755 index 19134eb3..00000000 Binary files a/static/icons/06001364.png and /dev/null differ diff --git a/static/icons/06001365.png b/static/icons/06001365.png deleted file mode 100755 index ddb8b37d..00000000 Binary files a/static/icons/06001365.png and /dev/null differ diff --git a/static/icons/06001366.png b/static/icons/06001366.png deleted file mode 100755 index e1c0ea58..00000000 Binary files a/static/icons/06001366.png and /dev/null differ diff --git a/static/icons/06001367.png b/static/icons/06001367.png deleted file mode 100755 index 6f76b985..00000000 Binary files a/static/icons/06001367.png and /dev/null differ diff --git a/static/icons/06001368.png b/static/icons/06001368.png deleted file mode 100755 index 7b36915d..00000000 Binary files a/static/icons/06001368.png and /dev/null differ diff --git a/static/icons/06001369.png b/static/icons/06001369.png deleted file mode 100755 index c30277e7..00000000 Binary files a/static/icons/06001369.png and /dev/null differ diff --git a/static/icons/0600136A.png b/static/icons/0600136A.png deleted file mode 100755 index a96cc478..00000000 Binary files a/static/icons/0600136A.png and /dev/null differ diff --git a/static/icons/0600136B.png b/static/icons/0600136B.png deleted file mode 100755 index 1cf24ff2..00000000 Binary files a/static/icons/0600136B.png and /dev/null differ diff --git a/static/icons/0600136C.png b/static/icons/0600136C.png deleted file mode 100755 index c766d83b..00000000 Binary files a/static/icons/0600136C.png and /dev/null differ diff --git a/static/icons/0600136D.png b/static/icons/0600136D.png deleted file mode 100755 index b4a3759e..00000000 Binary files a/static/icons/0600136D.png and /dev/null differ diff --git a/static/icons/0600136F.png b/static/icons/0600136F.png deleted file mode 100755 index 98086535..00000000 Binary files a/static/icons/0600136F.png and /dev/null differ diff --git a/static/icons/06001370.png b/static/icons/06001370.png deleted file mode 100755 index e96886ba..00000000 Binary files a/static/icons/06001370.png and /dev/null differ diff --git a/static/icons/06001371.png b/static/icons/06001371.png deleted file mode 100755 index 6a765549..00000000 Binary files a/static/icons/06001371.png and /dev/null differ diff --git a/static/icons/06001372.png b/static/icons/06001372.png deleted file mode 100755 index 3776572e..00000000 Binary files a/static/icons/06001372.png and /dev/null differ diff --git a/static/icons/06001373.png b/static/icons/06001373.png deleted file mode 100755 index a111eb7b..00000000 Binary files a/static/icons/06001373.png and /dev/null differ diff --git a/static/icons/06001374.png b/static/icons/06001374.png deleted file mode 100755 index d8fda528..00000000 Binary files a/static/icons/06001374.png and /dev/null differ diff --git a/static/icons/06001375.png b/static/icons/06001375.png deleted file mode 100755 index 5d56d756..00000000 Binary files a/static/icons/06001375.png and /dev/null differ diff --git a/static/icons/06001377.png b/static/icons/06001377.png deleted file mode 100755 index 536b1903..00000000 Binary files a/static/icons/06001377.png and /dev/null differ diff --git a/static/icons/06001378.png b/static/icons/06001378.png deleted file mode 100755 index cf0ff7af..00000000 Binary files a/static/icons/06001378.png and /dev/null differ diff --git a/static/icons/06001379.png b/static/icons/06001379.png deleted file mode 100755 index 0ec4f35e..00000000 Binary files a/static/icons/06001379.png and /dev/null differ diff --git a/static/icons/0600137A.png b/static/icons/0600137A.png deleted file mode 100755 index 941c2996..00000000 Binary files a/static/icons/0600137A.png and /dev/null differ diff --git a/static/icons/0600137B.png b/static/icons/0600137B.png deleted file mode 100755 index b2f888fe..00000000 Binary files a/static/icons/0600137B.png and /dev/null differ diff --git a/static/icons/0600137C.png b/static/icons/0600137C.png deleted file mode 100755 index b3c4093a..00000000 Binary files a/static/icons/0600137C.png and /dev/null differ diff --git a/static/icons/0600137D.png b/static/icons/0600137D.png deleted file mode 100755 index fa5ae558..00000000 Binary files a/static/icons/0600137D.png and /dev/null differ diff --git a/static/icons/0600137E.png b/static/icons/0600137E.png deleted file mode 100755 index c0d1630e..00000000 Binary files a/static/icons/0600137E.png and /dev/null differ diff --git a/static/icons/0600137F.png b/static/icons/0600137F.png deleted file mode 100755 index b9ccad64..00000000 Binary files a/static/icons/0600137F.png and /dev/null differ diff --git a/static/icons/06001380.png b/static/icons/06001380.png deleted file mode 100755 index 33dab3db..00000000 Binary files a/static/icons/06001380.png and /dev/null differ diff --git a/static/icons/06001382.png b/static/icons/06001382.png deleted file mode 100755 index f6a6d642..00000000 Binary files a/static/icons/06001382.png and /dev/null differ diff --git a/static/icons/06001383.png b/static/icons/06001383.png deleted file mode 100755 index 4712c2bd..00000000 Binary files a/static/icons/06001383.png and /dev/null differ diff --git a/static/icons/06001384.png b/static/icons/06001384.png deleted file mode 100755 index d93aecba..00000000 Binary files a/static/icons/06001384.png and /dev/null differ diff --git a/static/icons/06001385.png b/static/icons/06001385.png deleted file mode 100755 index ddc35ba4..00000000 Binary files a/static/icons/06001385.png and /dev/null differ diff --git a/static/icons/06001386.png b/static/icons/06001386.png deleted file mode 100755 index 4d79bb59..00000000 Binary files a/static/icons/06001386.png and /dev/null differ diff --git a/static/icons/06001387.png b/static/icons/06001387.png deleted file mode 100755 index 49e6aae8..00000000 Binary files a/static/icons/06001387.png and /dev/null differ diff --git a/static/icons/06001388.png b/static/icons/06001388.png deleted file mode 100755 index ab94db0a..00000000 Binary files a/static/icons/06001388.png and /dev/null differ diff --git a/static/icons/06001389.png b/static/icons/06001389.png deleted file mode 100755 index fd517f22..00000000 Binary files a/static/icons/06001389.png and /dev/null differ diff --git a/static/icons/0600138A.png b/static/icons/0600138A.png deleted file mode 100755 index c05b4493..00000000 Binary files a/static/icons/0600138A.png and /dev/null differ diff --git a/static/icons/0600138B.png b/static/icons/0600138B.png deleted file mode 100755 index 83a0de09..00000000 Binary files a/static/icons/0600138B.png and /dev/null differ diff --git a/static/icons/0600138C.png b/static/icons/0600138C.png deleted file mode 100755 index f846dcf4..00000000 Binary files a/static/icons/0600138C.png and /dev/null differ diff --git a/static/icons/0600138E.png b/static/icons/0600138E.png deleted file mode 100755 index 32bb3efb..00000000 Binary files a/static/icons/0600138E.png and /dev/null differ diff --git a/static/icons/0600138F.png b/static/icons/0600138F.png deleted file mode 100755 index 276ed5c0..00000000 Binary files a/static/icons/0600138F.png and /dev/null differ diff --git a/static/icons/06001392.png b/static/icons/06001392.png deleted file mode 100755 index 08482221..00000000 Binary files a/static/icons/06001392.png and /dev/null differ diff --git a/static/icons/06001393.png b/static/icons/06001393.png deleted file mode 100755 index 6055a7f4..00000000 Binary files a/static/icons/06001393.png and /dev/null differ diff --git a/static/icons/06001394.png b/static/icons/06001394.png deleted file mode 100755 index 2e5d808a..00000000 Binary files a/static/icons/06001394.png and /dev/null differ diff --git a/static/icons/06001395.png b/static/icons/06001395.png deleted file mode 100755 index 3864490a..00000000 Binary files a/static/icons/06001395.png and /dev/null differ diff --git a/static/icons/06001396.png b/static/icons/06001396.png deleted file mode 100755 index 250eb3c1..00000000 Binary files a/static/icons/06001396.png and /dev/null differ diff --git a/static/icons/06001397.png b/static/icons/06001397.png deleted file mode 100755 index da0a65ae..00000000 Binary files a/static/icons/06001397.png and /dev/null differ diff --git a/static/icons/06001398.png b/static/icons/06001398.png deleted file mode 100755 index c9b8674a..00000000 Binary files a/static/icons/06001398.png and /dev/null differ diff --git a/static/icons/06001399.png b/static/icons/06001399.png deleted file mode 100755 index 756a5977..00000000 Binary files a/static/icons/06001399.png and /dev/null differ diff --git a/static/icons/0600139E.png b/static/icons/0600139E.png deleted file mode 100755 index 13084cae..00000000 Binary files a/static/icons/0600139E.png and /dev/null differ diff --git a/static/icons/0600139F.png b/static/icons/0600139F.png deleted file mode 100755 index bc4df470..00000000 Binary files a/static/icons/0600139F.png and /dev/null differ diff --git a/static/icons/060013A0.png b/static/icons/060013A0.png deleted file mode 100755 index fee74684..00000000 Binary files a/static/icons/060013A0.png and /dev/null differ diff --git a/static/icons/060013A1.png b/static/icons/060013A1.png deleted file mode 100755 index 288db8df..00000000 Binary files a/static/icons/060013A1.png and /dev/null differ diff --git a/static/icons/060013A2.png b/static/icons/060013A2.png deleted file mode 100755 index 1392f9d8..00000000 Binary files a/static/icons/060013A2.png and /dev/null differ diff --git a/static/icons/060013A3.png b/static/icons/060013A3.png deleted file mode 100755 index 092db1bb..00000000 Binary files a/static/icons/060013A3.png and /dev/null differ diff --git a/static/icons/060013A4.png b/static/icons/060013A4.png deleted file mode 100755 index ad5a10ef..00000000 Binary files a/static/icons/060013A4.png and /dev/null differ diff --git a/static/icons/060013A5.png b/static/icons/060013A5.png deleted file mode 100755 index a71c31ec..00000000 Binary files a/static/icons/060013A5.png and /dev/null differ diff --git a/static/icons/060013A6.png b/static/icons/060013A6.png deleted file mode 100755 index 6ec912f1..00000000 Binary files a/static/icons/060013A6.png and /dev/null differ diff --git a/static/icons/060013A7.png b/static/icons/060013A7.png deleted file mode 100755 index a5c19456..00000000 Binary files a/static/icons/060013A7.png and /dev/null differ diff --git a/static/icons/060013A8.png b/static/icons/060013A8.png deleted file mode 100755 index a17d1ca3..00000000 Binary files a/static/icons/060013A8.png and /dev/null differ diff --git a/static/icons/060013A9.png b/static/icons/060013A9.png deleted file mode 100755 index 9946e2b4..00000000 Binary files a/static/icons/060013A9.png and /dev/null differ diff --git a/static/icons/060013AA.png b/static/icons/060013AA.png deleted file mode 100755 index c21769ed..00000000 Binary files a/static/icons/060013AA.png and /dev/null differ diff --git a/static/icons/060013AB.png b/static/icons/060013AB.png deleted file mode 100755 index 07e13f17..00000000 Binary files a/static/icons/060013AB.png and /dev/null differ diff --git a/static/icons/060013AD.png b/static/icons/060013AD.png deleted file mode 100755 index a3b4af2b..00000000 Binary files a/static/icons/060013AD.png and /dev/null differ diff --git a/static/icons/060013AE.png b/static/icons/060013AE.png deleted file mode 100755 index 61c345e0..00000000 Binary files a/static/icons/060013AE.png and /dev/null differ diff --git a/static/icons/060013AF.png b/static/icons/060013AF.png deleted file mode 100755 index 41f9617e..00000000 Binary files a/static/icons/060013AF.png and /dev/null differ diff --git a/static/icons/060013B0.png b/static/icons/060013B0.png deleted file mode 100755 index 5cbd8de4..00000000 Binary files a/static/icons/060013B0.png and /dev/null differ diff --git a/static/icons/060013B1.png b/static/icons/060013B1.png deleted file mode 100755 index ea4b1039..00000000 Binary files a/static/icons/060013B1.png and /dev/null differ diff --git a/static/icons/060013B2.png b/static/icons/060013B2.png deleted file mode 100755 index 21de91a6..00000000 Binary files a/static/icons/060013B2.png and /dev/null differ diff --git a/static/icons/060013B3.png b/static/icons/060013B3.png deleted file mode 100755 index 8a46fae4..00000000 Binary files a/static/icons/060013B3.png and /dev/null differ diff --git a/static/icons/060013B4.png b/static/icons/060013B4.png deleted file mode 100755 index c3b94a42..00000000 Binary files a/static/icons/060013B4.png and /dev/null differ diff --git a/static/icons/060013B5.png b/static/icons/060013B5.png deleted file mode 100755 index 7adab8ad..00000000 Binary files a/static/icons/060013B5.png and /dev/null differ diff --git a/static/icons/060013B6.png b/static/icons/060013B6.png deleted file mode 100755 index 4b4215a0..00000000 Binary files a/static/icons/060013B6.png and /dev/null differ diff --git a/static/icons/060013B7.png b/static/icons/060013B7.png deleted file mode 100755 index a58882ee..00000000 Binary files a/static/icons/060013B7.png and /dev/null differ diff --git a/static/icons/060013B8.png b/static/icons/060013B8.png deleted file mode 100755 index a70e7bea..00000000 Binary files a/static/icons/060013B8.png and /dev/null differ diff --git a/static/icons/060013B9.png b/static/icons/060013B9.png deleted file mode 100755 index ce9e6f21..00000000 Binary files a/static/icons/060013B9.png and /dev/null differ diff --git a/static/icons/060013BA.png b/static/icons/060013BA.png deleted file mode 100755 index ccd167c5..00000000 Binary files a/static/icons/060013BA.png and /dev/null differ diff --git a/static/icons/060013BB.png b/static/icons/060013BB.png deleted file mode 100755 index 6b8d08d6..00000000 Binary files a/static/icons/060013BB.png and /dev/null differ diff --git a/static/icons/060013BC.png b/static/icons/060013BC.png deleted file mode 100755 index 7aa5d781..00000000 Binary files a/static/icons/060013BC.png and /dev/null differ diff --git a/static/icons/060013BD.png b/static/icons/060013BD.png deleted file mode 100755 index e3166bb8..00000000 Binary files a/static/icons/060013BD.png and /dev/null differ diff --git a/static/icons/060013BE.png b/static/icons/060013BE.png deleted file mode 100755 index 98f1ea2f..00000000 Binary files a/static/icons/060013BE.png and /dev/null differ diff --git a/static/icons/060013BF.png b/static/icons/060013BF.png deleted file mode 100755 index bb034965..00000000 Binary files a/static/icons/060013BF.png and /dev/null differ diff --git a/static/icons/060013C0.png b/static/icons/060013C0.png deleted file mode 100755 index 9b99237d..00000000 Binary files a/static/icons/060013C0.png and /dev/null differ diff --git a/static/icons/060013C1.png b/static/icons/060013C1.png deleted file mode 100755 index a9ecdc5b..00000000 Binary files a/static/icons/060013C1.png and /dev/null differ diff --git a/static/icons/060013C2.png b/static/icons/060013C2.png deleted file mode 100755 index fc98d1f1..00000000 Binary files a/static/icons/060013C2.png and /dev/null differ diff --git a/static/icons/060013C3.png b/static/icons/060013C3.png deleted file mode 100755 index 52e42d37..00000000 Binary files a/static/icons/060013C3.png and /dev/null differ diff --git a/static/icons/060013C5.png b/static/icons/060013C5.png deleted file mode 100755 index 957575c2..00000000 Binary files a/static/icons/060013C5.png and /dev/null differ diff --git a/static/icons/060013C6.png b/static/icons/060013C6.png deleted file mode 100755 index 1bc1e0c7..00000000 Binary files a/static/icons/060013C6.png and /dev/null differ diff --git a/static/icons/060013C7.png b/static/icons/060013C7.png deleted file mode 100755 index 4b8be91b..00000000 Binary files a/static/icons/060013C7.png and /dev/null differ diff --git a/static/icons/060013C8.png b/static/icons/060013C8.png deleted file mode 100755 index 7384c7c8..00000000 Binary files a/static/icons/060013C8.png and /dev/null differ diff --git a/static/icons/060013C9.png b/static/icons/060013C9.png deleted file mode 100755 index babf3568..00000000 Binary files a/static/icons/060013C9.png and /dev/null differ diff --git a/static/icons/060013CA.png b/static/icons/060013CA.png deleted file mode 100755 index 35ea26bf..00000000 Binary files a/static/icons/060013CA.png and /dev/null differ diff --git a/static/icons/060013CC.png b/static/icons/060013CC.png deleted file mode 100755 index c978b76b..00000000 Binary files a/static/icons/060013CC.png and /dev/null differ diff --git a/static/icons/060013CD.png b/static/icons/060013CD.png deleted file mode 100755 index c58ca687..00000000 Binary files a/static/icons/060013CD.png and /dev/null differ diff --git a/static/icons/060013CE.png b/static/icons/060013CE.png deleted file mode 100755 index 40bcb101..00000000 Binary files a/static/icons/060013CE.png and /dev/null differ diff --git a/static/icons/060013CF.png b/static/icons/060013CF.png deleted file mode 100755 index 69d39676..00000000 Binary files a/static/icons/060013CF.png and /dev/null differ diff --git a/static/icons/060013D0.png b/static/icons/060013D0.png deleted file mode 100755 index 3f9ace85..00000000 Binary files a/static/icons/060013D0.png and /dev/null differ diff --git a/static/icons/060013D1.png b/static/icons/060013D1.png deleted file mode 100755 index ad3032f3..00000000 Binary files a/static/icons/060013D1.png and /dev/null differ diff --git a/static/icons/060013D2.png b/static/icons/060013D2.png deleted file mode 100755 index 48354c45..00000000 Binary files a/static/icons/060013D2.png and /dev/null differ diff --git a/static/icons/060013D3.png b/static/icons/060013D3.png deleted file mode 100755 index 9e3c26e5..00000000 Binary files a/static/icons/060013D3.png and /dev/null differ diff --git a/static/icons/060013D4.png b/static/icons/060013D4.png deleted file mode 100755 index 1c223be7..00000000 Binary files a/static/icons/060013D4.png and /dev/null differ diff --git a/static/icons/060013D5.png b/static/icons/060013D5.png deleted file mode 100755 index fb1a0343..00000000 Binary files a/static/icons/060013D5.png and /dev/null differ diff --git a/static/icons/060013D6.png b/static/icons/060013D6.png deleted file mode 100755 index 95841273..00000000 Binary files a/static/icons/060013D6.png and /dev/null differ diff --git a/static/icons/060013D7.png b/static/icons/060013D7.png deleted file mode 100755 index e08d0ee7..00000000 Binary files a/static/icons/060013D7.png and /dev/null differ diff --git a/static/icons/060013D8.png b/static/icons/060013D8.png deleted file mode 100755 index 18bb5848..00000000 Binary files a/static/icons/060013D8.png and /dev/null differ diff --git a/static/icons/060013D9.png b/static/icons/060013D9.png deleted file mode 100755 index 31dcd711..00000000 Binary files a/static/icons/060013D9.png and /dev/null differ diff --git a/static/icons/060013DA.png b/static/icons/060013DA.png deleted file mode 100755 index 16c08058..00000000 Binary files a/static/icons/060013DA.png and /dev/null differ diff --git a/static/icons/060013DB.png b/static/icons/060013DB.png deleted file mode 100755 index 00015f4c..00000000 Binary files a/static/icons/060013DB.png and /dev/null differ diff --git a/static/icons/060013DD.png b/static/icons/060013DD.png deleted file mode 100755 index f1d66892..00000000 Binary files a/static/icons/060013DD.png and /dev/null differ diff --git a/static/icons/060013DF.png b/static/icons/060013DF.png deleted file mode 100755 index 17274dd0..00000000 Binary files a/static/icons/060013DF.png and /dev/null differ diff --git a/static/icons/060013E1.png b/static/icons/060013E1.png deleted file mode 100755 index e625e4be..00000000 Binary files a/static/icons/060013E1.png and /dev/null differ diff --git a/static/icons/060013E2.png b/static/icons/060013E2.png deleted file mode 100755 index a4b06572..00000000 Binary files a/static/icons/060013E2.png and /dev/null differ diff --git a/static/icons/060013E4.png b/static/icons/060013E4.png deleted file mode 100755 index 6484a80e..00000000 Binary files a/static/icons/060013E4.png and /dev/null differ diff --git a/static/icons/060013E5.png b/static/icons/060013E5.png deleted file mode 100755 index e4300a77..00000000 Binary files a/static/icons/060013E5.png and /dev/null differ diff --git a/static/icons/060013E6.png b/static/icons/060013E6.png deleted file mode 100755 index 101afdd3..00000000 Binary files a/static/icons/060013E6.png and /dev/null differ diff --git a/static/icons/060013E7.png b/static/icons/060013E7.png deleted file mode 100755 index 8499f381..00000000 Binary files a/static/icons/060013E7.png and /dev/null differ diff --git a/static/icons/060013E8.png b/static/icons/060013E8.png deleted file mode 100755 index 976bd3e2..00000000 Binary files a/static/icons/060013E8.png and /dev/null differ diff --git a/static/icons/060013E9.png b/static/icons/060013E9.png deleted file mode 100755 index abca8c51..00000000 Binary files a/static/icons/060013E9.png and /dev/null differ diff --git a/static/icons/060013EA.png b/static/icons/060013EA.png deleted file mode 100755 index b7f97dcc..00000000 Binary files a/static/icons/060013EA.png and /dev/null differ diff --git a/static/icons/060013EB.png b/static/icons/060013EB.png deleted file mode 100755 index 2889787e..00000000 Binary files a/static/icons/060013EB.png and /dev/null differ diff --git a/static/icons/060013EC.png b/static/icons/060013EC.png deleted file mode 100755 index 264bfba0..00000000 Binary files a/static/icons/060013EC.png and /dev/null differ diff --git a/static/icons/060013ED.png b/static/icons/060013ED.png deleted file mode 100755 index 26becb6d..00000000 Binary files a/static/icons/060013ED.png and /dev/null differ diff --git a/static/icons/060013EE.png b/static/icons/060013EE.png deleted file mode 100755 index d5dd3a62..00000000 Binary files a/static/icons/060013EE.png and /dev/null differ diff --git a/static/icons/060013EF.png b/static/icons/060013EF.png deleted file mode 100755 index c4a8fc55..00000000 Binary files a/static/icons/060013EF.png and /dev/null differ diff --git a/static/icons/060013F0.png b/static/icons/060013F0.png deleted file mode 100755 index ad7f9092..00000000 Binary files a/static/icons/060013F0.png and /dev/null differ diff --git a/static/icons/060013F1.png b/static/icons/060013F1.png deleted file mode 100755 index d906a57e..00000000 Binary files a/static/icons/060013F1.png and /dev/null differ diff --git a/static/icons/060013F3.png b/static/icons/060013F3.png deleted file mode 100755 index 8b9164b1..00000000 Binary files a/static/icons/060013F3.png and /dev/null differ diff --git a/static/icons/060013F4.png b/static/icons/060013F4.png deleted file mode 100755 index 7adaadcd..00000000 Binary files a/static/icons/060013F4.png and /dev/null differ diff --git a/static/icons/060013F5.png b/static/icons/060013F5.png deleted file mode 100755 index d16a130d..00000000 Binary files a/static/icons/060013F5.png and /dev/null differ diff --git a/static/icons/060013F6.png b/static/icons/060013F6.png deleted file mode 100755 index cb912c61..00000000 Binary files a/static/icons/060013F6.png and /dev/null differ diff --git a/static/icons/060013F7.png b/static/icons/060013F7.png deleted file mode 100755 index 3392ed5e..00000000 Binary files a/static/icons/060013F7.png and /dev/null differ diff --git a/static/icons/060013F8.png b/static/icons/060013F8.png deleted file mode 100755 index ad8a7962..00000000 Binary files a/static/icons/060013F8.png and /dev/null differ diff --git a/static/icons/060013F9.png b/static/icons/060013F9.png deleted file mode 100755 index 4184ba56..00000000 Binary files a/static/icons/060013F9.png and /dev/null differ diff --git a/static/icons/060013FA.png b/static/icons/060013FA.png deleted file mode 100755 index bdabb16f..00000000 Binary files a/static/icons/060013FA.png and /dev/null differ diff --git a/static/icons/060013FB.png b/static/icons/060013FB.png deleted file mode 100755 index d3730fba..00000000 Binary files a/static/icons/060013FB.png and /dev/null differ diff --git a/static/icons/060013FC.png b/static/icons/060013FC.png deleted file mode 100755 index f71ba094..00000000 Binary files a/static/icons/060013FC.png and /dev/null differ diff --git a/static/icons/060013FD.png b/static/icons/060013FD.png deleted file mode 100755 index ddaf3ec5..00000000 Binary files a/static/icons/060013FD.png and /dev/null differ diff --git a/static/icons/060013FE.png b/static/icons/060013FE.png deleted file mode 100755 index 5dd399d0..00000000 Binary files a/static/icons/060013FE.png and /dev/null differ diff --git a/static/icons/060013FF.png b/static/icons/060013FF.png deleted file mode 100755 index bc5f7808..00000000 Binary files a/static/icons/060013FF.png and /dev/null differ diff --git a/static/icons/06001400.png b/static/icons/06001400.png deleted file mode 100755 index 75d16439..00000000 Binary files a/static/icons/06001400.png and /dev/null differ diff --git a/static/icons/06001401.png b/static/icons/06001401.png deleted file mode 100755 index 68ef3749..00000000 Binary files a/static/icons/06001401.png and /dev/null differ diff --git a/static/icons/06001402.png b/static/icons/06001402.png deleted file mode 100755 index 1bb1773e..00000000 Binary files a/static/icons/06001402.png and /dev/null differ diff --git a/static/icons/06001403.png b/static/icons/06001403.png deleted file mode 100755 index de91bf37..00000000 Binary files a/static/icons/06001403.png and /dev/null differ diff --git a/static/icons/06001404.png b/static/icons/06001404.png deleted file mode 100755 index ef4c1c47..00000000 Binary files a/static/icons/06001404.png and /dev/null differ diff --git a/static/icons/06001405.png b/static/icons/06001405.png deleted file mode 100755 index c72f122a..00000000 Binary files a/static/icons/06001405.png and /dev/null differ diff --git a/static/icons/06001406.png b/static/icons/06001406.png deleted file mode 100755 index 1a963d56..00000000 Binary files a/static/icons/06001406.png and /dev/null differ diff --git a/static/icons/06001407.png b/static/icons/06001407.png deleted file mode 100755 index 23cb3e57..00000000 Binary files a/static/icons/06001407.png and /dev/null differ diff --git a/static/icons/06001408.png b/static/icons/06001408.png deleted file mode 100755 index fdf57726..00000000 Binary files a/static/icons/06001408.png and /dev/null differ diff --git a/static/icons/06001409.png b/static/icons/06001409.png deleted file mode 100755 index ac4f937d..00000000 Binary files a/static/icons/06001409.png and /dev/null differ diff --git a/static/icons/0600140A.png b/static/icons/0600140A.png deleted file mode 100755 index f459c59b..00000000 Binary files a/static/icons/0600140A.png and /dev/null differ diff --git a/static/icons/0600140B.png b/static/icons/0600140B.png deleted file mode 100755 index 049bf102..00000000 Binary files a/static/icons/0600140B.png and /dev/null differ diff --git a/static/icons/0600140C.png b/static/icons/0600140C.png deleted file mode 100755 index a75ab7c8..00000000 Binary files a/static/icons/0600140C.png and /dev/null differ diff --git a/static/icons/0600140D.png b/static/icons/0600140D.png deleted file mode 100755 index 8ea5d678..00000000 Binary files a/static/icons/0600140D.png and /dev/null differ diff --git a/static/icons/0600140E.png b/static/icons/0600140E.png deleted file mode 100755 index 074c2d85..00000000 Binary files a/static/icons/0600140E.png and /dev/null differ diff --git a/static/icons/0600140F.png b/static/icons/0600140F.png deleted file mode 100755 index 4237525a..00000000 Binary files a/static/icons/0600140F.png and /dev/null differ diff --git a/static/icons/06001410.png b/static/icons/06001410.png deleted file mode 100755 index d3d41a50..00000000 Binary files a/static/icons/06001410.png and /dev/null differ diff --git a/static/icons/06001411.png b/static/icons/06001411.png deleted file mode 100755 index e6dc7dfa..00000000 Binary files a/static/icons/06001411.png and /dev/null differ diff --git a/static/icons/06001412.png b/static/icons/06001412.png deleted file mode 100755 index 9dcd4349..00000000 Binary files a/static/icons/06001412.png and /dev/null differ diff --git a/static/icons/06001413.png b/static/icons/06001413.png deleted file mode 100755 index 380e45ff..00000000 Binary files a/static/icons/06001413.png and /dev/null differ diff --git a/static/icons/06001414.png b/static/icons/06001414.png deleted file mode 100755 index 7be9cc32..00000000 Binary files a/static/icons/06001414.png and /dev/null differ diff --git a/static/icons/06001415.png b/static/icons/06001415.png deleted file mode 100755 index a5cc8a42..00000000 Binary files a/static/icons/06001415.png and /dev/null differ diff --git a/static/icons/06001416.png b/static/icons/06001416.png deleted file mode 100755 index 01e9959c..00000000 Binary files a/static/icons/06001416.png and /dev/null differ diff --git a/static/icons/06001417.png b/static/icons/06001417.png deleted file mode 100755 index 48007733..00000000 Binary files a/static/icons/06001417.png and /dev/null differ diff --git a/static/icons/06001418.png b/static/icons/06001418.png deleted file mode 100755 index e798a2e7..00000000 Binary files a/static/icons/06001418.png and /dev/null differ diff --git a/static/icons/06001419.png b/static/icons/06001419.png deleted file mode 100755 index be7b2fa7..00000000 Binary files a/static/icons/06001419.png and /dev/null differ diff --git a/static/icons/0600141A.png b/static/icons/0600141A.png deleted file mode 100755 index e856001e..00000000 Binary files a/static/icons/0600141A.png and /dev/null differ diff --git a/static/icons/0600141B.png b/static/icons/0600141B.png deleted file mode 100755 index d1c5606d..00000000 Binary files a/static/icons/0600141B.png and /dev/null differ diff --git a/static/icons/0600141D.png b/static/icons/0600141D.png deleted file mode 100755 index 6055a7f4..00000000 Binary files a/static/icons/0600141D.png and /dev/null differ diff --git a/static/icons/0600141E.png b/static/icons/0600141E.png deleted file mode 100755 index 2e5d808a..00000000 Binary files a/static/icons/0600141E.png and /dev/null differ diff --git a/static/icons/06001420.png b/static/icons/06001420.png deleted file mode 100755 index 867ebfc2..00000000 Binary files a/static/icons/06001420.png and /dev/null differ diff --git a/static/icons/06001421.png b/static/icons/06001421.png deleted file mode 100755 index ee6a26a5..00000000 Binary files a/static/icons/06001421.png and /dev/null differ diff --git a/static/icons/06001423.png b/static/icons/06001423.png deleted file mode 100755 index 87694dd3..00000000 Binary files a/static/icons/06001423.png and /dev/null differ diff --git a/static/icons/06001424.png b/static/icons/06001424.png deleted file mode 100755 index b502a370..00000000 Binary files a/static/icons/06001424.png and /dev/null differ diff --git a/static/icons/06001425.png b/static/icons/06001425.png deleted file mode 100755 index 84a9119b..00000000 Binary files a/static/icons/06001425.png and /dev/null differ diff --git a/static/icons/06001426.png b/static/icons/06001426.png deleted file mode 100755 index b502a370..00000000 Binary files a/static/icons/06001426.png and /dev/null differ diff --git a/static/icons/06001427.png b/static/icons/06001427.png deleted file mode 100755 index ad73fa71..00000000 Binary files a/static/icons/06001427.png and /dev/null differ diff --git a/static/icons/06001428.png b/static/icons/06001428.png deleted file mode 100755 index b502a370..00000000 Binary files a/static/icons/06001428.png and /dev/null differ diff --git a/static/icons/06001429.png b/static/icons/06001429.png deleted file mode 100755 index ad73fa71..00000000 Binary files a/static/icons/06001429.png and /dev/null differ diff --git a/static/icons/0600142A.png b/static/icons/0600142A.png deleted file mode 100755 index b502a370..00000000 Binary files a/static/icons/0600142A.png and /dev/null differ diff --git a/static/icons/0600142B.png b/static/icons/0600142B.png deleted file mode 100755 index 295889fd..00000000 Binary files a/static/icons/0600142B.png and /dev/null differ diff --git a/static/icons/0600142C.png b/static/icons/0600142C.png deleted file mode 100755 index ad73fa71..00000000 Binary files a/static/icons/0600142C.png and /dev/null differ diff --git a/static/icons/0600142D.png b/static/icons/0600142D.png deleted file mode 100755 index 7503493d..00000000 Binary files a/static/icons/0600142D.png and /dev/null differ diff --git a/static/icons/0600142E.png b/static/icons/0600142E.png deleted file mode 100755 index 3be689b6..00000000 Binary files a/static/icons/0600142E.png and /dev/null differ diff --git a/static/icons/0600142F.png b/static/icons/0600142F.png deleted file mode 100755 index 4ad9bf64..00000000 Binary files a/static/icons/0600142F.png and /dev/null differ diff --git a/static/icons/06001430.png b/static/icons/06001430.png deleted file mode 100755 index c93c7537..00000000 Binary files a/static/icons/06001430.png and /dev/null differ diff --git a/static/icons/06001431.png b/static/icons/06001431.png deleted file mode 100755 index 760bf981..00000000 Binary files a/static/icons/06001431.png and /dev/null differ diff --git a/static/icons/06001432.png b/static/icons/06001432.png deleted file mode 100755 index 9cc052c5..00000000 Binary files a/static/icons/06001432.png and /dev/null differ diff --git a/static/icons/06001433.png b/static/icons/06001433.png deleted file mode 100755 index ee11d1fc..00000000 Binary files a/static/icons/06001433.png and /dev/null differ diff --git a/static/icons/06001434.png b/static/icons/06001434.png deleted file mode 100755 index 17eafb03..00000000 Binary files a/static/icons/06001434.png and /dev/null differ diff --git a/static/icons/06001435.png b/static/icons/06001435.png deleted file mode 100755 index e6a2c16a..00000000 Binary files a/static/icons/06001435.png and /dev/null differ diff --git a/static/icons/06001436.png b/static/icons/06001436.png deleted file mode 100755 index 07ba6585..00000000 Binary files a/static/icons/06001436.png and /dev/null differ diff --git a/static/icons/06001437.png b/static/icons/06001437.png deleted file mode 100755 index 4c2e10ba..00000000 Binary files a/static/icons/06001437.png and /dev/null differ diff --git a/static/icons/06001438.png b/static/icons/06001438.png deleted file mode 100755 index 571600e8..00000000 Binary files a/static/icons/06001438.png and /dev/null differ diff --git a/static/icons/06001439.png b/static/icons/06001439.png deleted file mode 100755 index 34c7e73d..00000000 Binary files a/static/icons/06001439.png and /dev/null differ diff --git a/static/icons/0600143A.png b/static/icons/0600143A.png deleted file mode 100755 index db401cb0..00000000 Binary files a/static/icons/0600143A.png and /dev/null differ diff --git a/static/icons/0600143B.png b/static/icons/0600143B.png deleted file mode 100755 index 12de956e..00000000 Binary files a/static/icons/0600143B.png and /dev/null differ diff --git a/static/icons/0600143C.png b/static/icons/0600143C.png deleted file mode 100755 index 959c88c4..00000000 Binary files a/static/icons/0600143C.png and /dev/null differ diff --git a/static/icons/0600143D.png b/static/icons/0600143D.png deleted file mode 100755 index 096cc8e1..00000000 Binary files a/static/icons/0600143D.png and /dev/null differ diff --git a/static/icons/0600143E.png b/static/icons/0600143E.png deleted file mode 100755 index c3a0816b..00000000 Binary files a/static/icons/0600143E.png and /dev/null differ diff --git a/static/icons/0600143F.png b/static/icons/0600143F.png deleted file mode 100755 index a43a1d99..00000000 Binary files a/static/icons/0600143F.png and /dev/null differ diff --git a/static/icons/06001447.png b/static/icons/06001447.png deleted file mode 100755 index 55c2d883..00000000 Binary files a/static/icons/06001447.png and /dev/null differ diff --git a/static/icons/0600144D.png b/static/icons/0600144D.png deleted file mode 100755 index 990a994f..00000000 Binary files a/static/icons/0600144D.png and /dev/null differ diff --git a/static/icons/0600144E.png b/static/icons/0600144E.png deleted file mode 100755 index e6a2c16a..00000000 Binary files a/static/icons/0600144E.png and /dev/null differ diff --git a/static/icons/06001450.png b/static/icons/06001450.png deleted file mode 100755 index e6394bb3..00000000 Binary files a/static/icons/06001450.png and /dev/null differ diff --git a/static/icons/06001451.png b/static/icons/06001451.png deleted file mode 100755 index 48b64a7a..00000000 Binary files a/static/icons/06001451.png and /dev/null differ diff --git a/static/icons/0600147D.png b/static/icons/0600147D.png deleted file mode 100755 index 9c3b1f11..00000000 Binary files a/static/icons/0600147D.png and /dev/null differ diff --git a/static/icons/06001488.png b/static/icons/06001488.png deleted file mode 100755 index c05ca27a..00000000 Binary files a/static/icons/06001488.png and /dev/null differ diff --git a/static/icons/06001489.png b/static/icons/06001489.png deleted file mode 100755 index f307ac0c..00000000 Binary files a/static/icons/06001489.png and /dev/null differ diff --git a/static/icons/0600148A.png b/static/icons/0600148A.png deleted file mode 100755 index 3861fcb9..00000000 Binary files a/static/icons/0600148A.png and /dev/null differ diff --git a/static/icons/0600148B.png b/static/icons/0600148B.png deleted file mode 100755 index 36d474c4..00000000 Binary files a/static/icons/0600148B.png and /dev/null differ diff --git a/static/icons/0600148C.png b/static/icons/0600148C.png deleted file mode 100755 index 90200cbd..00000000 Binary files a/static/icons/0600148C.png and /dev/null differ diff --git a/static/icons/0600148D.png b/static/icons/0600148D.png deleted file mode 100755 index fc4c5e83..00000000 Binary files a/static/icons/0600148D.png and /dev/null differ diff --git a/static/icons/0600148E.png b/static/icons/0600148E.png deleted file mode 100755 index d508d58b..00000000 Binary files a/static/icons/0600148E.png and /dev/null differ diff --git a/static/icons/0600148F.png b/static/icons/0600148F.png deleted file mode 100755 index 1452a94b..00000000 Binary files a/static/icons/0600148F.png and /dev/null differ diff --git a/static/icons/06001490.png b/static/icons/06001490.png deleted file mode 100755 index 45ddfa9b..00000000 Binary files a/static/icons/06001490.png and /dev/null differ diff --git a/static/icons/06001491.png b/static/icons/06001491.png deleted file mode 100755 index 9ce6d568..00000000 Binary files a/static/icons/06001491.png and /dev/null differ diff --git a/static/icons/06001492.png b/static/icons/06001492.png deleted file mode 100755 index a21e95c3..00000000 Binary files a/static/icons/06001492.png and /dev/null differ diff --git a/static/icons/06001493.png b/static/icons/06001493.png deleted file mode 100755 index ee3f69c7..00000000 Binary files a/static/icons/06001493.png and /dev/null differ diff --git a/static/icons/06001494.png b/static/icons/06001494.png deleted file mode 100755 index 56f7520e..00000000 Binary files a/static/icons/06001494.png and /dev/null differ diff --git a/static/icons/06001495.png b/static/icons/06001495.png deleted file mode 100755 index 731e1cc9..00000000 Binary files a/static/icons/06001495.png and /dev/null differ diff --git a/static/icons/06001496.png b/static/icons/06001496.png deleted file mode 100755 index d6bfe341..00000000 Binary files a/static/icons/06001496.png and /dev/null differ diff --git a/static/icons/06001497.png b/static/icons/06001497.png deleted file mode 100755 index 6563e76c..00000000 Binary files a/static/icons/06001497.png and /dev/null differ diff --git a/static/icons/06001498.png b/static/icons/06001498.png deleted file mode 100755 index baad6058..00000000 Binary files a/static/icons/06001498.png and /dev/null differ diff --git a/static/icons/06001499.png b/static/icons/06001499.png deleted file mode 100755 index 9a4b311a..00000000 Binary files a/static/icons/06001499.png and /dev/null differ diff --git a/static/icons/0600149A.png b/static/icons/0600149A.png deleted file mode 100755 index e64042d8..00000000 Binary files a/static/icons/0600149A.png and /dev/null differ diff --git a/static/icons/0600149B.png b/static/icons/0600149B.png deleted file mode 100755 index 186269ca..00000000 Binary files a/static/icons/0600149B.png and /dev/null differ diff --git a/static/icons/0600149C.png b/static/icons/0600149C.png deleted file mode 100755 index 9962b23c..00000000 Binary files a/static/icons/0600149C.png and /dev/null differ diff --git a/static/icons/0600149D.png b/static/icons/0600149D.png deleted file mode 100755 index 4ebe78e9..00000000 Binary files a/static/icons/0600149D.png and /dev/null differ diff --git a/static/icons/0600149E.png b/static/icons/0600149E.png deleted file mode 100755 index 2eea9f9a..00000000 Binary files a/static/icons/0600149E.png and /dev/null differ diff --git a/static/icons/0600149F.png b/static/icons/0600149F.png deleted file mode 100755 index 7e89ee81..00000000 Binary files a/static/icons/0600149F.png and /dev/null differ diff --git a/static/icons/060014A0.png b/static/icons/060014A0.png deleted file mode 100755 index 102933b8..00000000 Binary files a/static/icons/060014A0.png and /dev/null differ diff --git a/static/icons/060014A1.png b/static/icons/060014A1.png deleted file mode 100755 index 9291c8fc..00000000 Binary files a/static/icons/060014A1.png and /dev/null differ diff --git a/static/icons/060014A2.png b/static/icons/060014A2.png deleted file mode 100755 index 113f1112..00000000 Binary files a/static/icons/060014A2.png and /dev/null differ diff --git a/static/icons/060014A3.png b/static/icons/060014A3.png deleted file mode 100755 index 489b602c..00000000 Binary files a/static/icons/060014A3.png and /dev/null differ diff --git a/static/icons/060014A4.png b/static/icons/060014A4.png deleted file mode 100755 index 35dd6c5d..00000000 Binary files a/static/icons/060014A4.png and /dev/null differ diff --git a/static/icons/060014A5.png b/static/icons/060014A5.png deleted file mode 100755 index 299605f1..00000000 Binary files a/static/icons/060014A5.png and /dev/null differ diff --git a/static/icons/060014A6.png b/static/icons/060014A6.png deleted file mode 100755 index 351aa5fb..00000000 Binary files a/static/icons/060014A6.png and /dev/null differ diff --git a/static/icons/060014A7.png b/static/icons/060014A7.png deleted file mode 100755 index 0ccd35c9..00000000 Binary files a/static/icons/060014A7.png and /dev/null differ diff --git a/static/icons/060014A8.png b/static/icons/060014A8.png deleted file mode 100755 index 43327bc0..00000000 Binary files a/static/icons/060014A8.png and /dev/null differ diff --git a/static/icons/060014A9.png b/static/icons/060014A9.png deleted file mode 100755 index 5cb1c3aa..00000000 Binary files a/static/icons/060014A9.png and /dev/null differ diff --git a/static/icons/060014AA.png b/static/icons/060014AA.png deleted file mode 100755 index fcaeda07..00000000 Binary files a/static/icons/060014AA.png and /dev/null differ diff --git a/static/icons/060014AB.png b/static/icons/060014AB.png deleted file mode 100755 index 6064da64..00000000 Binary files a/static/icons/060014AB.png and /dev/null differ diff --git a/static/icons/060014AC.png b/static/icons/060014AC.png deleted file mode 100755 index 3c48f1b7..00000000 Binary files a/static/icons/060014AC.png and /dev/null differ diff --git a/static/icons/060014AD.png b/static/icons/060014AD.png deleted file mode 100755 index 2bcc2168..00000000 Binary files a/static/icons/060014AD.png and /dev/null differ diff --git a/static/icons/060014AE.png b/static/icons/060014AE.png deleted file mode 100755 index 15bb95de..00000000 Binary files a/static/icons/060014AE.png and /dev/null differ diff --git a/static/icons/060014AF.png b/static/icons/060014AF.png deleted file mode 100755 index 362ae0b4..00000000 Binary files a/static/icons/060014AF.png and /dev/null differ diff --git a/static/icons/060014B0.png b/static/icons/060014B0.png deleted file mode 100755 index e530d503..00000000 Binary files a/static/icons/060014B0.png and /dev/null differ diff --git a/static/icons/060014B1.png b/static/icons/060014B1.png deleted file mode 100755 index 5b09d6f4..00000000 Binary files a/static/icons/060014B1.png and /dev/null differ diff --git a/static/icons/060014B2.png b/static/icons/060014B2.png deleted file mode 100755 index ec8b835e..00000000 Binary files a/static/icons/060014B2.png and /dev/null differ diff --git a/static/icons/060014B3.png b/static/icons/060014B3.png deleted file mode 100755 index c5acaa6f..00000000 Binary files a/static/icons/060014B3.png and /dev/null differ diff --git a/static/icons/060014B4.png b/static/icons/060014B4.png deleted file mode 100755 index 8709752b..00000000 Binary files a/static/icons/060014B4.png and /dev/null differ diff --git a/static/icons/060014B5.png b/static/icons/060014B5.png deleted file mode 100755 index 8e0c4912..00000000 Binary files a/static/icons/060014B5.png and /dev/null differ diff --git a/static/icons/060014B6.png b/static/icons/060014B6.png deleted file mode 100755 index 84ff7a31..00000000 Binary files a/static/icons/060014B6.png and /dev/null differ diff --git a/static/icons/060014B7.png b/static/icons/060014B7.png deleted file mode 100755 index 6851e901..00000000 Binary files a/static/icons/060014B7.png and /dev/null differ diff --git a/static/icons/060014B8.png b/static/icons/060014B8.png deleted file mode 100755 index 59759774..00000000 Binary files a/static/icons/060014B8.png and /dev/null differ diff --git a/static/icons/060014B9.png b/static/icons/060014B9.png deleted file mode 100755 index ef961405..00000000 Binary files a/static/icons/060014B9.png and /dev/null differ diff --git a/static/icons/060014BA.png b/static/icons/060014BA.png deleted file mode 100755 index 9e217c93..00000000 Binary files a/static/icons/060014BA.png and /dev/null differ diff --git a/static/icons/060014BB.png b/static/icons/060014BB.png deleted file mode 100755 index 53623665..00000000 Binary files a/static/icons/060014BB.png and /dev/null differ diff --git a/static/icons/060014BC.png b/static/icons/060014BC.png deleted file mode 100755 index 5d57f99c..00000000 Binary files a/static/icons/060014BC.png and /dev/null differ diff --git a/static/icons/060014BD.png b/static/icons/060014BD.png deleted file mode 100755 index c1b77d05..00000000 Binary files a/static/icons/060014BD.png and /dev/null differ diff --git a/static/icons/060014BE.png b/static/icons/060014BE.png deleted file mode 100755 index 510f7bf0..00000000 Binary files a/static/icons/060014BE.png and /dev/null differ diff --git a/static/icons/060014BF.png b/static/icons/060014BF.png deleted file mode 100755 index 7f44c8d7..00000000 Binary files a/static/icons/060014BF.png and /dev/null differ diff --git a/static/icons/060014C0.png b/static/icons/060014C0.png deleted file mode 100755 index 24684222..00000000 Binary files a/static/icons/060014C0.png and /dev/null differ diff --git a/static/icons/060014C1.png b/static/icons/060014C1.png deleted file mode 100755 index d34575f1..00000000 Binary files a/static/icons/060014C1.png and /dev/null differ diff --git a/static/icons/060014C2.png b/static/icons/060014C2.png deleted file mode 100755 index 0c62e5f9..00000000 Binary files a/static/icons/060014C2.png and /dev/null differ diff --git a/static/icons/060014C3.png b/static/icons/060014C3.png deleted file mode 100755 index c1e045a6..00000000 Binary files a/static/icons/060014C3.png and /dev/null differ diff --git a/static/icons/060014C4.png b/static/icons/060014C4.png deleted file mode 100755 index 5b5b2fb0..00000000 Binary files a/static/icons/060014C4.png and /dev/null differ diff --git a/static/icons/060014C5.png b/static/icons/060014C5.png deleted file mode 100755 index b759617c..00000000 Binary files a/static/icons/060014C5.png and /dev/null differ diff --git a/static/icons/060014C6.png b/static/icons/060014C6.png deleted file mode 100755 index 38ff1d57..00000000 Binary files a/static/icons/060014C6.png and /dev/null differ diff --git a/static/icons/060014C7.png b/static/icons/060014C7.png deleted file mode 100755 index 112b8394..00000000 Binary files a/static/icons/060014C7.png and /dev/null differ diff --git a/static/icons/060014C8.png b/static/icons/060014C8.png deleted file mode 100755 index 5a4ae626..00000000 Binary files a/static/icons/060014C8.png and /dev/null differ diff --git a/static/icons/060014C9.png b/static/icons/060014C9.png deleted file mode 100755 index 580a3754..00000000 Binary files a/static/icons/060014C9.png and /dev/null differ diff --git a/static/icons/060014CA.png b/static/icons/060014CA.png deleted file mode 100755 index 06b66ae8..00000000 Binary files a/static/icons/060014CA.png and /dev/null differ diff --git a/static/icons/060014CB.png b/static/icons/060014CB.png deleted file mode 100755 index e4579111..00000000 Binary files a/static/icons/060014CB.png and /dev/null differ diff --git a/static/icons/060014CC.png b/static/icons/060014CC.png deleted file mode 100755 index a7ccbd8f..00000000 Binary files a/static/icons/060014CC.png and /dev/null differ diff --git a/static/icons/060014CD.png b/static/icons/060014CD.png deleted file mode 100755 index 3ba4a9a2..00000000 Binary files a/static/icons/060014CD.png and /dev/null differ diff --git a/static/icons/060014CE.png b/static/icons/060014CE.png deleted file mode 100755 index a3fba57e..00000000 Binary files a/static/icons/060014CE.png and /dev/null differ diff --git a/static/icons/060014CF.png b/static/icons/060014CF.png deleted file mode 100755 index c2e13bbc..00000000 Binary files a/static/icons/060014CF.png and /dev/null differ diff --git a/static/icons/060014D0.png b/static/icons/060014D0.png deleted file mode 100755 index d5b4f820..00000000 Binary files a/static/icons/060014D0.png and /dev/null differ diff --git a/static/icons/060014D1.png b/static/icons/060014D1.png deleted file mode 100755 index b839db7b..00000000 Binary files a/static/icons/060014D1.png and /dev/null differ diff --git a/static/icons/060014D2.png b/static/icons/060014D2.png deleted file mode 100755 index 53005455..00000000 Binary files a/static/icons/060014D2.png and /dev/null differ diff --git a/static/icons/060014D3.png b/static/icons/060014D3.png deleted file mode 100755 index 58f28856..00000000 Binary files a/static/icons/060014D3.png and /dev/null differ diff --git a/static/icons/060014D4.png b/static/icons/060014D4.png deleted file mode 100755 index 1ef9c9cf..00000000 Binary files a/static/icons/060014D4.png and /dev/null differ diff --git a/static/icons/060014D5.png b/static/icons/060014D5.png deleted file mode 100755 index 549622eb..00000000 Binary files a/static/icons/060014D5.png and /dev/null differ diff --git a/static/icons/060014D6.png b/static/icons/060014D6.png deleted file mode 100755 index 0dc1199b..00000000 Binary files a/static/icons/060014D6.png and /dev/null differ diff --git a/static/icons/060014D7.png b/static/icons/060014D7.png deleted file mode 100755 index fddace19..00000000 Binary files a/static/icons/060014D7.png and /dev/null differ diff --git a/static/icons/060014D8.png b/static/icons/060014D8.png deleted file mode 100755 index c33cf443..00000000 Binary files a/static/icons/060014D8.png and /dev/null differ diff --git a/static/icons/060014D9.png b/static/icons/060014D9.png deleted file mode 100755 index aff9eb90..00000000 Binary files a/static/icons/060014D9.png and /dev/null differ diff --git a/static/icons/060014DA.png b/static/icons/060014DA.png deleted file mode 100755 index 549a327f..00000000 Binary files a/static/icons/060014DA.png and /dev/null differ diff --git a/static/icons/060014DB.png b/static/icons/060014DB.png deleted file mode 100755 index aab11e31..00000000 Binary files a/static/icons/060014DB.png and /dev/null differ diff --git a/static/icons/060014DC.png b/static/icons/060014DC.png deleted file mode 100755 index f723a79c..00000000 Binary files a/static/icons/060014DC.png and /dev/null differ diff --git a/static/icons/060014DD.png b/static/icons/060014DD.png deleted file mode 100755 index b0c63fb1..00000000 Binary files a/static/icons/060014DD.png and /dev/null differ diff --git a/static/icons/060014DE.png b/static/icons/060014DE.png deleted file mode 100755 index 5f08a6bb..00000000 Binary files a/static/icons/060014DE.png and /dev/null differ diff --git a/static/icons/060014DF.png b/static/icons/060014DF.png deleted file mode 100755 index 32320ab9..00000000 Binary files a/static/icons/060014DF.png and /dev/null differ diff --git a/static/icons/060014E0.png b/static/icons/060014E0.png deleted file mode 100755 index 4961598f..00000000 Binary files a/static/icons/060014E0.png and /dev/null differ diff --git a/static/icons/060014E1.png b/static/icons/060014E1.png deleted file mode 100755 index 41168f4a..00000000 Binary files a/static/icons/060014E1.png and /dev/null differ diff --git a/static/icons/060014E2.png b/static/icons/060014E2.png deleted file mode 100755 index c75c6b1b..00000000 Binary files a/static/icons/060014E2.png and /dev/null differ diff --git a/static/icons/060014E3.png b/static/icons/060014E3.png deleted file mode 100755 index efad5ded..00000000 Binary files a/static/icons/060014E3.png and /dev/null differ diff --git a/static/icons/060014E4.png b/static/icons/060014E4.png deleted file mode 100755 index 8b83fa70..00000000 Binary files a/static/icons/060014E4.png and /dev/null differ diff --git a/static/icons/060014E5.png b/static/icons/060014E5.png deleted file mode 100755 index 52c8aeb6..00000000 Binary files a/static/icons/060014E5.png and /dev/null differ diff --git a/static/icons/060014E6.png b/static/icons/060014E6.png deleted file mode 100755 index 12c0be0f..00000000 Binary files a/static/icons/060014E6.png and /dev/null differ diff --git a/static/icons/060014E7.png b/static/icons/060014E7.png deleted file mode 100755 index 0a1a2315..00000000 Binary files a/static/icons/060014E7.png and /dev/null differ diff --git a/static/icons/060014E8.png b/static/icons/060014E8.png deleted file mode 100755 index 50bcacbe..00000000 Binary files a/static/icons/060014E8.png and /dev/null differ diff --git a/static/icons/060014E9.png b/static/icons/060014E9.png deleted file mode 100755 index 6620dc37..00000000 Binary files a/static/icons/060014E9.png and /dev/null differ diff --git a/static/icons/060014EA.png b/static/icons/060014EA.png deleted file mode 100755 index 46a074fb..00000000 Binary files a/static/icons/060014EA.png and /dev/null differ diff --git a/static/icons/060014EB.png b/static/icons/060014EB.png deleted file mode 100755 index 84dc33f5..00000000 Binary files a/static/icons/060014EB.png and /dev/null differ diff --git a/static/icons/060014EC.png b/static/icons/060014EC.png deleted file mode 100755 index e72ff5f8..00000000 Binary files a/static/icons/060014EC.png and /dev/null differ diff --git a/static/icons/060014ED.png b/static/icons/060014ED.png deleted file mode 100755 index af6db645..00000000 Binary files a/static/icons/060014ED.png and /dev/null differ diff --git a/static/icons/060014EE.png b/static/icons/060014EE.png deleted file mode 100755 index c8b710db..00000000 Binary files a/static/icons/060014EE.png and /dev/null differ diff --git a/static/icons/060014EF.png b/static/icons/060014EF.png deleted file mode 100755 index c20c1c2a..00000000 Binary files a/static/icons/060014EF.png and /dev/null differ diff --git a/static/icons/060014F0.png b/static/icons/060014F0.png deleted file mode 100755 index 7eef8ca4..00000000 Binary files a/static/icons/060014F0.png and /dev/null differ diff --git a/static/icons/060014F1.png b/static/icons/060014F1.png deleted file mode 100755 index b394ddf1..00000000 Binary files a/static/icons/060014F1.png and /dev/null differ diff --git a/static/icons/060014F2.png b/static/icons/060014F2.png deleted file mode 100755 index 35782cf0..00000000 Binary files a/static/icons/060014F2.png and /dev/null differ diff --git a/static/icons/060014F3.png b/static/icons/060014F3.png deleted file mode 100755 index 2486e090..00000000 Binary files a/static/icons/060014F3.png and /dev/null differ diff --git a/static/icons/060014F4.png b/static/icons/060014F4.png deleted file mode 100755 index d269b3fe..00000000 Binary files a/static/icons/060014F4.png and /dev/null differ diff --git a/static/icons/060014F5.png b/static/icons/060014F5.png deleted file mode 100755 index f9ff1c45..00000000 Binary files a/static/icons/060014F5.png and /dev/null differ diff --git a/static/icons/060014F6.png b/static/icons/060014F6.png deleted file mode 100755 index 94ef66a6..00000000 Binary files a/static/icons/060014F6.png and /dev/null differ diff --git a/static/icons/060014F7.png b/static/icons/060014F7.png deleted file mode 100755 index 354884e8..00000000 Binary files a/static/icons/060014F7.png and /dev/null differ diff --git a/static/icons/060014F8.png b/static/icons/060014F8.png deleted file mode 100755 index 56800632..00000000 Binary files a/static/icons/060014F8.png and /dev/null differ diff --git a/static/icons/060014F9.png b/static/icons/060014F9.png deleted file mode 100755 index ab647533..00000000 Binary files a/static/icons/060014F9.png and /dev/null differ diff --git a/static/icons/060014FA.png b/static/icons/060014FA.png deleted file mode 100755 index 6c18a730..00000000 Binary files a/static/icons/060014FA.png and /dev/null differ diff --git a/static/icons/060014FB.png b/static/icons/060014FB.png deleted file mode 100755 index b82cbf6f..00000000 Binary files a/static/icons/060014FB.png and /dev/null differ diff --git a/static/icons/060014FC.png b/static/icons/060014FC.png deleted file mode 100755 index 0373d61c..00000000 Binary files a/static/icons/060014FC.png and /dev/null differ diff --git a/static/icons/060014FD.png b/static/icons/060014FD.png deleted file mode 100755 index 45c94ef3..00000000 Binary files a/static/icons/060014FD.png and /dev/null differ diff --git a/static/icons/060014FE.png b/static/icons/060014FE.png deleted file mode 100755 index 855dfec5..00000000 Binary files a/static/icons/060014FE.png and /dev/null differ diff --git a/static/icons/060014FF.png b/static/icons/060014FF.png deleted file mode 100755 index e09367f7..00000000 Binary files a/static/icons/060014FF.png and /dev/null differ diff --git a/static/icons/06001500.png b/static/icons/06001500.png deleted file mode 100755 index de242f9c..00000000 Binary files a/static/icons/06001500.png and /dev/null differ diff --git a/static/icons/06001501.png b/static/icons/06001501.png deleted file mode 100755 index 6e0200f5..00000000 Binary files a/static/icons/06001501.png and /dev/null differ diff --git a/static/icons/06001502.png b/static/icons/06001502.png deleted file mode 100755 index 0d32befe..00000000 Binary files a/static/icons/06001502.png and /dev/null differ diff --git a/static/icons/06001503.png b/static/icons/06001503.png deleted file mode 100755 index d6d09a27..00000000 Binary files a/static/icons/06001503.png and /dev/null differ diff --git a/static/icons/06001504.png b/static/icons/06001504.png deleted file mode 100755 index 1731dd77..00000000 Binary files a/static/icons/06001504.png and /dev/null differ diff --git a/static/icons/06001505.png b/static/icons/06001505.png deleted file mode 100755 index 02450adf..00000000 Binary files a/static/icons/06001505.png and /dev/null differ diff --git a/static/icons/06001506.png b/static/icons/06001506.png deleted file mode 100755 index 9646ec8b..00000000 Binary files a/static/icons/06001506.png and /dev/null differ diff --git a/static/icons/06001507.png b/static/icons/06001507.png deleted file mode 100755 index eb6c33fc..00000000 Binary files a/static/icons/06001507.png and /dev/null differ diff --git a/static/icons/06001508.png b/static/icons/06001508.png deleted file mode 100755 index dbc735aa..00000000 Binary files a/static/icons/06001508.png and /dev/null differ diff --git a/static/icons/06001509.png b/static/icons/06001509.png deleted file mode 100755 index f1684a07..00000000 Binary files a/static/icons/06001509.png and /dev/null differ diff --git a/static/icons/0600150A.png b/static/icons/0600150A.png deleted file mode 100755 index de8b2a12..00000000 Binary files a/static/icons/0600150A.png and /dev/null differ diff --git a/static/icons/0600150B.png b/static/icons/0600150B.png deleted file mode 100755 index ac99be4a..00000000 Binary files a/static/icons/0600150B.png and /dev/null differ diff --git a/static/icons/0600150C.png b/static/icons/0600150C.png deleted file mode 100755 index b2d175a1..00000000 Binary files a/static/icons/0600150C.png and /dev/null differ diff --git a/static/icons/0600150D.png b/static/icons/0600150D.png deleted file mode 100755 index b113f425..00000000 Binary files a/static/icons/0600150D.png and /dev/null differ diff --git a/static/icons/0600150E.png b/static/icons/0600150E.png deleted file mode 100755 index 8219e840..00000000 Binary files a/static/icons/0600150E.png and /dev/null differ diff --git a/static/icons/0600150F.png b/static/icons/0600150F.png deleted file mode 100755 index b184c577..00000000 Binary files a/static/icons/0600150F.png and /dev/null differ diff --git a/static/icons/06001510.png b/static/icons/06001510.png deleted file mode 100755 index 885fc026..00000000 Binary files a/static/icons/06001510.png and /dev/null differ diff --git a/static/icons/06001511.png b/static/icons/06001511.png deleted file mode 100755 index a62873b9..00000000 Binary files a/static/icons/06001511.png and /dev/null differ diff --git a/static/icons/06001512.png b/static/icons/06001512.png deleted file mode 100755 index 36f7befd..00000000 Binary files a/static/icons/06001512.png and /dev/null differ diff --git a/static/icons/06001513.png b/static/icons/06001513.png deleted file mode 100755 index 2cb6180c..00000000 Binary files a/static/icons/06001513.png and /dev/null differ diff --git a/static/icons/06001514.png b/static/icons/06001514.png deleted file mode 100755 index 51c20c97..00000000 Binary files a/static/icons/06001514.png and /dev/null differ diff --git a/static/icons/06001515.png b/static/icons/06001515.png deleted file mode 100755 index fdc7d393..00000000 Binary files a/static/icons/06001515.png and /dev/null differ diff --git a/static/icons/06001516.png b/static/icons/06001516.png deleted file mode 100755 index afeee7f6..00000000 Binary files a/static/icons/06001516.png and /dev/null differ diff --git a/static/icons/06001517.png b/static/icons/06001517.png deleted file mode 100755 index 8aa4fda0..00000000 Binary files a/static/icons/06001517.png and /dev/null differ diff --git a/static/icons/06001518.png b/static/icons/06001518.png deleted file mode 100755 index e8decd4b..00000000 Binary files a/static/icons/06001518.png and /dev/null differ diff --git a/static/icons/06001519.png b/static/icons/06001519.png deleted file mode 100755 index 8841d6fe..00000000 Binary files a/static/icons/06001519.png and /dev/null differ diff --git a/static/icons/0600151A.png b/static/icons/0600151A.png deleted file mode 100755 index 8c8f1127..00000000 Binary files a/static/icons/0600151A.png and /dev/null differ diff --git a/static/icons/0600151B.png b/static/icons/0600151B.png deleted file mode 100755 index 93568a07..00000000 Binary files a/static/icons/0600151B.png and /dev/null differ diff --git a/static/icons/0600151C.png b/static/icons/0600151C.png deleted file mode 100755 index ba5fc237..00000000 Binary files a/static/icons/0600151C.png and /dev/null differ diff --git a/static/icons/0600151D.png b/static/icons/0600151D.png deleted file mode 100755 index 62d0192f..00000000 Binary files a/static/icons/0600151D.png and /dev/null differ diff --git a/static/icons/0600151E.png b/static/icons/0600151E.png deleted file mode 100755 index dbec7016..00000000 Binary files a/static/icons/0600151E.png and /dev/null differ diff --git a/static/icons/06001525.png b/static/icons/06001525.png deleted file mode 100755 index 842c6eab..00000000 Binary files a/static/icons/06001525.png and /dev/null differ diff --git a/static/icons/06001528.png b/static/icons/06001528.png deleted file mode 100755 index 3388907d..00000000 Binary files a/static/icons/06001528.png and /dev/null differ diff --git a/static/icons/06001529.png b/static/icons/06001529.png deleted file mode 100755 index 66cb210b..00000000 Binary files a/static/icons/06001529.png and /dev/null differ diff --git a/static/icons/0600152A.png b/static/icons/0600152A.png deleted file mode 100755 index 5bedd163..00000000 Binary files a/static/icons/0600152A.png and /dev/null differ diff --git a/static/icons/0600152B.png b/static/icons/0600152B.png deleted file mode 100755 index 87095fbf..00000000 Binary files a/static/icons/0600152B.png and /dev/null differ diff --git a/static/icons/0600152C.png b/static/icons/0600152C.png deleted file mode 100755 index 79c29334..00000000 Binary files a/static/icons/0600152C.png and /dev/null differ diff --git a/static/icons/0600152D.png b/static/icons/0600152D.png deleted file mode 100755 index e05e761f..00000000 Binary files a/static/icons/0600152D.png and /dev/null differ diff --git a/static/icons/0600152E.png b/static/icons/0600152E.png deleted file mode 100755 index 3a27914d..00000000 Binary files a/static/icons/0600152E.png and /dev/null differ diff --git a/static/icons/0600152F.png b/static/icons/0600152F.png deleted file mode 100755 index 1e9bf473..00000000 Binary files a/static/icons/0600152F.png and /dev/null differ diff --git a/static/icons/06001530.png b/static/icons/06001530.png deleted file mode 100755 index f751d378..00000000 Binary files a/static/icons/06001530.png and /dev/null differ diff --git a/static/icons/06001531.png b/static/icons/06001531.png deleted file mode 100755 index 2b0d4a14..00000000 Binary files a/static/icons/06001531.png and /dev/null differ diff --git a/static/icons/06001532.png b/static/icons/06001532.png deleted file mode 100755 index 1b80d5a8..00000000 Binary files a/static/icons/06001532.png and /dev/null differ diff --git a/static/icons/06001533.png b/static/icons/06001533.png deleted file mode 100755 index 4faf3e01..00000000 Binary files a/static/icons/06001533.png and /dev/null differ diff --git a/static/icons/06001534.png b/static/icons/06001534.png deleted file mode 100755 index c9720e53..00000000 Binary files a/static/icons/06001534.png and /dev/null differ diff --git a/static/icons/06001535.png b/static/icons/06001535.png deleted file mode 100755 index 54b77820..00000000 Binary files a/static/icons/06001535.png and /dev/null differ diff --git a/static/icons/06001536.png b/static/icons/06001536.png deleted file mode 100755 index a85f5d24..00000000 Binary files a/static/icons/06001536.png and /dev/null differ diff --git a/static/icons/06001537.png b/static/icons/06001537.png deleted file mode 100755 index 34fbca80..00000000 Binary files a/static/icons/06001537.png and /dev/null differ diff --git a/static/icons/06001538.png b/static/icons/06001538.png deleted file mode 100755 index 225fdd52..00000000 Binary files a/static/icons/06001538.png and /dev/null differ diff --git a/static/icons/06001539.png b/static/icons/06001539.png deleted file mode 100755 index a71bde80..00000000 Binary files a/static/icons/06001539.png and /dev/null differ diff --git a/static/icons/0600153A.png b/static/icons/0600153A.png deleted file mode 100755 index 70f6d568..00000000 Binary files a/static/icons/0600153A.png and /dev/null differ diff --git a/static/icons/0600153B.png b/static/icons/0600153B.png deleted file mode 100755 index b3312c37..00000000 Binary files a/static/icons/0600153B.png and /dev/null differ diff --git a/static/icons/0600153C.png b/static/icons/0600153C.png deleted file mode 100755 index 62789b25..00000000 Binary files a/static/icons/0600153C.png and /dev/null differ diff --git a/static/icons/0600153D.png b/static/icons/0600153D.png deleted file mode 100755 index e4816721..00000000 Binary files a/static/icons/0600153D.png and /dev/null differ diff --git a/static/icons/0600153E.png b/static/icons/0600153E.png deleted file mode 100755 index 883bc935..00000000 Binary files a/static/icons/0600153E.png and /dev/null differ diff --git a/static/icons/0600153F.png b/static/icons/0600153F.png deleted file mode 100755 index 5ad33496..00000000 Binary files a/static/icons/0600153F.png and /dev/null differ diff --git a/static/icons/06001540.png b/static/icons/06001540.png deleted file mode 100755 index 0196ce10..00000000 Binary files a/static/icons/06001540.png and /dev/null differ diff --git a/static/icons/06001541.png b/static/icons/06001541.png deleted file mode 100755 index d7947fca..00000000 Binary files a/static/icons/06001541.png and /dev/null differ diff --git a/static/icons/06001542.png b/static/icons/06001542.png deleted file mode 100755 index e135ee5d..00000000 Binary files a/static/icons/06001542.png and /dev/null differ diff --git a/static/icons/06001543.png b/static/icons/06001543.png deleted file mode 100755 index 19ea40af..00000000 Binary files a/static/icons/06001543.png and /dev/null differ diff --git a/static/icons/06001544.png b/static/icons/06001544.png deleted file mode 100755 index 43a6c0c2..00000000 Binary files a/static/icons/06001544.png and /dev/null differ diff --git a/static/icons/06001545.png b/static/icons/06001545.png deleted file mode 100755 index 31a948a4..00000000 Binary files a/static/icons/06001545.png and /dev/null differ diff --git a/static/icons/06001546.png b/static/icons/06001546.png deleted file mode 100755 index f422b95d..00000000 Binary files a/static/icons/06001546.png and /dev/null differ diff --git a/static/icons/06001547.png b/static/icons/06001547.png deleted file mode 100755 index 57b92e03..00000000 Binary files a/static/icons/06001547.png and /dev/null differ diff --git a/static/icons/06001548.png b/static/icons/06001548.png deleted file mode 100755 index 7cf7f0e5..00000000 Binary files a/static/icons/06001548.png and /dev/null differ diff --git a/static/icons/06001549.png b/static/icons/06001549.png deleted file mode 100755 index 062e2a11..00000000 Binary files a/static/icons/06001549.png and /dev/null differ diff --git a/static/icons/0600154A.png b/static/icons/0600154A.png deleted file mode 100755 index 2727100a..00000000 Binary files a/static/icons/0600154A.png and /dev/null differ diff --git a/static/icons/0600154B.png b/static/icons/0600154B.png deleted file mode 100755 index cf462105..00000000 Binary files a/static/icons/0600154B.png and /dev/null differ diff --git a/static/icons/0600154C.png b/static/icons/0600154C.png deleted file mode 100755 index 5dc4eaeb..00000000 Binary files a/static/icons/0600154C.png and /dev/null differ diff --git a/static/icons/0600154D.png b/static/icons/0600154D.png deleted file mode 100755 index 19d0b3c1..00000000 Binary files a/static/icons/0600154D.png and /dev/null differ diff --git a/static/icons/0600154E.png b/static/icons/0600154E.png deleted file mode 100755 index 065cd36e..00000000 Binary files a/static/icons/0600154E.png and /dev/null differ diff --git a/static/icons/0600154F.png b/static/icons/0600154F.png deleted file mode 100755 index d2bdc1eb..00000000 Binary files a/static/icons/0600154F.png and /dev/null differ diff --git a/static/icons/06001550.png b/static/icons/06001550.png deleted file mode 100755 index 8e5ed5b9..00000000 Binary files a/static/icons/06001550.png and /dev/null differ diff --git a/static/icons/06001551.png b/static/icons/06001551.png deleted file mode 100755 index 201e1ea1..00000000 Binary files a/static/icons/06001551.png and /dev/null differ diff --git a/static/icons/06001552.png b/static/icons/06001552.png deleted file mode 100755 index 71c968e3..00000000 Binary files a/static/icons/06001552.png and /dev/null differ diff --git a/static/icons/06001553.png b/static/icons/06001553.png deleted file mode 100755 index 7e777646..00000000 Binary files a/static/icons/06001553.png and /dev/null differ diff --git a/static/icons/06001554.png b/static/icons/06001554.png deleted file mode 100755 index f3a0bb05..00000000 Binary files a/static/icons/06001554.png and /dev/null differ diff --git a/static/icons/06001555.png b/static/icons/06001555.png deleted file mode 100755 index 07f41f06..00000000 Binary files a/static/icons/06001555.png and /dev/null differ diff --git a/static/icons/06001556.png b/static/icons/06001556.png deleted file mode 100755 index e5441d3b..00000000 Binary files a/static/icons/06001556.png and /dev/null differ diff --git a/static/icons/06001557.png b/static/icons/06001557.png deleted file mode 100755 index 24c31a0b..00000000 Binary files a/static/icons/06001557.png and /dev/null differ diff --git a/static/icons/06001558.png b/static/icons/06001558.png deleted file mode 100755 index 53cb0f56..00000000 Binary files a/static/icons/06001558.png and /dev/null differ diff --git a/static/icons/06001559.png b/static/icons/06001559.png deleted file mode 100755 index 6342a507..00000000 Binary files a/static/icons/06001559.png and /dev/null differ diff --git a/static/icons/0600155A.png b/static/icons/0600155A.png deleted file mode 100755 index 4199bea3..00000000 Binary files a/static/icons/0600155A.png and /dev/null differ diff --git a/static/icons/0600155B.png b/static/icons/0600155B.png deleted file mode 100755 index f9e5f21f..00000000 Binary files a/static/icons/0600155B.png and /dev/null differ diff --git a/static/icons/0600155C.png b/static/icons/0600155C.png deleted file mode 100755 index a8f3f835..00000000 Binary files a/static/icons/0600155C.png and /dev/null differ diff --git a/static/icons/0600155D.png b/static/icons/0600155D.png deleted file mode 100755 index 78b3c392..00000000 Binary files a/static/icons/0600155D.png and /dev/null differ diff --git a/static/icons/0600155E.png b/static/icons/0600155E.png deleted file mode 100755 index f0c1c3c8..00000000 Binary files a/static/icons/0600155E.png and /dev/null differ diff --git a/static/icons/0600155F.png b/static/icons/0600155F.png deleted file mode 100755 index c2d1570b..00000000 Binary files a/static/icons/0600155F.png and /dev/null differ diff --git a/static/icons/06001560.png b/static/icons/06001560.png deleted file mode 100755 index 05d22c08..00000000 Binary files a/static/icons/06001560.png and /dev/null differ diff --git a/static/icons/06001561.png b/static/icons/06001561.png deleted file mode 100755 index 20640262..00000000 Binary files a/static/icons/06001561.png and /dev/null differ diff --git a/static/icons/06001562.png b/static/icons/06001562.png deleted file mode 100755 index 8e86f89b..00000000 Binary files a/static/icons/06001562.png and /dev/null differ diff --git a/static/icons/06001563.png b/static/icons/06001563.png deleted file mode 100755 index 7212e1af..00000000 Binary files a/static/icons/06001563.png and /dev/null differ diff --git a/static/icons/06001564.png b/static/icons/06001564.png deleted file mode 100755 index 0eea68f9..00000000 Binary files a/static/icons/06001564.png and /dev/null differ diff --git a/static/icons/06001565.png b/static/icons/06001565.png deleted file mode 100755 index 638f705d..00000000 Binary files a/static/icons/06001565.png and /dev/null differ diff --git a/static/icons/06001566.png b/static/icons/06001566.png deleted file mode 100755 index e4979ef1..00000000 Binary files a/static/icons/06001566.png and /dev/null differ diff --git a/static/icons/06001567.png b/static/icons/06001567.png deleted file mode 100755 index e917918d..00000000 Binary files a/static/icons/06001567.png and /dev/null differ diff --git a/static/icons/06001568.png b/static/icons/06001568.png deleted file mode 100755 index cc69d492..00000000 Binary files a/static/icons/06001568.png and /dev/null differ diff --git a/static/icons/06001569.png b/static/icons/06001569.png deleted file mode 100755 index 91d0a229..00000000 Binary files a/static/icons/06001569.png and /dev/null differ diff --git a/static/icons/0600156A.png b/static/icons/0600156A.png deleted file mode 100755 index f7e6dd01..00000000 Binary files a/static/icons/0600156A.png and /dev/null differ diff --git a/static/icons/0600156B.png b/static/icons/0600156B.png deleted file mode 100755 index c8f4616b..00000000 Binary files a/static/icons/0600156B.png and /dev/null differ diff --git a/static/icons/0600156C.png b/static/icons/0600156C.png deleted file mode 100755 index 5ad3d045..00000000 Binary files a/static/icons/0600156C.png and /dev/null differ diff --git a/static/icons/0600156D.png b/static/icons/0600156D.png deleted file mode 100755 index 50b60d6e..00000000 Binary files a/static/icons/0600156D.png and /dev/null differ diff --git a/static/icons/06001578.png b/static/icons/06001578.png deleted file mode 100755 index fc858477..00000000 Binary files a/static/icons/06001578.png and /dev/null differ diff --git a/static/icons/06001579.png b/static/icons/06001579.png deleted file mode 100755 index 26b6532a..00000000 Binary files a/static/icons/06001579.png and /dev/null differ diff --git a/static/icons/0600157A.png b/static/icons/0600157A.png deleted file mode 100755 index 047cfc7a..00000000 Binary files a/static/icons/0600157A.png and /dev/null differ diff --git a/static/icons/0600157B.png b/static/icons/0600157B.png deleted file mode 100755 index df096fa8..00000000 Binary files a/static/icons/0600157B.png and /dev/null differ diff --git a/static/icons/0600157C.png b/static/icons/0600157C.png deleted file mode 100755 index fe9e3e36..00000000 Binary files a/static/icons/0600157C.png and /dev/null differ diff --git a/static/icons/0600157D.png b/static/icons/0600157D.png deleted file mode 100755 index 26ae1ada..00000000 Binary files a/static/icons/0600157D.png and /dev/null differ diff --git a/static/icons/0600157E.png b/static/icons/0600157E.png deleted file mode 100755 index 09d1f710..00000000 Binary files a/static/icons/0600157E.png and /dev/null differ diff --git a/static/icons/0600157F.png b/static/icons/0600157F.png deleted file mode 100755 index 97324e8b..00000000 Binary files a/static/icons/0600157F.png and /dev/null differ diff --git a/static/icons/06001580.png b/static/icons/06001580.png deleted file mode 100755 index 9ff8913f..00000000 Binary files a/static/icons/06001580.png and /dev/null differ diff --git a/static/icons/06001581.png b/static/icons/06001581.png deleted file mode 100755 index 036ee9a7..00000000 Binary files a/static/icons/06001581.png and /dev/null differ diff --git a/static/icons/06001582.png b/static/icons/06001582.png deleted file mode 100755 index 5bde2d8f..00000000 Binary files a/static/icons/06001582.png and /dev/null differ diff --git a/static/icons/06001583.png b/static/icons/06001583.png deleted file mode 100755 index d13c6758..00000000 Binary files a/static/icons/06001583.png and /dev/null differ diff --git a/static/icons/06001584.png b/static/icons/06001584.png deleted file mode 100755 index 8cde4279..00000000 Binary files a/static/icons/06001584.png and /dev/null differ diff --git a/static/icons/0600158F.png b/static/icons/0600158F.png deleted file mode 100755 index 64f6d814..00000000 Binary files a/static/icons/0600158F.png and /dev/null differ diff --git a/static/icons/06001590.png b/static/icons/06001590.png deleted file mode 100755 index 0b80604c..00000000 Binary files a/static/icons/06001590.png and /dev/null differ diff --git a/static/icons/06001591.png b/static/icons/06001591.png deleted file mode 100755 index abc590df..00000000 Binary files a/static/icons/06001591.png and /dev/null differ diff --git a/static/icons/06001592.png b/static/icons/06001592.png deleted file mode 100755 index 1052716d..00000000 Binary files a/static/icons/06001592.png and /dev/null differ diff --git a/static/icons/06001593.png b/static/icons/06001593.png deleted file mode 100755 index 7cdc14ca..00000000 Binary files a/static/icons/06001593.png and /dev/null differ diff --git a/static/icons/06001594.png b/static/icons/06001594.png deleted file mode 100755 index 5f6e3e61..00000000 Binary files a/static/icons/06001594.png and /dev/null differ diff --git a/static/icons/06001595.png b/static/icons/06001595.png deleted file mode 100755 index 9884499e..00000000 Binary files a/static/icons/06001595.png and /dev/null differ diff --git a/static/icons/06001596.png b/static/icons/06001596.png deleted file mode 100755 index 77268196..00000000 Binary files a/static/icons/06001596.png and /dev/null differ diff --git a/static/icons/06001597.png b/static/icons/06001597.png deleted file mode 100755 index 1307497c..00000000 Binary files a/static/icons/06001597.png and /dev/null differ diff --git a/static/icons/06001598.png b/static/icons/06001598.png deleted file mode 100755 index 89d1773c..00000000 Binary files a/static/icons/06001598.png and /dev/null differ diff --git a/static/icons/06001599.png b/static/icons/06001599.png deleted file mode 100755 index 209569ce..00000000 Binary files a/static/icons/06001599.png and /dev/null differ diff --git a/static/icons/0600159A.png b/static/icons/0600159A.png deleted file mode 100755 index 1ffee520..00000000 Binary files a/static/icons/0600159A.png and /dev/null differ diff --git a/static/icons/0600159B.png b/static/icons/0600159B.png deleted file mode 100755 index 92cc5051..00000000 Binary files a/static/icons/0600159B.png and /dev/null differ diff --git a/static/icons/0600159C.png b/static/icons/0600159C.png deleted file mode 100755 index 35a10564..00000000 Binary files a/static/icons/0600159C.png and /dev/null differ diff --git a/static/icons/0600159D.png b/static/icons/0600159D.png deleted file mode 100755 index 204aa6ec..00000000 Binary files a/static/icons/0600159D.png and /dev/null differ diff --git a/static/icons/0600159E.png b/static/icons/0600159E.png deleted file mode 100755 index 695b9beb..00000000 Binary files a/static/icons/0600159E.png and /dev/null differ diff --git a/static/icons/0600159F.png b/static/icons/0600159F.png deleted file mode 100755 index 48091ec8..00000000 Binary files a/static/icons/0600159F.png and /dev/null differ diff --git a/static/icons/060015A0.png b/static/icons/060015A0.png deleted file mode 100755 index 633c344c..00000000 Binary files a/static/icons/060015A0.png and /dev/null differ diff --git a/static/icons/060015A1.png b/static/icons/060015A1.png deleted file mode 100755 index 2648e366..00000000 Binary files a/static/icons/060015A1.png and /dev/null differ diff --git a/static/icons/060015A2.png b/static/icons/060015A2.png deleted file mode 100755 index 7a5f56e8..00000000 Binary files a/static/icons/060015A2.png and /dev/null differ diff --git a/static/icons/060015A3.png b/static/icons/060015A3.png deleted file mode 100755 index 12685b9b..00000000 Binary files a/static/icons/060015A3.png and /dev/null differ diff --git a/static/icons/060015A4.png b/static/icons/060015A4.png deleted file mode 100755 index 79fc47da..00000000 Binary files a/static/icons/060015A4.png and /dev/null differ diff --git a/static/icons/060015A5.png b/static/icons/060015A5.png deleted file mode 100755 index 62eb45bd..00000000 Binary files a/static/icons/060015A5.png and /dev/null differ diff --git a/static/icons/060015A6.png b/static/icons/060015A6.png deleted file mode 100755 index 084e98f4..00000000 Binary files a/static/icons/060015A6.png and /dev/null differ diff --git a/static/icons/060015A7.png b/static/icons/060015A7.png deleted file mode 100755 index 8c23cc4d..00000000 Binary files a/static/icons/060015A7.png and /dev/null differ diff --git a/static/icons/060015A8.png b/static/icons/060015A8.png deleted file mode 100755 index 94e59d32..00000000 Binary files a/static/icons/060015A8.png and /dev/null differ diff --git a/static/icons/060015A9.png b/static/icons/060015A9.png deleted file mode 100755 index c04d296b..00000000 Binary files a/static/icons/060015A9.png and /dev/null differ diff --git a/static/icons/060015AA.png b/static/icons/060015AA.png deleted file mode 100755 index da619341..00000000 Binary files a/static/icons/060015AA.png and /dev/null differ diff --git a/static/icons/060015AB.png b/static/icons/060015AB.png deleted file mode 100755 index df3630ab..00000000 Binary files a/static/icons/060015AB.png and /dev/null differ diff --git a/static/icons/060015AC.png b/static/icons/060015AC.png deleted file mode 100755 index ea82a944..00000000 Binary files a/static/icons/060015AC.png and /dev/null differ diff --git a/static/icons/060015AD.png b/static/icons/060015AD.png deleted file mode 100755 index 92257e33..00000000 Binary files a/static/icons/060015AD.png and /dev/null differ diff --git a/static/icons/060015AE.png b/static/icons/060015AE.png deleted file mode 100755 index 61627fef..00000000 Binary files a/static/icons/060015AE.png and /dev/null differ diff --git a/static/icons/060015AF.png b/static/icons/060015AF.png deleted file mode 100755 index 045a4229..00000000 Binary files a/static/icons/060015AF.png and /dev/null differ diff --git a/static/icons/060015B0.png b/static/icons/060015B0.png deleted file mode 100755 index 3a5f3100..00000000 Binary files a/static/icons/060015B0.png and /dev/null differ diff --git a/static/icons/060015B1.png b/static/icons/060015B1.png deleted file mode 100755 index fb0f0679..00000000 Binary files a/static/icons/060015B1.png and /dev/null differ diff --git a/static/icons/060015B2.png b/static/icons/060015B2.png deleted file mode 100755 index 1ca01c91..00000000 Binary files a/static/icons/060015B2.png and /dev/null differ diff --git a/static/icons/060015B3.png b/static/icons/060015B3.png deleted file mode 100755 index 864342fc..00000000 Binary files a/static/icons/060015B3.png and /dev/null differ diff --git a/static/icons/060015B4.png b/static/icons/060015B4.png deleted file mode 100755 index 19b12b9f..00000000 Binary files a/static/icons/060015B4.png and /dev/null differ diff --git a/static/icons/060015B5.png b/static/icons/060015B5.png deleted file mode 100755 index fbeece67..00000000 Binary files a/static/icons/060015B5.png and /dev/null differ diff --git a/static/icons/060015B6.png b/static/icons/060015B6.png deleted file mode 100755 index 53ee42da..00000000 Binary files a/static/icons/060015B6.png and /dev/null differ diff --git a/static/icons/060015B7.png b/static/icons/060015B7.png deleted file mode 100755 index a598fbd4..00000000 Binary files a/static/icons/060015B7.png and /dev/null differ diff --git a/static/icons/060015C1.png b/static/icons/060015C1.png deleted file mode 100755 index 8ac5a21a..00000000 Binary files a/static/icons/060015C1.png and /dev/null differ diff --git a/static/icons/060015C2.png b/static/icons/060015C2.png deleted file mode 100755 index 4bcb7663..00000000 Binary files a/static/icons/060015C2.png and /dev/null differ diff --git a/static/icons/060015C3.png b/static/icons/060015C3.png deleted file mode 100755 index eddae2e9..00000000 Binary files a/static/icons/060015C3.png and /dev/null differ diff --git a/static/icons/060015C4.png b/static/icons/060015C4.png deleted file mode 100755 index 767ade4b..00000000 Binary files a/static/icons/060015C4.png and /dev/null differ diff --git a/static/icons/060015C5.png b/static/icons/060015C5.png deleted file mode 100755 index 4c37c3cd..00000000 Binary files a/static/icons/060015C5.png and /dev/null differ diff --git a/static/icons/060015C6.png b/static/icons/060015C6.png deleted file mode 100755 index 4ea1aa54..00000000 Binary files a/static/icons/060015C6.png and /dev/null differ diff --git a/static/icons/060015C7.png b/static/icons/060015C7.png deleted file mode 100755 index dd56d2eb..00000000 Binary files a/static/icons/060015C7.png and /dev/null differ diff --git a/static/icons/060015C8.png b/static/icons/060015C8.png deleted file mode 100755 index f982f429..00000000 Binary files a/static/icons/060015C8.png and /dev/null differ diff --git a/static/icons/060015C9.png b/static/icons/060015C9.png deleted file mode 100755 index 723cfddd..00000000 Binary files a/static/icons/060015C9.png and /dev/null differ diff --git a/static/icons/060015CA.png b/static/icons/060015CA.png deleted file mode 100755 index f7392d2c..00000000 Binary files a/static/icons/060015CA.png and /dev/null differ diff --git a/static/icons/060015CB.png b/static/icons/060015CB.png deleted file mode 100755 index 84d08591..00000000 Binary files a/static/icons/060015CB.png and /dev/null differ diff --git a/static/icons/060015CC.png b/static/icons/060015CC.png deleted file mode 100755 index 2f21a559..00000000 Binary files a/static/icons/060015CC.png and /dev/null differ diff --git a/static/icons/060015CD.png b/static/icons/060015CD.png deleted file mode 100755 index 6db6f54f..00000000 Binary files a/static/icons/060015CD.png and /dev/null differ diff --git a/static/icons/060015CE.png b/static/icons/060015CE.png deleted file mode 100755 index 9ee9470f..00000000 Binary files a/static/icons/060015CE.png and /dev/null differ diff --git a/static/icons/060015CF.png b/static/icons/060015CF.png deleted file mode 100755 index 472a5c84..00000000 Binary files a/static/icons/060015CF.png and /dev/null differ diff --git a/static/icons/060015D0.png b/static/icons/060015D0.png deleted file mode 100755 index 7167a9d8..00000000 Binary files a/static/icons/060015D0.png and /dev/null differ diff --git a/static/icons/060015D1.png b/static/icons/060015D1.png deleted file mode 100755 index 3ca48b25..00000000 Binary files a/static/icons/060015D1.png and /dev/null differ diff --git a/static/icons/060015D2.png b/static/icons/060015D2.png deleted file mode 100755 index 6e0689fc..00000000 Binary files a/static/icons/060015D2.png and /dev/null differ diff --git a/static/icons/060015D3.png b/static/icons/060015D3.png deleted file mode 100755 index 26412bf8..00000000 Binary files a/static/icons/060015D3.png and /dev/null differ diff --git a/static/icons/060015D4.png b/static/icons/060015D4.png deleted file mode 100755 index 89d62cf2..00000000 Binary files a/static/icons/060015D4.png and /dev/null differ diff --git a/static/icons/060015D5.png b/static/icons/060015D5.png deleted file mode 100755 index e2da13e4..00000000 Binary files a/static/icons/060015D5.png and /dev/null differ diff --git a/static/icons/060015D6.png b/static/icons/060015D6.png deleted file mode 100755 index 5fe248e7..00000000 Binary files a/static/icons/060015D6.png and /dev/null differ diff --git a/static/icons/060015D7.png b/static/icons/060015D7.png deleted file mode 100755 index f4005696..00000000 Binary files a/static/icons/060015D7.png and /dev/null differ diff --git a/static/icons/060015D8.png b/static/icons/060015D8.png deleted file mode 100755 index 72ca469d..00000000 Binary files a/static/icons/060015D8.png and /dev/null differ diff --git a/static/icons/060015D9.png b/static/icons/060015D9.png deleted file mode 100755 index cc96b0d7..00000000 Binary files a/static/icons/060015D9.png and /dev/null differ diff --git a/static/icons/060015DA.png b/static/icons/060015DA.png deleted file mode 100755 index 193ef229..00000000 Binary files a/static/icons/060015DA.png and /dev/null differ diff --git a/static/icons/060015DB.png b/static/icons/060015DB.png deleted file mode 100755 index e2a07a83..00000000 Binary files a/static/icons/060015DB.png and /dev/null differ diff --git a/static/icons/060015DC.png b/static/icons/060015DC.png deleted file mode 100755 index aa81898f..00000000 Binary files a/static/icons/060015DC.png and /dev/null differ diff --git a/static/icons/060015DD.png b/static/icons/060015DD.png deleted file mode 100755 index 53d07878..00000000 Binary files a/static/icons/060015DD.png and /dev/null differ diff --git a/static/icons/060015DE.png b/static/icons/060015DE.png deleted file mode 100755 index ce93dc9f..00000000 Binary files a/static/icons/060015DE.png and /dev/null differ diff --git a/static/icons/060015DF.png b/static/icons/060015DF.png deleted file mode 100755 index 60c952a2..00000000 Binary files a/static/icons/060015DF.png and /dev/null differ diff --git a/static/icons/060015E0.png b/static/icons/060015E0.png deleted file mode 100755 index b615eb94..00000000 Binary files a/static/icons/060015E0.png and /dev/null differ diff --git a/static/icons/060015E1.png b/static/icons/060015E1.png deleted file mode 100755 index 827b8a8f..00000000 Binary files a/static/icons/060015E1.png and /dev/null differ diff --git a/static/icons/060015E2.png b/static/icons/060015E2.png deleted file mode 100755 index 2efce6e5..00000000 Binary files a/static/icons/060015E2.png and /dev/null differ diff --git a/static/icons/060015E3.png b/static/icons/060015E3.png deleted file mode 100755 index d84c0ff8..00000000 Binary files a/static/icons/060015E3.png and /dev/null differ diff --git a/static/icons/060015E4.png b/static/icons/060015E4.png deleted file mode 100755 index a6977a16..00000000 Binary files a/static/icons/060015E4.png and /dev/null differ diff --git a/static/icons/060015E5.png b/static/icons/060015E5.png deleted file mode 100755 index 52c47ba0..00000000 Binary files a/static/icons/060015E5.png and /dev/null differ diff --git a/static/icons/060015E6.png b/static/icons/060015E6.png deleted file mode 100755 index a8247f79..00000000 Binary files a/static/icons/060015E6.png and /dev/null differ diff --git a/static/icons/060015E7.png b/static/icons/060015E7.png deleted file mode 100755 index c2b80c1b..00000000 Binary files a/static/icons/060015E7.png and /dev/null differ diff --git a/static/icons/060015E8.png b/static/icons/060015E8.png deleted file mode 100755 index a69784a7..00000000 Binary files a/static/icons/060015E8.png and /dev/null differ diff --git a/static/icons/060015E9.png b/static/icons/060015E9.png deleted file mode 100755 index 6678c663..00000000 Binary files a/static/icons/060015E9.png and /dev/null differ diff --git a/static/icons/060015EA.png b/static/icons/060015EA.png deleted file mode 100755 index 1ed69131..00000000 Binary files a/static/icons/060015EA.png and /dev/null differ diff --git a/static/icons/060015EB.png b/static/icons/060015EB.png deleted file mode 100755 index 395ea81f..00000000 Binary files a/static/icons/060015EB.png and /dev/null differ diff --git a/static/icons/060015EC.png b/static/icons/060015EC.png deleted file mode 100755 index a610de2a..00000000 Binary files a/static/icons/060015EC.png and /dev/null differ diff --git a/static/icons/060015ED.png b/static/icons/060015ED.png deleted file mode 100755 index 989cafb1..00000000 Binary files a/static/icons/060015ED.png and /dev/null differ diff --git a/static/icons/060015EE.png b/static/icons/060015EE.png deleted file mode 100755 index 9b8ddb60..00000000 Binary files a/static/icons/060015EE.png and /dev/null differ diff --git a/static/icons/060015EF.png b/static/icons/060015EF.png deleted file mode 100755 index 5d3a9ea4..00000000 Binary files a/static/icons/060015EF.png and /dev/null differ diff --git a/static/icons/060015F0.png b/static/icons/060015F0.png deleted file mode 100755 index 6fc57ab0..00000000 Binary files a/static/icons/060015F0.png and /dev/null differ diff --git a/static/icons/060015F1.png b/static/icons/060015F1.png deleted file mode 100755 index 516eaa34..00000000 Binary files a/static/icons/060015F1.png and /dev/null differ diff --git a/static/icons/060015F2.png b/static/icons/060015F2.png deleted file mode 100755 index dd759b71..00000000 Binary files a/static/icons/060015F2.png and /dev/null differ diff --git a/static/icons/060015F3.png b/static/icons/060015F3.png deleted file mode 100755 index 86aac84e..00000000 Binary files a/static/icons/060015F3.png and /dev/null differ diff --git a/static/icons/060015F4.png b/static/icons/060015F4.png deleted file mode 100755 index 16f45a75..00000000 Binary files a/static/icons/060015F4.png and /dev/null differ diff --git a/static/icons/060015F5.png b/static/icons/060015F5.png deleted file mode 100755 index c29c5933..00000000 Binary files a/static/icons/060015F5.png and /dev/null differ diff --git a/static/icons/060015F6.png b/static/icons/060015F6.png deleted file mode 100755 index 8263dcd6..00000000 Binary files a/static/icons/060015F6.png and /dev/null differ diff --git a/static/icons/060015F7.png b/static/icons/060015F7.png deleted file mode 100755 index edd8a86f..00000000 Binary files a/static/icons/060015F7.png and /dev/null differ diff --git a/static/icons/060015F8.png b/static/icons/060015F8.png deleted file mode 100755 index a9706ddb..00000000 Binary files a/static/icons/060015F8.png and /dev/null differ diff --git a/static/icons/060015F9.png b/static/icons/060015F9.png deleted file mode 100755 index de023705..00000000 Binary files a/static/icons/060015F9.png and /dev/null differ diff --git a/static/icons/060015FA.png b/static/icons/060015FA.png deleted file mode 100755 index 9999c6ed..00000000 Binary files a/static/icons/060015FA.png and /dev/null differ diff --git a/static/icons/060015FB.png b/static/icons/060015FB.png deleted file mode 100755 index c58b281e..00000000 Binary files a/static/icons/060015FB.png and /dev/null differ diff --git a/static/icons/060015FC.png b/static/icons/060015FC.png deleted file mode 100755 index ed1cfb0e..00000000 Binary files a/static/icons/060015FC.png and /dev/null differ diff --git a/static/icons/060015FD.png b/static/icons/060015FD.png deleted file mode 100755 index 55e53d7f..00000000 Binary files a/static/icons/060015FD.png and /dev/null differ diff --git a/static/icons/060015FE.png b/static/icons/060015FE.png deleted file mode 100755 index 3eb6ea69..00000000 Binary files a/static/icons/060015FE.png and /dev/null differ diff --git a/static/icons/060015FF.png b/static/icons/060015FF.png deleted file mode 100755 index 25ee786e..00000000 Binary files a/static/icons/060015FF.png and /dev/null differ diff --git a/static/icons/06001600.png b/static/icons/06001600.png deleted file mode 100755 index 2406ad77..00000000 Binary files a/static/icons/06001600.png and /dev/null differ diff --git a/static/icons/06001601.png b/static/icons/06001601.png deleted file mode 100755 index f8ba4d63..00000000 Binary files a/static/icons/06001601.png and /dev/null differ diff --git a/static/icons/06001602.png b/static/icons/06001602.png deleted file mode 100755 index deda290d..00000000 Binary files a/static/icons/06001602.png and /dev/null differ diff --git a/static/icons/06001603.png b/static/icons/06001603.png deleted file mode 100755 index 623b9847..00000000 Binary files a/static/icons/06001603.png and /dev/null differ diff --git a/static/icons/06001604.png b/static/icons/06001604.png deleted file mode 100755 index 4e19f274..00000000 Binary files a/static/icons/06001604.png and /dev/null differ diff --git a/static/icons/06001605.png b/static/icons/06001605.png deleted file mode 100755 index 5f2142f8..00000000 Binary files a/static/icons/06001605.png and /dev/null differ diff --git a/static/icons/06001606.png b/static/icons/06001606.png deleted file mode 100755 index 2e593c2f..00000000 Binary files a/static/icons/06001606.png and /dev/null differ diff --git a/static/icons/06001607.png b/static/icons/06001607.png deleted file mode 100755 index 6415bc29..00000000 Binary files a/static/icons/06001607.png and /dev/null differ diff --git a/static/icons/06001608.png b/static/icons/06001608.png deleted file mode 100755 index 739ce9ac..00000000 Binary files a/static/icons/06001608.png and /dev/null differ diff --git a/static/icons/06001609.png b/static/icons/06001609.png deleted file mode 100755 index bb8c92fe..00000000 Binary files a/static/icons/06001609.png and /dev/null differ diff --git a/static/icons/0600160A.png b/static/icons/0600160A.png deleted file mode 100755 index 54d214ca..00000000 Binary files a/static/icons/0600160A.png and /dev/null differ diff --git a/static/icons/0600160B.png b/static/icons/0600160B.png deleted file mode 100755 index 80e2cbd3..00000000 Binary files a/static/icons/0600160B.png and /dev/null differ diff --git a/static/icons/0600160C.png b/static/icons/0600160C.png deleted file mode 100755 index 008e3460..00000000 Binary files a/static/icons/0600160C.png and /dev/null differ diff --git a/static/icons/0600160D.png b/static/icons/0600160D.png deleted file mode 100755 index 9809762f..00000000 Binary files a/static/icons/0600160D.png and /dev/null differ diff --git a/static/icons/0600160E.png b/static/icons/0600160E.png deleted file mode 100755 index e50d68f5..00000000 Binary files a/static/icons/0600160E.png and /dev/null differ diff --git a/static/icons/0600160F.png b/static/icons/0600160F.png deleted file mode 100755 index 4118d836..00000000 Binary files a/static/icons/0600160F.png and /dev/null differ diff --git a/static/icons/06001610.png b/static/icons/06001610.png deleted file mode 100755 index 962748d9..00000000 Binary files a/static/icons/06001610.png and /dev/null differ diff --git a/static/icons/06001611.png b/static/icons/06001611.png deleted file mode 100755 index 67b9a3e8..00000000 Binary files a/static/icons/06001611.png and /dev/null differ diff --git a/static/icons/06001612.png b/static/icons/06001612.png deleted file mode 100755 index 058fa74c..00000000 Binary files a/static/icons/06001612.png and /dev/null differ diff --git a/static/icons/06001613.png b/static/icons/06001613.png deleted file mode 100755 index 61b1f1e9..00000000 Binary files a/static/icons/06001613.png and /dev/null differ diff --git a/static/icons/06001614.png b/static/icons/06001614.png deleted file mode 100755 index 4725b72f..00000000 Binary files a/static/icons/06001614.png and /dev/null differ diff --git a/static/icons/06001615.png b/static/icons/06001615.png deleted file mode 100755 index ba12b06e..00000000 Binary files a/static/icons/06001615.png and /dev/null differ diff --git a/static/icons/06001616.png b/static/icons/06001616.png deleted file mode 100755 index 176ec00e..00000000 Binary files a/static/icons/06001616.png and /dev/null differ diff --git a/static/icons/06001617.png b/static/icons/06001617.png deleted file mode 100755 index 4387b033..00000000 Binary files a/static/icons/06001617.png and /dev/null differ diff --git a/static/icons/06001618.png b/static/icons/06001618.png deleted file mode 100755 index ec4d32dc..00000000 Binary files a/static/icons/06001618.png and /dev/null differ diff --git a/static/icons/06001619.png b/static/icons/06001619.png deleted file mode 100755 index 8c2c852c..00000000 Binary files a/static/icons/06001619.png and /dev/null differ diff --git a/static/icons/0600161A.png b/static/icons/0600161A.png deleted file mode 100755 index 416da650..00000000 Binary files a/static/icons/0600161A.png and /dev/null differ diff --git a/static/icons/0600161B.png b/static/icons/0600161B.png deleted file mode 100755 index e09cd5ff..00000000 Binary files a/static/icons/0600161B.png and /dev/null differ diff --git a/static/icons/0600161C.png b/static/icons/0600161C.png deleted file mode 100755 index 68c0fad5..00000000 Binary files a/static/icons/0600161C.png and /dev/null differ diff --git a/static/icons/0600161D.png b/static/icons/0600161D.png deleted file mode 100755 index 3cd49972..00000000 Binary files a/static/icons/0600161D.png and /dev/null differ diff --git a/static/icons/0600161E.png b/static/icons/0600161E.png deleted file mode 100755 index cc652234..00000000 Binary files a/static/icons/0600161E.png and /dev/null differ diff --git a/static/icons/0600161F.png b/static/icons/0600161F.png deleted file mode 100755 index 01843566..00000000 Binary files a/static/icons/0600161F.png and /dev/null differ diff --git a/static/icons/06001620.png b/static/icons/06001620.png deleted file mode 100755 index f63c579c..00000000 Binary files a/static/icons/06001620.png and /dev/null differ diff --git a/static/icons/06001621.png b/static/icons/06001621.png deleted file mode 100755 index cefd9937..00000000 Binary files a/static/icons/06001621.png and /dev/null differ diff --git a/static/icons/06001622.png b/static/icons/06001622.png deleted file mode 100755 index fbc2a5b6..00000000 Binary files a/static/icons/06001622.png and /dev/null differ diff --git a/static/icons/06001623.png b/static/icons/06001623.png deleted file mode 100755 index 7617ac8e..00000000 Binary files a/static/icons/06001623.png and /dev/null differ diff --git a/static/icons/06001624.png b/static/icons/06001624.png deleted file mode 100755 index c4f3bccb..00000000 Binary files a/static/icons/06001624.png and /dev/null differ diff --git a/static/icons/06001625.png b/static/icons/06001625.png deleted file mode 100755 index eb91be59..00000000 Binary files a/static/icons/06001625.png and /dev/null differ diff --git a/static/icons/06001626.png b/static/icons/06001626.png deleted file mode 100755 index e3f595d4..00000000 Binary files a/static/icons/06001626.png and /dev/null differ diff --git a/static/icons/06001627.png b/static/icons/06001627.png deleted file mode 100755 index 27f00057..00000000 Binary files a/static/icons/06001627.png and /dev/null differ diff --git a/static/icons/06001628.png b/static/icons/06001628.png deleted file mode 100755 index e191be20..00000000 Binary files a/static/icons/06001628.png and /dev/null differ diff --git a/static/icons/06001629.png b/static/icons/06001629.png deleted file mode 100755 index d0f6f0ec..00000000 Binary files a/static/icons/06001629.png and /dev/null differ diff --git a/static/icons/0600162A.png b/static/icons/0600162A.png deleted file mode 100755 index 34d1423b..00000000 Binary files a/static/icons/0600162A.png and /dev/null differ diff --git a/static/icons/0600162B.png b/static/icons/0600162B.png deleted file mode 100755 index 4879e93f..00000000 Binary files a/static/icons/0600162B.png and /dev/null differ diff --git a/static/icons/0600162C.png b/static/icons/0600162C.png deleted file mode 100755 index eec3138e..00000000 Binary files a/static/icons/0600162C.png and /dev/null differ diff --git a/static/icons/0600162D.png b/static/icons/0600162D.png deleted file mode 100755 index e6167955..00000000 Binary files a/static/icons/0600162D.png and /dev/null differ diff --git a/static/icons/0600162E.png b/static/icons/0600162E.png deleted file mode 100755 index 7c652705..00000000 Binary files a/static/icons/0600162E.png and /dev/null differ diff --git a/static/icons/0600162F.png b/static/icons/0600162F.png deleted file mode 100755 index a6b905a1..00000000 Binary files a/static/icons/0600162F.png and /dev/null differ diff --git a/static/icons/06001630.png b/static/icons/06001630.png deleted file mode 100755 index 79a0b863..00000000 Binary files a/static/icons/06001630.png and /dev/null differ diff --git a/static/icons/06001631.png b/static/icons/06001631.png deleted file mode 100755 index 739227b6..00000000 Binary files a/static/icons/06001631.png and /dev/null differ diff --git a/static/icons/06001632.png b/static/icons/06001632.png deleted file mode 100755 index 9ccbc29a..00000000 Binary files a/static/icons/06001632.png and /dev/null differ diff --git a/static/icons/06001633.png b/static/icons/06001633.png deleted file mode 100755 index 0f55b84c..00000000 Binary files a/static/icons/06001633.png and /dev/null differ diff --git a/static/icons/06001634.png b/static/icons/06001634.png deleted file mode 100755 index 6fcc8576..00000000 Binary files a/static/icons/06001634.png and /dev/null differ diff --git a/static/icons/06001635.png b/static/icons/06001635.png deleted file mode 100755 index 586b1b19..00000000 Binary files a/static/icons/06001635.png and /dev/null differ diff --git a/static/icons/06001636.png b/static/icons/06001636.png deleted file mode 100755 index 843ac2c7..00000000 Binary files a/static/icons/06001636.png and /dev/null differ diff --git a/static/icons/06001637.png b/static/icons/06001637.png deleted file mode 100755 index 5052f527..00000000 Binary files a/static/icons/06001637.png and /dev/null differ diff --git a/static/icons/06001638.png b/static/icons/06001638.png deleted file mode 100755 index c372aee8..00000000 Binary files a/static/icons/06001638.png and /dev/null differ diff --git a/static/icons/06001639.png b/static/icons/06001639.png deleted file mode 100755 index 663d48d5..00000000 Binary files a/static/icons/06001639.png and /dev/null differ diff --git a/static/icons/0600163A.png b/static/icons/0600163A.png deleted file mode 100755 index 85d8ed7b..00000000 Binary files a/static/icons/0600163A.png and /dev/null differ diff --git a/static/icons/0600163B.png b/static/icons/0600163B.png deleted file mode 100755 index 5fdb149b..00000000 Binary files a/static/icons/0600163B.png and /dev/null differ diff --git a/static/icons/0600163C.png b/static/icons/0600163C.png deleted file mode 100755 index 1a8d5733..00000000 Binary files a/static/icons/0600163C.png and /dev/null differ diff --git a/static/icons/0600163D.png b/static/icons/0600163D.png deleted file mode 100755 index 4700c936..00000000 Binary files a/static/icons/0600163D.png and /dev/null differ diff --git a/static/icons/0600163E.png b/static/icons/0600163E.png deleted file mode 100755 index 61c6cd97..00000000 Binary files a/static/icons/0600163E.png and /dev/null differ diff --git a/static/icons/0600163F.png b/static/icons/0600163F.png deleted file mode 100755 index 7197a97b..00000000 Binary files a/static/icons/0600163F.png and /dev/null differ diff --git a/static/icons/06001640.png b/static/icons/06001640.png deleted file mode 100755 index 7b6f4213..00000000 Binary files a/static/icons/06001640.png and /dev/null differ diff --git a/static/icons/06001641.png b/static/icons/06001641.png deleted file mode 100755 index 86793797..00000000 Binary files a/static/icons/06001641.png and /dev/null differ diff --git a/static/icons/06001642.png b/static/icons/06001642.png deleted file mode 100755 index 895ff2ff..00000000 Binary files a/static/icons/06001642.png and /dev/null differ diff --git a/static/icons/06001643.png b/static/icons/06001643.png deleted file mode 100755 index 36937073..00000000 Binary files a/static/icons/06001643.png and /dev/null differ diff --git a/static/icons/06001644.png b/static/icons/06001644.png deleted file mode 100755 index 4407e747..00000000 Binary files a/static/icons/06001644.png and /dev/null differ diff --git a/static/icons/06001645.png b/static/icons/06001645.png deleted file mode 100755 index 50ba8df7..00000000 Binary files a/static/icons/06001645.png and /dev/null differ diff --git a/static/icons/06001646.png b/static/icons/06001646.png deleted file mode 100755 index f49c75ac..00000000 Binary files a/static/icons/06001646.png and /dev/null differ diff --git a/static/icons/06001647.png b/static/icons/06001647.png deleted file mode 100755 index e51ce6cc..00000000 Binary files a/static/icons/06001647.png and /dev/null differ diff --git a/static/icons/06001648.png b/static/icons/06001648.png deleted file mode 100755 index c0d23a79..00000000 Binary files a/static/icons/06001648.png and /dev/null differ diff --git a/static/icons/06001649.png b/static/icons/06001649.png deleted file mode 100755 index 0c599923..00000000 Binary files a/static/icons/06001649.png and /dev/null differ diff --git a/static/icons/0600164A.png b/static/icons/0600164A.png deleted file mode 100755 index 4315206a..00000000 Binary files a/static/icons/0600164A.png and /dev/null differ diff --git a/static/icons/0600164B.png b/static/icons/0600164B.png deleted file mode 100755 index ceb3ff65..00000000 Binary files a/static/icons/0600164B.png and /dev/null differ diff --git a/static/icons/0600164C.png b/static/icons/0600164C.png deleted file mode 100755 index 61e11ff1..00000000 Binary files a/static/icons/0600164C.png and /dev/null differ diff --git a/static/icons/0600164D.png b/static/icons/0600164D.png deleted file mode 100755 index 35a5183a..00000000 Binary files a/static/icons/0600164D.png and /dev/null differ diff --git a/static/icons/0600164E.png b/static/icons/0600164E.png deleted file mode 100755 index b69afe2d..00000000 Binary files a/static/icons/0600164E.png and /dev/null differ diff --git a/static/icons/0600164F.png b/static/icons/0600164F.png deleted file mode 100755 index 6e25a4c8..00000000 Binary files a/static/icons/0600164F.png and /dev/null differ diff --git a/static/icons/06001650.png b/static/icons/06001650.png deleted file mode 100755 index f8998a60..00000000 Binary files a/static/icons/06001650.png and /dev/null differ diff --git a/static/icons/06001651.png b/static/icons/06001651.png deleted file mode 100755 index 30dd861f..00000000 Binary files a/static/icons/06001651.png and /dev/null differ diff --git a/static/icons/06001652.png b/static/icons/06001652.png deleted file mode 100755 index 3df01b8f..00000000 Binary files a/static/icons/06001652.png and /dev/null differ diff --git a/static/icons/06001653.png b/static/icons/06001653.png deleted file mode 100755 index 06af92a0..00000000 Binary files a/static/icons/06001653.png and /dev/null differ diff --git a/static/icons/06001654.png b/static/icons/06001654.png deleted file mode 100755 index 50ef379f..00000000 Binary files a/static/icons/06001654.png and /dev/null differ diff --git a/static/icons/06001655.png b/static/icons/06001655.png deleted file mode 100755 index 38a60112..00000000 Binary files a/static/icons/06001655.png and /dev/null differ diff --git a/static/icons/06001656.png b/static/icons/06001656.png deleted file mode 100755 index 1755643d..00000000 Binary files a/static/icons/06001656.png and /dev/null differ diff --git a/static/icons/06001657.png b/static/icons/06001657.png deleted file mode 100755 index 99f7b511..00000000 Binary files a/static/icons/06001657.png and /dev/null differ diff --git a/static/icons/06001658.png b/static/icons/06001658.png deleted file mode 100755 index bf660971..00000000 Binary files a/static/icons/06001658.png and /dev/null differ diff --git a/static/icons/06001659.png b/static/icons/06001659.png deleted file mode 100755 index d054ae01..00000000 Binary files a/static/icons/06001659.png and /dev/null differ diff --git a/static/icons/0600165A.png b/static/icons/0600165A.png deleted file mode 100755 index 6dcf24f8..00000000 Binary files a/static/icons/0600165A.png and /dev/null differ diff --git a/static/icons/0600165B.png b/static/icons/0600165B.png deleted file mode 100755 index d1610fb7..00000000 Binary files a/static/icons/0600165B.png and /dev/null differ diff --git a/static/icons/0600165C.png b/static/icons/0600165C.png deleted file mode 100755 index faa7d7df..00000000 Binary files a/static/icons/0600165C.png and /dev/null differ diff --git a/static/icons/0600165D.png b/static/icons/0600165D.png deleted file mode 100755 index e9be1c69..00000000 Binary files a/static/icons/0600165D.png and /dev/null differ diff --git a/static/icons/0600165E.png b/static/icons/0600165E.png deleted file mode 100755 index f0d7c97c..00000000 Binary files a/static/icons/0600165E.png and /dev/null differ diff --git a/static/icons/0600165F.png b/static/icons/0600165F.png deleted file mode 100755 index 78ca5a7b..00000000 Binary files a/static/icons/0600165F.png and /dev/null differ diff --git a/static/icons/06001660.png b/static/icons/06001660.png deleted file mode 100755 index 50759394..00000000 Binary files a/static/icons/06001660.png and /dev/null differ diff --git a/static/icons/06001661.png b/static/icons/06001661.png deleted file mode 100755 index 67db98a2..00000000 Binary files a/static/icons/06001661.png and /dev/null differ diff --git a/static/icons/06001662.png b/static/icons/06001662.png deleted file mode 100755 index 7992d47a..00000000 Binary files a/static/icons/06001662.png and /dev/null differ diff --git a/static/icons/06001663.png b/static/icons/06001663.png deleted file mode 100755 index 40e5abee..00000000 Binary files a/static/icons/06001663.png and /dev/null differ diff --git a/static/icons/06001664.png b/static/icons/06001664.png deleted file mode 100755 index d0b374aa..00000000 Binary files a/static/icons/06001664.png and /dev/null differ diff --git a/static/icons/06001665.png b/static/icons/06001665.png deleted file mode 100755 index 34ccd3ef..00000000 Binary files a/static/icons/06001665.png and /dev/null differ diff --git a/static/icons/06001666.png b/static/icons/06001666.png deleted file mode 100755 index 557661f5..00000000 Binary files a/static/icons/06001666.png and /dev/null differ diff --git a/static/icons/06001667.png b/static/icons/06001667.png deleted file mode 100755 index ad967c28..00000000 Binary files a/static/icons/06001667.png and /dev/null differ diff --git a/static/icons/06001668.png b/static/icons/06001668.png deleted file mode 100755 index 1a2f4822..00000000 Binary files a/static/icons/06001668.png and /dev/null differ diff --git a/static/icons/06001669.png b/static/icons/06001669.png deleted file mode 100755 index f9035054..00000000 Binary files a/static/icons/06001669.png and /dev/null differ diff --git a/static/icons/0600166A.png b/static/icons/0600166A.png deleted file mode 100755 index eec068a2..00000000 Binary files a/static/icons/0600166A.png and /dev/null differ diff --git a/static/icons/0600166B.png b/static/icons/0600166B.png deleted file mode 100755 index 6008d20b..00000000 Binary files a/static/icons/0600166B.png and /dev/null differ diff --git a/static/icons/0600166C.png b/static/icons/0600166C.png deleted file mode 100755 index 986f07d9..00000000 Binary files a/static/icons/0600166C.png and /dev/null differ diff --git a/static/icons/0600166D.png b/static/icons/0600166D.png deleted file mode 100755 index cf618c71..00000000 Binary files a/static/icons/0600166D.png and /dev/null differ diff --git a/static/icons/0600166E.png b/static/icons/0600166E.png deleted file mode 100755 index bd8230c8..00000000 Binary files a/static/icons/0600166E.png and /dev/null differ diff --git a/static/icons/0600166F.png b/static/icons/0600166F.png deleted file mode 100755 index 76a64614..00000000 Binary files a/static/icons/0600166F.png and /dev/null differ diff --git a/static/icons/06001670.png b/static/icons/06001670.png deleted file mode 100755 index f2deebaf..00000000 Binary files a/static/icons/06001670.png and /dev/null differ diff --git a/static/icons/06001671.png b/static/icons/06001671.png deleted file mode 100755 index 2cd210b1..00000000 Binary files a/static/icons/06001671.png and /dev/null differ diff --git a/static/icons/06001672.png b/static/icons/06001672.png deleted file mode 100755 index 96abd9c1..00000000 Binary files a/static/icons/06001672.png and /dev/null differ diff --git a/static/icons/06001673.png b/static/icons/06001673.png deleted file mode 100755 index ad8fcfa4..00000000 Binary files a/static/icons/06001673.png and /dev/null differ diff --git a/static/icons/06001674.png b/static/icons/06001674.png deleted file mode 100755 index 2bc76bf2..00000000 Binary files a/static/icons/06001674.png and /dev/null differ diff --git a/static/icons/06001675.png b/static/icons/06001675.png deleted file mode 100755 index 8a2d1654..00000000 Binary files a/static/icons/06001675.png and /dev/null differ diff --git a/static/icons/06001676.png b/static/icons/06001676.png deleted file mode 100755 index 4451700a..00000000 Binary files a/static/icons/06001676.png and /dev/null differ diff --git a/static/icons/06001677.png b/static/icons/06001677.png deleted file mode 100755 index 88ded4e0..00000000 Binary files a/static/icons/06001677.png and /dev/null differ diff --git a/static/icons/06001678.png b/static/icons/06001678.png deleted file mode 100755 index 925470a7..00000000 Binary files a/static/icons/06001678.png and /dev/null differ diff --git a/static/icons/06001679.png b/static/icons/06001679.png deleted file mode 100755 index 31131645..00000000 Binary files a/static/icons/06001679.png and /dev/null differ diff --git a/static/icons/0600167A.png b/static/icons/0600167A.png deleted file mode 100755 index a159b931..00000000 Binary files a/static/icons/0600167A.png and /dev/null differ diff --git a/static/icons/0600167B.png b/static/icons/0600167B.png deleted file mode 100755 index 13bc5d77..00000000 Binary files a/static/icons/0600167B.png and /dev/null differ diff --git a/static/icons/0600167C.png b/static/icons/0600167C.png deleted file mode 100755 index ee0b9f3d..00000000 Binary files a/static/icons/0600167C.png and /dev/null differ diff --git a/static/icons/0600167D.png b/static/icons/0600167D.png deleted file mode 100755 index 882f9153..00000000 Binary files a/static/icons/0600167D.png and /dev/null differ diff --git a/static/icons/0600167E.png b/static/icons/0600167E.png deleted file mode 100755 index 868da98d..00000000 Binary files a/static/icons/0600167E.png and /dev/null differ diff --git a/static/icons/0600167F.png b/static/icons/0600167F.png deleted file mode 100755 index 5326a743..00000000 Binary files a/static/icons/0600167F.png and /dev/null differ diff --git a/static/icons/06001680.png b/static/icons/06001680.png deleted file mode 100755 index 129a94bc..00000000 Binary files a/static/icons/06001680.png and /dev/null differ diff --git a/static/icons/06001681.png b/static/icons/06001681.png deleted file mode 100755 index 2ff5fae3..00000000 Binary files a/static/icons/06001681.png and /dev/null differ diff --git a/static/icons/06001682.png b/static/icons/06001682.png deleted file mode 100755 index 92f0dad4..00000000 Binary files a/static/icons/06001682.png and /dev/null differ diff --git a/static/icons/06001683.png b/static/icons/06001683.png deleted file mode 100755 index 6c016218..00000000 Binary files a/static/icons/06001683.png and /dev/null differ diff --git a/static/icons/06001684.png b/static/icons/06001684.png deleted file mode 100755 index 332babaf..00000000 Binary files a/static/icons/06001684.png and /dev/null differ diff --git a/static/icons/06001685.png b/static/icons/06001685.png deleted file mode 100755 index c5928e87..00000000 Binary files a/static/icons/06001685.png and /dev/null differ diff --git a/static/icons/06001686.png b/static/icons/06001686.png deleted file mode 100755 index 1004c2e1..00000000 Binary files a/static/icons/06001686.png and /dev/null differ diff --git a/static/icons/06001687.png b/static/icons/06001687.png deleted file mode 100755 index 40caa4b5..00000000 Binary files a/static/icons/06001687.png and /dev/null differ diff --git a/static/icons/06001688.png b/static/icons/06001688.png deleted file mode 100755 index 59144503..00000000 Binary files a/static/icons/06001688.png and /dev/null differ diff --git a/static/icons/06001689.png b/static/icons/06001689.png deleted file mode 100755 index 43f84031..00000000 Binary files a/static/icons/06001689.png and /dev/null differ diff --git a/static/icons/0600168A.png b/static/icons/0600168A.png deleted file mode 100755 index 98857a80..00000000 Binary files a/static/icons/0600168A.png and /dev/null differ diff --git a/static/icons/0600168B.png b/static/icons/0600168B.png deleted file mode 100755 index 3a6f139c..00000000 Binary files a/static/icons/0600168B.png and /dev/null differ diff --git a/static/icons/0600168C.png b/static/icons/0600168C.png deleted file mode 100755 index 71153995..00000000 Binary files a/static/icons/0600168C.png and /dev/null differ diff --git a/static/icons/0600168D.png b/static/icons/0600168D.png deleted file mode 100755 index 6135a590..00000000 Binary files a/static/icons/0600168D.png and /dev/null differ diff --git a/static/icons/0600168E.png b/static/icons/0600168E.png deleted file mode 100755 index a31221a1..00000000 Binary files a/static/icons/0600168E.png and /dev/null differ diff --git a/static/icons/0600168F.png b/static/icons/0600168F.png deleted file mode 100755 index c2684ecb..00000000 Binary files a/static/icons/0600168F.png and /dev/null differ diff --git a/static/icons/06001690.png b/static/icons/06001690.png deleted file mode 100755 index 6c99ddbe..00000000 Binary files a/static/icons/06001690.png and /dev/null differ diff --git a/static/icons/06001691.png b/static/icons/06001691.png deleted file mode 100755 index f005cdba..00000000 Binary files a/static/icons/06001691.png and /dev/null differ diff --git a/static/icons/06001692.png b/static/icons/06001692.png deleted file mode 100755 index f57b6e03..00000000 Binary files a/static/icons/06001692.png and /dev/null differ diff --git a/static/icons/06001693.png b/static/icons/06001693.png deleted file mode 100755 index 44e0d45e..00000000 Binary files a/static/icons/06001693.png and /dev/null differ diff --git a/static/icons/06001694.png b/static/icons/06001694.png deleted file mode 100755 index 7e0ae212..00000000 Binary files a/static/icons/06001694.png and /dev/null differ diff --git a/static/icons/06001695.png b/static/icons/06001695.png deleted file mode 100755 index 00b12c7a..00000000 Binary files a/static/icons/06001695.png and /dev/null differ diff --git a/static/icons/06001696.png b/static/icons/06001696.png deleted file mode 100755 index c1438708..00000000 Binary files a/static/icons/06001696.png and /dev/null differ diff --git a/static/icons/06001697.png b/static/icons/06001697.png deleted file mode 100755 index 64f844a0..00000000 Binary files a/static/icons/06001697.png and /dev/null differ diff --git a/static/icons/06001698.png b/static/icons/06001698.png deleted file mode 100755 index 365ea85a..00000000 Binary files a/static/icons/06001698.png and /dev/null differ diff --git a/static/icons/06001699.png b/static/icons/06001699.png deleted file mode 100755 index 7950ed33..00000000 Binary files a/static/icons/06001699.png and /dev/null differ diff --git a/static/icons/0600169A.png b/static/icons/0600169A.png deleted file mode 100755 index fcadd4f8..00000000 Binary files a/static/icons/0600169A.png and /dev/null differ diff --git a/static/icons/0600169B.png b/static/icons/0600169B.png deleted file mode 100755 index 71c504c3..00000000 Binary files a/static/icons/0600169B.png and /dev/null differ diff --git a/static/icons/0600169C.png b/static/icons/0600169C.png deleted file mode 100755 index 375877e4..00000000 Binary files a/static/icons/0600169C.png and /dev/null differ diff --git a/static/icons/0600169D.png b/static/icons/0600169D.png deleted file mode 100755 index b448bfc0..00000000 Binary files a/static/icons/0600169D.png and /dev/null differ diff --git a/static/icons/0600169E.png b/static/icons/0600169E.png deleted file mode 100755 index a1d39b3f..00000000 Binary files a/static/icons/0600169E.png and /dev/null differ diff --git a/static/icons/0600169F.png b/static/icons/0600169F.png deleted file mode 100755 index 661fc2b2..00000000 Binary files a/static/icons/0600169F.png and /dev/null differ diff --git a/static/icons/060016A0.png b/static/icons/060016A0.png deleted file mode 100755 index 75cf51ac..00000000 Binary files a/static/icons/060016A0.png and /dev/null differ diff --git a/static/icons/060016A1.png b/static/icons/060016A1.png deleted file mode 100755 index b9ad7fb3..00000000 Binary files a/static/icons/060016A1.png and /dev/null differ diff --git a/static/icons/060016A2.png b/static/icons/060016A2.png deleted file mode 100755 index 56eba477..00000000 Binary files a/static/icons/060016A2.png and /dev/null differ diff --git a/static/icons/060016A3.png b/static/icons/060016A3.png deleted file mode 100755 index 467cb6b8..00000000 Binary files a/static/icons/060016A3.png and /dev/null differ diff --git a/static/icons/060016A4.png b/static/icons/060016A4.png deleted file mode 100755 index f1b24318..00000000 Binary files a/static/icons/060016A4.png and /dev/null differ diff --git a/static/icons/060016A5.png b/static/icons/060016A5.png deleted file mode 100755 index 5ff3d291..00000000 Binary files a/static/icons/060016A5.png and /dev/null differ diff --git a/static/icons/060016A6.png b/static/icons/060016A6.png deleted file mode 100755 index 2dcd1f59..00000000 Binary files a/static/icons/060016A6.png and /dev/null differ diff --git a/static/icons/060016A7.png b/static/icons/060016A7.png deleted file mode 100755 index a4491188..00000000 Binary files a/static/icons/060016A7.png and /dev/null differ diff --git a/static/icons/060016A8.png b/static/icons/060016A8.png deleted file mode 100755 index 03aa9e80..00000000 Binary files a/static/icons/060016A8.png and /dev/null differ diff --git a/static/icons/060016A9.png b/static/icons/060016A9.png deleted file mode 100755 index eb46c158..00000000 Binary files a/static/icons/060016A9.png and /dev/null differ diff --git a/static/icons/060016AA.png b/static/icons/060016AA.png deleted file mode 100755 index 265a591b..00000000 Binary files a/static/icons/060016AA.png and /dev/null differ diff --git a/static/icons/060016AB.png b/static/icons/060016AB.png deleted file mode 100755 index 1795e549..00000000 Binary files a/static/icons/060016AB.png and /dev/null differ diff --git a/static/icons/060016AC.png b/static/icons/060016AC.png deleted file mode 100755 index f2271e33..00000000 Binary files a/static/icons/060016AC.png and /dev/null differ diff --git a/static/icons/060016AD.png b/static/icons/060016AD.png deleted file mode 100755 index 9a211ee6..00000000 Binary files a/static/icons/060016AD.png and /dev/null differ diff --git a/static/icons/060016AE.png b/static/icons/060016AE.png deleted file mode 100755 index eebefa3f..00000000 Binary files a/static/icons/060016AE.png and /dev/null differ diff --git a/static/icons/060016AF.png b/static/icons/060016AF.png deleted file mode 100755 index f19dba4e..00000000 Binary files a/static/icons/060016AF.png and /dev/null differ diff --git a/static/icons/060016B0.png b/static/icons/060016B0.png deleted file mode 100755 index 4592a0ba..00000000 Binary files a/static/icons/060016B0.png and /dev/null differ diff --git a/static/icons/060016B1.png b/static/icons/060016B1.png deleted file mode 100755 index 1cf1e96f..00000000 Binary files a/static/icons/060016B1.png and /dev/null differ diff --git a/static/icons/060016B2.png b/static/icons/060016B2.png deleted file mode 100755 index eb32e55e..00000000 Binary files a/static/icons/060016B2.png and /dev/null differ diff --git a/static/icons/060016B3.png b/static/icons/060016B3.png deleted file mode 100755 index 818a0e04..00000000 Binary files a/static/icons/060016B3.png and /dev/null differ diff --git a/static/icons/060016B4.png b/static/icons/060016B4.png deleted file mode 100755 index b944e443..00000000 Binary files a/static/icons/060016B4.png and /dev/null differ diff --git a/static/icons/060016B5.png b/static/icons/060016B5.png deleted file mode 100755 index 64111991..00000000 Binary files a/static/icons/060016B5.png and /dev/null differ diff --git a/static/icons/060016B6.png b/static/icons/060016B6.png deleted file mode 100755 index bba96340..00000000 Binary files a/static/icons/060016B6.png and /dev/null differ diff --git a/static/icons/060016B7.png b/static/icons/060016B7.png deleted file mode 100755 index 1d3447ba..00000000 Binary files a/static/icons/060016B7.png and /dev/null differ diff --git a/static/icons/060016B8.png b/static/icons/060016B8.png deleted file mode 100755 index e3ad6df0..00000000 Binary files a/static/icons/060016B8.png and /dev/null differ diff --git a/static/icons/060016B9.png b/static/icons/060016B9.png deleted file mode 100755 index 269908de..00000000 Binary files a/static/icons/060016B9.png and /dev/null differ diff --git a/static/icons/060016BA.png b/static/icons/060016BA.png deleted file mode 100755 index ad436d19..00000000 Binary files a/static/icons/060016BA.png and /dev/null differ diff --git a/static/icons/060016BB.png b/static/icons/060016BB.png deleted file mode 100755 index e9b21ac2..00000000 Binary files a/static/icons/060016BB.png and /dev/null differ diff --git a/static/icons/060016BC.png b/static/icons/060016BC.png deleted file mode 100755 index afa06058..00000000 Binary files a/static/icons/060016BC.png and /dev/null differ diff --git a/static/icons/060016BD.png b/static/icons/060016BD.png deleted file mode 100755 index 7bbc77c3..00000000 Binary files a/static/icons/060016BD.png and /dev/null differ diff --git a/static/icons/060016BF.png b/static/icons/060016BF.png deleted file mode 100755 index 1fdc28c4..00000000 Binary files a/static/icons/060016BF.png and /dev/null differ diff --git a/static/icons/060016C0.png b/static/icons/060016C0.png deleted file mode 100755 index ab360508..00000000 Binary files a/static/icons/060016C0.png and /dev/null differ diff --git a/static/icons/060016C1.png b/static/icons/060016C1.png deleted file mode 100755 index 7528dc98..00000000 Binary files a/static/icons/060016C1.png and /dev/null differ diff --git a/static/icons/060016C2.png b/static/icons/060016C2.png deleted file mode 100755 index 0ea9f441..00000000 Binary files a/static/icons/060016C2.png and /dev/null differ diff --git a/static/icons/060016C3.png b/static/icons/060016C3.png deleted file mode 100755 index f2ca158e..00000000 Binary files a/static/icons/060016C3.png and /dev/null differ diff --git a/static/icons/060016C4.png b/static/icons/060016C4.png deleted file mode 100755 index c0ab5a5a..00000000 Binary files a/static/icons/060016C4.png and /dev/null differ diff --git a/static/icons/060016C5.png b/static/icons/060016C5.png deleted file mode 100755 index a58a9d5f..00000000 Binary files a/static/icons/060016C5.png and /dev/null differ diff --git a/static/icons/060016C6.png b/static/icons/060016C6.png deleted file mode 100755 index 607d43af..00000000 Binary files a/static/icons/060016C6.png and /dev/null differ diff --git a/static/icons/060016C9.png b/static/icons/060016C9.png deleted file mode 100755 index f086972e..00000000 Binary files a/static/icons/060016C9.png and /dev/null differ diff --git a/static/icons/060016CA.png b/static/icons/060016CA.png deleted file mode 100755 index 94c2ed19..00000000 Binary files a/static/icons/060016CA.png and /dev/null differ diff --git a/static/icons/060016CB.png b/static/icons/060016CB.png deleted file mode 100755 index 57817485..00000000 Binary files a/static/icons/060016CB.png and /dev/null differ diff --git a/static/icons/060016CC.png b/static/icons/060016CC.png deleted file mode 100755 index 07b9e366..00000000 Binary files a/static/icons/060016CC.png and /dev/null differ diff --git a/static/icons/060016CD.png b/static/icons/060016CD.png deleted file mode 100755 index 772f9d8a..00000000 Binary files a/static/icons/060016CD.png and /dev/null differ diff --git a/static/icons/060016CE.png b/static/icons/060016CE.png deleted file mode 100755 index 84e872d6..00000000 Binary files a/static/icons/060016CE.png and /dev/null differ diff --git a/static/icons/060016CF.png b/static/icons/060016CF.png deleted file mode 100755 index 04e8dc02..00000000 Binary files a/static/icons/060016CF.png and /dev/null differ diff --git a/static/icons/060016D0.png b/static/icons/060016D0.png deleted file mode 100755 index 73260075..00000000 Binary files a/static/icons/060016D0.png and /dev/null differ diff --git a/static/icons/060016D1.png b/static/icons/060016D1.png deleted file mode 100755 index ea36641f..00000000 Binary files a/static/icons/060016D1.png and /dev/null differ diff --git a/static/icons/060016D2.png b/static/icons/060016D2.png deleted file mode 100755 index 7f434c0f..00000000 Binary files a/static/icons/060016D2.png and /dev/null differ diff --git a/static/icons/060016D3.png b/static/icons/060016D3.png deleted file mode 100755 index ad3a2aff..00000000 Binary files a/static/icons/060016D3.png and /dev/null differ diff --git a/static/icons/060016D4.png b/static/icons/060016D4.png deleted file mode 100755 index ef2ea100..00000000 Binary files a/static/icons/060016D4.png and /dev/null differ diff --git a/static/icons/060016D5.png b/static/icons/060016D5.png deleted file mode 100755 index a6b03218..00000000 Binary files a/static/icons/060016D5.png and /dev/null differ diff --git a/static/icons/060016D6.png b/static/icons/060016D6.png deleted file mode 100755 index 7095306d..00000000 Binary files a/static/icons/060016D6.png and /dev/null differ diff --git a/static/icons/060016D7.png b/static/icons/060016D7.png deleted file mode 100755 index d4347f52..00000000 Binary files a/static/icons/060016D7.png and /dev/null differ diff --git a/static/icons/060016D8.png b/static/icons/060016D8.png deleted file mode 100755 index 83a94683..00000000 Binary files a/static/icons/060016D8.png and /dev/null differ diff --git a/static/icons/060016E0.png b/static/icons/060016E0.png deleted file mode 100755 index 073456cc..00000000 Binary files a/static/icons/060016E0.png and /dev/null differ diff --git a/static/icons/060016E1.png b/static/icons/060016E1.png deleted file mode 100755 index 79903a26..00000000 Binary files a/static/icons/060016E1.png and /dev/null differ diff --git a/static/icons/060016E2.png b/static/icons/060016E2.png deleted file mode 100755 index 78e20dd0..00000000 Binary files a/static/icons/060016E2.png and /dev/null differ diff --git a/static/icons/060016E3.png b/static/icons/060016E3.png deleted file mode 100755 index 9a577333..00000000 Binary files a/static/icons/060016E3.png and /dev/null differ diff --git a/static/icons/060016E4.png b/static/icons/060016E4.png deleted file mode 100755 index e4520fd1..00000000 Binary files a/static/icons/060016E4.png and /dev/null differ diff --git a/static/icons/060016E5.png b/static/icons/060016E5.png deleted file mode 100755 index 9c177bc5..00000000 Binary files a/static/icons/060016E5.png and /dev/null differ diff --git a/static/icons/060016E6.png b/static/icons/060016E6.png deleted file mode 100755 index 394d0ea7..00000000 Binary files a/static/icons/060016E6.png and /dev/null differ diff --git a/static/icons/060016E7.png b/static/icons/060016E7.png deleted file mode 100755 index 39d133ea..00000000 Binary files a/static/icons/060016E7.png and /dev/null differ diff --git a/static/icons/060016E8.png b/static/icons/060016E8.png deleted file mode 100755 index 07f16414..00000000 Binary files a/static/icons/060016E8.png and /dev/null differ diff --git a/static/icons/060016E9.png b/static/icons/060016E9.png deleted file mode 100755 index d30cc585..00000000 Binary files a/static/icons/060016E9.png and /dev/null differ diff --git a/static/icons/060016EA.png b/static/icons/060016EA.png deleted file mode 100755 index 2a2c6054..00000000 Binary files a/static/icons/060016EA.png and /dev/null differ diff --git a/static/icons/060016EB.png b/static/icons/060016EB.png deleted file mode 100755 index 7ae4b300..00000000 Binary files a/static/icons/060016EB.png and /dev/null differ diff --git a/static/icons/060016EC.png b/static/icons/060016EC.png deleted file mode 100755 index 56ce7caf..00000000 Binary files a/static/icons/060016EC.png and /dev/null differ diff --git a/static/icons/060016ED.png b/static/icons/060016ED.png deleted file mode 100755 index 19890441..00000000 Binary files a/static/icons/060016ED.png and /dev/null differ diff --git a/static/icons/060016EE.png b/static/icons/060016EE.png deleted file mode 100755 index 00d21ca6..00000000 Binary files a/static/icons/060016EE.png and /dev/null differ diff --git a/static/icons/060016EF.png b/static/icons/060016EF.png deleted file mode 100755 index 25615143..00000000 Binary files a/static/icons/060016EF.png and /dev/null differ diff --git a/static/icons/060016F0.png b/static/icons/060016F0.png deleted file mode 100755 index f949271a..00000000 Binary files a/static/icons/060016F0.png and /dev/null differ diff --git a/static/icons/060016F1.png b/static/icons/060016F1.png deleted file mode 100755 index 74cff7e5..00000000 Binary files a/static/icons/060016F1.png and /dev/null differ diff --git a/static/icons/060016F2.png b/static/icons/060016F2.png deleted file mode 100755 index 3ba71a35..00000000 Binary files a/static/icons/060016F2.png and /dev/null differ diff --git a/static/icons/060016F3.png b/static/icons/060016F3.png deleted file mode 100755 index ee5849db..00000000 Binary files a/static/icons/060016F3.png and /dev/null differ diff --git a/static/icons/060016FB.png b/static/icons/060016FB.png deleted file mode 100755 index f2664004..00000000 Binary files a/static/icons/060016FB.png and /dev/null differ diff --git a/static/icons/060016FC.png b/static/icons/060016FC.png deleted file mode 100755 index 6a6134db..00000000 Binary files a/static/icons/060016FC.png and /dev/null differ diff --git a/static/icons/060016FD.png b/static/icons/060016FD.png deleted file mode 100755 index 9daef060..00000000 Binary files a/static/icons/060016FD.png and /dev/null differ diff --git a/static/icons/060016FE.png b/static/icons/060016FE.png deleted file mode 100755 index 9af9206d..00000000 Binary files a/static/icons/060016FE.png and /dev/null differ diff --git a/static/icons/060016FF.png b/static/icons/060016FF.png deleted file mode 100755 index b352294d..00000000 Binary files a/static/icons/060016FF.png and /dev/null differ diff --git a/static/icons/06001700.png b/static/icons/06001700.png deleted file mode 100755 index 16da3164..00000000 Binary files a/static/icons/06001700.png and /dev/null differ diff --git a/static/icons/06001701.png b/static/icons/06001701.png deleted file mode 100755 index 0734668d..00000000 Binary files a/static/icons/06001701.png and /dev/null differ diff --git a/static/icons/06001702.png b/static/icons/06001702.png deleted file mode 100755 index 29fd5466..00000000 Binary files a/static/icons/06001702.png and /dev/null differ diff --git a/static/icons/06001703.png b/static/icons/06001703.png deleted file mode 100755 index 21f3a802..00000000 Binary files a/static/icons/06001703.png and /dev/null differ diff --git a/static/icons/06001704.png b/static/icons/06001704.png deleted file mode 100755 index 8871ae74..00000000 Binary files a/static/icons/06001704.png and /dev/null differ diff --git a/static/icons/06001705.png b/static/icons/06001705.png deleted file mode 100755 index 08dfe298..00000000 Binary files a/static/icons/06001705.png and /dev/null differ diff --git a/static/icons/06001706.png b/static/icons/06001706.png deleted file mode 100755 index abf5ce56..00000000 Binary files a/static/icons/06001706.png and /dev/null differ diff --git a/static/icons/06001707.png b/static/icons/06001707.png deleted file mode 100755 index 611488a6..00000000 Binary files a/static/icons/06001707.png and /dev/null differ diff --git a/static/icons/06001708.png b/static/icons/06001708.png deleted file mode 100755 index a30be12c..00000000 Binary files a/static/icons/06001708.png and /dev/null differ diff --git a/static/icons/06001709.png b/static/icons/06001709.png deleted file mode 100755 index 9b524b5a..00000000 Binary files a/static/icons/06001709.png and /dev/null differ diff --git a/static/icons/0600170A.png b/static/icons/0600170A.png deleted file mode 100755 index cee66c3f..00000000 Binary files a/static/icons/0600170A.png and /dev/null differ diff --git a/static/icons/0600170B.png b/static/icons/0600170B.png deleted file mode 100755 index aa79092f..00000000 Binary files a/static/icons/0600170B.png and /dev/null differ diff --git a/static/icons/0600170C.png b/static/icons/0600170C.png deleted file mode 100755 index 7c72462d..00000000 Binary files a/static/icons/0600170C.png and /dev/null differ diff --git a/static/icons/0600170D.png b/static/icons/0600170D.png deleted file mode 100755 index b97988a2..00000000 Binary files a/static/icons/0600170D.png and /dev/null differ diff --git a/static/icons/0600170E.png b/static/icons/0600170E.png deleted file mode 100755 index 9fe33919..00000000 Binary files a/static/icons/0600170E.png and /dev/null differ diff --git a/static/icons/0600170F.png b/static/icons/0600170F.png deleted file mode 100755 index 9ce405d0..00000000 Binary files a/static/icons/0600170F.png and /dev/null differ diff --git a/static/icons/06001710.png b/static/icons/06001710.png deleted file mode 100755 index f398a39e..00000000 Binary files a/static/icons/06001710.png and /dev/null differ diff --git a/static/icons/06001711.png b/static/icons/06001711.png deleted file mode 100755 index 747e2718..00000000 Binary files a/static/icons/06001711.png and /dev/null differ diff --git a/static/icons/06001712.png b/static/icons/06001712.png deleted file mode 100755 index 9d106489..00000000 Binary files a/static/icons/06001712.png and /dev/null differ diff --git a/static/icons/06001713.png b/static/icons/06001713.png deleted file mode 100755 index e427a752..00000000 Binary files a/static/icons/06001713.png and /dev/null differ diff --git a/static/icons/06001714.png b/static/icons/06001714.png deleted file mode 100755 index 82c57733..00000000 Binary files a/static/icons/06001714.png and /dev/null differ diff --git a/static/icons/06001715.png b/static/icons/06001715.png deleted file mode 100755 index 49be18cd..00000000 Binary files a/static/icons/06001715.png and /dev/null differ diff --git a/static/icons/06001716.png b/static/icons/06001716.png deleted file mode 100755 index beeccda5..00000000 Binary files a/static/icons/06001716.png and /dev/null differ diff --git a/static/icons/06001717.png b/static/icons/06001717.png deleted file mode 100755 index 210333ba..00000000 Binary files a/static/icons/06001717.png and /dev/null differ diff --git a/static/icons/06001718.png b/static/icons/06001718.png deleted file mode 100755 index 703017f2..00000000 Binary files a/static/icons/06001718.png and /dev/null differ diff --git a/static/icons/06001719.png b/static/icons/06001719.png deleted file mode 100755 index 4dbd9a14..00000000 Binary files a/static/icons/06001719.png and /dev/null differ diff --git a/static/icons/0600171A.png b/static/icons/0600171A.png deleted file mode 100755 index 2a05a771..00000000 Binary files a/static/icons/0600171A.png and /dev/null differ diff --git a/static/icons/0600171B.png b/static/icons/0600171B.png deleted file mode 100755 index 09db4455..00000000 Binary files a/static/icons/0600171B.png and /dev/null differ diff --git a/static/icons/0600171C.png b/static/icons/0600171C.png deleted file mode 100755 index 0feb9ebe..00000000 Binary files a/static/icons/0600171C.png and /dev/null differ diff --git a/static/icons/0600171D.png b/static/icons/0600171D.png deleted file mode 100755 index a6820811..00000000 Binary files a/static/icons/0600171D.png and /dev/null differ diff --git a/static/icons/0600171E.png b/static/icons/0600171E.png deleted file mode 100755 index 7b4270d1..00000000 Binary files a/static/icons/0600171E.png and /dev/null differ diff --git a/static/icons/0600171F.png b/static/icons/0600171F.png deleted file mode 100755 index 3261e2f0..00000000 Binary files a/static/icons/0600171F.png and /dev/null differ diff --git a/static/icons/06001720.png b/static/icons/06001720.png deleted file mode 100755 index 278e9ee2..00000000 Binary files a/static/icons/06001720.png and /dev/null differ diff --git a/static/icons/06001721.png b/static/icons/06001721.png deleted file mode 100755 index 7eae00d1..00000000 Binary files a/static/icons/06001721.png and /dev/null differ diff --git a/static/icons/06001722.png b/static/icons/06001722.png deleted file mode 100755 index 7c7d32fa..00000000 Binary files a/static/icons/06001722.png and /dev/null differ diff --git a/static/icons/06001723.png b/static/icons/06001723.png deleted file mode 100755 index 8e76fccc..00000000 Binary files a/static/icons/06001723.png and /dev/null differ diff --git a/static/icons/06001724.png b/static/icons/06001724.png deleted file mode 100755 index 2d052c2b..00000000 Binary files a/static/icons/06001724.png and /dev/null differ diff --git a/static/icons/06001725.png b/static/icons/06001725.png deleted file mode 100755 index 7f89b824..00000000 Binary files a/static/icons/06001725.png and /dev/null differ diff --git a/static/icons/06001726.png b/static/icons/06001726.png deleted file mode 100755 index 24b3a9f1..00000000 Binary files a/static/icons/06001726.png and /dev/null differ diff --git a/static/icons/06001727.png b/static/icons/06001727.png deleted file mode 100755 index 8111a362..00000000 Binary files a/static/icons/06001727.png and /dev/null differ diff --git a/static/icons/06001728.png b/static/icons/06001728.png deleted file mode 100755 index 727fee27..00000000 Binary files a/static/icons/06001728.png and /dev/null differ diff --git a/static/icons/06001729.png b/static/icons/06001729.png deleted file mode 100755 index 6031036f..00000000 Binary files a/static/icons/06001729.png and /dev/null differ diff --git a/static/icons/0600172A.png b/static/icons/0600172A.png deleted file mode 100755 index e8b0dbb9..00000000 Binary files a/static/icons/0600172A.png and /dev/null differ diff --git a/static/icons/0600172B.png b/static/icons/0600172B.png deleted file mode 100755 index 54af096b..00000000 Binary files a/static/icons/0600172B.png and /dev/null differ diff --git a/static/icons/0600172D.png b/static/icons/0600172D.png deleted file mode 100755 index a8ea0482..00000000 Binary files a/static/icons/0600172D.png and /dev/null differ diff --git a/static/icons/0600172E.png b/static/icons/0600172E.png deleted file mode 100755 index 8c6da7d5..00000000 Binary files a/static/icons/0600172E.png and /dev/null differ diff --git a/static/icons/0600172F.png b/static/icons/0600172F.png deleted file mode 100755 index bd0f9071..00000000 Binary files a/static/icons/0600172F.png and /dev/null differ diff --git a/static/icons/06001730.png b/static/icons/06001730.png deleted file mode 100755 index 694ef1fd..00000000 Binary files a/static/icons/06001730.png and /dev/null differ diff --git a/static/icons/06001731.png b/static/icons/06001731.png deleted file mode 100755 index 844785ed..00000000 Binary files a/static/icons/06001731.png and /dev/null differ diff --git a/static/icons/06001732.png b/static/icons/06001732.png deleted file mode 100755 index a198c670..00000000 Binary files a/static/icons/06001732.png and /dev/null differ diff --git a/static/icons/06001733.png b/static/icons/06001733.png deleted file mode 100755 index c20f007a..00000000 Binary files a/static/icons/06001733.png and /dev/null differ diff --git a/static/icons/06001734.png b/static/icons/06001734.png deleted file mode 100755 index fcd00698..00000000 Binary files a/static/icons/06001734.png and /dev/null differ diff --git a/static/icons/06001735.png b/static/icons/06001735.png deleted file mode 100755 index 7700e12e..00000000 Binary files a/static/icons/06001735.png and /dev/null differ diff --git a/static/icons/06001736.png b/static/icons/06001736.png deleted file mode 100755 index 181c5a7f..00000000 Binary files a/static/icons/06001736.png and /dev/null differ diff --git a/static/icons/06001737.png b/static/icons/06001737.png deleted file mode 100755 index 8ddd2f6c..00000000 Binary files a/static/icons/06001737.png and /dev/null differ diff --git a/static/icons/06001738.png b/static/icons/06001738.png deleted file mode 100755 index 542a7e39..00000000 Binary files a/static/icons/06001738.png and /dev/null differ diff --git a/static/icons/06001739.png b/static/icons/06001739.png deleted file mode 100755 index b9bb1b7d..00000000 Binary files a/static/icons/06001739.png and /dev/null differ diff --git a/static/icons/0600173A.png b/static/icons/0600173A.png deleted file mode 100755 index 7f78c974..00000000 Binary files a/static/icons/0600173A.png and /dev/null differ diff --git a/static/icons/0600173B.png b/static/icons/0600173B.png deleted file mode 100755 index 1856b6f6..00000000 Binary files a/static/icons/0600173B.png and /dev/null differ diff --git a/static/icons/0600173C.png b/static/icons/0600173C.png deleted file mode 100755 index d7895188..00000000 Binary files a/static/icons/0600173C.png and /dev/null differ diff --git a/static/icons/0600173D.png b/static/icons/0600173D.png deleted file mode 100755 index 3e84e887..00000000 Binary files a/static/icons/0600173D.png and /dev/null differ diff --git a/static/icons/0600173E.png b/static/icons/0600173E.png deleted file mode 100755 index 8a84fcac..00000000 Binary files a/static/icons/0600173E.png and /dev/null differ diff --git a/static/icons/0600173F.png b/static/icons/0600173F.png deleted file mode 100755 index 76aa4238..00000000 Binary files a/static/icons/0600173F.png and /dev/null differ diff --git a/static/icons/06001740.png b/static/icons/06001740.png deleted file mode 100755 index 3b575d5c..00000000 Binary files a/static/icons/06001740.png and /dev/null differ diff --git a/static/icons/06001741.png b/static/icons/06001741.png deleted file mode 100755 index 1135966c..00000000 Binary files a/static/icons/06001741.png and /dev/null differ diff --git a/static/icons/06001742.png b/static/icons/06001742.png deleted file mode 100755 index 2c0eb65a..00000000 Binary files a/static/icons/06001742.png and /dev/null differ diff --git a/static/icons/06001743.png b/static/icons/06001743.png deleted file mode 100755 index f41d2387..00000000 Binary files a/static/icons/06001743.png and /dev/null differ diff --git a/static/icons/06001744.png b/static/icons/06001744.png deleted file mode 100755 index efade1aa..00000000 Binary files a/static/icons/06001744.png and /dev/null differ diff --git a/static/icons/06001745.png b/static/icons/06001745.png deleted file mode 100755 index fef11703..00000000 Binary files a/static/icons/06001745.png and /dev/null differ diff --git a/static/icons/06001746.png b/static/icons/06001746.png deleted file mode 100755 index 1a9dfb6d..00000000 Binary files a/static/icons/06001746.png and /dev/null differ diff --git a/static/icons/06001747.png b/static/icons/06001747.png deleted file mode 100755 index 58bd21e6..00000000 Binary files a/static/icons/06001747.png and /dev/null differ diff --git a/static/icons/06001748.png b/static/icons/06001748.png deleted file mode 100755 index 3e891717..00000000 Binary files a/static/icons/06001748.png and /dev/null differ diff --git a/static/icons/06001749.png b/static/icons/06001749.png deleted file mode 100755 index 9d056425..00000000 Binary files a/static/icons/06001749.png and /dev/null differ diff --git a/static/icons/0600174A.png b/static/icons/0600174A.png deleted file mode 100755 index 74358a11..00000000 Binary files a/static/icons/0600174A.png and /dev/null differ diff --git a/static/icons/0600174B.png b/static/icons/0600174B.png deleted file mode 100755 index b46298a0..00000000 Binary files a/static/icons/0600174B.png and /dev/null differ diff --git a/static/icons/0600174C.png b/static/icons/0600174C.png deleted file mode 100755 index 8aff6f55..00000000 Binary files a/static/icons/0600174C.png and /dev/null differ diff --git a/static/icons/0600174D.png b/static/icons/0600174D.png deleted file mode 100755 index 0086d95f..00000000 Binary files a/static/icons/0600174D.png and /dev/null differ diff --git a/static/icons/06001755.png b/static/icons/06001755.png deleted file mode 100755 index 388f58a1..00000000 Binary files a/static/icons/06001755.png and /dev/null differ diff --git a/static/icons/06001756.png b/static/icons/06001756.png deleted file mode 100755 index be2f4e38..00000000 Binary files a/static/icons/06001756.png and /dev/null differ diff --git a/static/icons/06001757.png b/static/icons/06001757.png deleted file mode 100755 index fd9b4527..00000000 Binary files a/static/icons/06001757.png and /dev/null differ diff --git a/static/icons/06001758.png b/static/icons/06001758.png deleted file mode 100755 index 745c0efe..00000000 Binary files a/static/icons/06001758.png and /dev/null differ diff --git a/static/icons/06001759.png b/static/icons/06001759.png deleted file mode 100755 index d2b20122..00000000 Binary files a/static/icons/06001759.png and /dev/null differ diff --git a/static/icons/0600175A.png b/static/icons/0600175A.png deleted file mode 100755 index b63dbd36..00000000 Binary files a/static/icons/0600175A.png and /dev/null differ diff --git a/static/icons/0600175B.png b/static/icons/0600175B.png deleted file mode 100755 index 81cc9d49..00000000 Binary files a/static/icons/0600175B.png and /dev/null differ diff --git a/static/icons/0600175C.png b/static/icons/0600175C.png deleted file mode 100755 index c56b7612..00000000 Binary files a/static/icons/0600175C.png and /dev/null differ diff --git a/static/icons/0600175D.png b/static/icons/0600175D.png deleted file mode 100755 index 01352bcf..00000000 Binary files a/static/icons/0600175D.png and /dev/null differ diff --git a/static/icons/0600175E.png b/static/icons/0600175E.png deleted file mode 100755 index c6e9df06..00000000 Binary files a/static/icons/0600175E.png and /dev/null differ diff --git a/static/icons/0600175F.png b/static/icons/0600175F.png deleted file mode 100755 index 5dce605c..00000000 Binary files a/static/icons/0600175F.png and /dev/null differ diff --git a/static/icons/06001760.png b/static/icons/06001760.png deleted file mode 100755 index 041ec986..00000000 Binary files a/static/icons/06001760.png and /dev/null differ diff --git a/static/icons/06001761.png b/static/icons/06001761.png deleted file mode 100755 index 0e5d543d..00000000 Binary files a/static/icons/06001761.png and /dev/null differ diff --git a/static/icons/06001762.png b/static/icons/06001762.png deleted file mode 100755 index 4a24dd28..00000000 Binary files a/static/icons/06001762.png and /dev/null differ diff --git a/static/icons/06001764.png b/static/icons/06001764.png deleted file mode 100755 index da94437c..00000000 Binary files a/static/icons/06001764.png and /dev/null differ diff --git a/static/icons/06001765.png b/static/icons/06001765.png deleted file mode 100755 index 25cbf8ca..00000000 Binary files a/static/icons/06001765.png and /dev/null differ diff --git a/static/icons/06001766.png b/static/icons/06001766.png deleted file mode 100755 index 8dda9fe6..00000000 Binary files a/static/icons/06001766.png and /dev/null differ diff --git a/static/icons/06001767.png b/static/icons/06001767.png deleted file mode 100755 index 946527b6..00000000 Binary files a/static/icons/06001767.png and /dev/null differ diff --git a/static/icons/06001768.png b/static/icons/06001768.png deleted file mode 100755 index a06ad1e2..00000000 Binary files a/static/icons/06001768.png and /dev/null differ diff --git a/static/icons/06001769.png b/static/icons/06001769.png deleted file mode 100755 index 7766a47d..00000000 Binary files a/static/icons/06001769.png and /dev/null differ diff --git a/static/icons/0600176A.png b/static/icons/0600176A.png deleted file mode 100755 index cc0ebc15..00000000 Binary files a/static/icons/0600176A.png and /dev/null differ diff --git a/static/icons/0600176B.png b/static/icons/0600176B.png deleted file mode 100755 index 0999a263..00000000 Binary files a/static/icons/0600176B.png and /dev/null differ diff --git a/static/icons/0600176C.png b/static/icons/0600176C.png deleted file mode 100755 index 4fdb9bb7..00000000 Binary files a/static/icons/0600176C.png and /dev/null differ diff --git a/static/icons/0600176D.png b/static/icons/0600176D.png deleted file mode 100755 index 490d5696..00000000 Binary files a/static/icons/0600176D.png and /dev/null differ diff --git a/static/icons/0600176E.png b/static/icons/0600176E.png deleted file mode 100755 index 64b28db5..00000000 Binary files a/static/icons/0600176E.png and /dev/null differ diff --git a/static/icons/0600176F.png b/static/icons/0600176F.png deleted file mode 100755 index d1b6ecb5..00000000 Binary files a/static/icons/0600176F.png and /dev/null differ diff --git a/static/icons/06001770.png b/static/icons/06001770.png deleted file mode 100755 index 0b467ce9..00000000 Binary files a/static/icons/06001770.png and /dev/null differ diff --git a/static/icons/06001778.png b/static/icons/06001778.png deleted file mode 100755 index 68eb94ea..00000000 Binary files a/static/icons/06001778.png and /dev/null differ diff --git a/static/icons/06001779.png b/static/icons/06001779.png deleted file mode 100755 index 0c2bc02b..00000000 Binary files a/static/icons/06001779.png and /dev/null differ diff --git a/static/icons/0600177A.png b/static/icons/0600177A.png deleted file mode 100755 index 67a26e23..00000000 Binary files a/static/icons/0600177A.png and /dev/null differ diff --git a/static/icons/0600177B.png b/static/icons/0600177B.png deleted file mode 100755 index 5ba44d94..00000000 Binary files a/static/icons/0600177B.png and /dev/null differ diff --git a/static/icons/0600177C.png b/static/icons/0600177C.png deleted file mode 100755 index 179123c5..00000000 Binary files a/static/icons/0600177C.png and /dev/null differ diff --git a/static/icons/0600177D.png b/static/icons/0600177D.png deleted file mode 100755 index 9a3d01f7..00000000 Binary files a/static/icons/0600177D.png and /dev/null differ diff --git a/static/icons/0600177E.png b/static/icons/0600177E.png deleted file mode 100755 index dfe309f1..00000000 Binary files a/static/icons/0600177E.png and /dev/null differ diff --git a/static/icons/0600177F.png b/static/icons/0600177F.png deleted file mode 100755 index 07e8eb0e..00000000 Binary files a/static/icons/0600177F.png and /dev/null differ diff --git a/static/icons/06001780.png b/static/icons/06001780.png deleted file mode 100755 index 68b79bff..00000000 Binary files a/static/icons/06001780.png and /dev/null differ diff --git a/static/icons/06001781.png b/static/icons/06001781.png deleted file mode 100755 index 67f2535c..00000000 Binary files a/static/icons/06001781.png and /dev/null differ diff --git a/static/icons/06001782.png b/static/icons/06001782.png deleted file mode 100755 index 7e179c30..00000000 Binary files a/static/icons/06001782.png and /dev/null differ diff --git a/static/icons/06001783.png b/static/icons/06001783.png deleted file mode 100755 index 512500d1..00000000 Binary files a/static/icons/06001783.png and /dev/null differ diff --git a/static/icons/06001784.png b/static/icons/06001784.png deleted file mode 100755 index 83bdd2bf..00000000 Binary files a/static/icons/06001784.png and /dev/null differ diff --git a/static/icons/06001785.png b/static/icons/06001785.png deleted file mode 100755 index fc2aad43..00000000 Binary files a/static/icons/06001785.png and /dev/null differ diff --git a/static/icons/06001786.png b/static/icons/06001786.png deleted file mode 100755 index 83c38f52..00000000 Binary files a/static/icons/06001786.png and /dev/null differ diff --git a/static/icons/06001787.png b/static/icons/06001787.png deleted file mode 100755 index 3b2c86c7..00000000 Binary files a/static/icons/06001787.png and /dev/null differ diff --git a/static/icons/06001788.png b/static/icons/06001788.png deleted file mode 100755 index bc18bd68..00000000 Binary files a/static/icons/06001788.png and /dev/null differ diff --git a/static/icons/06001789.png b/static/icons/06001789.png deleted file mode 100755 index 047e4013..00000000 Binary files a/static/icons/06001789.png and /dev/null differ diff --git a/static/icons/0600178A.png b/static/icons/0600178A.png deleted file mode 100755 index 682e55c1..00000000 Binary files a/static/icons/0600178A.png and /dev/null differ diff --git a/static/icons/0600178B.png b/static/icons/0600178B.png deleted file mode 100755 index a75eb18e..00000000 Binary files a/static/icons/0600178B.png and /dev/null differ diff --git a/static/icons/0600178C.png b/static/icons/0600178C.png deleted file mode 100755 index 3d52b48c..00000000 Binary files a/static/icons/0600178C.png and /dev/null differ diff --git a/static/icons/0600178D.png b/static/icons/0600178D.png deleted file mode 100755 index cb236a2d..00000000 Binary files a/static/icons/0600178D.png and /dev/null differ diff --git a/static/icons/0600178E.png b/static/icons/0600178E.png deleted file mode 100755 index 8553fcde..00000000 Binary files a/static/icons/0600178E.png and /dev/null differ diff --git a/static/icons/0600178F.png b/static/icons/0600178F.png deleted file mode 100755 index f2983f06..00000000 Binary files a/static/icons/0600178F.png and /dev/null differ diff --git a/static/icons/06001790.png b/static/icons/06001790.png deleted file mode 100755 index bd81434c..00000000 Binary files a/static/icons/06001790.png and /dev/null differ diff --git a/static/icons/06001791.png b/static/icons/06001791.png deleted file mode 100755 index cf1d7715..00000000 Binary files a/static/icons/06001791.png and /dev/null differ diff --git a/static/icons/06001792.png b/static/icons/06001792.png deleted file mode 100755 index 27d905c3..00000000 Binary files a/static/icons/06001792.png and /dev/null differ diff --git a/static/icons/06001793.png b/static/icons/06001793.png deleted file mode 100755 index 531844ec..00000000 Binary files a/static/icons/06001793.png and /dev/null differ diff --git a/static/icons/06001794.png b/static/icons/06001794.png deleted file mode 100755 index 932f881b..00000000 Binary files a/static/icons/06001794.png and /dev/null differ diff --git a/static/icons/06001795.png b/static/icons/06001795.png deleted file mode 100755 index 8d3be8a5..00000000 Binary files a/static/icons/06001795.png and /dev/null differ diff --git a/static/icons/06001796.png b/static/icons/06001796.png deleted file mode 100755 index 306825b0..00000000 Binary files a/static/icons/06001796.png and /dev/null differ diff --git a/static/icons/06001797.png b/static/icons/06001797.png deleted file mode 100755 index 6613e201..00000000 Binary files a/static/icons/06001797.png and /dev/null differ diff --git a/static/icons/06001798.png b/static/icons/06001798.png deleted file mode 100755 index 9494b101..00000000 Binary files a/static/icons/06001798.png and /dev/null differ diff --git a/static/icons/06001799.png b/static/icons/06001799.png deleted file mode 100755 index 26aac7ee..00000000 Binary files a/static/icons/06001799.png and /dev/null differ diff --git a/static/icons/0600179A.png b/static/icons/0600179A.png deleted file mode 100755 index 9bf7c3b6..00000000 Binary files a/static/icons/0600179A.png and /dev/null differ diff --git a/static/icons/0600179B.png b/static/icons/0600179B.png deleted file mode 100755 index 6dd7576f..00000000 Binary files a/static/icons/0600179B.png and /dev/null differ diff --git a/static/icons/0600179C.png b/static/icons/0600179C.png deleted file mode 100755 index 82a66d93..00000000 Binary files a/static/icons/0600179C.png and /dev/null differ diff --git a/static/icons/0600179D.png b/static/icons/0600179D.png deleted file mode 100755 index e2638f08..00000000 Binary files a/static/icons/0600179D.png and /dev/null differ diff --git a/static/icons/0600179E.png b/static/icons/0600179E.png deleted file mode 100755 index 42627516..00000000 Binary files a/static/icons/0600179E.png and /dev/null differ diff --git a/static/icons/0600179F.png b/static/icons/0600179F.png deleted file mode 100755 index ddc27f2a..00000000 Binary files a/static/icons/0600179F.png and /dev/null differ diff --git a/static/icons/060017A0.png b/static/icons/060017A0.png deleted file mode 100755 index 02ae9f77..00000000 Binary files a/static/icons/060017A0.png and /dev/null differ diff --git a/static/icons/060017A1.png b/static/icons/060017A1.png deleted file mode 100755 index e65ed5c0..00000000 Binary files a/static/icons/060017A1.png and /dev/null differ diff --git a/static/icons/060017A2.png b/static/icons/060017A2.png deleted file mode 100755 index 1084be4e..00000000 Binary files a/static/icons/060017A2.png and /dev/null differ diff --git a/static/icons/060017A3.png b/static/icons/060017A3.png deleted file mode 100755 index 855eb780..00000000 Binary files a/static/icons/060017A3.png and /dev/null differ diff --git a/static/icons/060017A4.png b/static/icons/060017A4.png deleted file mode 100755 index 290ef39b..00000000 Binary files a/static/icons/060017A4.png and /dev/null differ diff --git a/static/icons/060017A5.png b/static/icons/060017A5.png deleted file mode 100755 index 9cbfd261..00000000 Binary files a/static/icons/060017A5.png and /dev/null differ diff --git a/static/icons/060017A6.png b/static/icons/060017A6.png deleted file mode 100755 index f447329d..00000000 Binary files a/static/icons/060017A6.png and /dev/null differ diff --git a/static/icons/060017A7.png b/static/icons/060017A7.png deleted file mode 100755 index 4ee405e6..00000000 Binary files a/static/icons/060017A7.png and /dev/null differ diff --git a/static/icons/060017A8.png b/static/icons/060017A8.png deleted file mode 100755 index 5363e731..00000000 Binary files a/static/icons/060017A8.png and /dev/null differ diff --git a/static/icons/060017A9.png b/static/icons/060017A9.png deleted file mode 100755 index 7bbcbf43..00000000 Binary files a/static/icons/060017A9.png and /dev/null differ diff --git a/static/icons/060017AA.png b/static/icons/060017AA.png deleted file mode 100755 index fe845831..00000000 Binary files a/static/icons/060017AA.png and /dev/null differ diff --git a/static/icons/060017AB.png b/static/icons/060017AB.png deleted file mode 100755 index 36ca6f6f..00000000 Binary files a/static/icons/060017AB.png and /dev/null differ diff --git a/static/icons/060017AC.png b/static/icons/060017AC.png deleted file mode 100755 index 8cfc8a08..00000000 Binary files a/static/icons/060017AC.png and /dev/null differ diff --git a/static/icons/060017AD.png b/static/icons/060017AD.png deleted file mode 100755 index 1fcf389d..00000000 Binary files a/static/icons/060017AD.png and /dev/null differ diff --git a/static/icons/060017AE.png b/static/icons/060017AE.png deleted file mode 100755 index 98da7e37..00000000 Binary files a/static/icons/060017AE.png and /dev/null differ diff --git a/static/icons/060017AF.png b/static/icons/060017AF.png deleted file mode 100755 index d740370e..00000000 Binary files a/static/icons/060017AF.png and /dev/null differ diff --git a/static/icons/060017B0.png b/static/icons/060017B0.png deleted file mode 100755 index 882cfc20..00000000 Binary files a/static/icons/060017B0.png and /dev/null differ diff --git a/static/icons/060017B1.png b/static/icons/060017B1.png deleted file mode 100755 index 9062d9f0..00000000 Binary files a/static/icons/060017B1.png and /dev/null differ diff --git a/static/icons/060017B2.png b/static/icons/060017B2.png deleted file mode 100755 index acf71f26..00000000 Binary files a/static/icons/060017B2.png and /dev/null differ diff --git a/static/icons/060017B3.png b/static/icons/060017B3.png deleted file mode 100755 index 193e66c9..00000000 Binary files a/static/icons/060017B3.png and /dev/null differ diff --git a/static/icons/060017B4.png b/static/icons/060017B4.png deleted file mode 100755 index badf1cde..00000000 Binary files a/static/icons/060017B4.png and /dev/null differ diff --git a/static/icons/060017B5.png b/static/icons/060017B5.png deleted file mode 100755 index 53d65a12..00000000 Binary files a/static/icons/060017B5.png and /dev/null differ diff --git a/static/icons/060017B6.png b/static/icons/060017B6.png deleted file mode 100755 index c52fe301..00000000 Binary files a/static/icons/060017B6.png and /dev/null differ diff --git a/static/icons/060017B7.png b/static/icons/060017B7.png deleted file mode 100755 index 23e7aa29..00000000 Binary files a/static/icons/060017B7.png and /dev/null differ diff --git a/static/icons/060017B8.png b/static/icons/060017B8.png deleted file mode 100755 index 3d27cfe0..00000000 Binary files a/static/icons/060017B8.png and /dev/null differ diff --git a/static/icons/060017B9.png b/static/icons/060017B9.png deleted file mode 100755 index f9f54aa6..00000000 Binary files a/static/icons/060017B9.png and /dev/null differ diff --git a/static/icons/060017BA.png b/static/icons/060017BA.png deleted file mode 100755 index 0a925d3f..00000000 Binary files a/static/icons/060017BA.png and /dev/null differ diff --git a/static/icons/060017BB.png b/static/icons/060017BB.png deleted file mode 100755 index 5d9dd489..00000000 Binary files a/static/icons/060017BB.png and /dev/null differ diff --git a/static/icons/060017BC.png b/static/icons/060017BC.png deleted file mode 100755 index 2dcadc41..00000000 Binary files a/static/icons/060017BC.png and /dev/null differ diff --git a/static/icons/060017BD.png b/static/icons/060017BD.png deleted file mode 100755 index ea8304a3..00000000 Binary files a/static/icons/060017BD.png and /dev/null differ diff --git a/static/icons/060017BE.png b/static/icons/060017BE.png deleted file mode 100755 index aec45fd0..00000000 Binary files a/static/icons/060017BE.png and /dev/null differ diff --git a/static/icons/060017BF.png b/static/icons/060017BF.png deleted file mode 100755 index 22bf831e..00000000 Binary files a/static/icons/060017BF.png and /dev/null differ diff --git a/static/icons/060017C0.png b/static/icons/060017C0.png deleted file mode 100755 index 3a5cb536..00000000 Binary files a/static/icons/060017C0.png and /dev/null differ diff --git a/static/icons/060017C1.png b/static/icons/060017C1.png deleted file mode 100755 index 80ae7255..00000000 Binary files a/static/icons/060017C1.png and /dev/null differ diff --git a/static/icons/060017C2.png b/static/icons/060017C2.png deleted file mode 100755 index 151308e6..00000000 Binary files a/static/icons/060017C2.png and /dev/null differ diff --git a/static/icons/060017CA.png b/static/icons/060017CA.png deleted file mode 100755 index 58806a10..00000000 Binary files a/static/icons/060017CA.png and /dev/null differ diff --git a/static/icons/060017CB.png b/static/icons/060017CB.png deleted file mode 100755 index e88ff47f..00000000 Binary files a/static/icons/060017CB.png and /dev/null differ diff --git a/static/icons/060017CC.png b/static/icons/060017CC.png deleted file mode 100755 index c9738c1e..00000000 Binary files a/static/icons/060017CC.png and /dev/null differ diff --git a/static/icons/060017CD.png b/static/icons/060017CD.png deleted file mode 100755 index fbd2a011..00000000 Binary files a/static/icons/060017CD.png and /dev/null differ diff --git a/static/icons/060017CE.png b/static/icons/060017CE.png deleted file mode 100755 index bd8c0de0..00000000 Binary files a/static/icons/060017CE.png and /dev/null differ diff --git a/static/icons/060017CF.png b/static/icons/060017CF.png deleted file mode 100755 index 4a218cfa..00000000 Binary files a/static/icons/060017CF.png and /dev/null differ diff --git a/static/icons/060017D0.png b/static/icons/060017D0.png deleted file mode 100755 index 29e03a70..00000000 Binary files a/static/icons/060017D0.png and /dev/null differ diff --git a/static/icons/060017D1.png b/static/icons/060017D1.png deleted file mode 100755 index 614e7e71..00000000 Binary files a/static/icons/060017D1.png and /dev/null differ diff --git a/static/icons/060017D2.png b/static/icons/060017D2.png deleted file mode 100755 index dcf73196..00000000 Binary files a/static/icons/060017D2.png and /dev/null differ diff --git a/static/icons/060017D3.png b/static/icons/060017D3.png deleted file mode 100755 index 8e36499a..00000000 Binary files a/static/icons/060017D3.png and /dev/null differ diff --git a/static/icons/060017D4.png b/static/icons/060017D4.png deleted file mode 100755 index 855123ee..00000000 Binary files a/static/icons/060017D4.png and /dev/null differ diff --git a/static/icons/060017D5.png b/static/icons/060017D5.png deleted file mode 100755 index 3ad68128..00000000 Binary files a/static/icons/060017D5.png and /dev/null differ diff --git a/static/icons/060017D6.png b/static/icons/060017D6.png deleted file mode 100755 index e81aadc8..00000000 Binary files a/static/icons/060017D6.png and /dev/null differ diff --git a/static/icons/060017D7.png b/static/icons/060017D7.png deleted file mode 100755 index a62d5024..00000000 Binary files a/static/icons/060017D7.png and /dev/null differ diff --git a/static/icons/060017D8.png b/static/icons/060017D8.png deleted file mode 100755 index efa0aa17..00000000 Binary files a/static/icons/060017D8.png and /dev/null differ diff --git a/static/icons/060017D9.png b/static/icons/060017D9.png deleted file mode 100755 index 00c02d80..00000000 Binary files a/static/icons/060017D9.png and /dev/null differ diff --git a/static/icons/060017DA.png b/static/icons/060017DA.png deleted file mode 100755 index ba29e17f..00000000 Binary files a/static/icons/060017DA.png and /dev/null differ diff --git a/static/icons/060017DB.png b/static/icons/060017DB.png deleted file mode 100755 index 2e355af8..00000000 Binary files a/static/icons/060017DB.png and /dev/null differ diff --git a/static/icons/060017DC.png b/static/icons/060017DC.png deleted file mode 100755 index ca36956d..00000000 Binary files a/static/icons/060017DC.png and /dev/null differ diff --git a/static/icons/060017DD.png b/static/icons/060017DD.png deleted file mode 100755 index 8c1e5df3..00000000 Binary files a/static/icons/060017DD.png and /dev/null differ diff --git a/static/icons/060017DE.png b/static/icons/060017DE.png deleted file mode 100755 index 39bc2c7f..00000000 Binary files a/static/icons/060017DE.png and /dev/null differ diff --git a/static/icons/060017DF.png b/static/icons/060017DF.png deleted file mode 100755 index ba546b3d..00000000 Binary files a/static/icons/060017DF.png and /dev/null differ diff --git a/static/icons/060017E0.png b/static/icons/060017E0.png deleted file mode 100755 index 528b3219..00000000 Binary files a/static/icons/060017E0.png and /dev/null differ diff --git a/static/icons/060017E1.png b/static/icons/060017E1.png deleted file mode 100755 index 89fe7e7d..00000000 Binary files a/static/icons/060017E1.png and /dev/null differ diff --git a/static/icons/060017E2.png b/static/icons/060017E2.png deleted file mode 100755 index 6ec9a993..00000000 Binary files a/static/icons/060017E2.png and /dev/null differ diff --git a/static/icons/060017E3.png b/static/icons/060017E3.png deleted file mode 100755 index 5eabb4d9..00000000 Binary files a/static/icons/060017E3.png and /dev/null differ diff --git a/static/icons/060017E4.png b/static/icons/060017E4.png deleted file mode 100755 index ac18cc3e..00000000 Binary files a/static/icons/060017E4.png and /dev/null differ diff --git a/static/icons/060017E5.png b/static/icons/060017E5.png deleted file mode 100755 index 1be39b71..00000000 Binary files a/static/icons/060017E5.png and /dev/null differ diff --git a/static/icons/060017E6.png b/static/icons/060017E6.png deleted file mode 100755 index 9246059a..00000000 Binary files a/static/icons/060017E6.png and /dev/null differ diff --git a/static/icons/060017E7.png b/static/icons/060017E7.png deleted file mode 100755 index ecdaf903..00000000 Binary files a/static/icons/060017E7.png and /dev/null differ diff --git a/static/icons/060017E8.png b/static/icons/060017E8.png deleted file mode 100755 index 6b270b73..00000000 Binary files a/static/icons/060017E8.png and /dev/null differ diff --git a/static/icons/060017E9.png b/static/icons/060017E9.png deleted file mode 100755 index a2fcdc85..00000000 Binary files a/static/icons/060017E9.png and /dev/null differ diff --git a/static/icons/060017EA.png b/static/icons/060017EA.png deleted file mode 100755 index 81d264ee..00000000 Binary files a/static/icons/060017EA.png and /dev/null differ diff --git a/static/icons/060017EB.png b/static/icons/060017EB.png deleted file mode 100755 index 1c91a51e..00000000 Binary files a/static/icons/060017EB.png and /dev/null differ diff --git a/static/icons/060017EC.png b/static/icons/060017EC.png deleted file mode 100755 index 47fb3c7f..00000000 Binary files a/static/icons/060017EC.png and /dev/null differ diff --git a/static/icons/060017ED.png b/static/icons/060017ED.png deleted file mode 100755 index 86a05b50..00000000 Binary files a/static/icons/060017ED.png and /dev/null differ diff --git a/static/icons/060017FC.png b/static/icons/060017FC.png deleted file mode 100755 index b37982b1..00000000 Binary files a/static/icons/060017FC.png and /dev/null differ diff --git a/static/icons/060017FD.png b/static/icons/060017FD.png deleted file mode 100755 index d493a0d1..00000000 Binary files a/static/icons/060017FD.png and /dev/null differ diff --git a/static/icons/060017FE.png b/static/icons/060017FE.png deleted file mode 100755 index c78c73ba..00000000 Binary files a/static/icons/060017FE.png and /dev/null differ diff --git a/static/icons/060017FF.png b/static/icons/060017FF.png deleted file mode 100755 index d46b6d30..00000000 Binary files a/static/icons/060017FF.png and /dev/null differ diff --git a/static/icons/06001800.png b/static/icons/06001800.png deleted file mode 100755 index 2f189f2e..00000000 Binary files a/static/icons/06001800.png and /dev/null differ diff --git a/static/icons/06001801.png b/static/icons/06001801.png deleted file mode 100755 index 98ae4765..00000000 Binary files a/static/icons/06001801.png and /dev/null differ diff --git a/static/icons/06001802.png b/static/icons/06001802.png deleted file mode 100755 index edabb910..00000000 Binary files a/static/icons/06001802.png and /dev/null differ diff --git a/static/icons/06001803.png b/static/icons/06001803.png deleted file mode 100755 index 830ac928..00000000 Binary files a/static/icons/06001803.png and /dev/null differ diff --git a/static/icons/06001804.png b/static/icons/06001804.png deleted file mode 100755 index 18f5afa4..00000000 Binary files a/static/icons/06001804.png and /dev/null differ diff --git a/static/icons/06001805.png b/static/icons/06001805.png deleted file mode 100755 index fe2e55ca..00000000 Binary files a/static/icons/06001805.png and /dev/null differ diff --git a/static/icons/06001806.png b/static/icons/06001806.png deleted file mode 100755 index eecbc40c..00000000 Binary files a/static/icons/06001806.png and /dev/null differ diff --git a/static/icons/06001807.png b/static/icons/06001807.png deleted file mode 100755 index e5012cab..00000000 Binary files a/static/icons/06001807.png and /dev/null differ diff --git a/static/icons/06001808.png b/static/icons/06001808.png deleted file mode 100755 index ff608fe5..00000000 Binary files a/static/icons/06001808.png and /dev/null differ diff --git a/static/icons/06001809.png b/static/icons/06001809.png deleted file mode 100755 index 1ea499f1..00000000 Binary files a/static/icons/06001809.png and /dev/null differ diff --git a/static/icons/0600180A.png b/static/icons/0600180A.png deleted file mode 100755 index 6087f870..00000000 Binary files a/static/icons/0600180A.png and /dev/null differ diff --git a/static/icons/0600180B.png b/static/icons/0600180B.png deleted file mode 100755 index ec8e0e7e..00000000 Binary files a/static/icons/0600180B.png and /dev/null differ diff --git a/static/icons/0600180C.png b/static/icons/0600180C.png deleted file mode 100755 index 9c302eed..00000000 Binary files a/static/icons/0600180C.png and /dev/null differ diff --git a/static/icons/0600180D.png b/static/icons/0600180D.png deleted file mode 100755 index 688fa252..00000000 Binary files a/static/icons/0600180D.png and /dev/null differ diff --git a/static/icons/0600180E.png b/static/icons/0600180E.png deleted file mode 100755 index 9dadc3e1..00000000 Binary files a/static/icons/0600180E.png and /dev/null differ diff --git a/static/icons/0600180F.png b/static/icons/0600180F.png deleted file mode 100755 index a623103a..00000000 Binary files a/static/icons/0600180F.png and /dev/null differ diff --git a/static/icons/06001810.png b/static/icons/06001810.png deleted file mode 100755 index cf92d78c..00000000 Binary files a/static/icons/06001810.png and /dev/null differ diff --git a/static/icons/0600181E.png b/static/icons/0600181E.png deleted file mode 100755 index d5c3d411..00000000 Binary files a/static/icons/0600181E.png and /dev/null differ diff --git a/static/icons/06001820.png b/static/icons/06001820.png deleted file mode 100755 index b3cfb49b..00000000 Binary files a/static/icons/06001820.png and /dev/null differ diff --git a/static/icons/06001821.png b/static/icons/06001821.png deleted file mode 100755 index a229fd51..00000000 Binary files a/static/icons/06001821.png and /dev/null differ diff --git a/static/icons/06001822.png b/static/icons/06001822.png deleted file mode 100755 index 2c0446f9..00000000 Binary files a/static/icons/06001822.png and /dev/null differ diff --git a/static/icons/06001823.png b/static/icons/06001823.png deleted file mode 100755 index f5c3cc8f..00000000 Binary files a/static/icons/06001823.png and /dev/null differ diff --git a/static/icons/06001824.png b/static/icons/06001824.png deleted file mode 100755 index 57621dce..00000000 Binary files a/static/icons/06001824.png and /dev/null differ diff --git a/static/icons/06001825.png b/static/icons/06001825.png deleted file mode 100755 index 9dbf1b47..00000000 Binary files a/static/icons/06001825.png and /dev/null differ diff --git a/static/icons/06001826.png b/static/icons/06001826.png deleted file mode 100755 index 8ac55144..00000000 Binary files a/static/icons/06001826.png and /dev/null differ diff --git a/static/icons/06001827.png b/static/icons/06001827.png deleted file mode 100755 index 0e193291..00000000 Binary files a/static/icons/06001827.png and /dev/null differ diff --git a/static/icons/06001828.png b/static/icons/06001828.png deleted file mode 100755 index 62b9d68d..00000000 Binary files a/static/icons/06001828.png and /dev/null differ diff --git a/static/icons/06001829.png b/static/icons/06001829.png deleted file mode 100755 index 8a40f086..00000000 Binary files a/static/icons/06001829.png and /dev/null differ diff --git a/static/icons/0600182A.png b/static/icons/0600182A.png deleted file mode 100755 index a8ee49ff..00000000 Binary files a/static/icons/0600182A.png and /dev/null differ diff --git a/static/icons/0600182B.png b/static/icons/0600182B.png deleted file mode 100755 index 001a4d33..00000000 Binary files a/static/icons/0600182B.png and /dev/null differ diff --git a/static/icons/0600182C.png b/static/icons/0600182C.png deleted file mode 100755 index 4ecaa693..00000000 Binary files a/static/icons/0600182C.png and /dev/null differ diff --git a/static/icons/0600182D.png b/static/icons/0600182D.png deleted file mode 100755 index 941ac7c5..00000000 Binary files a/static/icons/0600182D.png and /dev/null differ diff --git a/static/icons/0600182E.png b/static/icons/0600182E.png deleted file mode 100755 index e450ee06..00000000 Binary files a/static/icons/0600182E.png and /dev/null differ diff --git a/static/icons/0600182F.png b/static/icons/0600182F.png deleted file mode 100755 index ff76c273..00000000 Binary files a/static/icons/0600182F.png and /dev/null differ diff --git a/static/icons/06001830.png b/static/icons/06001830.png deleted file mode 100755 index 597ff6a3..00000000 Binary files a/static/icons/06001830.png and /dev/null differ diff --git a/static/icons/06001831.png b/static/icons/06001831.png deleted file mode 100755 index 07405f1f..00000000 Binary files a/static/icons/06001831.png and /dev/null differ diff --git a/static/icons/06001832.png b/static/icons/06001832.png deleted file mode 100755 index 082d03c4..00000000 Binary files a/static/icons/06001832.png and /dev/null differ diff --git a/static/icons/06001833.png b/static/icons/06001833.png deleted file mode 100755 index e04893c0..00000000 Binary files a/static/icons/06001833.png and /dev/null differ diff --git a/static/icons/06001834.png b/static/icons/06001834.png deleted file mode 100755 index 9d3b2ed0..00000000 Binary files a/static/icons/06001834.png and /dev/null differ diff --git a/static/icons/06001835.png b/static/icons/06001835.png deleted file mode 100755 index 709477cc..00000000 Binary files a/static/icons/06001835.png and /dev/null differ diff --git a/static/icons/06001836.png b/static/icons/06001836.png deleted file mode 100755 index 12a9a8d5..00000000 Binary files a/static/icons/06001836.png and /dev/null differ diff --git a/static/icons/06001837.png b/static/icons/06001837.png deleted file mode 100755 index 98c096ce..00000000 Binary files a/static/icons/06001837.png and /dev/null differ diff --git a/static/icons/06001838.png b/static/icons/06001838.png deleted file mode 100755 index a5980df0..00000000 Binary files a/static/icons/06001838.png and /dev/null differ diff --git a/static/icons/06001839.png b/static/icons/06001839.png deleted file mode 100755 index 6f25b8e2..00000000 Binary files a/static/icons/06001839.png and /dev/null differ diff --git a/static/icons/0600183A.png b/static/icons/0600183A.png deleted file mode 100755 index e7342267..00000000 Binary files a/static/icons/0600183A.png and /dev/null differ diff --git a/static/icons/0600183B.png b/static/icons/0600183B.png deleted file mode 100755 index e46dc6ff..00000000 Binary files a/static/icons/0600183B.png and /dev/null differ diff --git a/static/icons/0600183C.png b/static/icons/0600183C.png deleted file mode 100755 index 765e13c6..00000000 Binary files a/static/icons/0600183C.png and /dev/null differ diff --git a/static/icons/0600183D.png b/static/icons/0600183D.png deleted file mode 100755 index 08e08859..00000000 Binary files a/static/icons/0600183D.png and /dev/null differ diff --git a/static/icons/0600183E.png b/static/icons/0600183E.png deleted file mode 100755 index 8b78d2a4..00000000 Binary files a/static/icons/0600183E.png and /dev/null differ diff --git a/static/icons/06001840.png b/static/icons/06001840.png deleted file mode 100755 index 9705331a..00000000 Binary files a/static/icons/06001840.png and /dev/null differ diff --git a/static/icons/06001841.png b/static/icons/06001841.png deleted file mode 100755 index e0bf67ca..00000000 Binary files a/static/icons/06001841.png and /dev/null differ diff --git a/static/icons/06001842.png b/static/icons/06001842.png deleted file mode 100755 index 094f442f..00000000 Binary files a/static/icons/06001842.png and /dev/null differ diff --git a/static/icons/06001843.png b/static/icons/06001843.png deleted file mode 100755 index f89d04bc..00000000 Binary files a/static/icons/06001843.png and /dev/null differ diff --git a/static/icons/06001844.png b/static/icons/06001844.png deleted file mode 100755 index a4deada7..00000000 Binary files a/static/icons/06001844.png and /dev/null differ diff --git a/static/icons/06001845.png b/static/icons/06001845.png deleted file mode 100755 index 855d9220..00000000 Binary files a/static/icons/06001845.png and /dev/null differ diff --git a/static/icons/06001846.png b/static/icons/06001846.png deleted file mode 100755 index 5bc7d415..00000000 Binary files a/static/icons/06001846.png and /dev/null differ diff --git a/static/icons/06001847.png b/static/icons/06001847.png deleted file mode 100755 index af839ffe..00000000 Binary files a/static/icons/06001847.png and /dev/null differ diff --git a/static/icons/06001848.png b/static/icons/06001848.png deleted file mode 100755 index 73c96bde..00000000 Binary files a/static/icons/06001848.png and /dev/null differ diff --git a/static/icons/06001849.png b/static/icons/06001849.png deleted file mode 100755 index 3ed52d45..00000000 Binary files a/static/icons/06001849.png and /dev/null differ diff --git a/static/icons/0600184A.png b/static/icons/0600184A.png deleted file mode 100755 index f886f5eb..00000000 Binary files a/static/icons/0600184A.png and /dev/null differ diff --git a/static/icons/0600184B.png b/static/icons/0600184B.png deleted file mode 100755 index 8b03b791..00000000 Binary files a/static/icons/0600184B.png and /dev/null differ diff --git a/static/icons/0600184C.png b/static/icons/0600184C.png deleted file mode 100755 index 93613359..00000000 Binary files a/static/icons/0600184C.png and /dev/null differ diff --git a/static/icons/06001854.png b/static/icons/06001854.png deleted file mode 100755 index c9e56239..00000000 Binary files a/static/icons/06001854.png and /dev/null differ diff --git a/static/icons/06001855.png b/static/icons/06001855.png deleted file mode 100755 index 42b93d9c..00000000 Binary files a/static/icons/06001855.png and /dev/null differ diff --git a/static/icons/06001856.png b/static/icons/06001856.png deleted file mode 100755 index 81dbb604..00000000 Binary files a/static/icons/06001856.png and /dev/null differ diff --git a/static/icons/06001857.png b/static/icons/06001857.png deleted file mode 100755 index f4db6de9..00000000 Binary files a/static/icons/06001857.png and /dev/null differ diff --git a/static/icons/06001858.png b/static/icons/06001858.png deleted file mode 100755 index f9b1e5c3..00000000 Binary files a/static/icons/06001858.png and /dev/null differ diff --git a/static/icons/06001859.png b/static/icons/06001859.png deleted file mode 100755 index 5f30bd50..00000000 Binary files a/static/icons/06001859.png and /dev/null differ diff --git a/static/icons/0600185A.png b/static/icons/0600185A.png deleted file mode 100755 index 06ac8668..00000000 Binary files a/static/icons/0600185A.png and /dev/null differ diff --git a/static/icons/0600185B.png b/static/icons/0600185B.png deleted file mode 100755 index a094b3b3..00000000 Binary files a/static/icons/0600185B.png and /dev/null differ diff --git a/static/icons/0600185C.png b/static/icons/0600185C.png deleted file mode 100755 index 826c818b..00000000 Binary files a/static/icons/0600185C.png and /dev/null differ diff --git a/static/icons/0600185D.png b/static/icons/0600185D.png deleted file mode 100755 index 3a4c2828..00000000 Binary files a/static/icons/0600185D.png and /dev/null differ diff --git a/static/icons/0600185E.png b/static/icons/0600185E.png deleted file mode 100755 index 5641805a..00000000 Binary files a/static/icons/0600185E.png and /dev/null differ diff --git a/static/icons/0600185F.png b/static/icons/0600185F.png deleted file mode 100755 index fec29f29..00000000 Binary files a/static/icons/0600185F.png and /dev/null differ diff --git a/static/icons/06001860.png b/static/icons/06001860.png deleted file mode 100755 index 1d5af1b3..00000000 Binary files a/static/icons/06001860.png and /dev/null differ diff --git a/static/icons/06001861.png b/static/icons/06001861.png deleted file mode 100755 index 2b96415f..00000000 Binary files a/static/icons/06001861.png and /dev/null differ diff --git a/static/icons/06001862.png b/static/icons/06001862.png deleted file mode 100755 index 6360294c..00000000 Binary files a/static/icons/06001862.png and /dev/null differ diff --git a/static/icons/06001863.png b/static/icons/06001863.png deleted file mode 100755 index fdee21e3..00000000 Binary files a/static/icons/06001863.png and /dev/null differ diff --git a/static/icons/06001864.png b/static/icons/06001864.png deleted file mode 100755 index a1002536..00000000 Binary files a/static/icons/06001864.png and /dev/null differ diff --git a/static/icons/06001865.png b/static/icons/06001865.png deleted file mode 100755 index 7468ddce..00000000 Binary files a/static/icons/06001865.png and /dev/null differ diff --git a/static/icons/06001866.png b/static/icons/06001866.png deleted file mode 100755 index d9838158..00000000 Binary files a/static/icons/06001866.png and /dev/null differ diff --git a/static/icons/06001867.png b/static/icons/06001867.png deleted file mode 100755 index 779c856c..00000000 Binary files a/static/icons/06001867.png and /dev/null differ diff --git a/static/icons/06001868.png b/static/icons/06001868.png deleted file mode 100755 index 8327beac..00000000 Binary files a/static/icons/06001868.png and /dev/null differ diff --git a/static/icons/06001869.png b/static/icons/06001869.png deleted file mode 100755 index 222a0921..00000000 Binary files a/static/icons/06001869.png and /dev/null differ diff --git a/static/icons/0600186A.png b/static/icons/0600186A.png deleted file mode 100755 index 9be59b76..00000000 Binary files a/static/icons/0600186A.png and /dev/null differ diff --git a/static/icons/0600186B.png b/static/icons/0600186B.png deleted file mode 100755 index 379e2955..00000000 Binary files a/static/icons/0600186B.png and /dev/null differ diff --git a/static/icons/0600186C.png b/static/icons/0600186C.png deleted file mode 100755 index c901ef11..00000000 Binary files a/static/icons/0600186C.png and /dev/null differ diff --git a/static/icons/0600186D.png b/static/icons/0600186D.png deleted file mode 100755 index 5b63fb15..00000000 Binary files a/static/icons/0600186D.png and /dev/null differ diff --git a/static/icons/0600186E.png b/static/icons/0600186E.png deleted file mode 100755 index 5c158f1a..00000000 Binary files a/static/icons/0600186E.png and /dev/null differ diff --git a/static/icons/0600186F.png b/static/icons/0600186F.png deleted file mode 100755 index a81381a8..00000000 Binary files a/static/icons/0600186F.png and /dev/null differ diff --git a/static/icons/06001870.png b/static/icons/06001870.png deleted file mode 100755 index e042b330..00000000 Binary files a/static/icons/06001870.png and /dev/null differ diff --git a/static/icons/06001871.png b/static/icons/06001871.png deleted file mode 100755 index 76ed65ab..00000000 Binary files a/static/icons/06001871.png and /dev/null differ diff --git a/static/icons/06001872.png b/static/icons/06001872.png deleted file mode 100755 index 0c6f8922..00000000 Binary files a/static/icons/06001872.png and /dev/null differ diff --git a/static/icons/06001873.png b/static/icons/06001873.png deleted file mode 100755 index 35c3a3f5..00000000 Binary files a/static/icons/06001873.png and /dev/null differ diff --git a/static/icons/06001874.png b/static/icons/06001874.png deleted file mode 100755 index abf12255..00000000 Binary files a/static/icons/06001874.png and /dev/null differ diff --git a/static/icons/06001875.png b/static/icons/06001875.png deleted file mode 100755 index 8659bb50..00000000 Binary files a/static/icons/06001875.png and /dev/null differ diff --git a/static/icons/06001876.png b/static/icons/06001876.png deleted file mode 100755 index a83683c4..00000000 Binary files a/static/icons/06001876.png and /dev/null differ diff --git a/static/icons/06001877.png b/static/icons/06001877.png deleted file mode 100755 index 60d49640..00000000 Binary files a/static/icons/06001877.png and /dev/null differ diff --git a/static/icons/06001878.png b/static/icons/06001878.png deleted file mode 100755 index 5ec95cab..00000000 Binary files a/static/icons/06001878.png and /dev/null differ diff --git a/static/icons/06001879.png b/static/icons/06001879.png deleted file mode 100755 index 1679d8e9..00000000 Binary files a/static/icons/06001879.png and /dev/null differ diff --git a/static/icons/0600187A.png b/static/icons/0600187A.png deleted file mode 100755 index fdd5d9eb..00000000 Binary files a/static/icons/0600187A.png and /dev/null differ diff --git a/static/icons/0600187B.png b/static/icons/0600187B.png deleted file mode 100755 index 2dfee564..00000000 Binary files a/static/icons/0600187B.png and /dev/null differ diff --git a/static/icons/0600187C.png b/static/icons/0600187C.png deleted file mode 100755 index f4a59854..00000000 Binary files a/static/icons/0600187C.png and /dev/null differ diff --git a/static/icons/0600187D.png b/static/icons/0600187D.png deleted file mode 100755 index 6f1bcea1..00000000 Binary files a/static/icons/0600187D.png and /dev/null differ diff --git a/static/icons/0600187E.png b/static/icons/0600187E.png deleted file mode 100755 index 4960430a..00000000 Binary files a/static/icons/0600187E.png and /dev/null differ diff --git a/static/icons/0600187F.png b/static/icons/0600187F.png deleted file mode 100755 index b10e03eb..00000000 Binary files a/static/icons/0600187F.png and /dev/null differ diff --git a/static/icons/06001880.png b/static/icons/06001880.png deleted file mode 100755 index c3bed291..00000000 Binary files a/static/icons/06001880.png and /dev/null differ diff --git a/static/icons/06001881.png b/static/icons/06001881.png deleted file mode 100755 index cd3e18ad..00000000 Binary files a/static/icons/06001881.png and /dev/null differ diff --git a/static/icons/06001882.png b/static/icons/06001882.png deleted file mode 100755 index 1b84ff74..00000000 Binary files a/static/icons/06001882.png and /dev/null differ diff --git a/static/icons/06001883.png b/static/icons/06001883.png deleted file mode 100755 index e6944b1b..00000000 Binary files a/static/icons/06001883.png and /dev/null differ diff --git a/static/icons/06001884.png b/static/icons/06001884.png deleted file mode 100755 index 4c205635..00000000 Binary files a/static/icons/06001884.png and /dev/null differ diff --git a/static/icons/06001885.png b/static/icons/06001885.png deleted file mode 100755 index bceea260..00000000 Binary files a/static/icons/06001885.png and /dev/null differ diff --git a/static/icons/06001886.png b/static/icons/06001886.png deleted file mode 100755 index 10852c80..00000000 Binary files a/static/icons/06001886.png and /dev/null differ diff --git a/static/icons/06001887.png b/static/icons/06001887.png deleted file mode 100755 index 21e7c3c8..00000000 Binary files a/static/icons/06001887.png and /dev/null differ diff --git a/static/icons/06001888.png b/static/icons/06001888.png deleted file mode 100755 index 2f945682..00000000 Binary files a/static/icons/06001888.png and /dev/null differ diff --git a/static/icons/06001889.png b/static/icons/06001889.png deleted file mode 100755 index 901e80e6..00000000 Binary files a/static/icons/06001889.png and /dev/null differ diff --git a/static/icons/0600188A.png b/static/icons/0600188A.png deleted file mode 100755 index ac35c425..00000000 Binary files a/static/icons/0600188A.png and /dev/null differ diff --git a/static/icons/0600188B.png b/static/icons/0600188B.png deleted file mode 100755 index 6de2d605..00000000 Binary files a/static/icons/0600188B.png and /dev/null differ diff --git a/static/icons/0600188C.png b/static/icons/0600188C.png deleted file mode 100755 index acab9dc3..00000000 Binary files a/static/icons/0600188C.png and /dev/null differ diff --git a/static/icons/0600188D.png b/static/icons/0600188D.png deleted file mode 100755 index 5dddd1a7..00000000 Binary files a/static/icons/0600188D.png and /dev/null differ diff --git a/static/icons/0600188E.png b/static/icons/0600188E.png deleted file mode 100755 index a47d9862..00000000 Binary files a/static/icons/0600188E.png and /dev/null differ diff --git a/static/icons/0600188F.png b/static/icons/0600188F.png deleted file mode 100755 index a18eac68..00000000 Binary files a/static/icons/0600188F.png and /dev/null differ diff --git a/static/icons/06001890.png b/static/icons/06001890.png deleted file mode 100755 index 965ac440..00000000 Binary files a/static/icons/06001890.png and /dev/null differ diff --git a/static/icons/06001891.png b/static/icons/06001891.png deleted file mode 100755 index e99e5978..00000000 Binary files a/static/icons/06001891.png and /dev/null differ diff --git a/static/icons/06001892.png b/static/icons/06001892.png deleted file mode 100755 index cd5996ce..00000000 Binary files a/static/icons/06001892.png and /dev/null differ diff --git a/static/icons/06001893.png b/static/icons/06001893.png deleted file mode 100755 index 7bc60d3b..00000000 Binary files a/static/icons/06001893.png and /dev/null differ diff --git a/static/icons/06001894.png b/static/icons/06001894.png deleted file mode 100755 index 72842d6e..00000000 Binary files a/static/icons/06001894.png and /dev/null differ diff --git a/static/icons/06001895.png b/static/icons/06001895.png deleted file mode 100755 index bd37c6f6..00000000 Binary files a/static/icons/06001895.png and /dev/null differ diff --git a/static/icons/06001896.png b/static/icons/06001896.png deleted file mode 100755 index fe504d48..00000000 Binary files a/static/icons/06001896.png and /dev/null differ diff --git a/static/icons/06001897.png b/static/icons/06001897.png deleted file mode 100755 index 02f36c56..00000000 Binary files a/static/icons/06001897.png and /dev/null differ diff --git a/static/icons/06001898.png b/static/icons/06001898.png deleted file mode 100755 index 417456f4..00000000 Binary files a/static/icons/06001898.png and /dev/null differ diff --git a/static/icons/06001899.png b/static/icons/06001899.png deleted file mode 100755 index cb09aa62..00000000 Binary files a/static/icons/06001899.png and /dev/null differ diff --git a/static/icons/0600189A.png b/static/icons/0600189A.png deleted file mode 100755 index 4bf288f0..00000000 Binary files a/static/icons/0600189A.png and /dev/null differ diff --git a/static/icons/0600189B.png b/static/icons/0600189B.png deleted file mode 100755 index 2a690322..00000000 Binary files a/static/icons/0600189B.png and /dev/null differ diff --git a/static/icons/0600189C.png b/static/icons/0600189C.png deleted file mode 100755 index 3842f4f3..00000000 Binary files a/static/icons/0600189C.png and /dev/null differ diff --git a/static/icons/0600189D.png b/static/icons/0600189D.png deleted file mode 100755 index 305c8b72..00000000 Binary files a/static/icons/0600189D.png and /dev/null differ diff --git a/static/icons/0600189E.png b/static/icons/0600189E.png deleted file mode 100755 index 678efe66..00000000 Binary files a/static/icons/0600189E.png and /dev/null differ diff --git a/static/icons/0600189F.png b/static/icons/0600189F.png deleted file mode 100755 index 7c9b8c22..00000000 Binary files a/static/icons/0600189F.png and /dev/null differ diff --git a/static/icons/060018A0.png b/static/icons/060018A0.png deleted file mode 100755 index c9d1507a..00000000 Binary files a/static/icons/060018A0.png and /dev/null differ diff --git a/static/icons/060018A1.png b/static/icons/060018A1.png deleted file mode 100755 index 87bc3dec..00000000 Binary files a/static/icons/060018A1.png and /dev/null differ diff --git a/static/icons/060018A2.png b/static/icons/060018A2.png deleted file mode 100755 index 5b128c73..00000000 Binary files a/static/icons/060018A2.png and /dev/null differ diff --git a/static/icons/060018A3.png b/static/icons/060018A3.png deleted file mode 100755 index 8a324528..00000000 Binary files a/static/icons/060018A3.png and /dev/null differ diff --git a/static/icons/060018A4.png b/static/icons/060018A4.png deleted file mode 100755 index e49b65a6..00000000 Binary files a/static/icons/060018A4.png and /dev/null differ diff --git a/static/icons/060018A5.png b/static/icons/060018A5.png deleted file mode 100755 index c00a63b1..00000000 Binary files a/static/icons/060018A5.png and /dev/null differ diff --git a/static/icons/060018A6.png b/static/icons/060018A6.png deleted file mode 100755 index 78f8bcc7..00000000 Binary files a/static/icons/060018A6.png and /dev/null differ diff --git a/static/icons/060018A7.png b/static/icons/060018A7.png deleted file mode 100755 index 3e7c8224..00000000 Binary files a/static/icons/060018A7.png and /dev/null differ diff --git a/static/icons/060018A8.png b/static/icons/060018A8.png deleted file mode 100755 index 79e06e4a..00000000 Binary files a/static/icons/060018A8.png and /dev/null differ diff --git a/static/icons/060018A9.png b/static/icons/060018A9.png deleted file mode 100755 index e7a1322e..00000000 Binary files a/static/icons/060018A9.png and /dev/null differ diff --git a/static/icons/060018AA.png b/static/icons/060018AA.png deleted file mode 100755 index 7e557d52..00000000 Binary files a/static/icons/060018AA.png and /dev/null differ diff --git a/static/icons/060018AB.png b/static/icons/060018AB.png deleted file mode 100755 index e34eaaec..00000000 Binary files a/static/icons/060018AB.png and /dev/null differ diff --git a/static/icons/060018AC.png b/static/icons/060018AC.png deleted file mode 100755 index 118aae79..00000000 Binary files a/static/icons/060018AC.png and /dev/null differ diff --git a/static/icons/060018AD.png b/static/icons/060018AD.png deleted file mode 100755 index 11b1d90b..00000000 Binary files a/static/icons/060018AD.png and /dev/null differ diff --git a/static/icons/060018AE.png b/static/icons/060018AE.png deleted file mode 100755 index 341f68b2..00000000 Binary files a/static/icons/060018AE.png and /dev/null differ diff --git a/static/icons/060018AF.png b/static/icons/060018AF.png deleted file mode 100755 index a7cc44cc..00000000 Binary files a/static/icons/060018AF.png and /dev/null differ diff --git a/static/icons/060018B0.png b/static/icons/060018B0.png deleted file mode 100755 index 01ece5ef..00000000 Binary files a/static/icons/060018B0.png and /dev/null differ diff --git a/static/icons/060018B1.png b/static/icons/060018B1.png deleted file mode 100755 index 55cb4637..00000000 Binary files a/static/icons/060018B1.png and /dev/null differ diff --git a/static/icons/060018B2.png b/static/icons/060018B2.png deleted file mode 100755 index 287b88c9..00000000 Binary files a/static/icons/060018B2.png and /dev/null differ diff --git a/static/icons/060018B3.png b/static/icons/060018B3.png deleted file mode 100755 index 66d9ae43..00000000 Binary files a/static/icons/060018B3.png and /dev/null differ diff --git a/static/icons/060018B4.png b/static/icons/060018B4.png deleted file mode 100755 index 13166515..00000000 Binary files a/static/icons/060018B4.png and /dev/null differ diff --git a/static/icons/060018B5.png b/static/icons/060018B5.png deleted file mode 100755 index 1d2fc2ee..00000000 Binary files a/static/icons/060018B5.png and /dev/null differ diff --git a/static/icons/060018B6.png b/static/icons/060018B6.png deleted file mode 100755 index 456db6c9..00000000 Binary files a/static/icons/060018B6.png and /dev/null differ diff --git a/static/icons/060018B7.png b/static/icons/060018B7.png deleted file mode 100755 index 3f21f47b..00000000 Binary files a/static/icons/060018B7.png and /dev/null differ diff --git a/static/icons/060018B8.png b/static/icons/060018B8.png deleted file mode 100755 index b7c94ad9..00000000 Binary files a/static/icons/060018B8.png and /dev/null differ diff --git a/static/icons/060018B9.png b/static/icons/060018B9.png deleted file mode 100755 index e02de033..00000000 Binary files a/static/icons/060018B9.png and /dev/null differ diff --git a/static/icons/060018BA.png b/static/icons/060018BA.png deleted file mode 100755 index 9292f543..00000000 Binary files a/static/icons/060018BA.png and /dev/null differ diff --git a/static/icons/060018BB.png b/static/icons/060018BB.png deleted file mode 100755 index 047e71a9..00000000 Binary files a/static/icons/060018BB.png and /dev/null differ diff --git a/static/icons/060018BC.png b/static/icons/060018BC.png deleted file mode 100755 index 2ae0329d..00000000 Binary files a/static/icons/060018BC.png and /dev/null differ diff --git a/static/icons/060018BD.png b/static/icons/060018BD.png deleted file mode 100755 index b3de2e56..00000000 Binary files a/static/icons/060018BD.png and /dev/null differ diff --git a/static/icons/060018BE.png b/static/icons/060018BE.png deleted file mode 100755 index e00375f8..00000000 Binary files a/static/icons/060018BE.png and /dev/null differ diff --git a/static/icons/060018BF.png b/static/icons/060018BF.png deleted file mode 100755 index 69829eb1..00000000 Binary files a/static/icons/060018BF.png and /dev/null differ diff --git a/static/icons/060018C0.png b/static/icons/060018C0.png deleted file mode 100755 index 217d71af..00000000 Binary files a/static/icons/060018C0.png and /dev/null differ diff --git a/static/icons/060018C1.png b/static/icons/060018C1.png deleted file mode 100755 index a6359ef2..00000000 Binary files a/static/icons/060018C1.png and /dev/null differ diff --git a/static/icons/060018C2.png b/static/icons/060018C2.png deleted file mode 100755 index 6dd43adf..00000000 Binary files a/static/icons/060018C2.png and /dev/null differ diff --git a/static/icons/060018C3.png b/static/icons/060018C3.png deleted file mode 100755 index 2e4d4524..00000000 Binary files a/static/icons/060018C3.png and /dev/null differ diff --git a/static/icons/060018C4.png b/static/icons/060018C4.png deleted file mode 100755 index df94d4b0..00000000 Binary files a/static/icons/060018C4.png and /dev/null differ diff --git a/static/icons/060018C5.png b/static/icons/060018C5.png deleted file mode 100755 index 5af9c37e..00000000 Binary files a/static/icons/060018C5.png and /dev/null differ diff --git a/static/icons/060018C6.png b/static/icons/060018C6.png deleted file mode 100755 index 59795207..00000000 Binary files a/static/icons/060018C6.png and /dev/null differ diff --git a/static/icons/060018C7.png b/static/icons/060018C7.png deleted file mode 100755 index 1d48d830..00000000 Binary files a/static/icons/060018C7.png and /dev/null differ diff --git a/static/icons/060018C8.png b/static/icons/060018C8.png deleted file mode 100755 index 72238ffd..00000000 Binary files a/static/icons/060018C8.png and /dev/null differ diff --git a/static/icons/060018C9.png b/static/icons/060018C9.png deleted file mode 100755 index 87c67ef3..00000000 Binary files a/static/icons/060018C9.png and /dev/null differ diff --git a/static/icons/060018CA.png b/static/icons/060018CA.png deleted file mode 100755 index 77389ad5..00000000 Binary files a/static/icons/060018CA.png and /dev/null differ diff --git a/static/icons/060018CB.png b/static/icons/060018CB.png deleted file mode 100755 index 9465a2d7..00000000 Binary files a/static/icons/060018CB.png and /dev/null differ diff --git a/static/icons/060018CC.png b/static/icons/060018CC.png deleted file mode 100755 index 1fbcbb65..00000000 Binary files a/static/icons/060018CC.png and /dev/null differ diff --git a/static/icons/060018CD.png b/static/icons/060018CD.png deleted file mode 100755 index 67326b19..00000000 Binary files a/static/icons/060018CD.png and /dev/null differ diff --git a/static/icons/060018CE.png b/static/icons/060018CE.png deleted file mode 100755 index b6ca7af5..00000000 Binary files a/static/icons/060018CE.png and /dev/null differ diff --git a/static/icons/060018CF.png b/static/icons/060018CF.png deleted file mode 100755 index a4961490..00000000 Binary files a/static/icons/060018CF.png and /dev/null differ diff --git a/static/icons/060018D0.png b/static/icons/060018D0.png deleted file mode 100755 index c6280c46..00000000 Binary files a/static/icons/060018D0.png and /dev/null differ diff --git a/static/icons/060018D1.png b/static/icons/060018D1.png deleted file mode 100755 index 3e7a7944..00000000 Binary files a/static/icons/060018D1.png and /dev/null differ diff --git a/static/icons/060018D2.png b/static/icons/060018D2.png deleted file mode 100755 index 31e0d8ae..00000000 Binary files a/static/icons/060018D2.png and /dev/null differ diff --git a/static/icons/060018D3.png b/static/icons/060018D3.png deleted file mode 100755 index 5951b27c..00000000 Binary files a/static/icons/060018D3.png and /dev/null differ diff --git a/static/icons/060018D4.png b/static/icons/060018D4.png deleted file mode 100755 index 5be744f4..00000000 Binary files a/static/icons/060018D4.png and /dev/null differ diff --git a/static/icons/060018D5.png b/static/icons/060018D5.png deleted file mode 100755 index 55556c3d..00000000 Binary files a/static/icons/060018D5.png and /dev/null differ diff --git a/static/icons/060018D6.png b/static/icons/060018D6.png deleted file mode 100755 index 6665c403..00000000 Binary files a/static/icons/060018D6.png and /dev/null differ diff --git a/static/icons/060018D7.png b/static/icons/060018D7.png deleted file mode 100755 index e96f4da9..00000000 Binary files a/static/icons/060018D7.png and /dev/null differ diff --git a/static/icons/060018D8.png b/static/icons/060018D8.png deleted file mode 100755 index 9d1c5edb..00000000 Binary files a/static/icons/060018D8.png and /dev/null differ diff --git a/static/icons/060018D9.png b/static/icons/060018D9.png deleted file mode 100755 index 3f5e1010..00000000 Binary files a/static/icons/060018D9.png and /dev/null differ diff --git a/static/icons/060018DA.png b/static/icons/060018DA.png deleted file mode 100755 index 371f94e3..00000000 Binary files a/static/icons/060018DA.png and /dev/null differ diff --git a/static/icons/060018DB.png b/static/icons/060018DB.png deleted file mode 100755 index 66addefd..00000000 Binary files a/static/icons/060018DB.png and /dev/null differ diff --git a/static/icons/060018DC.png b/static/icons/060018DC.png deleted file mode 100755 index b07e31db..00000000 Binary files a/static/icons/060018DC.png and /dev/null differ diff --git a/static/icons/060018DD.png b/static/icons/060018DD.png deleted file mode 100755 index e3382bbb..00000000 Binary files a/static/icons/060018DD.png and /dev/null differ diff --git a/static/icons/060018DE.png b/static/icons/060018DE.png deleted file mode 100755 index 384776f6..00000000 Binary files a/static/icons/060018DE.png and /dev/null differ diff --git a/static/icons/060018DF.png b/static/icons/060018DF.png deleted file mode 100755 index 8531e51f..00000000 Binary files a/static/icons/060018DF.png and /dev/null differ diff --git a/static/icons/060018E5.png b/static/icons/060018E5.png deleted file mode 100755 index 50e02a90..00000000 Binary files a/static/icons/060018E5.png and /dev/null differ diff --git a/static/icons/060018E6.png b/static/icons/060018E6.png deleted file mode 100755 index 98ab3892..00000000 Binary files a/static/icons/060018E6.png and /dev/null differ diff --git a/static/icons/060018E7.png b/static/icons/060018E7.png deleted file mode 100755 index cb2daea2..00000000 Binary files a/static/icons/060018E7.png and /dev/null differ diff --git a/static/icons/060018E8.png b/static/icons/060018E8.png deleted file mode 100755 index 38cfdc37..00000000 Binary files a/static/icons/060018E8.png and /dev/null differ diff --git a/static/icons/060018E9.png b/static/icons/060018E9.png deleted file mode 100755 index afc07f3c..00000000 Binary files a/static/icons/060018E9.png and /dev/null differ diff --git a/static/icons/060018EA.png b/static/icons/060018EA.png deleted file mode 100755 index 1c3a857c..00000000 Binary files a/static/icons/060018EA.png and /dev/null differ diff --git a/static/icons/060018EB.png b/static/icons/060018EB.png deleted file mode 100755 index 50db277f..00000000 Binary files a/static/icons/060018EB.png and /dev/null differ diff --git a/static/icons/060018EC.png b/static/icons/060018EC.png deleted file mode 100755 index b76ccd5b..00000000 Binary files a/static/icons/060018EC.png and /dev/null differ diff --git a/static/icons/060018ED.png b/static/icons/060018ED.png deleted file mode 100755 index 8387c7c0..00000000 Binary files a/static/icons/060018ED.png and /dev/null differ diff --git a/static/icons/060018EE.png b/static/icons/060018EE.png deleted file mode 100755 index 8434be99..00000000 Binary files a/static/icons/060018EE.png and /dev/null differ diff --git a/static/icons/060018EF.png b/static/icons/060018EF.png deleted file mode 100755 index 9fda40e5..00000000 Binary files a/static/icons/060018EF.png and /dev/null differ diff --git a/static/icons/060018F0.png b/static/icons/060018F0.png deleted file mode 100755 index caede515..00000000 Binary files a/static/icons/060018F0.png and /dev/null differ diff --git a/static/icons/060018F1.png b/static/icons/060018F1.png deleted file mode 100755 index d9e2f5e5..00000000 Binary files a/static/icons/060018F1.png and /dev/null differ diff --git a/static/icons/060018F2.png b/static/icons/060018F2.png deleted file mode 100755 index 4f4d0893..00000000 Binary files a/static/icons/060018F2.png and /dev/null differ diff --git a/static/icons/060018F3.png b/static/icons/060018F3.png deleted file mode 100755 index ba416f8a..00000000 Binary files a/static/icons/060018F3.png and /dev/null differ diff --git a/static/icons/060018F4.png b/static/icons/060018F4.png deleted file mode 100755 index 8ea55157..00000000 Binary files a/static/icons/060018F4.png and /dev/null differ diff --git a/static/icons/060018F5.png b/static/icons/060018F5.png deleted file mode 100755 index c90b856e..00000000 Binary files a/static/icons/060018F5.png and /dev/null differ diff --git a/static/icons/060018F6.png b/static/icons/060018F6.png deleted file mode 100755 index afeed39d..00000000 Binary files a/static/icons/060018F6.png and /dev/null differ diff --git a/static/icons/060018F7.png b/static/icons/060018F7.png deleted file mode 100755 index f2e368d0..00000000 Binary files a/static/icons/060018F7.png and /dev/null differ diff --git a/static/icons/060018F8.png b/static/icons/060018F8.png deleted file mode 100755 index 2f05d36f..00000000 Binary files a/static/icons/060018F8.png and /dev/null differ diff --git a/static/icons/060018F9.png b/static/icons/060018F9.png deleted file mode 100755 index e0f3670f..00000000 Binary files a/static/icons/060018F9.png and /dev/null differ diff --git a/static/icons/060018FA.png b/static/icons/060018FA.png deleted file mode 100755 index 6d963cec..00000000 Binary files a/static/icons/060018FA.png and /dev/null differ diff --git a/static/icons/060018FB.png b/static/icons/060018FB.png deleted file mode 100755 index 8da23b43..00000000 Binary files a/static/icons/060018FB.png and /dev/null differ diff --git a/static/icons/060018FC.png b/static/icons/060018FC.png deleted file mode 100755 index 340e73d4..00000000 Binary files a/static/icons/060018FC.png and /dev/null differ diff --git a/static/icons/060018FE.png b/static/icons/060018FE.png deleted file mode 100755 index a8f32940..00000000 Binary files a/static/icons/060018FE.png and /dev/null differ diff --git a/static/icons/060018FF.png b/static/icons/060018FF.png deleted file mode 100755 index ea684fd5..00000000 Binary files a/static/icons/060018FF.png and /dev/null differ diff --git a/static/icons/06001900.png b/static/icons/06001900.png deleted file mode 100755 index 9dfd0edf..00000000 Binary files a/static/icons/06001900.png and /dev/null differ diff --git a/static/icons/06001901.png b/static/icons/06001901.png deleted file mode 100755 index da95c182..00000000 Binary files a/static/icons/06001901.png and /dev/null differ diff --git a/static/icons/06001902.png b/static/icons/06001902.png deleted file mode 100755 index a9ffba91..00000000 Binary files a/static/icons/06001902.png and /dev/null differ diff --git a/static/icons/06001903.png b/static/icons/06001903.png deleted file mode 100755 index 6ab17c6b..00000000 Binary files a/static/icons/06001903.png and /dev/null differ diff --git a/static/icons/06001904.png b/static/icons/06001904.png deleted file mode 100755 index 0bd302d8..00000000 Binary files a/static/icons/06001904.png and /dev/null differ diff --git a/static/icons/06001905.png b/static/icons/06001905.png deleted file mode 100755 index a14469c6..00000000 Binary files a/static/icons/06001905.png and /dev/null differ diff --git a/static/icons/06001906.png b/static/icons/06001906.png deleted file mode 100755 index 92d55b1d..00000000 Binary files a/static/icons/06001906.png and /dev/null differ diff --git a/static/icons/06001907.png b/static/icons/06001907.png deleted file mode 100755 index 6d021dfa..00000000 Binary files a/static/icons/06001907.png and /dev/null differ diff --git a/static/icons/06001908.png b/static/icons/06001908.png deleted file mode 100755 index 1b6894ef..00000000 Binary files a/static/icons/06001908.png and /dev/null differ diff --git a/static/icons/06001909.png b/static/icons/06001909.png deleted file mode 100755 index d4a83253..00000000 Binary files a/static/icons/06001909.png and /dev/null differ diff --git a/static/icons/0600190A.png b/static/icons/0600190A.png deleted file mode 100755 index 8f919225..00000000 Binary files a/static/icons/0600190A.png and /dev/null differ diff --git a/static/icons/0600190B.png b/static/icons/0600190B.png deleted file mode 100755 index abaed422..00000000 Binary files a/static/icons/0600190B.png and /dev/null differ diff --git a/static/icons/0600190C.png b/static/icons/0600190C.png deleted file mode 100755 index 7a894cf2..00000000 Binary files a/static/icons/0600190C.png and /dev/null differ diff --git a/static/icons/0600190D.png b/static/icons/0600190D.png deleted file mode 100755 index 55a5ee13..00000000 Binary files a/static/icons/0600190D.png and /dev/null differ diff --git a/static/icons/0600190E.png b/static/icons/0600190E.png deleted file mode 100755 index 54f6f7be..00000000 Binary files a/static/icons/0600190E.png and /dev/null differ diff --git a/static/icons/0600190F.png b/static/icons/0600190F.png deleted file mode 100755 index 7ac2dc5d..00000000 Binary files a/static/icons/0600190F.png and /dev/null differ diff --git a/static/icons/06001910.png b/static/icons/06001910.png deleted file mode 100755 index b25e4273..00000000 Binary files a/static/icons/06001910.png and /dev/null differ diff --git a/static/icons/06001911.png b/static/icons/06001911.png deleted file mode 100755 index 759d9f72..00000000 Binary files a/static/icons/06001911.png and /dev/null differ diff --git a/static/icons/06001912.png b/static/icons/06001912.png deleted file mode 100755 index 20fd5ea9..00000000 Binary files a/static/icons/06001912.png and /dev/null differ diff --git a/static/icons/06001915.png b/static/icons/06001915.png deleted file mode 100755 index 11b12f7c..00000000 Binary files a/static/icons/06001915.png and /dev/null differ diff --git a/static/icons/06001916.png b/static/icons/06001916.png deleted file mode 100755 index 92d11ca5..00000000 Binary files a/static/icons/06001916.png and /dev/null differ diff --git a/static/icons/06001918.png b/static/icons/06001918.png deleted file mode 100755 index f66a109f..00000000 Binary files a/static/icons/06001918.png and /dev/null differ diff --git a/static/icons/06001919.png b/static/icons/06001919.png deleted file mode 100755 index 2c0662fc..00000000 Binary files a/static/icons/06001919.png and /dev/null differ diff --git a/static/icons/0600191A.png b/static/icons/0600191A.png deleted file mode 100755 index 1f678b22..00000000 Binary files a/static/icons/0600191A.png and /dev/null differ diff --git a/static/icons/0600191F.png b/static/icons/0600191F.png deleted file mode 100755 index 17fd76c3..00000000 Binary files a/static/icons/0600191F.png and /dev/null differ diff --git a/static/icons/06001920.png b/static/icons/06001920.png deleted file mode 100755 index 9095bbc7..00000000 Binary files a/static/icons/06001920.png and /dev/null differ diff --git a/static/icons/06001921.png b/static/icons/06001921.png deleted file mode 100755 index e41099dc..00000000 Binary files a/static/icons/06001921.png and /dev/null differ diff --git a/static/icons/06001922.png b/static/icons/06001922.png deleted file mode 100755 index 98a67fe9..00000000 Binary files a/static/icons/06001922.png and /dev/null differ diff --git a/static/icons/06001923.png b/static/icons/06001923.png deleted file mode 100755 index b174b470..00000000 Binary files a/static/icons/06001923.png and /dev/null differ diff --git a/static/icons/06001927.png b/static/icons/06001927.png deleted file mode 100755 index df2c3a02..00000000 Binary files a/static/icons/06001927.png and /dev/null differ diff --git a/static/icons/06001928.png b/static/icons/06001928.png deleted file mode 100755 index 41d9854a..00000000 Binary files a/static/icons/06001928.png and /dev/null differ diff --git a/static/icons/06001929.png b/static/icons/06001929.png deleted file mode 100755 index 379d004e..00000000 Binary files a/static/icons/06001929.png and /dev/null differ diff --git a/static/icons/0600192A.png b/static/icons/0600192A.png deleted file mode 100755 index 7facc27d..00000000 Binary files a/static/icons/0600192A.png and /dev/null differ diff --git a/static/icons/0600192B.png b/static/icons/0600192B.png deleted file mode 100755 index a02161ba..00000000 Binary files a/static/icons/0600192B.png and /dev/null differ diff --git a/static/icons/0600192F.png b/static/icons/0600192F.png deleted file mode 100755 index 68921784..00000000 Binary files a/static/icons/0600192F.png and /dev/null differ diff --git a/static/icons/06001932.png b/static/icons/06001932.png deleted file mode 100755 index eaa8a1fd..00000000 Binary files a/static/icons/06001932.png and /dev/null differ diff --git a/static/icons/06001933.png b/static/icons/06001933.png deleted file mode 100755 index f8ab0c78..00000000 Binary files a/static/icons/06001933.png and /dev/null differ diff --git a/static/icons/06001934.png b/static/icons/06001934.png deleted file mode 100755 index 2b62aedd..00000000 Binary files a/static/icons/06001934.png and /dev/null differ diff --git a/static/icons/06001935.png b/static/icons/06001935.png deleted file mode 100755 index bbb517e8..00000000 Binary files a/static/icons/06001935.png and /dev/null differ diff --git a/static/icons/06001937.png b/static/icons/06001937.png deleted file mode 100755 index bb84415a..00000000 Binary files a/static/icons/06001937.png and /dev/null differ diff --git a/static/icons/06001938.png b/static/icons/06001938.png deleted file mode 100755 index 34463dc7..00000000 Binary files a/static/icons/06001938.png and /dev/null differ diff --git a/static/icons/0600193A.png b/static/icons/0600193A.png deleted file mode 100755 index f69450f9..00000000 Binary files a/static/icons/0600193A.png and /dev/null differ diff --git a/static/icons/0600193C.png b/static/icons/0600193C.png deleted file mode 100755 index 63443f29..00000000 Binary files a/static/icons/0600193C.png and /dev/null differ diff --git a/static/icons/0600193E.png b/static/icons/0600193E.png deleted file mode 100755 index 1f8a7509..00000000 Binary files a/static/icons/0600193E.png and /dev/null differ diff --git a/static/icons/0600193F.png b/static/icons/0600193F.png deleted file mode 100755 index d9211959..00000000 Binary files a/static/icons/0600193F.png and /dev/null differ diff --git a/static/icons/06001942.png b/static/icons/06001942.png deleted file mode 100755 index e00af279..00000000 Binary files a/static/icons/06001942.png and /dev/null differ diff --git a/static/icons/0600194C.png b/static/icons/0600194C.png deleted file mode 100755 index 9af61e15..00000000 Binary files a/static/icons/0600194C.png and /dev/null differ diff --git a/static/icons/06001953.png b/static/icons/06001953.png deleted file mode 100755 index 410e57c7..00000000 Binary files a/static/icons/06001953.png and /dev/null differ diff --git a/static/icons/0600195B.png b/static/icons/0600195B.png deleted file mode 100755 index c136de33..00000000 Binary files a/static/icons/0600195B.png and /dev/null differ diff --git a/static/icons/0600195C.png b/static/icons/0600195C.png deleted file mode 100755 index 004716c6..00000000 Binary files a/static/icons/0600195C.png and /dev/null differ diff --git a/static/icons/0600195D.png b/static/icons/0600195D.png deleted file mode 100755 index 4f210e08..00000000 Binary files a/static/icons/0600195D.png and /dev/null differ diff --git a/static/icons/0600195E.png b/static/icons/0600195E.png deleted file mode 100755 index 11b00c06..00000000 Binary files a/static/icons/0600195E.png and /dev/null differ diff --git a/static/icons/0600195F.png b/static/icons/0600195F.png deleted file mode 100755 index 8965a394..00000000 Binary files a/static/icons/0600195F.png and /dev/null differ diff --git a/static/icons/06001960.png b/static/icons/06001960.png deleted file mode 100755 index 3add35ed..00000000 Binary files a/static/icons/06001960.png and /dev/null differ diff --git a/static/icons/06001961.png b/static/icons/06001961.png deleted file mode 100755 index 7be05eda..00000000 Binary files a/static/icons/06001961.png and /dev/null differ diff --git a/static/icons/06001962.png b/static/icons/06001962.png deleted file mode 100755 index 78c09eeb..00000000 Binary files a/static/icons/06001962.png and /dev/null differ diff --git a/static/icons/06001963.png b/static/icons/06001963.png deleted file mode 100755 index 0af68750..00000000 Binary files a/static/icons/06001963.png and /dev/null differ diff --git a/static/icons/06001964.png b/static/icons/06001964.png deleted file mode 100755 index 5ef1f39e..00000000 Binary files a/static/icons/06001964.png and /dev/null differ diff --git a/static/icons/06001965.png b/static/icons/06001965.png deleted file mode 100755 index e21aa3e1..00000000 Binary files a/static/icons/06001965.png and /dev/null differ diff --git a/static/icons/06001966.png b/static/icons/06001966.png deleted file mode 100755 index ff089a2b..00000000 Binary files a/static/icons/06001966.png and /dev/null differ diff --git a/static/icons/06001967.png b/static/icons/06001967.png deleted file mode 100755 index 2c469564..00000000 Binary files a/static/icons/06001967.png and /dev/null differ diff --git a/static/icons/06001968.png b/static/icons/06001968.png deleted file mode 100755 index 799911e7..00000000 Binary files a/static/icons/06001968.png and /dev/null differ diff --git a/static/icons/06001969.png b/static/icons/06001969.png deleted file mode 100755 index 8dea6234..00000000 Binary files a/static/icons/06001969.png and /dev/null differ diff --git a/static/icons/0600196A.png b/static/icons/0600196A.png deleted file mode 100755 index 70bc7cfb..00000000 Binary files a/static/icons/0600196A.png and /dev/null differ diff --git a/static/icons/0600196B.png b/static/icons/0600196B.png deleted file mode 100755 index a57c4a41..00000000 Binary files a/static/icons/0600196B.png and /dev/null differ diff --git a/static/icons/0600196C.png b/static/icons/0600196C.png deleted file mode 100755 index 169b1b3a..00000000 Binary files a/static/icons/0600196C.png and /dev/null differ diff --git a/static/icons/0600196D.png b/static/icons/0600196D.png deleted file mode 100755 index 4e3afc33..00000000 Binary files a/static/icons/0600196D.png and /dev/null differ diff --git a/static/icons/0600196E.png b/static/icons/0600196E.png deleted file mode 100755 index 3a3ce445..00000000 Binary files a/static/icons/0600196E.png and /dev/null differ diff --git a/static/icons/0600196F.png b/static/icons/0600196F.png deleted file mode 100755 index 282cd209..00000000 Binary files a/static/icons/0600196F.png and /dev/null differ diff --git a/static/icons/06001970.png b/static/icons/06001970.png deleted file mode 100755 index 031e31a4..00000000 Binary files a/static/icons/06001970.png and /dev/null differ diff --git a/static/icons/06001971.png b/static/icons/06001971.png deleted file mode 100755 index 8d6eba42..00000000 Binary files a/static/icons/06001971.png and /dev/null differ diff --git a/static/icons/06001972.png b/static/icons/06001972.png deleted file mode 100755 index 9377b552..00000000 Binary files a/static/icons/06001972.png and /dev/null differ diff --git a/static/icons/06001973.png b/static/icons/06001973.png deleted file mode 100755 index 948743ab..00000000 Binary files a/static/icons/06001973.png and /dev/null differ diff --git a/static/icons/06001974.png b/static/icons/06001974.png deleted file mode 100755 index 6973c372..00000000 Binary files a/static/icons/06001974.png and /dev/null differ diff --git a/static/icons/06001975.png b/static/icons/06001975.png deleted file mode 100755 index acd91faa..00000000 Binary files a/static/icons/06001975.png and /dev/null differ diff --git a/static/icons/06001976.png b/static/icons/06001976.png deleted file mode 100755 index 51fa8b0c..00000000 Binary files a/static/icons/06001976.png and /dev/null differ diff --git a/static/icons/06001977.png b/static/icons/06001977.png deleted file mode 100755 index df73a64d..00000000 Binary files a/static/icons/06001977.png and /dev/null differ diff --git a/static/icons/06001978.png b/static/icons/06001978.png deleted file mode 100755 index 901c5d73..00000000 Binary files a/static/icons/06001978.png and /dev/null differ diff --git a/static/icons/06001979.png b/static/icons/06001979.png deleted file mode 100755 index 205f9a98..00000000 Binary files a/static/icons/06001979.png and /dev/null differ diff --git a/static/icons/0600198B.png b/static/icons/0600198B.png deleted file mode 100755 index 38135c79..00000000 Binary files a/static/icons/0600198B.png and /dev/null differ diff --git a/static/icons/0600198C.png b/static/icons/0600198C.png deleted file mode 100755 index b1cc511b..00000000 Binary files a/static/icons/0600198C.png and /dev/null differ diff --git a/static/icons/060019B1.png b/static/icons/060019B1.png deleted file mode 100755 index 46bf79b3..00000000 Binary files a/static/icons/060019B1.png and /dev/null differ diff --git a/static/icons/060019B2.png b/static/icons/060019B2.png deleted file mode 100755 index 2bf419c1..00000000 Binary files a/static/icons/060019B2.png and /dev/null differ diff --git a/static/icons/060019B4.png b/static/icons/060019B4.png deleted file mode 100755 index d4ddbfb5..00000000 Binary files a/static/icons/060019B4.png and /dev/null differ diff --git a/static/icons/060019B5.png b/static/icons/060019B5.png deleted file mode 100755 index 2ae6775c..00000000 Binary files a/static/icons/060019B5.png and /dev/null differ diff --git a/static/icons/060019E4.png b/static/icons/060019E4.png deleted file mode 100755 index 138584b5..00000000 Binary files a/static/icons/060019E4.png and /dev/null differ diff --git a/static/icons/060019EC.png b/static/icons/060019EC.png deleted file mode 100755 index f0f6887f..00000000 Binary files a/static/icons/060019EC.png and /dev/null differ diff --git a/static/icons/060019ED.png b/static/icons/060019ED.png deleted file mode 100755 index a65f6517..00000000 Binary files a/static/icons/060019ED.png and /dev/null differ diff --git a/static/icons/060019EE.png b/static/icons/060019EE.png deleted file mode 100755 index a491aa51..00000000 Binary files a/static/icons/060019EE.png and /dev/null differ diff --git a/static/icons/060019EF.png b/static/icons/060019EF.png deleted file mode 100755 index e1801e3d..00000000 Binary files a/static/icons/060019EF.png and /dev/null differ diff --git a/static/icons/060019F0.png b/static/icons/060019F0.png deleted file mode 100755 index cfa30cd3..00000000 Binary files a/static/icons/060019F0.png and /dev/null differ diff --git a/static/icons/060019F1.png b/static/icons/060019F1.png deleted file mode 100755 index cbec6577..00000000 Binary files a/static/icons/060019F1.png and /dev/null differ diff --git a/static/icons/060019F2.png b/static/icons/060019F2.png deleted file mode 100755 index 358cfbfb..00000000 Binary files a/static/icons/060019F2.png and /dev/null differ diff --git a/static/icons/060019F3.png b/static/icons/060019F3.png deleted file mode 100755 index cfbdad1f..00000000 Binary files a/static/icons/060019F3.png and /dev/null differ diff --git a/static/icons/060019F4.png b/static/icons/060019F4.png deleted file mode 100755 index 6ac39dcd..00000000 Binary files a/static/icons/060019F4.png and /dev/null differ diff --git a/static/icons/060019F5.png b/static/icons/060019F5.png deleted file mode 100755 index 89e6912f..00000000 Binary files a/static/icons/060019F5.png and /dev/null differ diff --git a/static/icons/060019F6.png b/static/icons/060019F6.png deleted file mode 100755 index a5ae20f9..00000000 Binary files a/static/icons/060019F6.png and /dev/null differ diff --git a/static/icons/060019F7.png b/static/icons/060019F7.png deleted file mode 100755 index 2a5aa1c4..00000000 Binary files a/static/icons/060019F7.png and /dev/null differ diff --git a/static/icons/060019F8.png b/static/icons/060019F8.png deleted file mode 100755 index bad7b488..00000000 Binary files a/static/icons/060019F8.png and /dev/null differ diff --git a/static/icons/060019F9.png b/static/icons/060019F9.png deleted file mode 100755 index 00eb74f8..00000000 Binary files a/static/icons/060019F9.png and /dev/null differ diff --git a/static/icons/060019FA.png b/static/icons/060019FA.png deleted file mode 100755 index 9ef74782..00000000 Binary files a/static/icons/060019FA.png and /dev/null differ diff --git a/static/icons/060019FB.png b/static/icons/060019FB.png deleted file mode 100755 index d8c72454..00000000 Binary files a/static/icons/060019FB.png and /dev/null differ diff --git a/static/icons/060019FC.png b/static/icons/060019FC.png deleted file mode 100755 index 2eb3c196..00000000 Binary files a/static/icons/060019FC.png and /dev/null differ diff --git a/static/icons/060019FD.png b/static/icons/060019FD.png deleted file mode 100755 index 86259181..00000000 Binary files a/static/icons/060019FD.png and /dev/null differ diff --git a/static/icons/060019FE.png b/static/icons/060019FE.png deleted file mode 100755 index f92c3c3b..00000000 Binary files a/static/icons/060019FE.png and /dev/null differ diff --git a/static/icons/060019FF.png b/static/icons/060019FF.png deleted file mode 100755 index 1038b22b..00000000 Binary files a/static/icons/060019FF.png and /dev/null differ diff --git a/static/icons/06001A00.png b/static/icons/06001A00.png deleted file mode 100755 index 2acf1ed4..00000000 Binary files a/static/icons/06001A00.png and /dev/null differ diff --git a/static/icons/06001A01.png b/static/icons/06001A01.png deleted file mode 100755 index b0e54426..00000000 Binary files a/static/icons/06001A01.png and /dev/null differ diff --git a/static/icons/06001A02.png b/static/icons/06001A02.png deleted file mode 100755 index b4d2ce9a..00000000 Binary files a/static/icons/06001A02.png and /dev/null differ diff --git a/static/icons/06001A03.png b/static/icons/06001A03.png deleted file mode 100755 index 75a286bc..00000000 Binary files a/static/icons/06001A03.png and /dev/null differ diff --git a/static/icons/06001A04.png b/static/icons/06001A04.png deleted file mode 100755 index e173b7d7..00000000 Binary files a/static/icons/06001A04.png and /dev/null differ diff --git a/static/icons/06001A05.png b/static/icons/06001A05.png deleted file mode 100755 index d885fa24..00000000 Binary files a/static/icons/06001A05.png and /dev/null differ diff --git a/static/icons/06001A06.png b/static/icons/06001A06.png deleted file mode 100755 index 0e2e183f..00000000 Binary files a/static/icons/06001A06.png and /dev/null differ diff --git a/static/icons/06001A07.png b/static/icons/06001A07.png deleted file mode 100755 index 3803922c..00000000 Binary files a/static/icons/06001A07.png and /dev/null differ diff --git a/static/icons/06001A08.png b/static/icons/06001A08.png deleted file mode 100755 index eb20febc..00000000 Binary files a/static/icons/06001A08.png and /dev/null differ diff --git a/static/icons/06001A09.png b/static/icons/06001A09.png deleted file mode 100755 index 796793ed..00000000 Binary files a/static/icons/06001A09.png and /dev/null differ diff --git a/static/icons/06001A0B.png b/static/icons/06001A0B.png deleted file mode 100755 index 7304747b..00000000 Binary files a/static/icons/06001A0B.png and /dev/null differ diff --git a/static/icons/06001A0C.png b/static/icons/06001A0C.png deleted file mode 100755 index d26d62f1..00000000 Binary files a/static/icons/06001A0C.png and /dev/null differ diff --git a/static/icons/06001A0D.png b/static/icons/06001A0D.png deleted file mode 100755 index d0308348..00000000 Binary files a/static/icons/06001A0D.png and /dev/null differ diff --git a/static/icons/06001A0E.png b/static/icons/06001A0E.png deleted file mode 100755 index a58e9750..00000000 Binary files a/static/icons/06001A0E.png and /dev/null differ diff --git a/static/icons/06001A0F.png b/static/icons/06001A0F.png deleted file mode 100755 index 2fa106e7..00000000 Binary files a/static/icons/06001A0F.png and /dev/null differ diff --git a/static/icons/06001A10.png b/static/icons/06001A10.png deleted file mode 100755 index 412fb91e..00000000 Binary files a/static/icons/06001A10.png and /dev/null differ diff --git a/static/icons/06001A11.png b/static/icons/06001A11.png deleted file mode 100755 index 665372ab..00000000 Binary files a/static/icons/06001A11.png and /dev/null differ diff --git a/static/icons/06001A12.png b/static/icons/06001A12.png deleted file mode 100755 index f9e4a7bc..00000000 Binary files a/static/icons/06001A12.png and /dev/null differ diff --git a/static/icons/06001A13.png b/static/icons/06001A13.png deleted file mode 100755 index a06ad464..00000000 Binary files a/static/icons/06001A13.png and /dev/null differ diff --git a/static/icons/06001A14.png b/static/icons/06001A14.png deleted file mode 100755 index 2ce09712..00000000 Binary files a/static/icons/06001A14.png and /dev/null differ diff --git a/static/icons/06001A26.png b/static/icons/06001A26.png deleted file mode 100755 index 86dc1de8..00000000 Binary files a/static/icons/06001A26.png and /dev/null differ diff --git a/static/icons/06001A27.png b/static/icons/06001A27.png deleted file mode 100755 index abc68723..00000000 Binary files a/static/icons/06001A27.png and /dev/null differ diff --git a/static/icons/06001A28.png b/static/icons/06001A28.png deleted file mode 100755 index 11a7f23a..00000000 Binary files a/static/icons/06001A28.png and /dev/null differ diff --git a/static/icons/06001A29.png b/static/icons/06001A29.png deleted file mode 100755 index 787bdf52..00000000 Binary files a/static/icons/06001A29.png and /dev/null differ diff --git a/static/icons/06001A2A.png b/static/icons/06001A2A.png deleted file mode 100755 index d30d420d..00000000 Binary files a/static/icons/06001A2A.png and /dev/null differ diff --git a/static/icons/06001A2B.png b/static/icons/06001A2B.png deleted file mode 100755 index 5bc39e1e..00000000 Binary files a/static/icons/06001A2B.png and /dev/null differ diff --git a/static/icons/06001A2C.png b/static/icons/06001A2C.png deleted file mode 100755 index 7d6e9ff5..00000000 Binary files a/static/icons/06001A2C.png and /dev/null differ diff --git a/static/icons/06001A2D.png b/static/icons/06001A2D.png deleted file mode 100755 index 24b8191a..00000000 Binary files a/static/icons/06001A2D.png and /dev/null differ diff --git a/static/icons/06001A2E.png b/static/icons/06001A2E.png deleted file mode 100755 index 611a80c3..00000000 Binary files a/static/icons/06001A2E.png and /dev/null differ diff --git a/static/icons/06001A2F.png b/static/icons/06001A2F.png deleted file mode 100755 index c4cf0eab..00000000 Binary files a/static/icons/06001A2F.png and /dev/null differ diff --git a/static/icons/06001A30.png b/static/icons/06001A30.png deleted file mode 100755 index 18b3a2be..00000000 Binary files a/static/icons/06001A30.png and /dev/null differ diff --git a/static/icons/06001A31.png b/static/icons/06001A31.png deleted file mode 100755 index b5f9c306..00000000 Binary files a/static/icons/06001A31.png and /dev/null differ diff --git a/static/icons/06001A32.png b/static/icons/06001A32.png deleted file mode 100755 index b1389855..00000000 Binary files a/static/icons/06001A32.png and /dev/null differ diff --git a/static/icons/06001A33.png b/static/icons/06001A33.png deleted file mode 100755 index 14a780ba..00000000 Binary files a/static/icons/06001A33.png and /dev/null differ diff --git a/static/icons/06001A34.png b/static/icons/06001A34.png deleted file mode 100755 index 5606b4af..00000000 Binary files a/static/icons/06001A34.png and /dev/null differ diff --git a/static/icons/06001A35.png b/static/icons/06001A35.png deleted file mode 100755 index 045008dd..00000000 Binary files a/static/icons/06001A35.png and /dev/null differ diff --git a/static/icons/06001A36.png b/static/icons/06001A36.png deleted file mode 100755 index d29cc210..00000000 Binary files a/static/icons/06001A36.png and /dev/null differ diff --git a/static/icons/06001A37.png b/static/icons/06001A37.png deleted file mode 100755 index 5e7f3579..00000000 Binary files a/static/icons/06001A37.png and /dev/null differ diff --git a/static/icons/06001A38.png b/static/icons/06001A38.png deleted file mode 100755 index 98167bae..00000000 Binary files a/static/icons/06001A38.png and /dev/null differ diff --git a/static/icons/06001A39.png b/static/icons/06001A39.png deleted file mode 100755 index 9dd3880c..00000000 Binary files a/static/icons/06001A39.png and /dev/null differ diff --git a/static/icons/06001A3A.png b/static/icons/06001A3A.png deleted file mode 100755 index fa5d614f..00000000 Binary files a/static/icons/06001A3A.png and /dev/null differ diff --git a/static/icons/06001A3B.png b/static/icons/06001A3B.png deleted file mode 100755 index 667b4323..00000000 Binary files a/static/icons/06001A3B.png and /dev/null differ diff --git a/static/icons/06001A3C.png b/static/icons/06001A3C.png deleted file mode 100755 index 189d7215..00000000 Binary files a/static/icons/06001A3C.png and /dev/null differ diff --git a/static/icons/06001A3D.png b/static/icons/06001A3D.png deleted file mode 100755 index 1f3d4006..00000000 Binary files a/static/icons/06001A3D.png and /dev/null differ diff --git a/static/icons/06001A3E.png b/static/icons/06001A3E.png deleted file mode 100755 index b0b47220..00000000 Binary files a/static/icons/06001A3E.png and /dev/null differ diff --git a/static/icons/06001A3F.png b/static/icons/06001A3F.png deleted file mode 100755 index c9d8c54d..00000000 Binary files a/static/icons/06001A3F.png and /dev/null differ diff --git a/static/icons/06001A40.png b/static/icons/06001A40.png deleted file mode 100755 index 435c7f24..00000000 Binary files a/static/icons/06001A40.png and /dev/null differ diff --git a/static/icons/06001A41.png b/static/icons/06001A41.png deleted file mode 100755 index ff47ad58..00000000 Binary files a/static/icons/06001A41.png and /dev/null differ diff --git a/static/icons/06001A42.png b/static/icons/06001A42.png deleted file mode 100755 index b7023714..00000000 Binary files a/static/icons/06001A42.png and /dev/null differ diff --git a/static/icons/06001A43.png b/static/icons/06001A43.png deleted file mode 100755 index f562cac0..00000000 Binary files a/static/icons/06001A43.png and /dev/null differ diff --git a/static/icons/06001A44.png b/static/icons/06001A44.png deleted file mode 100755 index 934a779b..00000000 Binary files a/static/icons/06001A44.png and /dev/null differ diff --git a/static/icons/06001A45.png b/static/icons/06001A45.png deleted file mode 100755 index e51e7b3f..00000000 Binary files a/static/icons/06001A45.png and /dev/null differ diff --git a/static/icons/06001A46.png b/static/icons/06001A46.png deleted file mode 100755 index 5a9c1b2d..00000000 Binary files a/static/icons/06001A46.png and /dev/null differ diff --git a/static/icons/06001A47.png b/static/icons/06001A47.png deleted file mode 100755 index 2b111cf6..00000000 Binary files a/static/icons/06001A47.png and /dev/null differ diff --git a/static/icons/06001A48.png b/static/icons/06001A48.png deleted file mode 100755 index bbc54dc6..00000000 Binary files a/static/icons/06001A48.png and /dev/null differ diff --git a/static/icons/06001A49.png b/static/icons/06001A49.png deleted file mode 100755 index 03b254ce..00000000 Binary files a/static/icons/06001A49.png and /dev/null differ diff --git a/static/icons/06001A4A.png b/static/icons/06001A4A.png deleted file mode 100755 index 38cdfa8b..00000000 Binary files a/static/icons/06001A4A.png and /dev/null differ diff --git a/static/icons/06001A4B.png b/static/icons/06001A4B.png deleted file mode 100755 index b451e60b..00000000 Binary files a/static/icons/06001A4B.png and /dev/null differ diff --git a/static/icons/06001A4C.png b/static/icons/06001A4C.png deleted file mode 100755 index e1406aac..00000000 Binary files a/static/icons/06001A4C.png and /dev/null differ diff --git a/static/icons/06001A4D.png b/static/icons/06001A4D.png deleted file mode 100755 index 9ad04f09..00000000 Binary files a/static/icons/06001A4D.png and /dev/null differ diff --git a/static/icons/06001A4E.png b/static/icons/06001A4E.png deleted file mode 100755 index 1aabb503..00000000 Binary files a/static/icons/06001A4E.png and /dev/null differ diff --git a/static/icons/06001A4F.png b/static/icons/06001A4F.png deleted file mode 100755 index 7d9f9f8d..00000000 Binary files a/static/icons/06001A4F.png and /dev/null differ diff --git a/static/icons/06001A50.png b/static/icons/06001A50.png deleted file mode 100755 index 9b9bea97..00000000 Binary files a/static/icons/06001A50.png and /dev/null differ diff --git a/static/icons/06001A51.png b/static/icons/06001A51.png deleted file mode 100755 index fa0294e2..00000000 Binary files a/static/icons/06001A51.png and /dev/null differ diff --git a/static/icons/06001A52.png b/static/icons/06001A52.png deleted file mode 100755 index f448c276..00000000 Binary files a/static/icons/06001A52.png and /dev/null differ diff --git a/static/icons/06001A53.png b/static/icons/06001A53.png deleted file mode 100755 index 7bbcf3d7..00000000 Binary files a/static/icons/06001A53.png and /dev/null differ diff --git a/static/icons/06001A54.png b/static/icons/06001A54.png deleted file mode 100755 index 4f7f12a1..00000000 Binary files a/static/icons/06001A54.png and /dev/null differ diff --git a/static/icons/06001A55.png b/static/icons/06001A55.png deleted file mode 100755 index d4f6878e..00000000 Binary files a/static/icons/06001A55.png and /dev/null differ diff --git a/static/icons/06001A56.png b/static/icons/06001A56.png deleted file mode 100755 index 1ca92dee..00000000 Binary files a/static/icons/06001A56.png and /dev/null differ diff --git a/static/icons/06001A57.png b/static/icons/06001A57.png deleted file mode 100755 index 43a8045f..00000000 Binary files a/static/icons/06001A57.png and /dev/null differ diff --git a/static/icons/06001A58.png b/static/icons/06001A58.png deleted file mode 100755 index a6b64909..00000000 Binary files a/static/icons/06001A58.png and /dev/null differ diff --git a/static/icons/06001A59.png b/static/icons/06001A59.png deleted file mode 100755 index 9b97fcd5..00000000 Binary files a/static/icons/06001A59.png and /dev/null differ diff --git a/static/icons/06001A5A.png b/static/icons/06001A5A.png deleted file mode 100755 index b18270b3..00000000 Binary files a/static/icons/06001A5A.png and /dev/null differ diff --git a/static/icons/06001A5B.png b/static/icons/06001A5B.png deleted file mode 100755 index d14439c4..00000000 Binary files a/static/icons/06001A5B.png and /dev/null differ diff --git a/static/icons/06001A5C.png b/static/icons/06001A5C.png deleted file mode 100755 index 8c2dca4c..00000000 Binary files a/static/icons/06001A5C.png and /dev/null differ diff --git a/static/icons/06001A5D.png b/static/icons/06001A5D.png deleted file mode 100755 index c98ec3ff..00000000 Binary files a/static/icons/06001A5D.png and /dev/null differ diff --git a/static/icons/06001A5E.png b/static/icons/06001A5E.png deleted file mode 100755 index a1c0e08f..00000000 Binary files a/static/icons/06001A5E.png and /dev/null differ diff --git a/static/icons/06001A5F.png b/static/icons/06001A5F.png deleted file mode 100755 index 089f92ea..00000000 Binary files a/static/icons/06001A5F.png and /dev/null differ diff --git a/static/icons/06001A63.png b/static/icons/06001A63.png deleted file mode 100755 index 186e6b50..00000000 Binary files a/static/icons/06001A63.png and /dev/null differ diff --git a/static/icons/06001A64.png b/static/icons/06001A64.png deleted file mode 100755 index 7604c463..00000000 Binary files a/static/icons/06001A64.png and /dev/null differ diff --git a/static/icons/06001A65.png b/static/icons/06001A65.png deleted file mode 100755 index 64503f88..00000000 Binary files a/static/icons/06001A65.png and /dev/null differ diff --git a/static/icons/06001A66.png b/static/icons/06001A66.png deleted file mode 100755 index 673ecd1d..00000000 Binary files a/static/icons/06001A66.png and /dev/null differ diff --git a/static/icons/06001A67.png b/static/icons/06001A67.png deleted file mode 100755 index eed1b515..00000000 Binary files a/static/icons/06001A67.png and /dev/null differ diff --git a/static/icons/06001A68.png b/static/icons/06001A68.png deleted file mode 100755 index 03db4449..00000000 Binary files a/static/icons/06001A68.png and /dev/null differ diff --git a/static/icons/06001A69.png b/static/icons/06001A69.png deleted file mode 100755 index 6e21d857..00000000 Binary files a/static/icons/06001A69.png and /dev/null differ diff --git a/static/icons/06001A6A.png b/static/icons/06001A6A.png deleted file mode 100755 index 6e6c0f9c..00000000 Binary files a/static/icons/06001A6A.png and /dev/null differ diff --git a/static/icons/06001A6B.png b/static/icons/06001A6B.png deleted file mode 100755 index b9eb6599..00000000 Binary files a/static/icons/06001A6B.png and /dev/null differ diff --git a/static/icons/06001A6C.png b/static/icons/06001A6C.png deleted file mode 100755 index e16915cd..00000000 Binary files a/static/icons/06001A6C.png and /dev/null differ diff --git a/static/icons/06001A6D.png b/static/icons/06001A6D.png deleted file mode 100755 index b617453f..00000000 Binary files a/static/icons/06001A6D.png and /dev/null differ diff --git a/static/icons/06001A6E.png b/static/icons/06001A6E.png deleted file mode 100755 index a93847ce..00000000 Binary files a/static/icons/06001A6E.png and /dev/null differ diff --git a/static/icons/06001A6F.png b/static/icons/06001A6F.png deleted file mode 100755 index d2d0b739..00000000 Binary files a/static/icons/06001A6F.png and /dev/null differ diff --git a/static/icons/06001A70.png b/static/icons/06001A70.png deleted file mode 100755 index 0bc070a2..00000000 Binary files a/static/icons/06001A70.png and /dev/null differ diff --git a/static/icons/06001A71.png b/static/icons/06001A71.png deleted file mode 100755 index 60467f39..00000000 Binary files a/static/icons/06001A71.png and /dev/null differ diff --git a/static/icons/06001A72.png b/static/icons/06001A72.png deleted file mode 100755 index c618b929..00000000 Binary files a/static/icons/06001A72.png and /dev/null differ diff --git a/static/icons/06001A73.png b/static/icons/06001A73.png deleted file mode 100755 index 607c9f74..00000000 Binary files a/static/icons/06001A73.png and /dev/null differ diff --git a/static/icons/06001A74.png b/static/icons/06001A74.png deleted file mode 100755 index 315ede67..00000000 Binary files a/static/icons/06001A74.png and /dev/null differ diff --git a/static/icons/06001A75.png b/static/icons/06001A75.png deleted file mode 100755 index 2213a304..00000000 Binary files a/static/icons/06001A75.png and /dev/null differ diff --git a/static/icons/06001A76.png b/static/icons/06001A76.png deleted file mode 100755 index 5a92217a..00000000 Binary files a/static/icons/06001A76.png and /dev/null differ diff --git a/static/icons/06001A77.png b/static/icons/06001A77.png deleted file mode 100755 index ab28e025..00000000 Binary files a/static/icons/06001A77.png and /dev/null differ diff --git a/static/icons/06001A78.png b/static/icons/06001A78.png deleted file mode 100755 index a3726095..00000000 Binary files a/static/icons/06001A78.png and /dev/null differ diff --git a/static/icons/06001A79.png b/static/icons/06001A79.png deleted file mode 100755 index 638b24a0..00000000 Binary files a/static/icons/06001A79.png and /dev/null differ diff --git a/static/icons/06001A7A.png b/static/icons/06001A7A.png deleted file mode 100755 index 42a7862c..00000000 Binary files a/static/icons/06001A7A.png and /dev/null differ diff --git a/static/icons/06001A7E.png b/static/icons/06001A7E.png deleted file mode 100755 index f1ec6642..00000000 Binary files a/static/icons/06001A7E.png and /dev/null differ diff --git a/static/icons/06001A7F.png b/static/icons/06001A7F.png deleted file mode 100755 index f11c438d..00000000 Binary files a/static/icons/06001A7F.png and /dev/null differ diff --git a/static/icons/06001A80.png b/static/icons/06001A80.png deleted file mode 100755 index 0d932467..00000000 Binary files a/static/icons/06001A80.png and /dev/null differ diff --git a/static/icons/06001A81.png b/static/icons/06001A81.png deleted file mode 100755 index ece3c632..00000000 Binary files a/static/icons/06001A81.png and /dev/null differ diff --git a/static/icons/06001A82.png b/static/icons/06001A82.png deleted file mode 100755 index d8550754..00000000 Binary files a/static/icons/06001A82.png and /dev/null differ diff --git a/static/icons/06001A83.png b/static/icons/06001A83.png deleted file mode 100755 index b973855a..00000000 Binary files a/static/icons/06001A83.png and /dev/null differ diff --git a/static/icons/06001A84.png b/static/icons/06001A84.png deleted file mode 100755 index 29f37dc6..00000000 Binary files a/static/icons/06001A84.png and /dev/null differ diff --git a/static/icons/06001A85.png b/static/icons/06001A85.png deleted file mode 100755 index a51b2db6..00000000 Binary files a/static/icons/06001A85.png and /dev/null differ diff --git a/static/icons/06001A86.png b/static/icons/06001A86.png deleted file mode 100755 index 06dcb583..00000000 Binary files a/static/icons/06001A86.png and /dev/null differ diff --git a/static/icons/06001A87.png b/static/icons/06001A87.png deleted file mode 100755 index df43e435..00000000 Binary files a/static/icons/06001A87.png and /dev/null differ diff --git a/static/icons/06001A88.png b/static/icons/06001A88.png deleted file mode 100755 index 4ee6296a..00000000 Binary files a/static/icons/06001A88.png and /dev/null differ diff --git a/static/icons/06001A89.png b/static/icons/06001A89.png deleted file mode 100755 index f46c7059..00000000 Binary files a/static/icons/06001A89.png and /dev/null differ diff --git a/static/icons/06001A8A.png b/static/icons/06001A8A.png deleted file mode 100755 index e64d047d..00000000 Binary files a/static/icons/06001A8A.png and /dev/null differ diff --git a/static/icons/06001A8B.png b/static/icons/06001A8B.png deleted file mode 100755 index c217a305..00000000 Binary files a/static/icons/06001A8B.png and /dev/null differ diff --git a/static/icons/06001A97.png b/static/icons/06001A97.png deleted file mode 100755 index e390bbb8..00000000 Binary files a/static/icons/06001A97.png and /dev/null differ diff --git a/static/icons/06001AA4.png b/static/icons/06001AA4.png deleted file mode 100755 index 75a1b173..00000000 Binary files a/static/icons/06001AA4.png and /dev/null differ diff --git a/static/icons/06001AAF.png b/static/icons/06001AAF.png deleted file mode 100755 index 5c62f4f0..00000000 Binary files a/static/icons/06001AAF.png and /dev/null differ diff --git a/static/icons/06001AB0.png b/static/icons/06001AB0.png deleted file mode 100755 index c21acdc4..00000000 Binary files a/static/icons/06001AB0.png and /dev/null differ diff --git a/static/icons/06001AB1.png b/static/icons/06001AB1.png deleted file mode 100755 index b71d745b..00000000 Binary files a/static/icons/06001AB1.png and /dev/null differ diff --git a/static/icons/06001AB2.png b/static/icons/06001AB2.png deleted file mode 100755 index 99737733..00000000 Binary files a/static/icons/06001AB2.png and /dev/null differ diff --git a/static/icons/06001AB3.png b/static/icons/06001AB3.png deleted file mode 100755 index 3e32725b..00000000 Binary files a/static/icons/06001AB3.png and /dev/null differ diff --git a/static/icons/06001AB4.png b/static/icons/06001AB4.png deleted file mode 100755 index 994b02e9..00000000 Binary files a/static/icons/06001AB4.png and /dev/null differ diff --git a/static/icons/06001AB5.png b/static/icons/06001AB5.png deleted file mode 100755 index eaba6206..00000000 Binary files a/static/icons/06001AB5.png and /dev/null differ diff --git a/static/icons/06001AB7.png b/static/icons/06001AB7.png deleted file mode 100755 index b3895776..00000000 Binary files a/static/icons/06001AB7.png and /dev/null differ diff --git a/static/icons/06001AB8.png b/static/icons/06001AB8.png deleted file mode 100755 index 9095784a..00000000 Binary files a/static/icons/06001AB8.png and /dev/null differ diff --git a/static/icons/06001AB9.png b/static/icons/06001AB9.png deleted file mode 100755 index 787299ef..00000000 Binary files a/static/icons/06001AB9.png and /dev/null differ diff --git a/static/icons/06001ABA.png b/static/icons/06001ABA.png deleted file mode 100755 index 7ebc1d83..00000000 Binary files a/static/icons/06001ABA.png and /dev/null differ diff --git a/static/icons/06001ABB.png b/static/icons/06001ABB.png deleted file mode 100755 index f5ca7520..00000000 Binary files a/static/icons/06001ABB.png and /dev/null differ diff --git a/static/icons/06001ABC.png b/static/icons/06001ABC.png deleted file mode 100755 index 01f940ee..00000000 Binary files a/static/icons/06001ABC.png and /dev/null differ diff --git a/static/icons/06001ABD.png b/static/icons/06001ABD.png deleted file mode 100755 index 060a42b7..00000000 Binary files a/static/icons/06001ABD.png and /dev/null differ diff --git a/static/icons/06001ABE.png b/static/icons/06001ABE.png deleted file mode 100755 index 39a6a7ba..00000000 Binary files a/static/icons/06001ABE.png and /dev/null differ diff --git a/static/icons/06001ABF.png b/static/icons/06001ABF.png deleted file mode 100755 index 425a7f87..00000000 Binary files a/static/icons/06001ABF.png and /dev/null differ diff --git a/static/icons/06001AC0.png b/static/icons/06001AC0.png deleted file mode 100755 index 44fba526..00000000 Binary files a/static/icons/06001AC0.png and /dev/null differ diff --git a/static/icons/06001AC1.png b/static/icons/06001AC1.png deleted file mode 100755 index 7027937f..00000000 Binary files a/static/icons/06001AC1.png and /dev/null differ diff --git a/static/icons/06001AC2.png b/static/icons/06001AC2.png deleted file mode 100755 index cc1d182c..00000000 Binary files a/static/icons/06001AC2.png and /dev/null differ diff --git a/static/icons/06001AC3.png b/static/icons/06001AC3.png deleted file mode 100755 index 9367602e..00000000 Binary files a/static/icons/06001AC3.png and /dev/null differ diff --git a/static/icons/06001AC4.png b/static/icons/06001AC4.png deleted file mode 100755 index 07d63dee..00000000 Binary files a/static/icons/06001AC4.png and /dev/null differ diff --git a/static/icons/06001AC5.png b/static/icons/06001AC5.png deleted file mode 100755 index 3dd1cdc7..00000000 Binary files a/static/icons/06001AC5.png and /dev/null differ diff --git a/static/icons/06001AC6.png b/static/icons/06001AC6.png deleted file mode 100755 index 0fbddc0b..00000000 Binary files a/static/icons/06001AC6.png and /dev/null differ diff --git a/static/icons/06001AC7.png b/static/icons/06001AC7.png deleted file mode 100755 index a66c5051..00000000 Binary files a/static/icons/06001AC7.png and /dev/null differ diff --git a/static/icons/06001AC8.png b/static/icons/06001AC8.png deleted file mode 100755 index a2a8b569..00000000 Binary files a/static/icons/06001AC8.png and /dev/null differ diff --git a/static/icons/06001AC9.png b/static/icons/06001AC9.png deleted file mode 100755 index 3a99323f..00000000 Binary files a/static/icons/06001AC9.png and /dev/null differ diff --git a/static/icons/06001ACA.png b/static/icons/06001ACA.png deleted file mode 100755 index e8757982..00000000 Binary files a/static/icons/06001ACA.png and /dev/null differ diff --git a/static/icons/06001ACC.png b/static/icons/06001ACC.png deleted file mode 100755 index b810719a..00000000 Binary files a/static/icons/06001ACC.png and /dev/null differ diff --git a/static/icons/06001ACD.png b/static/icons/06001ACD.png deleted file mode 100755 index 347898f0..00000000 Binary files a/static/icons/06001ACD.png and /dev/null differ diff --git a/static/icons/06001ACE.png b/static/icons/06001ACE.png deleted file mode 100755 index 7f3cf996..00000000 Binary files a/static/icons/06001ACE.png and /dev/null differ diff --git a/static/icons/06001ACF.png b/static/icons/06001ACF.png deleted file mode 100755 index a5f0e389..00000000 Binary files a/static/icons/06001ACF.png and /dev/null differ diff --git a/static/icons/06001AD0.png b/static/icons/06001AD0.png deleted file mode 100755 index 78521f19..00000000 Binary files a/static/icons/06001AD0.png and /dev/null differ diff --git a/static/icons/06001AD1.png b/static/icons/06001AD1.png deleted file mode 100755 index ad66aeb2..00000000 Binary files a/static/icons/06001AD1.png and /dev/null differ diff --git a/static/icons/06001AD2.png b/static/icons/06001AD2.png deleted file mode 100755 index d101bdc3..00000000 Binary files a/static/icons/06001AD2.png and /dev/null differ diff --git a/static/icons/06001AD3.png b/static/icons/06001AD3.png deleted file mode 100755 index e42c4ad7..00000000 Binary files a/static/icons/06001AD3.png and /dev/null differ diff --git a/static/icons/06001AD4.png b/static/icons/06001AD4.png deleted file mode 100755 index 5379b15f..00000000 Binary files a/static/icons/06001AD4.png and /dev/null differ diff --git a/static/icons/06001AD5.png b/static/icons/06001AD5.png deleted file mode 100755 index 4b493556..00000000 Binary files a/static/icons/06001AD5.png and /dev/null differ diff --git a/static/icons/06001AD6.png b/static/icons/06001AD6.png deleted file mode 100755 index eb3b8456..00000000 Binary files a/static/icons/06001AD6.png and /dev/null differ diff --git a/static/icons/06001AD7.png b/static/icons/06001AD7.png deleted file mode 100755 index 3c37b930..00000000 Binary files a/static/icons/06001AD7.png and /dev/null differ diff --git a/static/icons/06001AD8.png b/static/icons/06001AD8.png deleted file mode 100755 index 4808d0e6..00000000 Binary files a/static/icons/06001AD8.png and /dev/null differ diff --git a/static/icons/06001AD9.png b/static/icons/06001AD9.png deleted file mode 100755 index 88f439e5..00000000 Binary files a/static/icons/06001AD9.png and /dev/null differ diff --git a/static/icons/06001ADA.png b/static/icons/06001ADA.png deleted file mode 100755 index dcdf0faa..00000000 Binary files a/static/icons/06001ADA.png and /dev/null differ diff --git a/static/icons/06001ADB.png b/static/icons/06001ADB.png deleted file mode 100755 index 9dad8a75..00000000 Binary files a/static/icons/06001ADB.png and /dev/null differ diff --git a/static/icons/06001ADC.png b/static/icons/06001ADC.png deleted file mode 100755 index b69f54b6..00000000 Binary files a/static/icons/06001ADC.png and /dev/null differ diff --git a/static/icons/06001ADD.png b/static/icons/06001ADD.png deleted file mode 100755 index 3978ce92..00000000 Binary files a/static/icons/06001ADD.png and /dev/null differ diff --git a/static/icons/06001ADE.png b/static/icons/06001ADE.png deleted file mode 100755 index e1682eda..00000000 Binary files a/static/icons/06001ADE.png and /dev/null differ diff --git a/static/icons/06001ADF.png b/static/icons/06001ADF.png deleted file mode 100755 index daa2084c..00000000 Binary files a/static/icons/06001ADF.png and /dev/null differ diff --git a/static/icons/06001AE0.png b/static/icons/06001AE0.png deleted file mode 100755 index 2c34bf0b..00000000 Binary files a/static/icons/06001AE0.png and /dev/null differ diff --git a/static/icons/06001AE1.png b/static/icons/06001AE1.png deleted file mode 100755 index d425dec4..00000000 Binary files a/static/icons/06001AE1.png and /dev/null differ diff --git a/static/icons/06001AE2.png b/static/icons/06001AE2.png deleted file mode 100755 index 1e4dceea..00000000 Binary files a/static/icons/06001AE2.png and /dev/null differ diff --git a/static/icons/06001AE3.png b/static/icons/06001AE3.png deleted file mode 100755 index 823dc137..00000000 Binary files a/static/icons/06001AE3.png and /dev/null differ diff --git a/static/icons/06001AE4.png b/static/icons/06001AE4.png deleted file mode 100755 index 138684cd..00000000 Binary files a/static/icons/06001AE4.png and /dev/null differ diff --git a/static/icons/06001AE5.png b/static/icons/06001AE5.png deleted file mode 100755 index 4873d849..00000000 Binary files a/static/icons/06001AE5.png and /dev/null differ diff --git a/static/icons/06001AE6.png b/static/icons/06001AE6.png deleted file mode 100755 index d6e7b2a9..00000000 Binary files a/static/icons/06001AE6.png and /dev/null differ diff --git a/static/icons/06001AE7.png b/static/icons/06001AE7.png deleted file mode 100755 index 3222b027..00000000 Binary files a/static/icons/06001AE7.png and /dev/null differ diff --git a/static/icons/06001AE8.png b/static/icons/06001AE8.png deleted file mode 100755 index a71aeabc..00000000 Binary files a/static/icons/06001AE8.png and /dev/null differ diff --git a/static/icons/06001AE9.png b/static/icons/06001AE9.png deleted file mode 100755 index 07dcd980..00000000 Binary files a/static/icons/06001AE9.png and /dev/null differ diff --git a/static/icons/06001AEA.png b/static/icons/06001AEA.png deleted file mode 100755 index c207af0b..00000000 Binary files a/static/icons/06001AEA.png and /dev/null differ diff --git a/static/icons/06001AEB.png b/static/icons/06001AEB.png deleted file mode 100755 index b00f3346..00000000 Binary files a/static/icons/06001AEB.png and /dev/null differ diff --git a/static/icons/06001AEC.png b/static/icons/06001AEC.png deleted file mode 100755 index 278ecf6e..00000000 Binary files a/static/icons/06001AEC.png and /dev/null differ diff --git a/static/icons/06001AED.png b/static/icons/06001AED.png deleted file mode 100755 index 8e989266..00000000 Binary files a/static/icons/06001AED.png and /dev/null differ diff --git a/static/icons/06001AEE.png b/static/icons/06001AEE.png deleted file mode 100755 index 66cbaf11..00000000 Binary files a/static/icons/06001AEE.png and /dev/null differ diff --git a/static/icons/06001AEF.png b/static/icons/06001AEF.png deleted file mode 100755 index 5b3f10af..00000000 Binary files a/static/icons/06001AEF.png and /dev/null differ diff --git a/static/icons/06001AF0.png b/static/icons/06001AF0.png deleted file mode 100755 index d17ecd9c..00000000 Binary files a/static/icons/06001AF0.png and /dev/null differ diff --git a/static/icons/06001AF1.png b/static/icons/06001AF1.png deleted file mode 100755 index 5ea54fff..00000000 Binary files a/static/icons/06001AF1.png and /dev/null differ diff --git a/static/icons/06001AF2.png b/static/icons/06001AF2.png deleted file mode 100755 index 42c8dd3f..00000000 Binary files a/static/icons/06001AF2.png and /dev/null differ diff --git a/static/icons/06001AF3.png b/static/icons/06001AF3.png deleted file mode 100755 index cdf815b6..00000000 Binary files a/static/icons/06001AF3.png and /dev/null differ diff --git a/static/icons/06001AF4.png b/static/icons/06001AF4.png deleted file mode 100755 index 8fb120b7..00000000 Binary files a/static/icons/06001AF4.png and /dev/null differ diff --git a/static/icons/06001AF5.png b/static/icons/06001AF5.png deleted file mode 100755 index 91733562..00000000 Binary files a/static/icons/06001AF5.png and /dev/null differ diff --git a/static/icons/06001AF6.png b/static/icons/06001AF6.png deleted file mode 100755 index 96b0c08c..00000000 Binary files a/static/icons/06001AF6.png and /dev/null differ diff --git a/static/icons/06001AF7.png b/static/icons/06001AF7.png deleted file mode 100755 index be9f20e9..00000000 Binary files a/static/icons/06001AF7.png and /dev/null differ diff --git a/static/icons/06001AF8.png b/static/icons/06001AF8.png deleted file mode 100755 index b4309a00..00000000 Binary files a/static/icons/06001AF8.png and /dev/null differ diff --git a/static/icons/06001AF9.png b/static/icons/06001AF9.png deleted file mode 100755 index 434ced34..00000000 Binary files a/static/icons/06001AF9.png and /dev/null differ diff --git a/static/icons/06001AFA.png b/static/icons/06001AFA.png deleted file mode 100755 index eac59538..00000000 Binary files a/static/icons/06001AFA.png and /dev/null differ diff --git a/static/icons/06001AFB.png b/static/icons/06001AFB.png deleted file mode 100755 index 65c291b2..00000000 Binary files a/static/icons/06001AFB.png and /dev/null differ diff --git a/static/icons/06001AFC.png b/static/icons/06001AFC.png deleted file mode 100755 index 36a0ceef..00000000 Binary files a/static/icons/06001AFC.png and /dev/null differ diff --git a/static/icons/06001AFE.png b/static/icons/06001AFE.png deleted file mode 100755 index c95cea9c..00000000 Binary files a/static/icons/06001AFE.png and /dev/null differ diff --git a/static/icons/06001B00.png b/static/icons/06001B00.png deleted file mode 100755 index 1ac11626..00000000 Binary files a/static/icons/06001B00.png and /dev/null differ diff --git a/static/icons/06001B01.png b/static/icons/06001B01.png deleted file mode 100755 index f3b5c9ae..00000000 Binary files a/static/icons/06001B01.png and /dev/null differ diff --git a/static/icons/06001B02.png b/static/icons/06001B02.png deleted file mode 100755 index fb90dbe6..00000000 Binary files a/static/icons/06001B02.png and /dev/null differ diff --git a/static/icons/06001B03.png b/static/icons/06001B03.png deleted file mode 100755 index 770518de..00000000 Binary files a/static/icons/06001B03.png and /dev/null differ diff --git a/static/icons/06001B04.png b/static/icons/06001B04.png deleted file mode 100755 index 1006b90b..00000000 Binary files a/static/icons/06001B04.png and /dev/null differ diff --git a/static/icons/06001B05.png b/static/icons/06001B05.png deleted file mode 100755 index de019b01..00000000 Binary files a/static/icons/06001B05.png and /dev/null differ diff --git a/static/icons/06001B06.png b/static/icons/06001B06.png deleted file mode 100755 index 1ca22b09..00000000 Binary files a/static/icons/06001B06.png and /dev/null differ diff --git a/static/icons/06001B08.png b/static/icons/06001B08.png deleted file mode 100755 index d6213555..00000000 Binary files a/static/icons/06001B08.png and /dev/null differ diff --git a/static/icons/06001B09.png b/static/icons/06001B09.png deleted file mode 100755 index 5830641f..00000000 Binary files a/static/icons/06001B09.png and /dev/null differ diff --git a/static/icons/06001B0A.png b/static/icons/06001B0A.png deleted file mode 100755 index bfbfd5be..00000000 Binary files a/static/icons/06001B0A.png and /dev/null differ diff --git a/static/icons/06001B0B.png b/static/icons/06001B0B.png deleted file mode 100755 index a4c59650..00000000 Binary files a/static/icons/06001B0B.png and /dev/null differ diff --git a/static/icons/06001B0C.png b/static/icons/06001B0C.png deleted file mode 100755 index 52605772..00000000 Binary files a/static/icons/06001B0C.png and /dev/null differ diff --git a/static/icons/06001B0D.png b/static/icons/06001B0D.png deleted file mode 100755 index 17131fab..00000000 Binary files a/static/icons/06001B0D.png and /dev/null differ diff --git a/static/icons/06001B0E.png b/static/icons/06001B0E.png deleted file mode 100755 index 6767b181..00000000 Binary files a/static/icons/06001B0E.png and /dev/null differ diff --git a/static/icons/06001B0F.png b/static/icons/06001B0F.png deleted file mode 100755 index cb07a54e..00000000 Binary files a/static/icons/06001B0F.png and /dev/null differ diff --git a/static/icons/06001B10.png b/static/icons/06001B10.png deleted file mode 100755 index 21d59a15..00000000 Binary files a/static/icons/06001B10.png and /dev/null differ diff --git a/static/icons/06001B11.png b/static/icons/06001B11.png deleted file mode 100755 index 57692383..00000000 Binary files a/static/icons/06001B11.png and /dev/null differ diff --git a/static/icons/06001B12.png b/static/icons/06001B12.png deleted file mode 100755 index 4248a204..00000000 Binary files a/static/icons/06001B12.png and /dev/null differ diff --git a/static/icons/06001B13.png b/static/icons/06001B13.png deleted file mode 100755 index 8eeeddfc..00000000 Binary files a/static/icons/06001B13.png and /dev/null differ diff --git a/static/icons/06001B14.png b/static/icons/06001B14.png deleted file mode 100755 index 3aced278..00000000 Binary files a/static/icons/06001B14.png and /dev/null differ diff --git a/static/icons/06001B15.png b/static/icons/06001B15.png deleted file mode 100755 index 71df18b7..00000000 Binary files a/static/icons/06001B15.png and /dev/null differ diff --git a/static/icons/06001B19.png b/static/icons/06001B19.png deleted file mode 100755 index 6e7093b1..00000000 Binary files a/static/icons/06001B19.png and /dev/null differ diff --git a/static/icons/06001B1A.png b/static/icons/06001B1A.png deleted file mode 100755 index 1b729235..00000000 Binary files a/static/icons/06001B1A.png and /dev/null differ diff --git a/static/icons/06001B1B.png b/static/icons/06001B1B.png deleted file mode 100755 index 6c554745..00000000 Binary files a/static/icons/06001B1B.png and /dev/null differ diff --git a/static/icons/06001B1C.png b/static/icons/06001B1C.png deleted file mode 100755 index 55f7ee89..00000000 Binary files a/static/icons/06001B1C.png and /dev/null differ diff --git a/static/icons/06001B1D.png b/static/icons/06001B1D.png deleted file mode 100755 index fe61b879..00000000 Binary files a/static/icons/06001B1D.png and /dev/null differ diff --git a/static/icons/06001B1E.png b/static/icons/06001B1E.png deleted file mode 100755 index 2551e23f..00000000 Binary files a/static/icons/06001B1E.png and /dev/null differ diff --git a/static/icons/06001B1F.png b/static/icons/06001B1F.png deleted file mode 100755 index fefcc2eb..00000000 Binary files a/static/icons/06001B1F.png and /dev/null differ diff --git a/static/icons/06001B20.png b/static/icons/06001B20.png deleted file mode 100755 index 016765c9..00000000 Binary files a/static/icons/06001B20.png and /dev/null differ diff --git a/static/icons/06001B21.png b/static/icons/06001B21.png deleted file mode 100755 index 0718711d..00000000 Binary files a/static/icons/06001B21.png and /dev/null differ diff --git a/static/icons/06001B22.png b/static/icons/06001B22.png deleted file mode 100755 index eabe18bf..00000000 Binary files a/static/icons/06001B22.png and /dev/null differ diff --git a/static/icons/06001B23.png b/static/icons/06001B23.png deleted file mode 100755 index 3c1ef414..00000000 Binary files a/static/icons/06001B23.png and /dev/null differ diff --git a/static/icons/06001B24.png b/static/icons/06001B24.png deleted file mode 100755 index f66547f1..00000000 Binary files a/static/icons/06001B24.png and /dev/null differ diff --git a/static/icons/06001B25.png b/static/icons/06001B25.png deleted file mode 100755 index 91139955..00000000 Binary files a/static/icons/06001B25.png and /dev/null differ diff --git a/static/icons/06001B26.png b/static/icons/06001B26.png deleted file mode 100755 index 0840b549..00000000 Binary files a/static/icons/06001B26.png and /dev/null differ diff --git a/static/icons/06001B27.png b/static/icons/06001B27.png deleted file mode 100755 index 05e73327..00000000 Binary files a/static/icons/06001B27.png and /dev/null differ diff --git a/static/icons/06001B28.png b/static/icons/06001B28.png deleted file mode 100755 index cad726d0..00000000 Binary files a/static/icons/06001B28.png and /dev/null differ diff --git a/static/icons/06001B2A.png b/static/icons/06001B2A.png deleted file mode 100755 index 9291b850..00000000 Binary files a/static/icons/06001B2A.png and /dev/null differ diff --git a/static/icons/06001B2B.png b/static/icons/06001B2B.png deleted file mode 100755 index 576733b3..00000000 Binary files a/static/icons/06001B2B.png and /dev/null differ diff --git a/static/icons/06001B2C.png b/static/icons/06001B2C.png deleted file mode 100755 index 348f0698..00000000 Binary files a/static/icons/06001B2C.png and /dev/null differ diff --git a/static/icons/06001B2D.png b/static/icons/06001B2D.png deleted file mode 100755 index a669f69c..00000000 Binary files a/static/icons/06001B2D.png and /dev/null differ diff --git a/static/icons/06001B2E.png b/static/icons/06001B2E.png deleted file mode 100755 index c3739dab..00000000 Binary files a/static/icons/06001B2E.png and /dev/null differ diff --git a/static/icons/06001B2F.png b/static/icons/06001B2F.png deleted file mode 100755 index c585dfb6..00000000 Binary files a/static/icons/06001B2F.png and /dev/null differ diff --git a/static/icons/06001B30.png b/static/icons/06001B30.png deleted file mode 100755 index 4f57666d..00000000 Binary files a/static/icons/06001B30.png and /dev/null differ diff --git a/static/icons/06001B31.png b/static/icons/06001B31.png deleted file mode 100755 index 5805e272..00000000 Binary files a/static/icons/06001B31.png and /dev/null differ diff --git a/static/icons/06001B32.png b/static/icons/06001B32.png deleted file mode 100755 index 150f52f6..00000000 Binary files a/static/icons/06001B32.png and /dev/null differ diff --git a/static/icons/06001B33.png b/static/icons/06001B33.png deleted file mode 100755 index cb35d1d1..00000000 Binary files a/static/icons/06001B33.png and /dev/null differ diff --git a/static/icons/06001B34.png b/static/icons/06001B34.png deleted file mode 100755 index a5a3f5ad..00000000 Binary files a/static/icons/06001B34.png and /dev/null differ diff --git a/static/icons/06001B35.png b/static/icons/06001B35.png deleted file mode 100755 index f69d35e9..00000000 Binary files a/static/icons/06001B35.png and /dev/null differ diff --git a/static/icons/06001B36.png b/static/icons/06001B36.png deleted file mode 100755 index 0c834203..00000000 Binary files a/static/icons/06001B36.png and /dev/null differ diff --git a/static/icons/06001B37.png b/static/icons/06001B37.png deleted file mode 100755 index 33a29ad2..00000000 Binary files a/static/icons/06001B37.png and /dev/null differ diff --git a/static/icons/06001B38.png b/static/icons/06001B38.png deleted file mode 100755 index b3b8b484..00000000 Binary files a/static/icons/06001B38.png and /dev/null differ diff --git a/static/icons/06001B39.png b/static/icons/06001B39.png deleted file mode 100755 index 2bb55435..00000000 Binary files a/static/icons/06001B39.png and /dev/null differ diff --git a/static/icons/06001B3A.png b/static/icons/06001B3A.png deleted file mode 100755 index d601feb1..00000000 Binary files a/static/icons/06001B3A.png and /dev/null differ diff --git a/static/icons/06001B3B.png b/static/icons/06001B3B.png deleted file mode 100755 index 7469a5c6..00000000 Binary files a/static/icons/06001B3B.png and /dev/null differ diff --git a/static/icons/06001B3C.png b/static/icons/06001B3C.png deleted file mode 100755 index 984576bd..00000000 Binary files a/static/icons/06001B3C.png and /dev/null differ diff --git a/static/icons/06001B3D.png b/static/icons/06001B3D.png deleted file mode 100755 index fdefd68b..00000000 Binary files a/static/icons/06001B3D.png and /dev/null differ diff --git a/static/icons/06001B3E.png b/static/icons/06001B3E.png deleted file mode 100755 index a5630992..00000000 Binary files a/static/icons/06001B3E.png and /dev/null differ diff --git a/static/icons/06001B3F.png b/static/icons/06001B3F.png deleted file mode 100755 index d9e224ae..00000000 Binary files a/static/icons/06001B3F.png and /dev/null differ diff --git a/static/icons/06001B40.png b/static/icons/06001B40.png deleted file mode 100755 index fa0ee042..00000000 Binary files a/static/icons/06001B40.png and /dev/null differ diff --git a/static/icons/06001B41.png b/static/icons/06001B41.png deleted file mode 100755 index f01b8ae0..00000000 Binary files a/static/icons/06001B41.png and /dev/null differ diff --git a/static/icons/06001B42.png b/static/icons/06001B42.png deleted file mode 100755 index 5fa5a4a2..00000000 Binary files a/static/icons/06001B42.png and /dev/null differ diff --git a/static/icons/06001B43.png b/static/icons/06001B43.png deleted file mode 100755 index 9ddd3474..00000000 Binary files a/static/icons/06001B43.png and /dev/null differ diff --git a/static/icons/06001B44.png b/static/icons/06001B44.png deleted file mode 100755 index 3c3fc6e1..00000000 Binary files a/static/icons/06001B44.png and /dev/null differ diff --git a/static/icons/06001B45.png b/static/icons/06001B45.png deleted file mode 100755 index 93fb9cd5..00000000 Binary files a/static/icons/06001B45.png and /dev/null differ diff --git a/static/icons/06001B47.png b/static/icons/06001B47.png deleted file mode 100755 index 00cecd1e..00000000 Binary files a/static/icons/06001B47.png and /dev/null differ diff --git a/static/icons/06001B49.png b/static/icons/06001B49.png deleted file mode 100755 index 3e994c56..00000000 Binary files a/static/icons/06001B49.png and /dev/null differ diff --git a/static/icons/06001B4A.png b/static/icons/06001B4A.png deleted file mode 100755 index bc118b2a..00000000 Binary files a/static/icons/06001B4A.png and /dev/null differ diff --git a/static/icons/06001B4B.png b/static/icons/06001B4B.png deleted file mode 100755 index fad5a08d..00000000 Binary files a/static/icons/06001B4B.png and /dev/null differ diff --git a/static/icons/06001B4D.png b/static/icons/06001B4D.png deleted file mode 100755 index c7a2714a..00000000 Binary files a/static/icons/06001B4D.png and /dev/null differ diff --git a/static/icons/06001B4E.png b/static/icons/06001B4E.png deleted file mode 100755 index 54f5f66d..00000000 Binary files a/static/icons/06001B4E.png and /dev/null differ diff --git a/static/icons/06001B51.png b/static/icons/06001B51.png deleted file mode 100755 index 2caaa9c6..00000000 Binary files a/static/icons/06001B51.png and /dev/null differ diff --git a/static/icons/06001B52.png b/static/icons/06001B52.png deleted file mode 100755 index 36d59b56..00000000 Binary files a/static/icons/06001B52.png and /dev/null differ diff --git a/static/icons/06001B53.png b/static/icons/06001B53.png deleted file mode 100755 index 27ecbeed..00000000 Binary files a/static/icons/06001B53.png and /dev/null differ diff --git a/static/icons/06001B54.png b/static/icons/06001B54.png deleted file mode 100755 index 0191c002..00000000 Binary files a/static/icons/06001B54.png and /dev/null differ diff --git a/static/icons/06001B55.png b/static/icons/06001B55.png deleted file mode 100755 index c5708604..00000000 Binary files a/static/icons/06001B55.png and /dev/null differ diff --git a/static/icons/06001B56.png b/static/icons/06001B56.png deleted file mode 100755 index d73885be..00000000 Binary files a/static/icons/06001B56.png and /dev/null differ diff --git a/static/icons/06001B57.png b/static/icons/06001B57.png deleted file mode 100755 index b5a7fb84..00000000 Binary files a/static/icons/06001B57.png and /dev/null differ diff --git a/static/icons/06001B58.png b/static/icons/06001B58.png deleted file mode 100755 index 4e3b1cfc..00000000 Binary files a/static/icons/06001B58.png and /dev/null differ diff --git a/static/icons/06001B59.png b/static/icons/06001B59.png deleted file mode 100755 index e688fcbc..00000000 Binary files a/static/icons/06001B59.png and /dev/null differ diff --git a/static/icons/06001B5A.png b/static/icons/06001B5A.png deleted file mode 100755 index 5010339f..00000000 Binary files a/static/icons/06001B5A.png and /dev/null differ diff --git a/static/icons/06001B5B.png b/static/icons/06001B5B.png deleted file mode 100755 index 7086c476..00000000 Binary files a/static/icons/06001B5B.png and /dev/null differ diff --git a/static/icons/06001B5C.png b/static/icons/06001B5C.png deleted file mode 100755 index 20cf4599..00000000 Binary files a/static/icons/06001B5C.png and /dev/null differ diff --git a/static/icons/06001B5D.png b/static/icons/06001B5D.png deleted file mode 100755 index f8423d2e..00000000 Binary files a/static/icons/06001B5D.png and /dev/null differ diff --git a/static/icons/06001B5F.png b/static/icons/06001B5F.png deleted file mode 100755 index 491e4efa..00000000 Binary files a/static/icons/06001B5F.png and /dev/null differ diff --git a/static/icons/06001B60.png b/static/icons/06001B60.png deleted file mode 100755 index adc1b74e..00000000 Binary files a/static/icons/06001B60.png and /dev/null differ diff --git a/static/icons/06001B61.png b/static/icons/06001B61.png deleted file mode 100755 index 94af73a7..00000000 Binary files a/static/icons/06001B61.png and /dev/null differ diff --git a/static/icons/06001B62.png b/static/icons/06001B62.png deleted file mode 100755 index c96039e3..00000000 Binary files a/static/icons/06001B62.png and /dev/null differ diff --git a/static/icons/06001B64.png b/static/icons/06001B64.png deleted file mode 100755 index 76cd960c..00000000 Binary files a/static/icons/06001B64.png and /dev/null differ diff --git a/static/icons/06001B65.png b/static/icons/06001B65.png deleted file mode 100755 index b12bf9db..00000000 Binary files a/static/icons/06001B65.png and /dev/null differ diff --git a/static/icons/06001B66.png b/static/icons/06001B66.png deleted file mode 100755 index 7f4f8351..00000000 Binary files a/static/icons/06001B66.png and /dev/null differ diff --git a/static/icons/06001B67.png b/static/icons/06001B67.png deleted file mode 100755 index 5e5480d8..00000000 Binary files a/static/icons/06001B67.png and /dev/null differ diff --git a/static/icons/06001B68.png b/static/icons/06001B68.png deleted file mode 100755 index 8c5919bf..00000000 Binary files a/static/icons/06001B68.png and /dev/null differ diff --git a/static/icons/06001B69.png b/static/icons/06001B69.png deleted file mode 100755 index e2e41df0..00000000 Binary files a/static/icons/06001B69.png and /dev/null differ diff --git a/static/icons/06001B6A.png b/static/icons/06001B6A.png deleted file mode 100755 index efacbfa2..00000000 Binary files a/static/icons/06001B6A.png and /dev/null differ diff --git a/static/icons/06001B6B.png b/static/icons/06001B6B.png deleted file mode 100755 index 3e7af420..00000000 Binary files a/static/icons/06001B6B.png and /dev/null differ diff --git a/static/icons/06001B6C.png b/static/icons/06001B6C.png deleted file mode 100755 index 63e99d29..00000000 Binary files a/static/icons/06001B6C.png and /dev/null differ diff --git a/static/icons/06001B6D.png b/static/icons/06001B6D.png deleted file mode 100755 index 9f08962a..00000000 Binary files a/static/icons/06001B6D.png and /dev/null differ diff --git a/static/icons/06001B6F.png b/static/icons/06001B6F.png deleted file mode 100755 index a35ab7db..00000000 Binary files a/static/icons/06001B6F.png and /dev/null differ diff --git a/static/icons/06001B70.png b/static/icons/06001B70.png deleted file mode 100755 index 93155dd7..00000000 Binary files a/static/icons/06001B70.png and /dev/null differ diff --git a/static/icons/06001B71.png b/static/icons/06001B71.png deleted file mode 100755 index ba686a1f..00000000 Binary files a/static/icons/06001B71.png and /dev/null differ diff --git a/static/icons/06001B72.png b/static/icons/06001B72.png deleted file mode 100755 index b89e9f9a..00000000 Binary files a/static/icons/06001B72.png and /dev/null differ diff --git a/static/icons/06001B73.png b/static/icons/06001B73.png deleted file mode 100755 index 0352eb12..00000000 Binary files a/static/icons/06001B73.png and /dev/null differ diff --git a/static/icons/06001B74.png b/static/icons/06001B74.png deleted file mode 100755 index 7e8ae855..00000000 Binary files a/static/icons/06001B74.png and /dev/null differ diff --git a/static/icons/06001B75.png b/static/icons/06001B75.png deleted file mode 100755 index 129007bd..00000000 Binary files a/static/icons/06001B75.png and /dev/null differ diff --git a/static/icons/06001B76.png b/static/icons/06001B76.png deleted file mode 100755 index 7888dabd..00000000 Binary files a/static/icons/06001B76.png and /dev/null differ diff --git a/static/icons/06001B77.png b/static/icons/06001B77.png deleted file mode 100755 index 5938e762..00000000 Binary files a/static/icons/06001B77.png and /dev/null differ diff --git a/static/icons/06001B78.png b/static/icons/06001B78.png deleted file mode 100755 index b27d04f6..00000000 Binary files a/static/icons/06001B78.png and /dev/null differ diff --git a/static/icons/06001B79.png b/static/icons/06001B79.png deleted file mode 100755 index 476fae6f..00000000 Binary files a/static/icons/06001B79.png and /dev/null differ diff --git a/static/icons/06001B7A.png b/static/icons/06001B7A.png deleted file mode 100755 index 0102d01e..00000000 Binary files a/static/icons/06001B7A.png and /dev/null differ diff --git a/static/icons/06001B7B.png b/static/icons/06001B7B.png deleted file mode 100755 index 17793de5..00000000 Binary files a/static/icons/06001B7B.png and /dev/null differ diff --git a/static/icons/06001B7C.png b/static/icons/06001B7C.png deleted file mode 100755 index 00ae3774..00000000 Binary files a/static/icons/06001B7C.png and /dev/null differ diff --git a/static/icons/06001B7D.png b/static/icons/06001B7D.png deleted file mode 100755 index 9d5c23cb..00000000 Binary files a/static/icons/06001B7D.png and /dev/null differ diff --git a/static/icons/06001B7E.png b/static/icons/06001B7E.png deleted file mode 100755 index d6a752bd..00000000 Binary files a/static/icons/06001B7E.png and /dev/null differ diff --git a/static/icons/06001B7F.png b/static/icons/06001B7F.png deleted file mode 100755 index a1670453..00000000 Binary files a/static/icons/06001B7F.png and /dev/null differ diff --git a/static/icons/06001B80.png b/static/icons/06001B80.png deleted file mode 100755 index 552e32ec..00000000 Binary files a/static/icons/06001B80.png and /dev/null differ diff --git a/static/icons/06001B81.png b/static/icons/06001B81.png deleted file mode 100755 index 4baf0319..00000000 Binary files a/static/icons/06001B81.png and /dev/null differ diff --git a/static/icons/06001B82.png b/static/icons/06001B82.png deleted file mode 100755 index fb557b7f..00000000 Binary files a/static/icons/06001B82.png and /dev/null differ diff --git a/static/icons/06001B83.png b/static/icons/06001B83.png deleted file mode 100755 index c69fb962..00000000 Binary files a/static/icons/06001B83.png and /dev/null differ diff --git a/static/icons/06001B84.png b/static/icons/06001B84.png deleted file mode 100755 index b268a8f0..00000000 Binary files a/static/icons/06001B84.png and /dev/null differ diff --git a/static/icons/06001B85.png b/static/icons/06001B85.png deleted file mode 100755 index bf27b476..00000000 Binary files a/static/icons/06001B85.png and /dev/null differ diff --git a/static/icons/06001B86.png b/static/icons/06001B86.png deleted file mode 100755 index 69c8b248..00000000 Binary files a/static/icons/06001B86.png and /dev/null differ diff --git a/static/icons/06001B87.png b/static/icons/06001B87.png deleted file mode 100755 index b754d923..00000000 Binary files a/static/icons/06001B87.png and /dev/null differ diff --git a/static/icons/06001B88.png b/static/icons/06001B88.png deleted file mode 100755 index fc24bb54..00000000 Binary files a/static/icons/06001B88.png and /dev/null differ diff --git a/static/icons/06001B89.png b/static/icons/06001B89.png deleted file mode 100755 index 3bba8a00..00000000 Binary files a/static/icons/06001B89.png and /dev/null differ diff --git a/static/icons/06001B8A.png b/static/icons/06001B8A.png deleted file mode 100755 index 774b36da..00000000 Binary files a/static/icons/06001B8A.png and /dev/null differ diff --git a/static/icons/06001B8B.png b/static/icons/06001B8B.png deleted file mode 100755 index cac7d08b..00000000 Binary files a/static/icons/06001B8B.png and /dev/null differ diff --git a/static/icons/06001B8C.png b/static/icons/06001B8C.png deleted file mode 100755 index 698b498e..00000000 Binary files a/static/icons/06001B8C.png and /dev/null differ diff --git a/static/icons/06001B8D.png b/static/icons/06001B8D.png deleted file mode 100755 index 6ac578af..00000000 Binary files a/static/icons/06001B8D.png and /dev/null differ diff --git a/static/icons/06001B8E.png b/static/icons/06001B8E.png deleted file mode 100755 index a3a7e1d6..00000000 Binary files a/static/icons/06001B8E.png and /dev/null differ diff --git a/static/icons/06001B8F.png b/static/icons/06001B8F.png deleted file mode 100755 index 244ce281..00000000 Binary files a/static/icons/06001B8F.png and /dev/null differ diff --git a/static/icons/06001B90.png b/static/icons/06001B90.png deleted file mode 100755 index 98b81a05..00000000 Binary files a/static/icons/06001B90.png and /dev/null differ diff --git a/static/icons/06001B91.png b/static/icons/06001B91.png deleted file mode 100755 index e530b026..00000000 Binary files a/static/icons/06001B91.png and /dev/null differ diff --git a/static/icons/06001B92.png b/static/icons/06001B92.png deleted file mode 100755 index d0d481ef..00000000 Binary files a/static/icons/06001B92.png and /dev/null differ diff --git a/static/icons/06001B93.png b/static/icons/06001B93.png deleted file mode 100755 index 2b59f4ef..00000000 Binary files a/static/icons/06001B93.png and /dev/null differ diff --git a/static/icons/06001B94.png b/static/icons/06001B94.png deleted file mode 100755 index fa5abda2..00000000 Binary files a/static/icons/06001B94.png and /dev/null differ diff --git a/static/icons/06001B95.png b/static/icons/06001B95.png deleted file mode 100755 index ac42e471..00000000 Binary files a/static/icons/06001B95.png and /dev/null differ diff --git a/static/icons/06001B96.png b/static/icons/06001B96.png deleted file mode 100755 index 87174a87..00000000 Binary files a/static/icons/06001B96.png and /dev/null differ diff --git a/static/icons/06001B98.png b/static/icons/06001B98.png deleted file mode 100755 index ea9ddf6c..00000000 Binary files a/static/icons/06001B98.png and /dev/null differ diff --git a/static/icons/06001B99.png b/static/icons/06001B99.png deleted file mode 100755 index 754c02a1..00000000 Binary files a/static/icons/06001B99.png and /dev/null differ diff --git a/static/icons/06001B9A.png b/static/icons/06001B9A.png deleted file mode 100755 index 1e2f1b09..00000000 Binary files a/static/icons/06001B9A.png and /dev/null differ diff --git a/static/icons/06001B9B.png b/static/icons/06001B9B.png deleted file mode 100755 index e0d5edb8..00000000 Binary files a/static/icons/06001B9B.png and /dev/null differ diff --git a/static/icons/06001B9C.png b/static/icons/06001B9C.png deleted file mode 100755 index be01a1a0..00000000 Binary files a/static/icons/06001B9C.png and /dev/null differ diff --git a/static/icons/06001B9D.png b/static/icons/06001B9D.png deleted file mode 100755 index ca65454c..00000000 Binary files a/static/icons/06001B9D.png and /dev/null differ diff --git a/static/icons/06001B9E.png b/static/icons/06001B9E.png deleted file mode 100755 index ce5e2aeb..00000000 Binary files a/static/icons/06001B9E.png and /dev/null differ diff --git a/static/icons/06001B9F.png b/static/icons/06001B9F.png deleted file mode 100755 index 743d6a6f..00000000 Binary files a/static/icons/06001B9F.png and /dev/null differ diff --git a/static/icons/06001BA0.png b/static/icons/06001BA0.png deleted file mode 100755 index 329262f2..00000000 Binary files a/static/icons/06001BA0.png and /dev/null differ diff --git a/static/icons/06001BA1.png b/static/icons/06001BA1.png deleted file mode 100755 index 8b1c42a7..00000000 Binary files a/static/icons/06001BA1.png and /dev/null differ diff --git a/static/icons/06001BA2.png b/static/icons/06001BA2.png deleted file mode 100755 index dc448c07..00000000 Binary files a/static/icons/06001BA2.png and /dev/null differ diff --git a/static/icons/06001BA3.png b/static/icons/06001BA3.png deleted file mode 100755 index e94c277b..00000000 Binary files a/static/icons/06001BA3.png and /dev/null differ diff --git a/static/icons/06001BA5.png b/static/icons/06001BA5.png deleted file mode 100755 index 837d1394..00000000 Binary files a/static/icons/06001BA5.png and /dev/null differ diff --git a/static/icons/06001BA6.png b/static/icons/06001BA6.png deleted file mode 100755 index 7fc0202c..00000000 Binary files a/static/icons/06001BA6.png and /dev/null differ diff --git a/static/icons/06001BA7.png b/static/icons/06001BA7.png deleted file mode 100755 index 1b39a444..00000000 Binary files a/static/icons/06001BA7.png and /dev/null differ diff --git a/static/icons/06001BA8.png b/static/icons/06001BA8.png deleted file mode 100755 index 8e81af74..00000000 Binary files a/static/icons/06001BA8.png and /dev/null differ diff --git a/static/icons/06001BA9.png b/static/icons/06001BA9.png deleted file mode 100755 index 413bae73..00000000 Binary files a/static/icons/06001BA9.png and /dev/null differ diff --git a/static/icons/06001BAA.png b/static/icons/06001BAA.png deleted file mode 100755 index 1c507f1b..00000000 Binary files a/static/icons/06001BAA.png and /dev/null differ diff --git a/static/icons/06001BAB.png b/static/icons/06001BAB.png deleted file mode 100755 index a5a5ce98..00000000 Binary files a/static/icons/06001BAB.png and /dev/null differ diff --git a/static/icons/06001BAC.png b/static/icons/06001BAC.png deleted file mode 100755 index cc3e9ea1..00000000 Binary files a/static/icons/06001BAC.png and /dev/null differ diff --git a/static/icons/06001BAE.png b/static/icons/06001BAE.png deleted file mode 100755 index cb94ad6f..00000000 Binary files a/static/icons/06001BAE.png and /dev/null differ diff --git a/static/icons/06001BAF.png b/static/icons/06001BAF.png deleted file mode 100755 index 127a7044..00000000 Binary files a/static/icons/06001BAF.png and /dev/null differ diff --git a/static/icons/06001BB0.png b/static/icons/06001BB0.png deleted file mode 100755 index d0a2e039..00000000 Binary files a/static/icons/06001BB0.png and /dev/null differ diff --git a/static/icons/06001BB1.png b/static/icons/06001BB1.png deleted file mode 100755 index c5032e44..00000000 Binary files a/static/icons/06001BB1.png and /dev/null differ diff --git a/static/icons/06001BB2.png b/static/icons/06001BB2.png deleted file mode 100755 index d0710d6f..00000000 Binary files a/static/icons/06001BB2.png and /dev/null differ diff --git a/static/icons/06001BB3.png b/static/icons/06001BB3.png deleted file mode 100755 index e34ce59d..00000000 Binary files a/static/icons/06001BB3.png and /dev/null differ diff --git a/static/icons/06001BB4.png b/static/icons/06001BB4.png deleted file mode 100755 index d239de99..00000000 Binary files a/static/icons/06001BB4.png and /dev/null differ diff --git a/static/icons/06001BB5.png b/static/icons/06001BB5.png deleted file mode 100755 index 53706f9c..00000000 Binary files a/static/icons/06001BB5.png and /dev/null differ diff --git a/static/icons/06001BB6.png b/static/icons/06001BB6.png deleted file mode 100755 index cd788273..00000000 Binary files a/static/icons/06001BB6.png and /dev/null differ diff --git a/static/icons/06001BB7.png b/static/icons/06001BB7.png deleted file mode 100755 index 1b93d2e4..00000000 Binary files a/static/icons/06001BB7.png and /dev/null differ diff --git a/static/icons/06001BB8.png b/static/icons/06001BB8.png deleted file mode 100755 index de187bfb..00000000 Binary files a/static/icons/06001BB8.png and /dev/null differ diff --git a/static/icons/06001BB9.png b/static/icons/06001BB9.png deleted file mode 100755 index 1c7843a8..00000000 Binary files a/static/icons/06001BB9.png and /dev/null differ diff --git a/static/icons/06001BBA.png b/static/icons/06001BBA.png deleted file mode 100755 index 5534a9c3..00000000 Binary files a/static/icons/06001BBA.png and /dev/null differ diff --git a/static/icons/06001BBB.png b/static/icons/06001BBB.png deleted file mode 100755 index f99147e5..00000000 Binary files a/static/icons/06001BBB.png and /dev/null differ diff --git a/static/icons/06001BBC.png b/static/icons/06001BBC.png deleted file mode 100755 index 2d09b70f..00000000 Binary files a/static/icons/06001BBC.png and /dev/null differ diff --git a/static/icons/06001BBD.png b/static/icons/06001BBD.png deleted file mode 100755 index fa6055bc..00000000 Binary files a/static/icons/06001BBD.png and /dev/null differ diff --git a/static/icons/06001BBE.png b/static/icons/06001BBE.png deleted file mode 100755 index 279cd150..00000000 Binary files a/static/icons/06001BBE.png and /dev/null differ diff --git a/static/icons/06001BBF.png b/static/icons/06001BBF.png deleted file mode 100755 index 06a09730..00000000 Binary files a/static/icons/06001BBF.png and /dev/null differ diff --git a/static/icons/06001BC0.png b/static/icons/06001BC0.png deleted file mode 100755 index 0f4d417a..00000000 Binary files a/static/icons/06001BC0.png and /dev/null differ diff --git a/static/icons/06001BC1.png b/static/icons/06001BC1.png deleted file mode 100755 index f743519a..00000000 Binary files a/static/icons/06001BC1.png and /dev/null differ diff --git a/static/icons/06001BC2.png b/static/icons/06001BC2.png deleted file mode 100755 index a49f8e88..00000000 Binary files a/static/icons/06001BC2.png and /dev/null differ diff --git a/static/icons/06001BC3.png b/static/icons/06001BC3.png deleted file mode 100755 index c18f86f8..00000000 Binary files a/static/icons/06001BC3.png and /dev/null differ diff --git a/static/icons/06001BC4.png b/static/icons/06001BC4.png deleted file mode 100755 index 8caff831..00000000 Binary files a/static/icons/06001BC4.png and /dev/null differ diff --git a/static/icons/06001BC5.png b/static/icons/06001BC5.png deleted file mode 100755 index f22e4038..00000000 Binary files a/static/icons/06001BC5.png and /dev/null differ diff --git a/static/icons/06001BC6.png b/static/icons/06001BC6.png deleted file mode 100755 index 390ba9ba..00000000 Binary files a/static/icons/06001BC6.png and /dev/null differ diff --git a/static/icons/06001BC7.png b/static/icons/06001BC7.png deleted file mode 100755 index 4d5e557a..00000000 Binary files a/static/icons/06001BC7.png and /dev/null differ diff --git a/static/icons/06001BC8.png b/static/icons/06001BC8.png deleted file mode 100755 index 7c8a0af7..00000000 Binary files a/static/icons/06001BC8.png and /dev/null differ diff --git a/static/icons/06001BC9.png b/static/icons/06001BC9.png deleted file mode 100755 index 67aa7c4a..00000000 Binary files a/static/icons/06001BC9.png and /dev/null differ diff --git a/static/icons/06001BCA.png b/static/icons/06001BCA.png deleted file mode 100755 index 94035fd7..00000000 Binary files a/static/icons/06001BCA.png and /dev/null differ diff --git a/static/icons/06001BCB.png b/static/icons/06001BCB.png deleted file mode 100755 index bab5b403..00000000 Binary files a/static/icons/06001BCB.png and /dev/null differ diff --git a/static/icons/06001BCC.png b/static/icons/06001BCC.png deleted file mode 100755 index 43e06aef..00000000 Binary files a/static/icons/06001BCC.png and /dev/null differ diff --git a/static/icons/06001BCD.png b/static/icons/06001BCD.png deleted file mode 100755 index 83407449..00000000 Binary files a/static/icons/06001BCD.png and /dev/null differ diff --git a/static/icons/06001BCE.png b/static/icons/06001BCE.png deleted file mode 100755 index ccbe0bee..00000000 Binary files a/static/icons/06001BCE.png and /dev/null differ diff --git a/static/icons/06001BCF.png b/static/icons/06001BCF.png deleted file mode 100755 index 2512c854..00000000 Binary files a/static/icons/06001BCF.png and /dev/null differ diff --git a/static/icons/06001BD0.png b/static/icons/06001BD0.png deleted file mode 100755 index 4515a206..00000000 Binary files a/static/icons/06001BD0.png and /dev/null differ diff --git a/static/icons/06001BD1.png b/static/icons/06001BD1.png deleted file mode 100755 index 32d41473..00000000 Binary files a/static/icons/06001BD1.png and /dev/null differ diff --git a/static/icons/06001BD2.png b/static/icons/06001BD2.png deleted file mode 100755 index 0638a9f2..00000000 Binary files a/static/icons/06001BD2.png and /dev/null differ diff --git a/static/icons/06001BD3.png b/static/icons/06001BD3.png deleted file mode 100755 index 26cc79b0..00000000 Binary files a/static/icons/06001BD3.png and /dev/null differ diff --git a/static/icons/06001BD4.png b/static/icons/06001BD4.png deleted file mode 100755 index 9936a0fd..00000000 Binary files a/static/icons/06001BD4.png and /dev/null differ diff --git a/static/icons/06001BD5.png b/static/icons/06001BD5.png deleted file mode 100755 index 0bb8ae1d..00000000 Binary files a/static/icons/06001BD5.png and /dev/null differ diff --git a/static/icons/06001BD6.png b/static/icons/06001BD6.png deleted file mode 100755 index fd46586a..00000000 Binary files a/static/icons/06001BD6.png and /dev/null differ diff --git a/static/icons/06001BD7.png b/static/icons/06001BD7.png deleted file mode 100755 index 128f4d98..00000000 Binary files a/static/icons/06001BD7.png and /dev/null differ diff --git a/static/icons/06001BD8.png b/static/icons/06001BD8.png deleted file mode 100755 index b68086bd..00000000 Binary files a/static/icons/06001BD8.png and /dev/null differ diff --git a/static/icons/06001BD9.png b/static/icons/06001BD9.png deleted file mode 100755 index 14d7c8fb..00000000 Binary files a/static/icons/06001BD9.png and /dev/null differ diff --git a/static/icons/06001BDA.png b/static/icons/06001BDA.png deleted file mode 100755 index f1c45648..00000000 Binary files a/static/icons/06001BDA.png and /dev/null differ diff --git a/static/icons/06001BDB.png b/static/icons/06001BDB.png deleted file mode 100755 index 6a97eab4..00000000 Binary files a/static/icons/06001BDB.png and /dev/null differ diff --git a/static/icons/06001BDC.png b/static/icons/06001BDC.png deleted file mode 100755 index 593d65d6..00000000 Binary files a/static/icons/06001BDC.png and /dev/null differ diff --git a/static/icons/06001BDD.png b/static/icons/06001BDD.png deleted file mode 100755 index 400b81d8..00000000 Binary files a/static/icons/06001BDD.png and /dev/null differ diff --git a/static/icons/06001BDE.png b/static/icons/06001BDE.png deleted file mode 100755 index c757f3f1..00000000 Binary files a/static/icons/06001BDE.png and /dev/null differ diff --git a/static/icons/06001BDF.png b/static/icons/06001BDF.png deleted file mode 100755 index b07bad6e..00000000 Binary files a/static/icons/06001BDF.png and /dev/null differ diff --git a/static/icons/06001BE0.png b/static/icons/06001BE0.png deleted file mode 100755 index 88892dfc..00000000 Binary files a/static/icons/06001BE0.png and /dev/null differ diff --git a/static/icons/06001BE1.png b/static/icons/06001BE1.png deleted file mode 100755 index c7ccc4b2..00000000 Binary files a/static/icons/06001BE1.png and /dev/null differ diff --git a/static/icons/06001BE2.png b/static/icons/06001BE2.png deleted file mode 100755 index 7e6dd4ad..00000000 Binary files a/static/icons/06001BE2.png and /dev/null differ diff --git a/static/icons/06001BE3.png b/static/icons/06001BE3.png deleted file mode 100755 index d72c0962..00000000 Binary files a/static/icons/06001BE3.png and /dev/null differ diff --git a/static/icons/06001BE4.png b/static/icons/06001BE4.png deleted file mode 100755 index da1da32f..00000000 Binary files a/static/icons/06001BE4.png and /dev/null differ diff --git a/static/icons/06001BE5.png b/static/icons/06001BE5.png deleted file mode 100755 index 1be11f98..00000000 Binary files a/static/icons/06001BE5.png and /dev/null differ diff --git a/static/icons/06001BE6.png b/static/icons/06001BE6.png deleted file mode 100755 index 2e5f535b..00000000 Binary files a/static/icons/06001BE6.png and /dev/null differ diff --git a/static/icons/06001BE7.png b/static/icons/06001BE7.png deleted file mode 100755 index 71b99b61..00000000 Binary files a/static/icons/06001BE7.png and /dev/null differ diff --git a/static/icons/06001BE8.png b/static/icons/06001BE8.png deleted file mode 100755 index 0944c9f2..00000000 Binary files a/static/icons/06001BE8.png and /dev/null differ diff --git a/static/icons/06001BE9.png b/static/icons/06001BE9.png deleted file mode 100755 index b760954a..00000000 Binary files a/static/icons/06001BE9.png and /dev/null differ diff --git a/static/icons/06001BEA.png b/static/icons/06001BEA.png deleted file mode 100755 index 02d66c22..00000000 Binary files a/static/icons/06001BEA.png and /dev/null differ diff --git a/static/icons/06001BEB.png b/static/icons/06001BEB.png deleted file mode 100755 index cc8d7d1a..00000000 Binary files a/static/icons/06001BEB.png and /dev/null differ diff --git a/static/icons/06001BEC.png b/static/icons/06001BEC.png deleted file mode 100755 index 4cda4839..00000000 Binary files a/static/icons/06001BEC.png and /dev/null differ diff --git a/static/icons/06001BED.png b/static/icons/06001BED.png deleted file mode 100755 index d819d3ca..00000000 Binary files a/static/icons/06001BED.png and /dev/null differ diff --git a/static/icons/06001BEE.png b/static/icons/06001BEE.png deleted file mode 100755 index 2ba566bc..00000000 Binary files a/static/icons/06001BEE.png and /dev/null differ diff --git a/static/icons/06001BEF.png b/static/icons/06001BEF.png deleted file mode 100755 index e41ec07d..00000000 Binary files a/static/icons/06001BEF.png and /dev/null differ diff --git a/static/icons/06001BF0.png b/static/icons/06001BF0.png deleted file mode 100755 index 8a5c7177..00000000 Binary files a/static/icons/06001BF0.png and /dev/null differ diff --git a/static/icons/06001BF1.png b/static/icons/06001BF1.png deleted file mode 100755 index 91652ed7..00000000 Binary files a/static/icons/06001BF1.png and /dev/null differ diff --git a/static/icons/06001BF2.png b/static/icons/06001BF2.png deleted file mode 100755 index 9c8b9fad..00000000 Binary files a/static/icons/06001BF2.png and /dev/null differ diff --git a/static/icons/06001BF3.png b/static/icons/06001BF3.png deleted file mode 100755 index 9488b433..00000000 Binary files a/static/icons/06001BF3.png and /dev/null differ diff --git a/static/icons/06001BF4.png b/static/icons/06001BF4.png deleted file mode 100755 index 4ad3b7dd..00000000 Binary files a/static/icons/06001BF4.png and /dev/null differ diff --git a/static/icons/06001BF5.png b/static/icons/06001BF5.png deleted file mode 100755 index 448fd9cd..00000000 Binary files a/static/icons/06001BF5.png and /dev/null differ diff --git a/static/icons/06001BF6.png b/static/icons/06001BF6.png deleted file mode 100755 index ae114819..00000000 Binary files a/static/icons/06001BF6.png and /dev/null differ diff --git a/static/icons/06001BF7.png b/static/icons/06001BF7.png deleted file mode 100755 index 2c2acffd..00000000 Binary files a/static/icons/06001BF7.png and /dev/null differ diff --git a/static/icons/06001BF8.png b/static/icons/06001BF8.png deleted file mode 100755 index fe87d2f8..00000000 Binary files a/static/icons/06001BF8.png and /dev/null differ diff --git a/static/icons/06001BFA.png b/static/icons/06001BFA.png deleted file mode 100755 index d941804b..00000000 Binary files a/static/icons/06001BFA.png and /dev/null differ diff --git a/static/icons/06001BFB.png b/static/icons/06001BFB.png deleted file mode 100755 index 7944f82d..00000000 Binary files a/static/icons/06001BFB.png and /dev/null differ diff --git a/static/icons/06001BFC.png b/static/icons/06001BFC.png deleted file mode 100755 index 6bc0ac03..00000000 Binary files a/static/icons/06001BFC.png and /dev/null differ diff --git a/static/icons/06001BFD.png b/static/icons/06001BFD.png deleted file mode 100755 index c5c0eab1..00000000 Binary files a/static/icons/06001BFD.png and /dev/null differ diff --git a/static/icons/06001BFE.png b/static/icons/06001BFE.png deleted file mode 100755 index b61b2d6a..00000000 Binary files a/static/icons/06001BFE.png and /dev/null differ diff --git a/static/icons/06001BFF.png b/static/icons/06001BFF.png deleted file mode 100755 index 708348c9..00000000 Binary files a/static/icons/06001BFF.png and /dev/null differ diff --git a/static/icons/06001C00.png b/static/icons/06001C00.png deleted file mode 100755 index 452b008d..00000000 Binary files a/static/icons/06001C00.png and /dev/null differ diff --git a/static/icons/06001C01.png b/static/icons/06001C01.png deleted file mode 100755 index 5021aab4..00000000 Binary files a/static/icons/06001C01.png and /dev/null differ diff --git a/static/icons/06001C02.png b/static/icons/06001C02.png deleted file mode 100755 index ab419d96..00000000 Binary files a/static/icons/06001C02.png and /dev/null differ diff --git a/static/icons/06001C03.png b/static/icons/06001C03.png deleted file mode 100755 index 7fe5cddf..00000000 Binary files a/static/icons/06001C03.png and /dev/null differ diff --git a/static/icons/06001C04.png b/static/icons/06001C04.png deleted file mode 100755 index 8926966c..00000000 Binary files a/static/icons/06001C04.png and /dev/null differ diff --git a/static/icons/06001C05.png b/static/icons/06001C05.png deleted file mode 100755 index 275a5d2e..00000000 Binary files a/static/icons/06001C05.png and /dev/null differ diff --git a/static/icons/06001C06.png b/static/icons/06001C06.png deleted file mode 100755 index 61d8a868..00000000 Binary files a/static/icons/06001C06.png and /dev/null differ diff --git a/static/icons/06001C09.png b/static/icons/06001C09.png deleted file mode 100755 index 99f79cf2..00000000 Binary files a/static/icons/06001C09.png and /dev/null differ diff --git a/static/icons/06001C0A.png b/static/icons/06001C0A.png deleted file mode 100755 index e9aa1246..00000000 Binary files a/static/icons/06001C0A.png and /dev/null differ diff --git a/static/icons/06001C0B.png b/static/icons/06001C0B.png deleted file mode 100755 index 995c1b3c..00000000 Binary files a/static/icons/06001C0B.png and /dev/null differ diff --git a/static/icons/06001C0C.png b/static/icons/06001C0C.png deleted file mode 100755 index d90eab32..00000000 Binary files a/static/icons/06001C0C.png and /dev/null differ diff --git a/static/icons/06001C0D.png b/static/icons/06001C0D.png deleted file mode 100755 index 1c69fbd4..00000000 Binary files a/static/icons/06001C0D.png and /dev/null differ diff --git a/static/icons/06001C0E.png b/static/icons/06001C0E.png deleted file mode 100755 index 1b465bee..00000000 Binary files a/static/icons/06001C0E.png and /dev/null differ diff --git a/static/icons/06001C0F.png b/static/icons/06001C0F.png deleted file mode 100755 index 5b1e127c..00000000 Binary files a/static/icons/06001C0F.png and /dev/null differ diff --git a/static/icons/06001C10.png b/static/icons/06001C10.png deleted file mode 100755 index 7a6c5901..00000000 Binary files a/static/icons/06001C10.png and /dev/null differ diff --git a/static/icons/06001C11.png b/static/icons/06001C11.png deleted file mode 100755 index 866bac0f..00000000 Binary files a/static/icons/06001C11.png and /dev/null differ diff --git a/static/icons/06001C12.png b/static/icons/06001C12.png deleted file mode 100755 index ded5ce2b..00000000 Binary files a/static/icons/06001C12.png and /dev/null differ diff --git a/static/icons/06001C15.png b/static/icons/06001C15.png deleted file mode 100755 index 26c5dcb2..00000000 Binary files a/static/icons/06001C15.png and /dev/null differ diff --git a/static/icons/06001C18.png b/static/icons/06001C18.png deleted file mode 100755 index 01b5b2b0..00000000 Binary files a/static/icons/06001C18.png and /dev/null differ diff --git a/static/icons/06001C19.png b/static/icons/06001C19.png deleted file mode 100755 index e22a5de1..00000000 Binary files a/static/icons/06001C19.png and /dev/null differ diff --git a/static/icons/06001C1C.png b/static/icons/06001C1C.png deleted file mode 100755 index 1813acf3..00000000 Binary files a/static/icons/06001C1C.png and /dev/null differ diff --git a/static/icons/06001C1E.png b/static/icons/06001C1E.png deleted file mode 100755 index e0416a50..00000000 Binary files a/static/icons/06001C1E.png and /dev/null differ diff --git a/static/icons/06001C1F.png b/static/icons/06001C1F.png deleted file mode 100755 index 0b48caf6..00000000 Binary files a/static/icons/06001C1F.png and /dev/null differ diff --git a/static/icons/06001C20.png b/static/icons/06001C20.png deleted file mode 100755 index ab706dc2..00000000 Binary files a/static/icons/06001C20.png and /dev/null differ diff --git a/static/icons/06001C23.png b/static/icons/06001C23.png deleted file mode 100755 index eb3f5115..00000000 Binary files a/static/icons/06001C23.png and /dev/null differ diff --git a/static/icons/06001C24.png b/static/icons/06001C24.png deleted file mode 100755 index c7091680..00000000 Binary files a/static/icons/06001C24.png and /dev/null differ diff --git a/static/icons/06001C25.png b/static/icons/06001C25.png deleted file mode 100755 index 8cc26576..00000000 Binary files a/static/icons/06001C25.png and /dev/null differ diff --git a/static/icons/06001C28.png b/static/icons/06001C28.png deleted file mode 100755 index ae1b5ad8..00000000 Binary files a/static/icons/06001C28.png and /dev/null differ diff --git a/static/icons/06001C2B.png b/static/icons/06001C2B.png deleted file mode 100755 index be8cba02..00000000 Binary files a/static/icons/06001C2B.png and /dev/null differ diff --git a/static/icons/06001C2C.png b/static/icons/06001C2C.png deleted file mode 100755 index 1ac8c8fc..00000000 Binary files a/static/icons/06001C2C.png and /dev/null differ diff --git a/static/icons/06001C2D.png b/static/icons/06001C2D.png deleted file mode 100755 index 2bab77b6..00000000 Binary files a/static/icons/06001C2D.png and /dev/null differ diff --git a/static/icons/06001C2F.png b/static/icons/06001C2F.png deleted file mode 100755 index 9081f633..00000000 Binary files a/static/icons/06001C2F.png and /dev/null differ diff --git a/static/icons/06001C31.png b/static/icons/06001C31.png deleted file mode 100755 index 0cbdcf51..00000000 Binary files a/static/icons/06001C31.png and /dev/null differ diff --git a/static/icons/06001C32.png b/static/icons/06001C32.png deleted file mode 100755 index 718e36c3..00000000 Binary files a/static/icons/06001C32.png and /dev/null differ diff --git a/static/icons/06001C33.png b/static/icons/06001C33.png deleted file mode 100755 index fb041a6e..00000000 Binary files a/static/icons/06001C33.png and /dev/null differ diff --git a/static/icons/06001C36.png b/static/icons/06001C36.png deleted file mode 100755 index ab4a3cd3..00000000 Binary files a/static/icons/06001C36.png and /dev/null differ diff --git a/static/icons/06001C37.png b/static/icons/06001C37.png deleted file mode 100755 index e77ca27d..00000000 Binary files a/static/icons/06001C37.png and /dev/null differ diff --git a/static/icons/06001C39.png b/static/icons/06001C39.png deleted file mode 100755 index 12cb35fd..00000000 Binary files a/static/icons/06001C39.png and /dev/null differ diff --git a/static/icons/06001C3B.png b/static/icons/06001C3B.png deleted file mode 100755 index 1b447bb2..00000000 Binary files a/static/icons/06001C3B.png and /dev/null differ diff --git a/static/icons/06001C3C.png b/static/icons/06001C3C.png deleted file mode 100755 index 2510ddc1..00000000 Binary files a/static/icons/06001C3C.png and /dev/null differ diff --git a/static/icons/06001C3D.png b/static/icons/06001C3D.png deleted file mode 100755 index b2d08b23..00000000 Binary files a/static/icons/06001C3D.png and /dev/null differ diff --git a/static/icons/06001C40.png b/static/icons/06001C40.png deleted file mode 100755 index 3cca8a12..00000000 Binary files a/static/icons/06001C40.png and /dev/null differ diff --git a/static/icons/06001C41.png b/static/icons/06001C41.png deleted file mode 100755 index 19d48eba..00000000 Binary files a/static/icons/06001C41.png and /dev/null differ diff --git a/static/icons/06001C43.png b/static/icons/06001C43.png deleted file mode 100755 index a6b504cf..00000000 Binary files a/static/icons/06001C43.png and /dev/null differ diff --git a/static/icons/06001C45.png b/static/icons/06001C45.png deleted file mode 100755 index cea1d092..00000000 Binary files a/static/icons/06001C45.png and /dev/null differ diff --git a/static/icons/06001C46.png b/static/icons/06001C46.png deleted file mode 100755 index b3113e5d..00000000 Binary files a/static/icons/06001C46.png and /dev/null differ diff --git a/static/icons/06001C47.png b/static/icons/06001C47.png deleted file mode 100755 index 8028c1de..00000000 Binary files a/static/icons/06001C47.png and /dev/null differ diff --git a/static/icons/06001C4A.png b/static/icons/06001C4A.png deleted file mode 100755 index 0eebae9b..00000000 Binary files a/static/icons/06001C4A.png and /dev/null differ diff --git a/static/icons/06001C4B.png b/static/icons/06001C4B.png deleted file mode 100755 index e5c07e18..00000000 Binary files a/static/icons/06001C4B.png and /dev/null differ diff --git a/static/icons/06001C4D.png b/static/icons/06001C4D.png deleted file mode 100755 index 4bfc6f16..00000000 Binary files a/static/icons/06001C4D.png and /dev/null differ diff --git a/static/icons/06001C4F.png b/static/icons/06001C4F.png deleted file mode 100755 index 9ba83de2..00000000 Binary files a/static/icons/06001C4F.png and /dev/null differ diff --git a/static/icons/06001C50.png b/static/icons/06001C50.png deleted file mode 100755 index 208dc504..00000000 Binary files a/static/icons/06001C50.png and /dev/null differ diff --git a/static/icons/06001C51.png b/static/icons/06001C51.png deleted file mode 100755 index 3c76e8b6..00000000 Binary files a/static/icons/06001C51.png and /dev/null differ diff --git a/static/icons/06001C54.png b/static/icons/06001C54.png deleted file mode 100755 index 11bd86e5..00000000 Binary files a/static/icons/06001C54.png and /dev/null differ diff --git a/static/icons/06001C55.png b/static/icons/06001C55.png deleted file mode 100755 index 609aecfe..00000000 Binary files a/static/icons/06001C55.png and /dev/null differ diff --git a/static/icons/06001C57.png b/static/icons/06001C57.png deleted file mode 100755 index 54091a76..00000000 Binary files a/static/icons/06001C57.png and /dev/null differ diff --git a/static/icons/06001C59.png b/static/icons/06001C59.png deleted file mode 100755 index 664a278a..00000000 Binary files a/static/icons/06001C59.png and /dev/null differ diff --git a/static/icons/06001C5A.png b/static/icons/06001C5A.png deleted file mode 100755 index 2f425b78..00000000 Binary files a/static/icons/06001C5A.png and /dev/null differ diff --git a/static/icons/06001C5B.png b/static/icons/06001C5B.png deleted file mode 100755 index 05dd62d3..00000000 Binary files a/static/icons/06001C5B.png and /dev/null differ diff --git a/static/icons/06001C5E.png b/static/icons/06001C5E.png deleted file mode 100755 index 07376898..00000000 Binary files a/static/icons/06001C5E.png and /dev/null differ diff --git a/static/icons/06001C5F.png b/static/icons/06001C5F.png deleted file mode 100755 index 3c9be3a4..00000000 Binary files a/static/icons/06001C5F.png and /dev/null differ diff --git a/static/icons/06001C61.png b/static/icons/06001C61.png deleted file mode 100755 index 35cda67f..00000000 Binary files a/static/icons/06001C61.png and /dev/null differ diff --git a/static/icons/06001C63.png b/static/icons/06001C63.png deleted file mode 100755 index 1c826e6c..00000000 Binary files a/static/icons/06001C63.png and /dev/null differ diff --git a/static/icons/06001C64.png b/static/icons/06001C64.png deleted file mode 100755 index 0a651078..00000000 Binary files a/static/icons/06001C64.png and /dev/null differ diff --git a/static/icons/06001C65.png b/static/icons/06001C65.png deleted file mode 100755 index ac1c9e96..00000000 Binary files a/static/icons/06001C65.png and /dev/null differ diff --git a/static/icons/06001C68.png b/static/icons/06001C68.png deleted file mode 100755 index 3621de95..00000000 Binary files a/static/icons/06001C68.png and /dev/null differ diff --git a/static/icons/06001C69.png b/static/icons/06001C69.png deleted file mode 100755 index 1affff89..00000000 Binary files a/static/icons/06001C69.png and /dev/null differ diff --git a/static/icons/06001C6B.png b/static/icons/06001C6B.png deleted file mode 100755 index 96227b3e..00000000 Binary files a/static/icons/06001C6B.png and /dev/null differ diff --git a/static/icons/06001C6D.png b/static/icons/06001C6D.png deleted file mode 100755 index c31b19e6..00000000 Binary files a/static/icons/06001C6D.png and /dev/null differ diff --git a/static/icons/06001C6E.png b/static/icons/06001C6E.png deleted file mode 100755 index 310f5afe..00000000 Binary files a/static/icons/06001C6E.png and /dev/null differ diff --git a/static/icons/06001C6F.png b/static/icons/06001C6F.png deleted file mode 100755 index 4b127358..00000000 Binary files a/static/icons/06001C6F.png and /dev/null differ diff --git a/static/icons/06001C72.png b/static/icons/06001C72.png deleted file mode 100755 index 279663e2..00000000 Binary files a/static/icons/06001C72.png and /dev/null differ diff --git a/static/icons/06001C73.png b/static/icons/06001C73.png deleted file mode 100755 index 9318a6e2..00000000 Binary files a/static/icons/06001C73.png and /dev/null differ diff --git a/static/icons/06001C74.png b/static/icons/06001C74.png deleted file mode 100755 index c8e4c405..00000000 Binary files a/static/icons/06001C74.png and /dev/null differ diff --git a/static/icons/06001C75.png b/static/icons/06001C75.png deleted file mode 100755 index 7a479ef5..00000000 Binary files a/static/icons/06001C75.png and /dev/null differ diff --git a/static/icons/06001C76.png b/static/icons/06001C76.png deleted file mode 100755 index 2a6e3404..00000000 Binary files a/static/icons/06001C76.png and /dev/null differ diff --git a/static/icons/06001C77.png b/static/icons/06001C77.png deleted file mode 100755 index c912b0fe..00000000 Binary files a/static/icons/06001C77.png and /dev/null differ diff --git a/static/icons/06001C78.png b/static/icons/06001C78.png deleted file mode 100755 index 1467215d..00000000 Binary files a/static/icons/06001C78.png and /dev/null differ diff --git a/static/icons/06001C79.png b/static/icons/06001C79.png deleted file mode 100755 index 7b4ee8a8..00000000 Binary files a/static/icons/06001C79.png and /dev/null differ diff --git a/static/icons/06001C7A.png b/static/icons/06001C7A.png deleted file mode 100755 index 25a9468a..00000000 Binary files a/static/icons/06001C7A.png and /dev/null differ diff --git a/static/icons/06001C7B.png b/static/icons/06001C7B.png deleted file mode 100755 index be762fe7..00000000 Binary files a/static/icons/06001C7B.png and /dev/null differ diff --git a/static/icons/06001C7C.png b/static/icons/06001C7C.png deleted file mode 100755 index 40ed0b02..00000000 Binary files a/static/icons/06001C7C.png and /dev/null differ diff --git a/static/icons/06001C7F.png b/static/icons/06001C7F.png deleted file mode 100755 index 21745388..00000000 Binary files a/static/icons/06001C7F.png and /dev/null differ diff --git a/static/icons/06001C80.png b/static/icons/06001C80.png deleted file mode 100755 index 09e67c73..00000000 Binary files a/static/icons/06001C80.png and /dev/null differ diff --git a/static/icons/06001C81.png b/static/icons/06001C81.png deleted file mode 100755 index 836b6325..00000000 Binary files a/static/icons/06001C81.png and /dev/null differ diff --git a/static/icons/06001C82.png b/static/icons/06001C82.png deleted file mode 100755 index 8f5441e2..00000000 Binary files a/static/icons/06001C82.png and /dev/null differ diff --git a/static/icons/06001C83.png b/static/icons/06001C83.png deleted file mode 100755 index 7b28160f..00000000 Binary files a/static/icons/06001C83.png and /dev/null differ diff --git a/static/icons/06001C84.png b/static/icons/06001C84.png deleted file mode 100755 index 8d77516a..00000000 Binary files a/static/icons/06001C84.png and /dev/null differ diff --git a/static/icons/06001C85.png b/static/icons/06001C85.png deleted file mode 100755 index 69f9ae63..00000000 Binary files a/static/icons/06001C85.png and /dev/null differ diff --git a/static/icons/06001C86.png b/static/icons/06001C86.png deleted file mode 100755 index 743403b5..00000000 Binary files a/static/icons/06001C86.png and /dev/null differ diff --git a/static/icons/06001C87.png b/static/icons/06001C87.png deleted file mode 100755 index 129c73ba..00000000 Binary files a/static/icons/06001C87.png and /dev/null differ diff --git a/static/icons/06001C88.png b/static/icons/06001C88.png deleted file mode 100755 index 7eccf904..00000000 Binary files a/static/icons/06001C88.png and /dev/null differ diff --git a/static/icons/06001C89.png b/static/icons/06001C89.png deleted file mode 100755 index 0f9b372e..00000000 Binary files a/static/icons/06001C89.png and /dev/null differ diff --git a/static/icons/06001C8A.png b/static/icons/06001C8A.png deleted file mode 100755 index 4e524719..00000000 Binary files a/static/icons/06001C8A.png and /dev/null differ diff --git a/static/icons/06001C8B.png b/static/icons/06001C8B.png deleted file mode 100755 index 1dc138df..00000000 Binary files a/static/icons/06001C8B.png and /dev/null differ diff --git a/static/icons/06001C8C.png b/static/icons/06001C8C.png deleted file mode 100755 index 46a16a40..00000000 Binary files a/static/icons/06001C8C.png and /dev/null differ diff --git a/static/icons/06001C8D.png b/static/icons/06001C8D.png deleted file mode 100755 index d4dda705..00000000 Binary files a/static/icons/06001C8D.png and /dev/null differ diff --git a/static/icons/06001C8E.png b/static/icons/06001C8E.png deleted file mode 100755 index 1655b317..00000000 Binary files a/static/icons/06001C8E.png and /dev/null differ diff --git a/static/icons/06001C8F.png b/static/icons/06001C8F.png deleted file mode 100755 index 0d2b67ff..00000000 Binary files a/static/icons/06001C8F.png and /dev/null differ diff --git a/static/icons/06001C90.png b/static/icons/06001C90.png deleted file mode 100755 index e0f9f25f..00000000 Binary files a/static/icons/06001C90.png and /dev/null differ diff --git a/static/icons/06001C91.png b/static/icons/06001C91.png deleted file mode 100755 index c61df1d2..00000000 Binary files a/static/icons/06001C91.png and /dev/null differ diff --git a/static/icons/06001C92.png b/static/icons/06001C92.png deleted file mode 100755 index 94f86f17..00000000 Binary files a/static/icons/06001C92.png and /dev/null differ diff --git a/static/icons/06001C93.png b/static/icons/06001C93.png deleted file mode 100755 index cce32434..00000000 Binary files a/static/icons/06001C93.png and /dev/null differ diff --git a/static/icons/06001C94.png b/static/icons/06001C94.png deleted file mode 100755 index 9cdf0171..00000000 Binary files a/static/icons/06001C94.png and /dev/null differ diff --git a/static/icons/06001C95.png b/static/icons/06001C95.png deleted file mode 100755 index d5d70bb3..00000000 Binary files a/static/icons/06001C95.png and /dev/null differ diff --git a/static/icons/06001C96.png b/static/icons/06001C96.png deleted file mode 100755 index a5799122..00000000 Binary files a/static/icons/06001C96.png and /dev/null differ diff --git a/static/icons/06001C97.png b/static/icons/06001C97.png deleted file mode 100755 index 01730041..00000000 Binary files a/static/icons/06001C97.png and /dev/null differ diff --git a/static/icons/06001C98.png b/static/icons/06001C98.png deleted file mode 100755 index 158e090c..00000000 Binary files a/static/icons/06001C98.png and /dev/null differ diff --git a/static/icons/06001C99.png b/static/icons/06001C99.png deleted file mode 100755 index 3410d217..00000000 Binary files a/static/icons/06001C99.png and /dev/null differ diff --git a/static/icons/06001C9A.png b/static/icons/06001C9A.png deleted file mode 100755 index f05eef84..00000000 Binary files a/static/icons/06001C9A.png and /dev/null differ diff --git a/static/icons/06001C9B.png b/static/icons/06001C9B.png deleted file mode 100755 index 4f7af71b..00000000 Binary files a/static/icons/06001C9B.png and /dev/null differ diff --git a/static/icons/06001C9C.png b/static/icons/06001C9C.png deleted file mode 100755 index 3b465288..00000000 Binary files a/static/icons/06001C9C.png and /dev/null differ diff --git a/static/icons/06001C9D.png b/static/icons/06001C9D.png deleted file mode 100755 index b1dcd4f1..00000000 Binary files a/static/icons/06001C9D.png and /dev/null differ diff --git a/static/icons/06001C9E.png b/static/icons/06001C9E.png deleted file mode 100755 index f8589c92..00000000 Binary files a/static/icons/06001C9E.png and /dev/null differ diff --git a/static/icons/06001C9F.png b/static/icons/06001C9F.png deleted file mode 100755 index e181204c..00000000 Binary files a/static/icons/06001C9F.png and /dev/null differ diff --git a/static/icons/06001CA0.png b/static/icons/06001CA0.png deleted file mode 100755 index 1e89319a..00000000 Binary files a/static/icons/06001CA0.png and /dev/null differ diff --git a/static/icons/06001CA1.png b/static/icons/06001CA1.png deleted file mode 100755 index 13b7623f..00000000 Binary files a/static/icons/06001CA1.png and /dev/null differ diff --git a/static/icons/06001CA2.png b/static/icons/06001CA2.png deleted file mode 100755 index 7758e950..00000000 Binary files a/static/icons/06001CA2.png and /dev/null differ diff --git a/static/icons/06001CA3.png b/static/icons/06001CA3.png deleted file mode 100755 index 45932058..00000000 Binary files a/static/icons/06001CA3.png and /dev/null differ diff --git a/static/icons/06001CA4.png b/static/icons/06001CA4.png deleted file mode 100755 index 9ed61fed..00000000 Binary files a/static/icons/06001CA4.png and /dev/null differ diff --git a/static/icons/06001CA5.png b/static/icons/06001CA5.png deleted file mode 100755 index 76310a1a..00000000 Binary files a/static/icons/06001CA5.png and /dev/null differ diff --git a/static/icons/06001CA6.png b/static/icons/06001CA6.png deleted file mode 100755 index e3ceb4ae..00000000 Binary files a/static/icons/06001CA6.png and /dev/null differ diff --git a/static/icons/06001CA7.png b/static/icons/06001CA7.png deleted file mode 100755 index e86c1280..00000000 Binary files a/static/icons/06001CA7.png and /dev/null differ diff --git a/static/icons/06001CA8.png b/static/icons/06001CA8.png deleted file mode 100755 index 1dad10d5..00000000 Binary files a/static/icons/06001CA8.png and /dev/null differ diff --git a/static/icons/06001CA9.png b/static/icons/06001CA9.png deleted file mode 100755 index 9d29b0b0..00000000 Binary files a/static/icons/06001CA9.png and /dev/null differ diff --git a/static/icons/06001CAA.png b/static/icons/06001CAA.png deleted file mode 100755 index 4a14bbef..00000000 Binary files a/static/icons/06001CAA.png and /dev/null differ diff --git a/static/icons/06001CAB.png b/static/icons/06001CAB.png deleted file mode 100755 index 5044f993..00000000 Binary files a/static/icons/06001CAB.png and /dev/null differ diff --git a/static/icons/06001CAC.png b/static/icons/06001CAC.png deleted file mode 100755 index 4bb6920a..00000000 Binary files a/static/icons/06001CAC.png and /dev/null differ diff --git a/static/icons/06001CAD.png b/static/icons/06001CAD.png deleted file mode 100755 index da485084..00000000 Binary files a/static/icons/06001CAD.png and /dev/null differ diff --git a/static/icons/06001CAE.png b/static/icons/06001CAE.png deleted file mode 100755 index 592ec8f3..00000000 Binary files a/static/icons/06001CAE.png and /dev/null differ diff --git a/static/icons/06001CAF.png b/static/icons/06001CAF.png deleted file mode 100755 index 06a4ec24..00000000 Binary files a/static/icons/06001CAF.png and /dev/null differ diff --git a/static/icons/06001CB0.png b/static/icons/06001CB0.png deleted file mode 100755 index 7f6428ee..00000000 Binary files a/static/icons/06001CB0.png and /dev/null differ diff --git a/static/icons/06001CB1.png b/static/icons/06001CB1.png deleted file mode 100755 index 4fbacd4c..00000000 Binary files a/static/icons/06001CB1.png and /dev/null differ diff --git a/static/icons/06001CB2.png b/static/icons/06001CB2.png deleted file mode 100755 index 8d424792..00000000 Binary files a/static/icons/06001CB2.png and /dev/null differ diff --git a/static/icons/06001CB3.png b/static/icons/06001CB3.png deleted file mode 100755 index 366676a1..00000000 Binary files a/static/icons/06001CB3.png and /dev/null differ diff --git a/static/icons/06001CB4.png b/static/icons/06001CB4.png deleted file mode 100755 index e2332fe8..00000000 Binary files a/static/icons/06001CB4.png and /dev/null differ diff --git a/static/icons/06001CC0.png b/static/icons/06001CC0.png deleted file mode 100755 index 6d3acebe..00000000 Binary files a/static/icons/06001CC0.png and /dev/null differ diff --git a/static/icons/06001CC1.png b/static/icons/06001CC1.png deleted file mode 100755 index 0a129c26..00000000 Binary files a/static/icons/06001CC1.png and /dev/null differ diff --git a/static/icons/06001CC2.png b/static/icons/06001CC2.png deleted file mode 100755 index e0bc9fc9..00000000 Binary files a/static/icons/06001CC2.png and /dev/null differ diff --git a/static/icons/06001CC3.png b/static/icons/06001CC3.png deleted file mode 100755 index e0314bb4..00000000 Binary files a/static/icons/06001CC3.png and /dev/null differ diff --git a/static/icons/06001CC4.png b/static/icons/06001CC4.png deleted file mode 100755 index 714552de..00000000 Binary files a/static/icons/06001CC4.png and /dev/null differ diff --git a/static/icons/06001CC5.png b/static/icons/06001CC5.png deleted file mode 100755 index d393bbf6..00000000 Binary files a/static/icons/06001CC5.png and /dev/null differ diff --git a/static/icons/06001CC6.png b/static/icons/06001CC6.png deleted file mode 100755 index ddf5a009..00000000 Binary files a/static/icons/06001CC6.png and /dev/null differ diff --git a/static/icons/06001CC7.png b/static/icons/06001CC7.png deleted file mode 100755 index 6b8fd4bf..00000000 Binary files a/static/icons/06001CC7.png and /dev/null differ diff --git a/static/icons/06001CC8.png b/static/icons/06001CC8.png deleted file mode 100755 index fbe81bd6..00000000 Binary files a/static/icons/06001CC8.png and /dev/null differ diff --git a/static/icons/06001CC9.png b/static/icons/06001CC9.png deleted file mode 100755 index 4ed32785..00000000 Binary files a/static/icons/06001CC9.png and /dev/null differ diff --git a/static/icons/06001CCA.png b/static/icons/06001CCA.png deleted file mode 100755 index eb276dae..00000000 Binary files a/static/icons/06001CCA.png and /dev/null differ diff --git a/static/icons/06001CCB.png b/static/icons/06001CCB.png deleted file mode 100755 index 2530cacd..00000000 Binary files a/static/icons/06001CCB.png and /dev/null differ diff --git a/static/icons/06001CCC.png b/static/icons/06001CCC.png deleted file mode 100755 index 43689e46..00000000 Binary files a/static/icons/06001CCC.png and /dev/null differ diff --git a/static/icons/06001CCD.png b/static/icons/06001CCD.png deleted file mode 100755 index 0ea6a983..00000000 Binary files a/static/icons/06001CCD.png and /dev/null differ diff --git a/static/icons/06001CCE.png b/static/icons/06001CCE.png deleted file mode 100755 index c1f2bd90..00000000 Binary files a/static/icons/06001CCE.png and /dev/null differ diff --git a/static/icons/06001CCF.png b/static/icons/06001CCF.png deleted file mode 100755 index dc5a358e..00000000 Binary files a/static/icons/06001CCF.png and /dev/null differ diff --git a/static/icons/06001CD0.png b/static/icons/06001CD0.png deleted file mode 100755 index 3370e0cb..00000000 Binary files a/static/icons/06001CD0.png and /dev/null differ diff --git a/static/icons/06001CD1.png b/static/icons/06001CD1.png deleted file mode 100755 index fd7c1ce2..00000000 Binary files a/static/icons/06001CD1.png and /dev/null differ diff --git a/static/icons/06001CD2.png b/static/icons/06001CD2.png deleted file mode 100755 index 7ca27ac8..00000000 Binary files a/static/icons/06001CD2.png and /dev/null differ diff --git a/static/icons/06001CD3.png b/static/icons/06001CD3.png deleted file mode 100755 index d4c11141..00000000 Binary files a/static/icons/06001CD3.png and /dev/null differ diff --git a/static/icons/06001CD4.png b/static/icons/06001CD4.png deleted file mode 100755 index 21e97bef..00000000 Binary files a/static/icons/06001CD4.png and /dev/null differ diff --git a/static/icons/06001CD5.png b/static/icons/06001CD5.png deleted file mode 100755 index 6ae7dc57..00000000 Binary files a/static/icons/06001CD5.png and /dev/null differ diff --git a/static/icons/06001CD6.png b/static/icons/06001CD6.png deleted file mode 100755 index 3c9a32b3..00000000 Binary files a/static/icons/06001CD6.png and /dev/null differ diff --git a/static/icons/06001CD7.png b/static/icons/06001CD7.png deleted file mode 100755 index ac3d75d5..00000000 Binary files a/static/icons/06001CD7.png and /dev/null differ diff --git a/static/icons/06001CD8.png b/static/icons/06001CD8.png deleted file mode 100755 index b4a95480..00000000 Binary files a/static/icons/06001CD8.png and /dev/null differ diff --git a/static/icons/06001CD9.png b/static/icons/06001CD9.png deleted file mode 100755 index f641e4e1..00000000 Binary files a/static/icons/06001CD9.png and /dev/null differ diff --git a/static/icons/06001CDA.png b/static/icons/06001CDA.png deleted file mode 100755 index 302251c9..00000000 Binary files a/static/icons/06001CDA.png and /dev/null differ diff --git a/static/icons/06001CDB.png b/static/icons/06001CDB.png deleted file mode 100755 index 9781ecfd..00000000 Binary files a/static/icons/06001CDB.png and /dev/null differ diff --git a/static/icons/06001CDC.png b/static/icons/06001CDC.png deleted file mode 100755 index 062a0f0e..00000000 Binary files a/static/icons/06001CDC.png and /dev/null differ diff --git a/static/icons/06001CDD.png b/static/icons/06001CDD.png deleted file mode 100755 index fb0db87c..00000000 Binary files a/static/icons/06001CDD.png and /dev/null differ diff --git a/static/icons/06001CDE.png b/static/icons/06001CDE.png deleted file mode 100755 index 56604895..00000000 Binary files a/static/icons/06001CDE.png and /dev/null differ diff --git a/static/icons/06001CDF.png b/static/icons/06001CDF.png deleted file mode 100755 index 98c82023..00000000 Binary files a/static/icons/06001CDF.png and /dev/null differ diff --git a/static/icons/06001CE0.png b/static/icons/06001CE0.png deleted file mode 100755 index 33fa0829..00000000 Binary files a/static/icons/06001CE0.png and /dev/null differ diff --git a/static/icons/06001CE1.png b/static/icons/06001CE1.png deleted file mode 100755 index 097efb26..00000000 Binary files a/static/icons/06001CE1.png and /dev/null differ diff --git a/static/icons/06001CE2.png b/static/icons/06001CE2.png deleted file mode 100755 index 891e8a47..00000000 Binary files a/static/icons/06001CE2.png and /dev/null differ diff --git a/static/icons/06001CE3.png b/static/icons/06001CE3.png deleted file mode 100755 index 2cb27e38..00000000 Binary files a/static/icons/06001CE3.png and /dev/null differ diff --git a/static/icons/06001CE4.png b/static/icons/06001CE4.png deleted file mode 100755 index 9274243f..00000000 Binary files a/static/icons/06001CE4.png and /dev/null differ diff --git a/static/icons/06001CE5.png b/static/icons/06001CE5.png deleted file mode 100755 index 3215f8a3..00000000 Binary files a/static/icons/06001CE5.png and /dev/null differ diff --git a/static/icons/06001CE6.png b/static/icons/06001CE6.png deleted file mode 100755 index 310b06b0..00000000 Binary files a/static/icons/06001CE6.png and /dev/null differ diff --git a/static/icons/06001CE7.png b/static/icons/06001CE7.png deleted file mode 100755 index 5330740f..00000000 Binary files a/static/icons/06001CE7.png and /dev/null differ diff --git a/static/icons/06001CE8.png b/static/icons/06001CE8.png deleted file mode 100755 index b5657b37..00000000 Binary files a/static/icons/06001CE8.png and /dev/null differ diff --git a/static/icons/06001CE9.png b/static/icons/06001CE9.png deleted file mode 100755 index 8c5a388d..00000000 Binary files a/static/icons/06001CE9.png and /dev/null differ diff --git a/static/icons/06001CEA.png b/static/icons/06001CEA.png deleted file mode 100755 index 017bc2cf..00000000 Binary files a/static/icons/06001CEA.png and /dev/null differ diff --git a/static/icons/06001CEB.png b/static/icons/06001CEB.png deleted file mode 100755 index 8be4a15c..00000000 Binary files a/static/icons/06001CEB.png and /dev/null differ diff --git a/static/icons/06001CEC.png b/static/icons/06001CEC.png deleted file mode 100755 index c9cbdd9f..00000000 Binary files a/static/icons/06001CEC.png and /dev/null differ diff --git a/static/icons/06001CED.png b/static/icons/06001CED.png deleted file mode 100755 index 55f36a31..00000000 Binary files a/static/icons/06001CED.png and /dev/null differ diff --git a/static/icons/06001CEE.png b/static/icons/06001CEE.png deleted file mode 100755 index 791580bf..00000000 Binary files a/static/icons/06001CEE.png and /dev/null differ diff --git a/static/icons/06001CEF.png b/static/icons/06001CEF.png deleted file mode 100755 index 9e0eff6b..00000000 Binary files a/static/icons/06001CEF.png and /dev/null differ diff --git a/static/icons/06001CF0.png b/static/icons/06001CF0.png deleted file mode 100755 index 7f8d3a51..00000000 Binary files a/static/icons/06001CF0.png and /dev/null differ diff --git a/static/icons/06001CF1.png b/static/icons/06001CF1.png deleted file mode 100755 index d87f62c6..00000000 Binary files a/static/icons/06001CF1.png and /dev/null differ diff --git a/static/icons/06001CF2.png b/static/icons/06001CF2.png deleted file mode 100755 index 5868542e..00000000 Binary files a/static/icons/06001CF2.png and /dev/null differ diff --git a/static/icons/06001CF3.png b/static/icons/06001CF3.png deleted file mode 100755 index e98791c9..00000000 Binary files a/static/icons/06001CF3.png and /dev/null differ diff --git a/static/icons/06001CF4.png b/static/icons/06001CF4.png deleted file mode 100755 index e296a4af..00000000 Binary files a/static/icons/06001CF4.png and /dev/null differ diff --git a/static/icons/06001CF5.png b/static/icons/06001CF5.png deleted file mode 100755 index 0b88e72f..00000000 Binary files a/static/icons/06001CF5.png and /dev/null differ diff --git a/static/icons/06001CF6.png b/static/icons/06001CF6.png deleted file mode 100755 index 2cede831..00000000 Binary files a/static/icons/06001CF6.png and /dev/null differ diff --git a/static/icons/06001CF7.png b/static/icons/06001CF7.png deleted file mode 100755 index fabcb24f..00000000 Binary files a/static/icons/06001CF7.png and /dev/null differ diff --git a/static/icons/06001CF8.png b/static/icons/06001CF8.png deleted file mode 100755 index 6a7171a8..00000000 Binary files a/static/icons/06001CF8.png and /dev/null differ diff --git a/static/icons/06001CF9.png b/static/icons/06001CF9.png deleted file mode 100755 index 99ef06e1..00000000 Binary files a/static/icons/06001CF9.png and /dev/null differ diff --git a/static/icons/06001CFA.png b/static/icons/06001CFA.png deleted file mode 100755 index 44e17b16..00000000 Binary files a/static/icons/06001CFA.png and /dev/null differ diff --git a/static/icons/06001CFB.png b/static/icons/06001CFB.png deleted file mode 100755 index 1ec4b35c..00000000 Binary files a/static/icons/06001CFB.png and /dev/null differ diff --git a/static/icons/06001CFC.png b/static/icons/06001CFC.png deleted file mode 100755 index 265f3e10..00000000 Binary files a/static/icons/06001CFC.png and /dev/null differ diff --git a/static/icons/06001CFD.png b/static/icons/06001CFD.png deleted file mode 100755 index b3eacdc1..00000000 Binary files a/static/icons/06001CFD.png and /dev/null differ diff --git a/static/icons/06001CFE.png b/static/icons/06001CFE.png deleted file mode 100755 index 3f474ca9..00000000 Binary files a/static/icons/06001CFE.png and /dev/null differ diff --git a/static/icons/06001CFF.png b/static/icons/06001CFF.png deleted file mode 100755 index 6099c4b7..00000000 Binary files a/static/icons/06001CFF.png and /dev/null differ diff --git a/static/icons/06001D00.png b/static/icons/06001D00.png deleted file mode 100755 index cf6159be..00000000 Binary files a/static/icons/06001D00.png and /dev/null differ diff --git a/static/icons/06001D01.png b/static/icons/06001D01.png deleted file mode 100755 index 782b57ea..00000000 Binary files a/static/icons/06001D01.png and /dev/null differ diff --git a/static/icons/06001D02.png b/static/icons/06001D02.png deleted file mode 100755 index fa9adcca..00000000 Binary files a/static/icons/06001D02.png and /dev/null differ diff --git a/static/icons/06001D03.png b/static/icons/06001D03.png deleted file mode 100755 index aed65b91..00000000 Binary files a/static/icons/06001D03.png and /dev/null differ diff --git a/static/icons/06001D04.png b/static/icons/06001D04.png deleted file mode 100755 index faf883b1..00000000 Binary files a/static/icons/06001D04.png and /dev/null differ diff --git a/static/icons/06001D05.png b/static/icons/06001D05.png deleted file mode 100755 index a925c22d..00000000 Binary files a/static/icons/06001D05.png and /dev/null differ diff --git a/static/icons/06001D06.png b/static/icons/06001D06.png deleted file mode 100755 index 477371f4..00000000 Binary files a/static/icons/06001D06.png and /dev/null differ diff --git a/static/icons/06001D07.png b/static/icons/06001D07.png deleted file mode 100755 index aa91ce69..00000000 Binary files a/static/icons/06001D07.png and /dev/null differ diff --git a/static/icons/06001D08.png b/static/icons/06001D08.png deleted file mode 100755 index ba273430..00000000 Binary files a/static/icons/06001D08.png and /dev/null differ diff --git a/static/icons/06001D09.png b/static/icons/06001D09.png deleted file mode 100755 index f546c401..00000000 Binary files a/static/icons/06001D09.png and /dev/null differ diff --git a/static/icons/06001D0A.png b/static/icons/06001D0A.png deleted file mode 100755 index a0fee80b..00000000 Binary files a/static/icons/06001D0A.png and /dev/null differ diff --git a/static/icons/06001D0B.png b/static/icons/06001D0B.png deleted file mode 100755 index 107dc55d..00000000 Binary files a/static/icons/06001D0B.png and /dev/null differ diff --git a/static/icons/06001D0C.png b/static/icons/06001D0C.png deleted file mode 100755 index d4186f5e..00000000 Binary files a/static/icons/06001D0C.png and /dev/null differ diff --git a/static/icons/06001D0D.png b/static/icons/06001D0D.png deleted file mode 100755 index 00fd71cd..00000000 Binary files a/static/icons/06001D0D.png and /dev/null differ diff --git a/static/icons/06001D0E.png b/static/icons/06001D0E.png deleted file mode 100755 index e3923733..00000000 Binary files a/static/icons/06001D0E.png and /dev/null differ diff --git a/static/icons/06001D0F.png b/static/icons/06001D0F.png deleted file mode 100755 index 48c99757..00000000 Binary files a/static/icons/06001D0F.png and /dev/null differ diff --git a/static/icons/06001D10.png b/static/icons/06001D10.png deleted file mode 100755 index 347eacd3..00000000 Binary files a/static/icons/06001D10.png and /dev/null differ diff --git a/static/icons/06001D11.png b/static/icons/06001D11.png deleted file mode 100755 index baabbaa3..00000000 Binary files a/static/icons/06001D11.png and /dev/null differ diff --git a/static/icons/06001D12.png b/static/icons/06001D12.png deleted file mode 100755 index 795c83fb..00000000 Binary files a/static/icons/06001D12.png and /dev/null differ diff --git a/static/icons/06001D13.png b/static/icons/06001D13.png deleted file mode 100755 index 5143de86..00000000 Binary files a/static/icons/06001D13.png and /dev/null differ diff --git a/static/icons/06001D14.png b/static/icons/06001D14.png deleted file mode 100755 index 0bef0672..00000000 Binary files a/static/icons/06001D14.png and /dev/null differ diff --git a/static/icons/06001D15.png b/static/icons/06001D15.png deleted file mode 100755 index 845502be..00000000 Binary files a/static/icons/06001D15.png and /dev/null differ diff --git a/static/icons/06001D16.png b/static/icons/06001D16.png deleted file mode 100755 index a33d7c29..00000000 Binary files a/static/icons/06001D16.png and /dev/null differ diff --git a/static/icons/06001D17.png b/static/icons/06001D17.png deleted file mode 100755 index bcca674d..00000000 Binary files a/static/icons/06001D17.png and /dev/null differ diff --git a/static/icons/06001D18.png b/static/icons/06001D18.png deleted file mode 100755 index 942fdd33..00000000 Binary files a/static/icons/06001D18.png and /dev/null differ diff --git a/static/icons/06001D19.png b/static/icons/06001D19.png deleted file mode 100755 index df8cc0ac..00000000 Binary files a/static/icons/06001D19.png and /dev/null differ diff --git a/static/icons/06001D1A.png b/static/icons/06001D1A.png deleted file mode 100755 index 24501fe7..00000000 Binary files a/static/icons/06001D1A.png and /dev/null differ diff --git a/static/icons/06001D1B.png b/static/icons/06001D1B.png deleted file mode 100755 index f464f922..00000000 Binary files a/static/icons/06001D1B.png and /dev/null differ diff --git a/static/icons/06001D1F.png b/static/icons/06001D1F.png deleted file mode 100755 index 5e034857..00000000 Binary files a/static/icons/06001D1F.png and /dev/null differ diff --git a/static/icons/06001D20.png b/static/icons/06001D20.png deleted file mode 100755 index 57d445b6..00000000 Binary files a/static/icons/06001D20.png and /dev/null differ diff --git a/static/icons/06001D23.png b/static/icons/06001D23.png deleted file mode 100755 index 38d2c829..00000000 Binary files a/static/icons/06001D23.png and /dev/null differ diff --git a/static/icons/06001D24.png b/static/icons/06001D24.png deleted file mode 100755 index 7718e7f8..00000000 Binary files a/static/icons/06001D24.png and /dev/null differ diff --git a/static/icons/06001D25.png b/static/icons/06001D25.png deleted file mode 100755 index ca08ac7d..00000000 Binary files a/static/icons/06001D25.png and /dev/null differ diff --git a/static/icons/06001D26.png b/static/icons/06001D26.png deleted file mode 100755 index b7f3a1eb..00000000 Binary files a/static/icons/06001D26.png and /dev/null differ diff --git a/static/icons/06001D27.png b/static/icons/06001D27.png deleted file mode 100755 index 1d25d7e4..00000000 Binary files a/static/icons/06001D27.png and /dev/null differ diff --git a/static/icons/06001D28.png b/static/icons/06001D28.png deleted file mode 100755 index 6dca01bc..00000000 Binary files a/static/icons/06001D28.png and /dev/null differ diff --git a/static/icons/06001D29.png b/static/icons/06001D29.png deleted file mode 100755 index 8247773b..00000000 Binary files a/static/icons/06001D29.png and /dev/null differ diff --git a/static/icons/06001D2A.png b/static/icons/06001D2A.png deleted file mode 100755 index cdcd490f..00000000 Binary files a/static/icons/06001D2A.png and /dev/null differ diff --git a/static/icons/06001D2E.png b/static/icons/06001D2E.png deleted file mode 100755 index ab6649a9..00000000 Binary files a/static/icons/06001D2E.png and /dev/null differ diff --git a/static/icons/06001D2F.png b/static/icons/06001D2F.png deleted file mode 100755 index bc8d2a87..00000000 Binary files a/static/icons/06001D2F.png and /dev/null differ diff --git a/static/icons/06001D30.png b/static/icons/06001D30.png deleted file mode 100755 index ab97e09d..00000000 Binary files a/static/icons/06001D30.png and /dev/null differ diff --git a/static/icons/06001D31.png b/static/icons/06001D31.png deleted file mode 100755 index b8ec2692..00000000 Binary files a/static/icons/06001D31.png and /dev/null differ diff --git a/static/icons/06001D32.png b/static/icons/06001D32.png deleted file mode 100755 index 09fe411b..00000000 Binary files a/static/icons/06001D32.png and /dev/null differ diff --git a/static/icons/06001D33.png b/static/icons/06001D33.png deleted file mode 100755 index b7bc2fdf..00000000 Binary files a/static/icons/06001D33.png and /dev/null differ diff --git a/static/icons/06001D34.png b/static/icons/06001D34.png deleted file mode 100755 index 98cafa41..00000000 Binary files a/static/icons/06001D34.png and /dev/null differ diff --git a/static/icons/06001D35.png b/static/icons/06001D35.png deleted file mode 100755 index 28ab55ed..00000000 Binary files a/static/icons/06001D35.png and /dev/null differ diff --git a/static/icons/06001D36.png b/static/icons/06001D36.png deleted file mode 100755 index 065fe0f1..00000000 Binary files a/static/icons/06001D36.png and /dev/null differ diff --git a/static/icons/06001D37.png b/static/icons/06001D37.png deleted file mode 100755 index 03ecb32c..00000000 Binary files a/static/icons/06001D37.png and /dev/null differ diff --git a/static/icons/06001D38.png b/static/icons/06001D38.png deleted file mode 100755 index f6bc4faa..00000000 Binary files a/static/icons/06001D38.png and /dev/null differ diff --git a/static/icons/06001D39.png b/static/icons/06001D39.png deleted file mode 100755 index bf75f8c6..00000000 Binary files a/static/icons/06001D39.png and /dev/null differ diff --git a/static/icons/06001D3A.png b/static/icons/06001D3A.png deleted file mode 100755 index 62606e64..00000000 Binary files a/static/icons/06001D3A.png and /dev/null differ diff --git a/static/icons/06001D3B.png b/static/icons/06001D3B.png deleted file mode 100755 index 5c35ff58..00000000 Binary files a/static/icons/06001D3B.png and /dev/null differ diff --git a/static/icons/06001D3C.png b/static/icons/06001D3C.png deleted file mode 100755 index ffca0841..00000000 Binary files a/static/icons/06001D3C.png and /dev/null differ diff --git a/static/icons/06001D3D.png b/static/icons/06001D3D.png deleted file mode 100755 index 36496ec9..00000000 Binary files a/static/icons/06001D3D.png and /dev/null differ diff --git a/static/icons/06001D3E.png b/static/icons/06001D3E.png deleted file mode 100755 index fca2c3c9..00000000 Binary files a/static/icons/06001D3E.png and /dev/null differ diff --git a/static/icons/06001D3F.png b/static/icons/06001D3F.png deleted file mode 100755 index f174a85b..00000000 Binary files a/static/icons/06001D3F.png and /dev/null differ diff --git a/static/icons/06001D40.png b/static/icons/06001D40.png deleted file mode 100755 index 5318e6a7..00000000 Binary files a/static/icons/06001D40.png and /dev/null differ diff --git a/static/icons/06001D41.png b/static/icons/06001D41.png deleted file mode 100755 index 9bdeb90a..00000000 Binary files a/static/icons/06001D41.png and /dev/null differ diff --git a/static/icons/06001D42.png b/static/icons/06001D42.png deleted file mode 100755 index 1a14375d..00000000 Binary files a/static/icons/06001D42.png and /dev/null differ diff --git a/static/icons/06001D43.png b/static/icons/06001D43.png deleted file mode 100755 index c54d29cd..00000000 Binary files a/static/icons/06001D43.png and /dev/null differ diff --git a/static/icons/06001D44.png b/static/icons/06001D44.png deleted file mode 100755 index c17a9258..00000000 Binary files a/static/icons/06001D44.png and /dev/null differ diff --git a/static/icons/06001D45.png b/static/icons/06001D45.png deleted file mode 100755 index 29965ac3..00000000 Binary files a/static/icons/06001D45.png and /dev/null differ diff --git a/static/icons/06001D46.png b/static/icons/06001D46.png deleted file mode 100755 index 8e7a5a7e..00000000 Binary files a/static/icons/06001D46.png and /dev/null differ diff --git a/static/icons/06001D47.png b/static/icons/06001D47.png deleted file mode 100755 index e54dd270..00000000 Binary files a/static/icons/06001D47.png and /dev/null differ diff --git a/static/icons/06001D48.png b/static/icons/06001D48.png deleted file mode 100755 index 93742301..00000000 Binary files a/static/icons/06001D48.png and /dev/null differ diff --git a/static/icons/06001D49.png b/static/icons/06001D49.png deleted file mode 100755 index 2e40c414..00000000 Binary files a/static/icons/06001D49.png and /dev/null differ diff --git a/static/icons/06001D4A.png b/static/icons/06001D4A.png deleted file mode 100755 index fd5223b7..00000000 Binary files a/static/icons/06001D4A.png and /dev/null differ diff --git a/static/icons/06001D4B.png b/static/icons/06001D4B.png deleted file mode 100755 index 5aabca49..00000000 Binary files a/static/icons/06001D4B.png and /dev/null differ diff --git a/static/icons/06001D4C.png b/static/icons/06001D4C.png deleted file mode 100755 index e7fbdaa1..00000000 Binary files a/static/icons/06001D4C.png and /dev/null differ diff --git a/static/icons/06001D4D.png b/static/icons/06001D4D.png deleted file mode 100755 index 55038d58..00000000 Binary files a/static/icons/06001D4D.png and /dev/null differ diff --git a/static/icons/06001D4E.png b/static/icons/06001D4E.png deleted file mode 100755 index 7501a47c..00000000 Binary files a/static/icons/06001D4E.png and /dev/null differ diff --git a/static/icons/06001D4F.png b/static/icons/06001D4F.png deleted file mode 100755 index 9af9a67a..00000000 Binary files a/static/icons/06001D4F.png and /dev/null differ diff --git a/static/icons/06001D50.png b/static/icons/06001D50.png deleted file mode 100755 index 4a2180ba..00000000 Binary files a/static/icons/06001D50.png and /dev/null differ diff --git a/static/icons/06001D51.png b/static/icons/06001D51.png deleted file mode 100755 index aabf477d..00000000 Binary files a/static/icons/06001D51.png and /dev/null differ diff --git a/static/icons/06001D52.png b/static/icons/06001D52.png deleted file mode 100755 index 90228431..00000000 Binary files a/static/icons/06001D52.png and /dev/null differ diff --git a/static/icons/06001D53.png b/static/icons/06001D53.png deleted file mode 100755 index e232250f..00000000 Binary files a/static/icons/06001D53.png and /dev/null differ diff --git a/static/icons/06001D55.png b/static/icons/06001D55.png deleted file mode 100755 index d2bc41e5..00000000 Binary files a/static/icons/06001D55.png and /dev/null differ diff --git a/static/icons/06001D56.png b/static/icons/06001D56.png deleted file mode 100755 index 67b5d223..00000000 Binary files a/static/icons/06001D56.png and /dev/null differ diff --git a/static/icons/06001D57.png b/static/icons/06001D57.png deleted file mode 100755 index d7d708ff..00000000 Binary files a/static/icons/06001D57.png and /dev/null differ diff --git a/static/icons/06001D58.png b/static/icons/06001D58.png deleted file mode 100755 index 653a7fec..00000000 Binary files a/static/icons/06001D58.png and /dev/null differ diff --git a/static/icons/06001D59.png b/static/icons/06001D59.png deleted file mode 100755 index f59ad3ed..00000000 Binary files a/static/icons/06001D59.png and /dev/null differ diff --git a/static/icons/06001D5A.png b/static/icons/06001D5A.png deleted file mode 100755 index f5f05bd7..00000000 Binary files a/static/icons/06001D5A.png and /dev/null differ diff --git a/static/icons/06001D5B.png b/static/icons/06001D5B.png deleted file mode 100755 index cbe7a4bd..00000000 Binary files a/static/icons/06001D5B.png and /dev/null differ diff --git a/static/icons/06001D5C.png b/static/icons/06001D5C.png deleted file mode 100755 index 16e656a2..00000000 Binary files a/static/icons/06001D5C.png and /dev/null differ diff --git a/static/icons/06001D5D.png b/static/icons/06001D5D.png deleted file mode 100755 index a5f50710..00000000 Binary files a/static/icons/06001D5D.png and /dev/null differ diff --git a/static/icons/06001D5E.png b/static/icons/06001D5E.png deleted file mode 100755 index e66e84f4..00000000 Binary files a/static/icons/06001D5E.png and /dev/null differ diff --git a/static/icons/06001D5F.png b/static/icons/06001D5F.png deleted file mode 100755 index 1929f154..00000000 Binary files a/static/icons/06001D5F.png and /dev/null differ diff --git a/static/icons/06001D60.png b/static/icons/06001D60.png deleted file mode 100755 index 0a294fbc..00000000 Binary files a/static/icons/06001D60.png and /dev/null differ diff --git a/static/icons/06001D61.png b/static/icons/06001D61.png deleted file mode 100755 index 90f080b4..00000000 Binary files a/static/icons/06001D61.png and /dev/null differ diff --git a/static/icons/06001D62.png b/static/icons/06001D62.png deleted file mode 100755 index 0a4d6f61..00000000 Binary files a/static/icons/06001D62.png and /dev/null differ diff --git a/static/icons/06001D63.png b/static/icons/06001D63.png deleted file mode 100755 index 54eab762..00000000 Binary files a/static/icons/06001D63.png and /dev/null differ diff --git a/static/icons/06001D64.png b/static/icons/06001D64.png deleted file mode 100755 index 8bc32303..00000000 Binary files a/static/icons/06001D64.png and /dev/null differ diff --git a/static/icons/06001D65.png b/static/icons/06001D65.png deleted file mode 100755 index bd9b4a46..00000000 Binary files a/static/icons/06001D65.png and /dev/null differ diff --git a/static/icons/06001D67.png b/static/icons/06001D67.png deleted file mode 100755 index dd0ac9a1..00000000 Binary files a/static/icons/06001D67.png and /dev/null differ diff --git a/static/icons/06001D68.png b/static/icons/06001D68.png deleted file mode 100755 index 3149a8af..00000000 Binary files a/static/icons/06001D68.png and /dev/null differ diff --git a/static/icons/06001D69.png b/static/icons/06001D69.png deleted file mode 100755 index b1f8542b..00000000 Binary files a/static/icons/06001D69.png and /dev/null differ diff --git a/static/icons/06001D6A.png b/static/icons/06001D6A.png deleted file mode 100755 index e6f91dbb..00000000 Binary files a/static/icons/06001D6A.png and /dev/null differ diff --git a/static/icons/06001D6B.png b/static/icons/06001D6B.png deleted file mode 100755 index 19303072..00000000 Binary files a/static/icons/06001D6B.png and /dev/null differ diff --git a/static/icons/06001D6C.png b/static/icons/06001D6C.png deleted file mode 100755 index afbb27b1..00000000 Binary files a/static/icons/06001D6C.png and /dev/null differ diff --git a/static/icons/06001D6D.png b/static/icons/06001D6D.png deleted file mode 100755 index 584c803f..00000000 Binary files a/static/icons/06001D6D.png and /dev/null differ diff --git a/static/icons/06001D6E.png b/static/icons/06001D6E.png deleted file mode 100755 index 3c9ff30c..00000000 Binary files a/static/icons/06001D6E.png and /dev/null differ diff --git a/static/icons/06001D71.png b/static/icons/06001D71.png deleted file mode 100755 index 118838f6..00000000 Binary files a/static/icons/06001D71.png and /dev/null differ diff --git a/static/icons/06001D72.png b/static/icons/06001D72.png deleted file mode 100755 index 85c4cbf4..00000000 Binary files a/static/icons/06001D72.png and /dev/null differ diff --git a/static/icons/06001D75.png b/static/icons/06001D75.png deleted file mode 100755 index 37c7b538..00000000 Binary files a/static/icons/06001D75.png and /dev/null differ diff --git a/static/icons/06001D77.png b/static/icons/06001D77.png deleted file mode 100755 index 2f14fe2a..00000000 Binary files a/static/icons/06001D77.png and /dev/null differ diff --git a/static/icons/06001D78.png b/static/icons/06001D78.png deleted file mode 100755 index 6fd56487..00000000 Binary files a/static/icons/06001D78.png and /dev/null differ diff --git a/static/icons/06001D79.png b/static/icons/06001D79.png deleted file mode 100755 index ddaa6a16..00000000 Binary files a/static/icons/06001D79.png and /dev/null differ diff --git a/static/icons/06001D7A.png b/static/icons/06001D7A.png deleted file mode 100755 index de99cd2f..00000000 Binary files a/static/icons/06001D7A.png and /dev/null differ diff --git a/static/icons/06001D7B.png b/static/icons/06001D7B.png deleted file mode 100755 index 7946a4ea..00000000 Binary files a/static/icons/06001D7B.png and /dev/null differ diff --git a/static/icons/06001D7C.png b/static/icons/06001D7C.png deleted file mode 100755 index 4c2b6acc..00000000 Binary files a/static/icons/06001D7C.png and /dev/null differ diff --git a/static/icons/06001D7D.png b/static/icons/06001D7D.png deleted file mode 100755 index af7162d2..00000000 Binary files a/static/icons/06001D7D.png and /dev/null differ diff --git a/static/icons/06001D7E.png b/static/icons/06001D7E.png deleted file mode 100755 index 27306b65..00000000 Binary files a/static/icons/06001D7E.png and /dev/null differ diff --git a/static/icons/06001D7F.png b/static/icons/06001D7F.png deleted file mode 100755 index 16633696..00000000 Binary files a/static/icons/06001D7F.png and /dev/null differ diff --git a/static/icons/06001D80.png b/static/icons/06001D80.png deleted file mode 100755 index b1acbef4..00000000 Binary files a/static/icons/06001D80.png and /dev/null differ diff --git a/static/icons/06001D81.png b/static/icons/06001D81.png deleted file mode 100755 index f5e8a8f9..00000000 Binary files a/static/icons/06001D81.png and /dev/null differ diff --git a/static/icons/06001D82.png b/static/icons/06001D82.png deleted file mode 100755 index 1cf1db0c..00000000 Binary files a/static/icons/06001D82.png and /dev/null differ diff --git a/static/icons/06001D83.png b/static/icons/06001D83.png deleted file mode 100755 index 1b08063e..00000000 Binary files a/static/icons/06001D83.png and /dev/null differ diff --git a/static/icons/06001D84.png b/static/icons/06001D84.png deleted file mode 100755 index 6c210904..00000000 Binary files a/static/icons/06001D84.png and /dev/null differ diff --git a/static/icons/06001D85.png b/static/icons/06001D85.png deleted file mode 100755 index ebc1d222..00000000 Binary files a/static/icons/06001D85.png and /dev/null differ diff --git a/static/icons/06001D86.png b/static/icons/06001D86.png deleted file mode 100755 index b557dd72..00000000 Binary files a/static/icons/06001D86.png and /dev/null differ diff --git a/static/icons/06001D87.png b/static/icons/06001D87.png deleted file mode 100755 index 1d6c6dc9..00000000 Binary files a/static/icons/06001D87.png and /dev/null differ diff --git a/static/icons/06001D88.png b/static/icons/06001D88.png deleted file mode 100755 index 2f30e701..00000000 Binary files a/static/icons/06001D88.png and /dev/null differ diff --git a/static/icons/06001D89.png b/static/icons/06001D89.png deleted file mode 100755 index 44257691..00000000 Binary files a/static/icons/06001D89.png and /dev/null differ diff --git a/static/icons/06001D8B.png b/static/icons/06001D8B.png deleted file mode 100755 index 980afa16..00000000 Binary files a/static/icons/06001D8B.png and /dev/null differ diff --git a/static/icons/06001D8C.png b/static/icons/06001D8C.png deleted file mode 100755 index 5e958a12..00000000 Binary files a/static/icons/06001D8C.png and /dev/null differ diff --git a/static/icons/06001D8D.png b/static/icons/06001D8D.png deleted file mode 100755 index f4a337e8..00000000 Binary files a/static/icons/06001D8D.png and /dev/null differ diff --git a/static/icons/06001D8E.png b/static/icons/06001D8E.png deleted file mode 100755 index a7af6a83..00000000 Binary files a/static/icons/06001D8E.png and /dev/null differ diff --git a/static/icons/06001D8F.png b/static/icons/06001D8F.png deleted file mode 100755 index b2fc5543..00000000 Binary files a/static/icons/06001D8F.png and /dev/null differ diff --git a/static/icons/06001D90.png b/static/icons/06001D90.png deleted file mode 100755 index a2659d53..00000000 Binary files a/static/icons/06001D90.png and /dev/null differ diff --git a/static/icons/06001D93.png b/static/icons/06001D93.png deleted file mode 100755 index 071e711d..00000000 Binary files a/static/icons/06001D93.png and /dev/null differ diff --git a/static/icons/06001D94.png b/static/icons/06001D94.png deleted file mode 100755 index 9ee0372a..00000000 Binary files a/static/icons/06001D94.png and /dev/null differ diff --git a/static/icons/06001D95.png b/static/icons/06001D95.png deleted file mode 100755 index 01720915..00000000 Binary files a/static/icons/06001D95.png and /dev/null differ diff --git a/static/icons/06001D96.png b/static/icons/06001D96.png deleted file mode 100755 index b4cc2282..00000000 Binary files a/static/icons/06001D96.png and /dev/null differ diff --git a/static/icons/06001D97.png b/static/icons/06001D97.png deleted file mode 100755 index f602a01b..00000000 Binary files a/static/icons/06001D97.png and /dev/null differ diff --git a/static/icons/06001D98.png b/static/icons/06001D98.png deleted file mode 100755 index 3c1236d4..00000000 Binary files a/static/icons/06001D98.png and /dev/null differ diff --git a/static/icons/06001D99.png b/static/icons/06001D99.png deleted file mode 100755 index 26661bae..00000000 Binary files a/static/icons/06001D99.png and /dev/null differ diff --git a/static/icons/06001D9A.png b/static/icons/06001D9A.png deleted file mode 100755 index b818f83b..00000000 Binary files a/static/icons/06001D9A.png and /dev/null differ diff --git a/static/icons/06001D9B.png b/static/icons/06001D9B.png deleted file mode 100755 index d7858cc6..00000000 Binary files a/static/icons/06001D9B.png and /dev/null differ diff --git a/static/icons/06001D9C.png b/static/icons/06001D9C.png deleted file mode 100755 index b2a1e586..00000000 Binary files a/static/icons/06001D9C.png and /dev/null differ diff --git a/static/icons/06001D9D.png b/static/icons/06001D9D.png deleted file mode 100755 index 475e4370..00000000 Binary files a/static/icons/06001D9D.png and /dev/null differ diff --git a/static/icons/06001D9E.png b/static/icons/06001D9E.png deleted file mode 100755 index 2c682b18..00000000 Binary files a/static/icons/06001D9E.png and /dev/null differ diff --git a/static/icons/06001D9F.png b/static/icons/06001D9F.png deleted file mode 100755 index 404d7b58..00000000 Binary files a/static/icons/06001D9F.png and /dev/null differ diff --git a/static/icons/06001DA0.png b/static/icons/06001DA0.png deleted file mode 100755 index 37b65242..00000000 Binary files a/static/icons/06001DA0.png and /dev/null differ diff --git a/static/icons/06001DA1.png b/static/icons/06001DA1.png deleted file mode 100755 index 4a569330..00000000 Binary files a/static/icons/06001DA1.png and /dev/null differ diff --git a/static/icons/06001DA2.png b/static/icons/06001DA2.png deleted file mode 100755 index 8df25ccd..00000000 Binary files a/static/icons/06001DA2.png and /dev/null differ diff --git a/static/icons/06001DA3.png b/static/icons/06001DA3.png deleted file mode 100755 index dbe2e025..00000000 Binary files a/static/icons/06001DA3.png and /dev/null differ diff --git a/static/icons/06001DA4.png b/static/icons/06001DA4.png deleted file mode 100755 index ef5ca898..00000000 Binary files a/static/icons/06001DA4.png and /dev/null differ diff --git a/static/icons/06001DA5.png b/static/icons/06001DA5.png deleted file mode 100755 index 4682560a..00000000 Binary files a/static/icons/06001DA5.png and /dev/null differ diff --git a/static/icons/06001DA6.png b/static/icons/06001DA6.png deleted file mode 100755 index 7e87b40b..00000000 Binary files a/static/icons/06001DA6.png and /dev/null differ diff --git a/static/icons/06001DA7.png b/static/icons/06001DA7.png deleted file mode 100755 index 6956685a..00000000 Binary files a/static/icons/06001DA7.png and /dev/null differ diff --git a/static/icons/06001DA8.png b/static/icons/06001DA8.png deleted file mode 100755 index e16a785f..00000000 Binary files a/static/icons/06001DA8.png and /dev/null differ diff --git a/static/icons/06001DA9.png b/static/icons/06001DA9.png deleted file mode 100755 index 22f849cc..00000000 Binary files a/static/icons/06001DA9.png and /dev/null differ diff --git a/static/icons/06001DAA.png b/static/icons/06001DAA.png deleted file mode 100755 index b92c9589..00000000 Binary files a/static/icons/06001DAA.png and /dev/null differ diff --git a/static/icons/06001DAB.png b/static/icons/06001DAB.png deleted file mode 100755 index d5e9cc2b..00000000 Binary files a/static/icons/06001DAB.png and /dev/null differ diff --git a/static/icons/06001DAC.png b/static/icons/06001DAC.png deleted file mode 100755 index 27e15419..00000000 Binary files a/static/icons/06001DAC.png and /dev/null differ diff --git a/static/icons/06001DAD.png b/static/icons/06001DAD.png deleted file mode 100755 index 6d3d2c3d..00000000 Binary files a/static/icons/06001DAD.png and /dev/null differ diff --git a/static/icons/06001DAE.png b/static/icons/06001DAE.png deleted file mode 100755 index 5887ab5c..00000000 Binary files a/static/icons/06001DAE.png and /dev/null differ diff --git a/static/icons/06001DBE.png b/static/icons/06001DBE.png deleted file mode 100755 index 38a00442..00000000 Binary files a/static/icons/06001DBE.png and /dev/null differ diff --git a/static/icons/06001DC2.png b/static/icons/06001DC2.png deleted file mode 100755 index b0d8cd48..00000000 Binary files a/static/icons/06001DC2.png and /dev/null differ diff --git a/static/icons/06001DC4.png b/static/icons/06001DC4.png deleted file mode 100755 index 3e35e161..00000000 Binary files a/static/icons/06001DC4.png and /dev/null differ diff --git a/static/icons/06001DC5.png b/static/icons/06001DC5.png deleted file mode 100755 index 3cec522d..00000000 Binary files a/static/icons/06001DC5.png and /dev/null differ diff --git a/static/icons/06001DC6.png b/static/icons/06001DC6.png deleted file mode 100755 index bd3ef21b..00000000 Binary files a/static/icons/06001DC6.png and /dev/null differ diff --git a/static/icons/06001DC7.png b/static/icons/06001DC7.png deleted file mode 100755 index 487f12f7..00000000 Binary files a/static/icons/06001DC7.png and /dev/null differ diff --git a/static/icons/06001DC8.png b/static/icons/06001DC8.png deleted file mode 100755 index 1adee7f3..00000000 Binary files a/static/icons/06001DC8.png and /dev/null differ diff --git a/static/icons/06001DC9.png b/static/icons/06001DC9.png deleted file mode 100755 index 9ba33ce1..00000000 Binary files a/static/icons/06001DC9.png and /dev/null differ diff --git a/static/icons/06001DCA.png b/static/icons/06001DCA.png deleted file mode 100755 index 23c6351b..00000000 Binary files a/static/icons/06001DCA.png and /dev/null differ diff --git a/static/icons/06001DCB.png b/static/icons/06001DCB.png deleted file mode 100755 index df6da673..00000000 Binary files a/static/icons/06001DCB.png and /dev/null differ diff --git a/static/icons/06001DCC.png b/static/icons/06001DCC.png deleted file mode 100755 index 0371e825..00000000 Binary files a/static/icons/06001DCC.png and /dev/null differ diff --git a/static/icons/06001DCD.png b/static/icons/06001DCD.png deleted file mode 100755 index 094e7d8b..00000000 Binary files a/static/icons/06001DCD.png and /dev/null differ diff --git a/static/icons/06001DCE.png b/static/icons/06001DCE.png deleted file mode 100755 index a12d5dc2..00000000 Binary files a/static/icons/06001DCE.png and /dev/null differ diff --git a/static/icons/06001DCF.png b/static/icons/06001DCF.png deleted file mode 100755 index de4f69bb..00000000 Binary files a/static/icons/06001DCF.png and /dev/null differ diff --git a/static/icons/06001DD0.png b/static/icons/06001DD0.png deleted file mode 100755 index 07f95130..00000000 Binary files a/static/icons/06001DD0.png and /dev/null differ diff --git a/static/icons/06001DD1.png b/static/icons/06001DD1.png deleted file mode 100755 index 87e68349..00000000 Binary files a/static/icons/06001DD1.png and /dev/null differ diff --git a/static/icons/06001DD2.png b/static/icons/06001DD2.png deleted file mode 100755 index 499a48b1..00000000 Binary files a/static/icons/06001DD2.png and /dev/null differ diff --git a/static/icons/06001DD3.png b/static/icons/06001DD3.png deleted file mode 100755 index 7976dc17..00000000 Binary files a/static/icons/06001DD3.png and /dev/null differ diff --git a/static/icons/06001DD4.png b/static/icons/06001DD4.png deleted file mode 100755 index ed3ac02d..00000000 Binary files a/static/icons/06001DD4.png and /dev/null differ diff --git a/static/icons/06001DD5.png b/static/icons/06001DD5.png deleted file mode 100755 index 37bfe1cb..00000000 Binary files a/static/icons/06001DD5.png and /dev/null differ diff --git a/static/icons/06001DD6.png b/static/icons/06001DD6.png deleted file mode 100755 index dd5e1fdf..00000000 Binary files a/static/icons/06001DD6.png and /dev/null differ diff --git a/static/icons/06001DD7.png b/static/icons/06001DD7.png deleted file mode 100755 index e4cf6d01..00000000 Binary files a/static/icons/06001DD7.png and /dev/null differ diff --git a/static/icons/06001DD8.png b/static/icons/06001DD8.png deleted file mode 100755 index 1331a5ec..00000000 Binary files a/static/icons/06001DD8.png and /dev/null differ diff --git a/static/icons/06001DD9.png b/static/icons/06001DD9.png deleted file mode 100755 index 37bd2765..00000000 Binary files a/static/icons/06001DD9.png and /dev/null differ diff --git a/static/icons/06001DDA.png b/static/icons/06001DDA.png deleted file mode 100755 index e3e6cc01..00000000 Binary files a/static/icons/06001DDA.png and /dev/null differ diff --git a/static/icons/06001DDB.png b/static/icons/06001DDB.png deleted file mode 100755 index 9a38f670..00000000 Binary files a/static/icons/06001DDB.png and /dev/null differ diff --git a/static/icons/06001DDC.png b/static/icons/06001DDC.png deleted file mode 100755 index 13f779ae..00000000 Binary files a/static/icons/06001DDC.png and /dev/null differ diff --git a/static/icons/06001DDD.png b/static/icons/06001DDD.png deleted file mode 100755 index d8fd3576..00000000 Binary files a/static/icons/06001DDD.png and /dev/null differ diff --git a/static/icons/06001DDE.png b/static/icons/06001DDE.png deleted file mode 100755 index ffbd6620..00000000 Binary files a/static/icons/06001DDE.png and /dev/null differ diff --git a/static/icons/06001DDF.png b/static/icons/06001DDF.png deleted file mode 100755 index af46a85b..00000000 Binary files a/static/icons/06001DDF.png and /dev/null differ diff --git a/static/icons/06001DE0.png b/static/icons/06001DE0.png deleted file mode 100755 index 74d3d326..00000000 Binary files a/static/icons/06001DE0.png and /dev/null differ diff --git a/static/icons/06001DE1.png b/static/icons/06001DE1.png deleted file mode 100755 index 8bdb0919..00000000 Binary files a/static/icons/06001DE1.png and /dev/null differ diff --git a/static/icons/06001DE2.png b/static/icons/06001DE2.png deleted file mode 100755 index 2aabf15e..00000000 Binary files a/static/icons/06001DE2.png and /dev/null differ diff --git a/static/icons/06001DE3.png b/static/icons/06001DE3.png deleted file mode 100755 index 4fdbcf98..00000000 Binary files a/static/icons/06001DE3.png and /dev/null differ diff --git a/static/icons/06001DE4.png b/static/icons/06001DE4.png deleted file mode 100755 index f3247ded..00000000 Binary files a/static/icons/06001DE4.png and /dev/null differ diff --git a/static/icons/06001DE5.png b/static/icons/06001DE5.png deleted file mode 100755 index 3c469fbb..00000000 Binary files a/static/icons/06001DE5.png and /dev/null differ diff --git a/static/icons/06001DE6.png b/static/icons/06001DE6.png deleted file mode 100755 index cb08f166..00000000 Binary files a/static/icons/06001DE6.png and /dev/null differ diff --git a/static/icons/06001DE7.png b/static/icons/06001DE7.png deleted file mode 100755 index 5f615a21..00000000 Binary files a/static/icons/06001DE7.png and /dev/null differ diff --git a/static/icons/06001DE8.png b/static/icons/06001DE8.png deleted file mode 100755 index 0e748a8f..00000000 Binary files a/static/icons/06001DE8.png and /dev/null differ diff --git a/static/icons/06001DE9.png b/static/icons/06001DE9.png deleted file mode 100755 index 95c1c273..00000000 Binary files a/static/icons/06001DE9.png and /dev/null differ diff --git a/static/icons/06001DEA.png b/static/icons/06001DEA.png deleted file mode 100755 index c32f7ff5..00000000 Binary files a/static/icons/06001DEA.png and /dev/null differ diff --git a/static/icons/06001DEB.png b/static/icons/06001DEB.png deleted file mode 100755 index 65763dfa..00000000 Binary files a/static/icons/06001DEB.png and /dev/null differ diff --git a/static/icons/06001DEC.png b/static/icons/06001DEC.png deleted file mode 100755 index b8ad55c8..00000000 Binary files a/static/icons/06001DEC.png and /dev/null differ diff --git a/static/icons/06001DED.png b/static/icons/06001DED.png deleted file mode 100755 index e6474d14..00000000 Binary files a/static/icons/06001DED.png and /dev/null differ diff --git a/static/icons/06001DEE.png b/static/icons/06001DEE.png deleted file mode 100755 index 0a39f252..00000000 Binary files a/static/icons/06001DEE.png and /dev/null differ diff --git a/static/icons/06001DEF.png b/static/icons/06001DEF.png deleted file mode 100755 index 646bd565..00000000 Binary files a/static/icons/06001DEF.png and /dev/null differ diff --git a/static/icons/06001DF0.png b/static/icons/06001DF0.png deleted file mode 100755 index 24b072d0..00000000 Binary files a/static/icons/06001DF0.png and /dev/null differ diff --git a/static/icons/06001DF1.png b/static/icons/06001DF1.png deleted file mode 100755 index a2a531df..00000000 Binary files a/static/icons/06001DF1.png and /dev/null differ diff --git a/static/icons/06001DF2.png b/static/icons/06001DF2.png deleted file mode 100755 index cb212fd9..00000000 Binary files a/static/icons/06001DF2.png and /dev/null differ diff --git a/static/icons/06001DF4.png b/static/icons/06001DF4.png deleted file mode 100755 index 487b758f..00000000 Binary files a/static/icons/06001DF4.png and /dev/null differ diff --git a/static/icons/06001DF5.png b/static/icons/06001DF5.png deleted file mode 100755 index 4e82a264..00000000 Binary files a/static/icons/06001DF5.png and /dev/null differ diff --git a/static/icons/06001DF7.png b/static/icons/06001DF7.png deleted file mode 100755 index afe08362..00000000 Binary files a/static/icons/06001DF7.png and /dev/null differ diff --git a/static/icons/06001DF8.png b/static/icons/06001DF8.png deleted file mode 100755 index c308fdce..00000000 Binary files a/static/icons/06001DF8.png and /dev/null differ diff --git a/static/icons/06001DF9.png b/static/icons/06001DF9.png deleted file mode 100755 index 491fbae6..00000000 Binary files a/static/icons/06001DF9.png and /dev/null differ diff --git a/static/icons/06001DFA.png b/static/icons/06001DFA.png deleted file mode 100755 index e62a7022..00000000 Binary files a/static/icons/06001DFA.png and /dev/null differ diff --git a/static/icons/06001DFB.png b/static/icons/06001DFB.png deleted file mode 100755 index 9f68efbf..00000000 Binary files a/static/icons/06001DFB.png and /dev/null differ diff --git a/static/icons/06001DFC.png b/static/icons/06001DFC.png deleted file mode 100755 index 32337250..00000000 Binary files a/static/icons/06001DFC.png and /dev/null differ diff --git a/static/icons/06001DFD.png b/static/icons/06001DFD.png deleted file mode 100755 index 6ed8bcae..00000000 Binary files a/static/icons/06001DFD.png and /dev/null differ diff --git a/static/icons/06001DFE.png b/static/icons/06001DFE.png deleted file mode 100755 index 316b4b1c..00000000 Binary files a/static/icons/06001DFE.png and /dev/null differ diff --git a/static/icons/06001DFF.png b/static/icons/06001DFF.png deleted file mode 100755 index 6235ed68..00000000 Binary files a/static/icons/06001DFF.png and /dev/null differ diff --git a/static/icons/06001E00.png b/static/icons/06001E00.png deleted file mode 100755 index 79b48ba1..00000000 Binary files a/static/icons/06001E00.png and /dev/null differ diff --git a/static/icons/06001E01.png b/static/icons/06001E01.png deleted file mode 100755 index 885efd63..00000000 Binary files a/static/icons/06001E01.png and /dev/null differ diff --git a/static/icons/06001E02.png b/static/icons/06001E02.png deleted file mode 100755 index 17f8f6bf..00000000 Binary files a/static/icons/06001E02.png and /dev/null differ diff --git a/static/icons/06001E03.png b/static/icons/06001E03.png deleted file mode 100755 index f5ff5bb3..00000000 Binary files a/static/icons/06001E03.png and /dev/null differ diff --git a/static/icons/06001E04.png b/static/icons/06001E04.png deleted file mode 100755 index fc46e628..00000000 Binary files a/static/icons/06001E04.png and /dev/null differ diff --git a/static/icons/06001E05.png b/static/icons/06001E05.png deleted file mode 100755 index 30ee0b52..00000000 Binary files a/static/icons/06001E05.png and /dev/null differ diff --git a/static/icons/06001E06.png b/static/icons/06001E06.png deleted file mode 100755 index 89ade714..00000000 Binary files a/static/icons/06001E06.png and /dev/null differ diff --git a/static/icons/06001E07.png b/static/icons/06001E07.png deleted file mode 100755 index 62d2dca2..00000000 Binary files a/static/icons/06001E07.png and /dev/null differ diff --git a/static/icons/06001E08.png b/static/icons/06001E08.png deleted file mode 100755 index ff71df70..00000000 Binary files a/static/icons/06001E08.png and /dev/null differ diff --git a/static/icons/06001E09.png b/static/icons/06001E09.png deleted file mode 100755 index 1b298c2e..00000000 Binary files a/static/icons/06001E09.png and /dev/null differ diff --git a/static/icons/06001E0A.png b/static/icons/06001E0A.png deleted file mode 100755 index c8816a82..00000000 Binary files a/static/icons/06001E0A.png and /dev/null differ diff --git a/static/icons/06001E0B.png b/static/icons/06001E0B.png deleted file mode 100755 index d74d823b..00000000 Binary files a/static/icons/06001E0B.png and /dev/null differ diff --git a/static/icons/06001E0C.png b/static/icons/06001E0C.png deleted file mode 100755 index 84d86e44..00000000 Binary files a/static/icons/06001E0C.png and /dev/null differ diff --git a/static/icons/06001E0D.png b/static/icons/06001E0D.png deleted file mode 100755 index 4b66b44f..00000000 Binary files a/static/icons/06001E0D.png and /dev/null differ diff --git a/static/icons/06001E0E.png b/static/icons/06001E0E.png deleted file mode 100755 index 1dd32e91..00000000 Binary files a/static/icons/06001E0E.png and /dev/null differ diff --git a/static/icons/06001E0F.png b/static/icons/06001E0F.png deleted file mode 100755 index cd23c84e..00000000 Binary files a/static/icons/06001E0F.png and /dev/null differ diff --git a/static/icons/06001E10.png b/static/icons/06001E10.png deleted file mode 100755 index 49d80826..00000000 Binary files a/static/icons/06001E10.png and /dev/null differ diff --git a/static/icons/06001E11.png b/static/icons/06001E11.png deleted file mode 100755 index 919c5e43..00000000 Binary files a/static/icons/06001E11.png and /dev/null differ diff --git a/static/icons/06001E12.png b/static/icons/06001E12.png deleted file mode 100755 index 0ccfca4b..00000000 Binary files a/static/icons/06001E12.png and /dev/null differ diff --git a/static/icons/06001E13.png b/static/icons/06001E13.png deleted file mode 100755 index e8075298..00000000 Binary files a/static/icons/06001E13.png and /dev/null differ diff --git a/static/icons/06001E14.png b/static/icons/06001E14.png deleted file mode 100755 index d45dc700..00000000 Binary files a/static/icons/06001E14.png and /dev/null differ diff --git a/static/icons/06001E15.png b/static/icons/06001E15.png deleted file mode 100755 index 3b2d49f9..00000000 Binary files a/static/icons/06001E15.png and /dev/null differ diff --git a/static/icons/06001E16.png b/static/icons/06001E16.png deleted file mode 100755 index 4b652cea..00000000 Binary files a/static/icons/06001E16.png and /dev/null differ diff --git a/static/icons/06001E17.png b/static/icons/06001E17.png deleted file mode 100755 index 55914a9e..00000000 Binary files a/static/icons/06001E17.png and /dev/null differ diff --git a/static/icons/06001E18.png b/static/icons/06001E18.png deleted file mode 100755 index 818fcfd9..00000000 Binary files a/static/icons/06001E18.png and /dev/null differ diff --git a/static/icons/06001E19.png b/static/icons/06001E19.png deleted file mode 100755 index 462c4393..00000000 Binary files a/static/icons/06001E19.png and /dev/null differ diff --git a/static/icons/06001E1A.png b/static/icons/06001E1A.png deleted file mode 100755 index f4900c8a..00000000 Binary files a/static/icons/06001E1A.png and /dev/null differ diff --git a/static/icons/06001E1B.png b/static/icons/06001E1B.png deleted file mode 100755 index 3b5abeb9..00000000 Binary files a/static/icons/06001E1B.png and /dev/null differ diff --git a/static/icons/06001E1C.png b/static/icons/06001E1C.png deleted file mode 100755 index 8ed81bd6..00000000 Binary files a/static/icons/06001E1C.png and /dev/null differ diff --git a/static/icons/06001E1D.png b/static/icons/06001E1D.png deleted file mode 100755 index 72d3e92d..00000000 Binary files a/static/icons/06001E1D.png and /dev/null differ diff --git a/static/icons/06001E1E.png b/static/icons/06001E1E.png deleted file mode 100755 index 0ce23819..00000000 Binary files a/static/icons/06001E1E.png and /dev/null differ diff --git a/static/icons/06001E1F.png b/static/icons/06001E1F.png deleted file mode 100755 index ba92f163..00000000 Binary files a/static/icons/06001E1F.png and /dev/null differ diff --git a/static/icons/06001E20.png b/static/icons/06001E20.png deleted file mode 100755 index 221556aa..00000000 Binary files a/static/icons/06001E20.png and /dev/null differ diff --git a/static/icons/06001E21.png b/static/icons/06001E21.png deleted file mode 100755 index 7a9dcebc..00000000 Binary files a/static/icons/06001E21.png and /dev/null differ diff --git a/static/icons/06001E22.png b/static/icons/06001E22.png deleted file mode 100755 index bc5449c5..00000000 Binary files a/static/icons/06001E22.png and /dev/null differ diff --git a/static/icons/06001E23.png b/static/icons/06001E23.png deleted file mode 100755 index 4b5b7276..00000000 Binary files a/static/icons/06001E23.png and /dev/null differ diff --git a/static/icons/06001E24.png b/static/icons/06001E24.png deleted file mode 100755 index 64310254..00000000 Binary files a/static/icons/06001E24.png and /dev/null differ diff --git a/static/icons/06001E25.png b/static/icons/06001E25.png deleted file mode 100755 index 15ca2dbf..00000000 Binary files a/static/icons/06001E25.png and /dev/null differ diff --git a/static/icons/06001E26.png b/static/icons/06001E26.png deleted file mode 100755 index eaec1360..00000000 Binary files a/static/icons/06001E26.png and /dev/null differ diff --git a/static/icons/06001E27.png b/static/icons/06001E27.png deleted file mode 100755 index 33d9eddb..00000000 Binary files a/static/icons/06001E27.png and /dev/null differ diff --git a/static/icons/06001E28.png b/static/icons/06001E28.png deleted file mode 100755 index 897c1e58..00000000 Binary files a/static/icons/06001E28.png and /dev/null differ diff --git a/static/icons/06001E29.png b/static/icons/06001E29.png deleted file mode 100755 index 1c9887da..00000000 Binary files a/static/icons/06001E29.png and /dev/null differ diff --git a/static/icons/06001E2A.png b/static/icons/06001E2A.png deleted file mode 100755 index 5d659bd9..00000000 Binary files a/static/icons/06001E2A.png and /dev/null differ diff --git a/static/icons/06001E2B.png b/static/icons/06001E2B.png deleted file mode 100755 index 07d327d6..00000000 Binary files a/static/icons/06001E2B.png and /dev/null differ diff --git a/static/icons/06001E2C.png b/static/icons/06001E2C.png deleted file mode 100755 index d2e200cb..00000000 Binary files a/static/icons/06001E2C.png and /dev/null differ diff --git a/static/icons/06001E2D.png b/static/icons/06001E2D.png deleted file mode 100755 index 7f2c52e0..00000000 Binary files a/static/icons/06001E2D.png and /dev/null differ diff --git a/static/icons/06001E2E.png b/static/icons/06001E2E.png deleted file mode 100755 index aa3591ec..00000000 Binary files a/static/icons/06001E2E.png and /dev/null differ diff --git a/static/icons/06001E2F.png b/static/icons/06001E2F.png deleted file mode 100755 index cf52f2c9..00000000 Binary files a/static/icons/06001E2F.png and /dev/null differ diff --git a/static/icons/06001E30.png b/static/icons/06001E30.png deleted file mode 100755 index 829169fa..00000000 Binary files a/static/icons/06001E30.png and /dev/null differ diff --git a/static/icons/06001E31.png b/static/icons/06001E31.png deleted file mode 100755 index c32ffa17..00000000 Binary files a/static/icons/06001E31.png and /dev/null differ diff --git a/static/icons/06001E32.png b/static/icons/06001E32.png deleted file mode 100755 index ea9f3d5c..00000000 Binary files a/static/icons/06001E32.png and /dev/null differ diff --git a/static/icons/06001E33.png b/static/icons/06001E33.png deleted file mode 100755 index 2eb66340..00000000 Binary files a/static/icons/06001E33.png and /dev/null differ diff --git a/static/icons/06001E34.png b/static/icons/06001E34.png deleted file mode 100755 index e72b07c5..00000000 Binary files a/static/icons/06001E34.png and /dev/null differ diff --git a/static/icons/06001E35.png b/static/icons/06001E35.png deleted file mode 100755 index a6dd25a8..00000000 Binary files a/static/icons/06001E35.png and /dev/null differ diff --git a/static/icons/06001E36.png b/static/icons/06001E36.png deleted file mode 100755 index d77cd459..00000000 Binary files a/static/icons/06001E36.png and /dev/null differ diff --git a/static/icons/06001E37.png b/static/icons/06001E37.png deleted file mode 100755 index 7cf8c827..00000000 Binary files a/static/icons/06001E37.png and /dev/null differ diff --git a/static/icons/06001E38.png b/static/icons/06001E38.png deleted file mode 100755 index d9ac059b..00000000 Binary files a/static/icons/06001E38.png and /dev/null differ diff --git a/static/icons/06001E39.png b/static/icons/06001E39.png deleted file mode 100755 index 09af6cb9..00000000 Binary files a/static/icons/06001E39.png and /dev/null differ diff --git a/static/icons/06001E3C.png b/static/icons/06001E3C.png deleted file mode 100755 index 86eeaaa9..00000000 Binary files a/static/icons/06001E3C.png and /dev/null differ diff --git a/static/icons/06001E3D.png b/static/icons/06001E3D.png deleted file mode 100755 index 6223366e..00000000 Binary files a/static/icons/06001E3D.png and /dev/null differ diff --git a/static/icons/06001E3E.png b/static/icons/06001E3E.png deleted file mode 100755 index 20d8e658..00000000 Binary files a/static/icons/06001E3E.png and /dev/null differ diff --git a/static/icons/06001E3F.png b/static/icons/06001E3F.png deleted file mode 100755 index 850bb660..00000000 Binary files a/static/icons/06001E3F.png and /dev/null differ diff --git a/static/icons/06001E40.png b/static/icons/06001E40.png deleted file mode 100755 index d771a919..00000000 Binary files a/static/icons/06001E40.png and /dev/null differ diff --git a/static/icons/06001E41.png b/static/icons/06001E41.png deleted file mode 100755 index 455d03d3..00000000 Binary files a/static/icons/06001E41.png and /dev/null differ diff --git a/static/icons/06001E43.png b/static/icons/06001E43.png deleted file mode 100755 index 4f148809..00000000 Binary files a/static/icons/06001E43.png and /dev/null differ diff --git a/static/icons/06001E44.png b/static/icons/06001E44.png deleted file mode 100755 index f99665cd..00000000 Binary files a/static/icons/06001E44.png and /dev/null differ diff --git a/static/icons/06001E45.png b/static/icons/06001E45.png deleted file mode 100755 index bd0b73ef..00000000 Binary files a/static/icons/06001E45.png and /dev/null differ diff --git a/static/icons/06001E46.png b/static/icons/06001E46.png deleted file mode 100755 index 761acc67..00000000 Binary files a/static/icons/06001E46.png and /dev/null differ diff --git a/static/icons/06001E47.png b/static/icons/06001E47.png deleted file mode 100755 index ab6ecd7b..00000000 Binary files a/static/icons/06001E47.png and /dev/null differ diff --git a/static/icons/06001E48.png b/static/icons/06001E48.png deleted file mode 100755 index 710ebd2e..00000000 Binary files a/static/icons/06001E48.png and /dev/null differ diff --git a/static/icons/06001E49.png b/static/icons/06001E49.png deleted file mode 100755 index e8dfb5d0..00000000 Binary files a/static/icons/06001E49.png and /dev/null differ diff --git a/static/icons/06001E4A.png b/static/icons/06001E4A.png deleted file mode 100755 index 2c7570db..00000000 Binary files a/static/icons/06001E4A.png and /dev/null differ diff --git a/static/icons/06001E4B.png b/static/icons/06001E4B.png deleted file mode 100755 index 2660dc60..00000000 Binary files a/static/icons/06001E4B.png and /dev/null differ diff --git a/static/icons/06001E4C.png b/static/icons/06001E4C.png deleted file mode 100755 index beeef6a7..00000000 Binary files a/static/icons/06001E4C.png and /dev/null differ diff --git a/static/icons/06001E4D.png b/static/icons/06001E4D.png deleted file mode 100755 index 73f6a6a0..00000000 Binary files a/static/icons/06001E4D.png and /dev/null differ diff --git a/static/icons/06001E4E.png b/static/icons/06001E4E.png deleted file mode 100755 index f7b81159..00000000 Binary files a/static/icons/06001E4E.png and /dev/null differ diff --git a/static/icons/06001E4F.png b/static/icons/06001E4F.png deleted file mode 100755 index d1304e31..00000000 Binary files a/static/icons/06001E4F.png and /dev/null differ diff --git a/static/icons/06001E50.png b/static/icons/06001E50.png deleted file mode 100755 index 5f8d0032..00000000 Binary files a/static/icons/06001E50.png and /dev/null differ diff --git a/static/icons/06001E52.png b/static/icons/06001E52.png deleted file mode 100755 index 0da05326..00000000 Binary files a/static/icons/06001E52.png and /dev/null differ diff --git a/static/icons/06001E53.png b/static/icons/06001E53.png deleted file mode 100755 index 4d9174c2..00000000 Binary files a/static/icons/06001E53.png and /dev/null differ diff --git a/static/icons/06001E54.png b/static/icons/06001E54.png deleted file mode 100755 index 92417ea8..00000000 Binary files a/static/icons/06001E54.png and /dev/null differ diff --git a/static/icons/06001E56.png b/static/icons/06001E56.png deleted file mode 100755 index 36755943..00000000 Binary files a/static/icons/06001E56.png and /dev/null differ diff --git a/static/icons/06001E57.png b/static/icons/06001E57.png deleted file mode 100755 index 3d8dfc55..00000000 Binary files a/static/icons/06001E57.png and /dev/null differ diff --git a/static/icons/06001E58.png b/static/icons/06001E58.png deleted file mode 100755 index cd6b5b6b..00000000 Binary files a/static/icons/06001E58.png and /dev/null differ diff --git a/static/icons/06001E59.png b/static/icons/06001E59.png deleted file mode 100755 index 39d3f6f3..00000000 Binary files a/static/icons/06001E59.png and /dev/null differ diff --git a/static/icons/06001E5A.png b/static/icons/06001E5A.png deleted file mode 100755 index cf6a918a..00000000 Binary files a/static/icons/06001E5A.png and /dev/null differ diff --git a/static/icons/06001E5B.png b/static/icons/06001E5B.png deleted file mode 100755 index 37894705..00000000 Binary files a/static/icons/06001E5B.png and /dev/null differ diff --git a/static/icons/06001E5C.png b/static/icons/06001E5C.png deleted file mode 100755 index 950b27cd..00000000 Binary files a/static/icons/06001E5C.png and /dev/null differ diff --git a/static/icons/06001E5D.png b/static/icons/06001E5D.png deleted file mode 100755 index c7a6d5b4..00000000 Binary files a/static/icons/06001E5D.png and /dev/null differ diff --git a/static/icons/06001E5E.png b/static/icons/06001E5E.png deleted file mode 100755 index 166fd113..00000000 Binary files a/static/icons/06001E5E.png and /dev/null differ diff --git a/static/icons/06001E5F.png b/static/icons/06001E5F.png deleted file mode 100755 index 77fa23e4..00000000 Binary files a/static/icons/06001E5F.png and /dev/null differ diff --git a/static/icons/06001E60.png b/static/icons/06001E60.png deleted file mode 100755 index f235b183..00000000 Binary files a/static/icons/06001E60.png and /dev/null differ diff --git a/static/icons/06001E61.png b/static/icons/06001E61.png deleted file mode 100755 index ec6a6227..00000000 Binary files a/static/icons/06001E61.png and /dev/null differ diff --git a/static/icons/06001E62.png b/static/icons/06001E62.png deleted file mode 100755 index c714e495..00000000 Binary files a/static/icons/06001E62.png and /dev/null differ diff --git a/static/icons/06001E63.png b/static/icons/06001E63.png deleted file mode 100755 index 61f6470a..00000000 Binary files a/static/icons/06001E63.png and /dev/null differ diff --git a/static/icons/06001E64.png b/static/icons/06001E64.png deleted file mode 100755 index 71acf735..00000000 Binary files a/static/icons/06001E64.png and /dev/null differ diff --git a/static/icons/06001E65.png b/static/icons/06001E65.png deleted file mode 100755 index 823fd42e..00000000 Binary files a/static/icons/06001E65.png and /dev/null differ diff --git a/static/icons/06001E66.png b/static/icons/06001E66.png deleted file mode 100755 index a33ee6bb..00000000 Binary files a/static/icons/06001E66.png and /dev/null differ diff --git a/static/icons/06001E67.png b/static/icons/06001E67.png deleted file mode 100755 index 5adb0fa6..00000000 Binary files a/static/icons/06001E67.png and /dev/null differ diff --git a/static/icons/06001E69.png b/static/icons/06001E69.png deleted file mode 100755 index 8e24918c..00000000 Binary files a/static/icons/06001E69.png and /dev/null differ diff --git a/static/icons/06001E6A.png b/static/icons/06001E6A.png deleted file mode 100755 index 8cec5297..00000000 Binary files a/static/icons/06001E6A.png and /dev/null differ diff --git a/static/icons/06001E6B.png b/static/icons/06001E6B.png deleted file mode 100755 index 96c23b97..00000000 Binary files a/static/icons/06001E6B.png and /dev/null differ diff --git a/static/icons/06001E6C.png b/static/icons/06001E6C.png deleted file mode 100755 index f94b1b46..00000000 Binary files a/static/icons/06001E6C.png and /dev/null differ diff --git a/static/icons/06001E6D.png b/static/icons/06001E6D.png deleted file mode 100755 index 7f5f8631..00000000 Binary files a/static/icons/06001E6D.png and /dev/null differ diff --git a/static/icons/06001E6E.png b/static/icons/06001E6E.png deleted file mode 100755 index d31a7425..00000000 Binary files a/static/icons/06001E6E.png and /dev/null differ diff --git a/static/icons/06001E6F.png b/static/icons/06001E6F.png deleted file mode 100755 index 62f89d53..00000000 Binary files a/static/icons/06001E6F.png and /dev/null differ diff --git a/static/icons/06001E70.png b/static/icons/06001E70.png deleted file mode 100755 index 8ca895b3..00000000 Binary files a/static/icons/06001E70.png and /dev/null differ diff --git a/static/icons/06001E71.png b/static/icons/06001E71.png deleted file mode 100755 index e9941f80..00000000 Binary files a/static/icons/06001E71.png and /dev/null differ diff --git a/static/icons/06001E72.png b/static/icons/06001E72.png deleted file mode 100755 index ab0fea33..00000000 Binary files a/static/icons/06001E72.png and /dev/null differ diff --git a/static/icons/06001E73.png b/static/icons/06001E73.png deleted file mode 100755 index fec46f28..00000000 Binary files a/static/icons/06001E73.png and /dev/null differ diff --git a/static/icons/06001E74.png b/static/icons/06001E74.png deleted file mode 100755 index 87d7753f..00000000 Binary files a/static/icons/06001E74.png and /dev/null differ diff --git a/static/icons/06001E75.png b/static/icons/06001E75.png deleted file mode 100755 index 4e0b9506..00000000 Binary files a/static/icons/06001E75.png and /dev/null differ diff --git a/static/icons/06001E76.png b/static/icons/06001E76.png deleted file mode 100755 index a57255a7..00000000 Binary files a/static/icons/06001E76.png and /dev/null differ diff --git a/static/icons/06001E77.png b/static/icons/06001E77.png deleted file mode 100755 index 99400c1e..00000000 Binary files a/static/icons/06001E77.png and /dev/null differ diff --git a/static/icons/06001E78.png b/static/icons/06001E78.png deleted file mode 100755 index b17a5b6f..00000000 Binary files a/static/icons/06001E78.png and /dev/null differ diff --git a/static/icons/06001E79.png b/static/icons/06001E79.png deleted file mode 100755 index 95b2e501..00000000 Binary files a/static/icons/06001E79.png and /dev/null differ diff --git a/static/icons/06001E7A.png b/static/icons/06001E7A.png deleted file mode 100755 index 07a6591d..00000000 Binary files a/static/icons/06001E7A.png and /dev/null differ diff --git a/static/icons/06001E7B.png b/static/icons/06001E7B.png deleted file mode 100755 index b4f30c72..00000000 Binary files a/static/icons/06001E7B.png and /dev/null differ diff --git a/static/icons/06001E7D.png b/static/icons/06001E7D.png deleted file mode 100755 index 2b7be030..00000000 Binary files a/static/icons/06001E7D.png and /dev/null differ diff --git a/static/icons/06001E7E.png b/static/icons/06001E7E.png deleted file mode 100755 index 2f768872..00000000 Binary files a/static/icons/06001E7E.png and /dev/null differ diff --git a/static/icons/06001E7F.png b/static/icons/06001E7F.png deleted file mode 100755 index f757d501..00000000 Binary files a/static/icons/06001E7F.png and /dev/null differ diff --git a/static/icons/06001E80.png b/static/icons/06001E80.png deleted file mode 100755 index cb625d95..00000000 Binary files a/static/icons/06001E80.png and /dev/null differ diff --git a/static/icons/06001E81.png b/static/icons/06001E81.png deleted file mode 100755 index 6431c723..00000000 Binary files a/static/icons/06001E81.png and /dev/null differ diff --git a/static/icons/06001E82.png b/static/icons/06001E82.png deleted file mode 100755 index 060b2e53..00000000 Binary files a/static/icons/06001E82.png and /dev/null differ diff --git a/static/icons/06001E83.png b/static/icons/06001E83.png deleted file mode 100755 index eb8098aa..00000000 Binary files a/static/icons/06001E83.png and /dev/null differ diff --git a/static/icons/06001E84.png b/static/icons/06001E84.png deleted file mode 100755 index eb0e5ca3..00000000 Binary files a/static/icons/06001E84.png and /dev/null differ diff --git a/static/icons/06001E85.png b/static/icons/06001E85.png deleted file mode 100755 index 03152df5..00000000 Binary files a/static/icons/06001E85.png and /dev/null differ diff --git a/static/icons/06001E86.png b/static/icons/06001E86.png deleted file mode 100755 index a6af5c8c..00000000 Binary files a/static/icons/06001E86.png and /dev/null differ diff --git a/static/icons/06001E87.png b/static/icons/06001E87.png deleted file mode 100755 index 3d315f2a..00000000 Binary files a/static/icons/06001E87.png and /dev/null differ diff --git a/static/icons/06001E88.png b/static/icons/06001E88.png deleted file mode 100755 index e1a03538..00000000 Binary files a/static/icons/06001E88.png and /dev/null differ diff --git a/static/icons/06001E89.png b/static/icons/06001E89.png deleted file mode 100755 index a6d7195e..00000000 Binary files a/static/icons/06001E89.png and /dev/null differ diff --git a/static/icons/06001E8A.png b/static/icons/06001E8A.png deleted file mode 100755 index 2121b3f0..00000000 Binary files a/static/icons/06001E8A.png and /dev/null differ diff --git a/static/icons/06001E8B.png b/static/icons/06001E8B.png deleted file mode 100755 index ab1cf1ed..00000000 Binary files a/static/icons/06001E8B.png and /dev/null differ diff --git a/static/icons/06001E8C.png b/static/icons/06001E8C.png deleted file mode 100755 index 2cc24986..00000000 Binary files a/static/icons/06001E8C.png and /dev/null differ diff --git a/static/icons/06001E8D.png b/static/icons/06001E8D.png deleted file mode 100755 index c45a6744..00000000 Binary files a/static/icons/06001E8D.png and /dev/null differ diff --git a/static/icons/06001E8E.png b/static/icons/06001E8E.png deleted file mode 100755 index 92b02698..00000000 Binary files a/static/icons/06001E8E.png and /dev/null differ diff --git a/static/icons/06001E8F.png b/static/icons/06001E8F.png deleted file mode 100755 index 1f5a0ab6..00000000 Binary files a/static/icons/06001E8F.png and /dev/null differ diff --git a/static/icons/06001E90.png b/static/icons/06001E90.png deleted file mode 100755 index 8720b47c..00000000 Binary files a/static/icons/06001E90.png and /dev/null differ diff --git a/static/icons/06001E91.png b/static/icons/06001E91.png deleted file mode 100755 index be79afc3..00000000 Binary files a/static/icons/06001E91.png and /dev/null differ diff --git a/static/icons/06001E92.png b/static/icons/06001E92.png deleted file mode 100755 index c4445553..00000000 Binary files a/static/icons/06001E92.png and /dev/null differ diff --git a/static/icons/06001E93.png b/static/icons/06001E93.png deleted file mode 100755 index 1eef202a..00000000 Binary files a/static/icons/06001E93.png and /dev/null differ diff --git a/static/icons/06001E94.png b/static/icons/06001E94.png deleted file mode 100755 index 3abf0592..00000000 Binary files a/static/icons/06001E94.png and /dev/null differ diff --git a/static/icons/06001E95.png b/static/icons/06001E95.png deleted file mode 100755 index 6e3c35fc..00000000 Binary files a/static/icons/06001E95.png and /dev/null differ diff --git a/static/icons/06001E96.png b/static/icons/06001E96.png deleted file mode 100755 index b156935e..00000000 Binary files a/static/icons/06001E96.png and /dev/null differ diff --git a/static/icons/06001E97.png b/static/icons/06001E97.png deleted file mode 100755 index 1386ca5b..00000000 Binary files a/static/icons/06001E97.png and /dev/null differ diff --git a/static/icons/06001E98.png b/static/icons/06001E98.png deleted file mode 100755 index ccd9a253..00000000 Binary files a/static/icons/06001E98.png and /dev/null differ diff --git a/static/icons/06001E99.png b/static/icons/06001E99.png deleted file mode 100755 index 78cc63f9..00000000 Binary files a/static/icons/06001E99.png and /dev/null differ diff --git a/static/icons/06001E9A.png b/static/icons/06001E9A.png deleted file mode 100755 index ff987c1e..00000000 Binary files a/static/icons/06001E9A.png and /dev/null differ diff --git a/static/icons/06001E9B.png b/static/icons/06001E9B.png deleted file mode 100755 index c461b385..00000000 Binary files a/static/icons/06001E9B.png and /dev/null differ diff --git a/static/icons/06001E9C.png b/static/icons/06001E9C.png deleted file mode 100755 index 7e22ef36..00000000 Binary files a/static/icons/06001E9C.png and /dev/null differ diff --git a/static/icons/06001E9D.png b/static/icons/06001E9D.png deleted file mode 100755 index 97eb9a90..00000000 Binary files a/static/icons/06001E9D.png and /dev/null differ diff --git a/static/icons/06001E9E.png b/static/icons/06001E9E.png deleted file mode 100755 index 959ab093..00000000 Binary files a/static/icons/06001E9E.png and /dev/null differ diff --git a/static/icons/06001E9F.png b/static/icons/06001E9F.png deleted file mode 100755 index 2f1c07b2..00000000 Binary files a/static/icons/06001E9F.png and /dev/null differ diff --git a/static/icons/06001EA0.png b/static/icons/06001EA0.png deleted file mode 100755 index ed59093b..00000000 Binary files a/static/icons/06001EA0.png and /dev/null differ diff --git a/static/icons/06001EA1.png b/static/icons/06001EA1.png deleted file mode 100755 index da99db20..00000000 Binary files a/static/icons/06001EA1.png and /dev/null differ diff --git a/static/icons/06001EA2.png b/static/icons/06001EA2.png deleted file mode 100755 index 475489db..00000000 Binary files a/static/icons/06001EA2.png and /dev/null differ diff --git a/static/icons/06001EA3.png b/static/icons/06001EA3.png deleted file mode 100755 index ec273e7c..00000000 Binary files a/static/icons/06001EA3.png and /dev/null differ diff --git a/static/icons/06001EA4.png b/static/icons/06001EA4.png deleted file mode 100755 index 3f6dfa14..00000000 Binary files a/static/icons/06001EA4.png and /dev/null differ diff --git a/static/icons/06001EA5.png b/static/icons/06001EA5.png deleted file mode 100755 index 597962bb..00000000 Binary files a/static/icons/06001EA5.png and /dev/null differ diff --git a/static/icons/06001EA6.png b/static/icons/06001EA6.png deleted file mode 100755 index 4fb6e3e5..00000000 Binary files a/static/icons/06001EA6.png and /dev/null differ diff --git a/static/icons/06001EA7.png b/static/icons/06001EA7.png deleted file mode 100755 index 2e839ced..00000000 Binary files a/static/icons/06001EA7.png and /dev/null differ diff --git a/static/icons/06001EA8.png b/static/icons/06001EA8.png deleted file mode 100755 index 1df42d71..00000000 Binary files a/static/icons/06001EA8.png and /dev/null differ diff --git a/static/icons/06001EAA.png b/static/icons/06001EAA.png deleted file mode 100755 index 54907a2e..00000000 Binary files a/static/icons/06001EAA.png and /dev/null differ diff --git a/static/icons/06001EAB.png b/static/icons/06001EAB.png deleted file mode 100755 index ab177786..00000000 Binary files a/static/icons/06001EAB.png and /dev/null differ diff --git a/static/icons/06001EAC.png b/static/icons/06001EAC.png deleted file mode 100755 index f82eb389..00000000 Binary files a/static/icons/06001EAC.png and /dev/null differ diff --git a/static/icons/06001EAD.png b/static/icons/06001EAD.png deleted file mode 100755 index fd4880c6..00000000 Binary files a/static/icons/06001EAD.png and /dev/null differ diff --git a/static/icons/06001EAE.png b/static/icons/06001EAE.png deleted file mode 100755 index 467173e0..00000000 Binary files a/static/icons/06001EAE.png and /dev/null differ diff --git a/static/icons/06001EAF.png b/static/icons/06001EAF.png deleted file mode 100755 index b59d4ce7..00000000 Binary files a/static/icons/06001EAF.png and /dev/null differ diff --git a/static/icons/06001EB0.png b/static/icons/06001EB0.png deleted file mode 100755 index 9d950ffd..00000000 Binary files a/static/icons/06001EB0.png and /dev/null differ diff --git a/static/icons/06001EB1.png b/static/icons/06001EB1.png deleted file mode 100755 index 710e41f1..00000000 Binary files a/static/icons/06001EB1.png and /dev/null differ diff --git a/static/icons/06001EB2.png b/static/icons/06001EB2.png deleted file mode 100755 index fdd0c93e..00000000 Binary files a/static/icons/06001EB2.png and /dev/null differ diff --git a/static/icons/06001EB4.png b/static/icons/06001EB4.png deleted file mode 100755 index a6a338a0..00000000 Binary files a/static/icons/06001EB4.png and /dev/null differ diff --git a/static/icons/06001EB5.png b/static/icons/06001EB5.png deleted file mode 100755 index 7949f82d..00000000 Binary files a/static/icons/06001EB5.png and /dev/null differ diff --git a/static/icons/06001EB6.png b/static/icons/06001EB6.png deleted file mode 100755 index fba497d2..00000000 Binary files a/static/icons/06001EB6.png and /dev/null differ diff --git a/static/icons/06001EB7.png b/static/icons/06001EB7.png deleted file mode 100755 index 26ab40fd..00000000 Binary files a/static/icons/06001EB7.png and /dev/null differ diff --git a/static/icons/06001EB8.png b/static/icons/06001EB8.png deleted file mode 100755 index 731c6f7d..00000000 Binary files a/static/icons/06001EB8.png and /dev/null differ diff --git a/static/icons/06001EB9.png b/static/icons/06001EB9.png deleted file mode 100755 index 677b88e9..00000000 Binary files a/static/icons/06001EB9.png and /dev/null differ diff --git a/static/icons/06001EBA.png b/static/icons/06001EBA.png deleted file mode 100755 index 2232207b..00000000 Binary files a/static/icons/06001EBA.png and /dev/null differ diff --git a/static/icons/06001EBB.png b/static/icons/06001EBB.png deleted file mode 100755 index 716983f0..00000000 Binary files a/static/icons/06001EBB.png and /dev/null differ diff --git a/static/icons/06001EBC.png b/static/icons/06001EBC.png deleted file mode 100755 index db81213a..00000000 Binary files a/static/icons/06001EBC.png and /dev/null differ diff --git a/static/icons/06001EBE.png b/static/icons/06001EBE.png deleted file mode 100755 index 5be87e00..00000000 Binary files a/static/icons/06001EBE.png and /dev/null differ diff --git a/static/icons/06001EBF.png b/static/icons/06001EBF.png deleted file mode 100755 index 8cd7f3b0..00000000 Binary files a/static/icons/06001EBF.png and /dev/null differ diff --git a/static/icons/06001EC0.png b/static/icons/06001EC0.png deleted file mode 100755 index e512711a..00000000 Binary files a/static/icons/06001EC0.png and /dev/null differ diff --git a/static/icons/06001EC1.png b/static/icons/06001EC1.png deleted file mode 100755 index 6f2ec814..00000000 Binary files a/static/icons/06001EC1.png and /dev/null differ diff --git a/static/icons/06001EC2.png b/static/icons/06001EC2.png deleted file mode 100755 index db910525..00000000 Binary files a/static/icons/06001EC2.png and /dev/null differ diff --git a/static/icons/06001EC3.png b/static/icons/06001EC3.png deleted file mode 100755 index 593ee501..00000000 Binary files a/static/icons/06001EC3.png and /dev/null differ diff --git a/static/icons/06001EC4.png b/static/icons/06001EC4.png deleted file mode 100755 index c2ebfc9c..00000000 Binary files a/static/icons/06001EC4.png and /dev/null differ diff --git a/static/icons/06001EC5.png b/static/icons/06001EC5.png deleted file mode 100755 index 918aa603..00000000 Binary files a/static/icons/06001EC5.png and /dev/null differ diff --git a/static/icons/06001EC6.png b/static/icons/06001EC6.png deleted file mode 100755 index 22ca3271..00000000 Binary files a/static/icons/06001EC6.png and /dev/null differ diff --git a/static/icons/06001EC8.png b/static/icons/06001EC8.png deleted file mode 100755 index 38982b1f..00000000 Binary files a/static/icons/06001EC8.png and /dev/null differ diff --git a/static/icons/06001EC9.png b/static/icons/06001EC9.png deleted file mode 100755 index 5794f7d9..00000000 Binary files a/static/icons/06001EC9.png and /dev/null differ diff --git a/static/icons/06001ECA.png b/static/icons/06001ECA.png deleted file mode 100755 index 50f4e606..00000000 Binary files a/static/icons/06001ECA.png and /dev/null differ diff --git a/static/icons/06001ECB.png b/static/icons/06001ECB.png deleted file mode 100755 index 6965d7fe..00000000 Binary files a/static/icons/06001ECB.png and /dev/null differ diff --git a/static/icons/06001ECC.png b/static/icons/06001ECC.png deleted file mode 100755 index 955c317a..00000000 Binary files a/static/icons/06001ECC.png and /dev/null differ diff --git a/static/icons/06001ECD.png b/static/icons/06001ECD.png deleted file mode 100755 index 7bd3a691..00000000 Binary files a/static/icons/06001ECD.png and /dev/null differ diff --git a/static/icons/06001ECE.png b/static/icons/06001ECE.png deleted file mode 100755 index 7bd7c215..00000000 Binary files a/static/icons/06001ECE.png and /dev/null differ diff --git a/static/icons/06001ECF.png b/static/icons/06001ECF.png deleted file mode 100755 index c31116f6..00000000 Binary files a/static/icons/06001ECF.png and /dev/null differ diff --git a/static/icons/06001ED0.png b/static/icons/06001ED0.png deleted file mode 100755 index c49ec5e9..00000000 Binary files a/static/icons/06001ED0.png and /dev/null differ diff --git a/static/icons/06001ED1.png b/static/icons/06001ED1.png deleted file mode 100755 index 6126d20f..00000000 Binary files a/static/icons/06001ED1.png and /dev/null differ diff --git a/static/icons/06001ED2.png b/static/icons/06001ED2.png deleted file mode 100755 index 0f01cef6..00000000 Binary files a/static/icons/06001ED2.png and /dev/null differ diff --git a/static/icons/06001ED3.png b/static/icons/06001ED3.png deleted file mode 100755 index 65841c68..00000000 Binary files a/static/icons/06001ED3.png and /dev/null differ diff --git a/static/icons/06001ED4.png b/static/icons/06001ED4.png deleted file mode 100755 index ad89d688..00000000 Binary files a/static/icons/06001ED4.png and /dev/null differ diff --git a/static/icons/06001ED5.png b/static/icons/06001ED5.png deleted file mode 100755 index 7d053b00..00000000 Binary files a/static/icons/06001ED5.png and /dev/null differ diff --git a/static/icons/06001ED6.png b/static/icons/06001ED6.png deleted file mode 100755 index 456484c7..00000000 Binary files a/static/icons/06001ED6.png and /dev/null differ diff --git a/static/icons/06001ED7.png b/static/icons/06001ED7.png deleted file mode 100755 index ff539453..00000000 Binary files a/static/icons/06001ED7.png and /dev/null differ diff --git a/static/icons/06001ED8.png b/static/icons/06001ED8.png deleted file mode 100755 index a086b4d8..00000000 Binary files a/static/icons/06001ED8.png and /dev/null differ diff --git a/static/icons/06001ED9.png b/static/icons/06001ED9.png deleted file mode 100755 index b2750d8e..00000000 Binary files a/static/icons/06001ED9.png and /dev/null differ diff --git a/static/icons/06001EDA.png b/static/icons/06001EDA.png deleted file mode 100755 index 705bba49..00000000 Binary files a/static/icons/06001EDA.png and /dev/null differ diff --git a/static/icons/06001EDB.png b/static/icons/06001EDB.png deleted file mode 100755 index b81b9f87..00000000 Binary files a/static/icons/06001EDB.png and /dev/null differ diff --git a/static/icons/06001EDC.png b/static/icons/06001EDC.png deleted file mode 100755 index 1b525d70..00000000 Binary files a/static/icons/06001EDC.png and /dev/null differ diff --git a/static/icons/06001EDD.png b/static/icons/06001EDD.png deleted file mode 100755 index acbf521d..00000000 Binary files a/static/icons/06001EDD.png and /dev/null differ diff --git a/static/icons/06001EDE.png b/static/icons/06001EDE.png deleted file mode 100755 index f9423fe5..00000000 Binary files a/static/icons/06001EDE.png and /dev/null differ diff --git a/static/icons/06001EDF.png b/static/icons/06001EDF.png deleted file mode 100755 index edd06124..00000000 Binary files a/static/icons/06001EDF.png and /dev/null differ diff --git a/static/icons/06001EE0.png b/static/icons/06001EE0.png deleted file mode 100755 index c439c3d8..00000000 Binary files a/static/icons/06001EE0.png and /dev/null differ diff --git a/static/icons/06001EE1.png b/static/icons/06001EE1.png deleted file mode 100755 index 7f1ab915..00000000 Binary files a/static/icons/06001EE1.png and /dev/null differ diff --git a/static/icons/06001EE2.png b/static/icons/06001EE2.png deleted file mode 100755 index 0e5474cb..00000000 Binary files a/static/icons/06001EE2.png and /dev/null differ diff --git a/static/icons/06001EE3.png b/static/icons/06001EE3.png deleted file mode 100755 index ee19e6df..00000000 Binary files a/static/icons/06001EE3.png and /dev/null differ diff --git a/static/icons/06001EE4.png b/static/icons/06001EE4.png deleted file mode 100755 index c4017d94..00000000 Binary files a/static/icons/06001EE4.png and /dev/null differ diff --git a/static/icons/06001EE5.png b/static/icons/06001EE5.png deleted file mode 100755 index dcce6a9e..00000000 Binary files a/static/icons/06001EE5.png and /dev/null differ diff --git a/static/icons/06001EE6.png b/static/icons/06001EE6.png deleted file mode 100755 index e6a811d8..00000000 Binary files a/static/icons/06001EE6.png and /dev/null differ diff --git a/static/icons/06001EE7.png b/static/icons/06001EE7.png deleted file mode 100755 index 300666b7..00000000 Binary files a/static/icons/06001EE7.png and /dev/null differ diff --git a/static/icons/06001EE8.png b/static/icons/06001EE8.png deleted file mode 100755 index f0673358..00000000 Binary files a/static/icons/06001EE8.png and /dev/null differ diff --git a/static/icons/06001EE9.png b/static/icons/06001EE9.png deleted file mode 100755 index b55e278d..00000000 Binary files a/static/icons/06001EE9.png and /dev/null differ diff --git a/static/icons/06001EEA.png b/static/icons/06001EEA.png deleted file mode 100755 index b39cc43b..00000000 Binary files a/static/icons/06001EEA.png and /dev/null differ diff --git a/static/icons/06001EEB.png b/static/icons/06001EEB.png deleted file mode 100755 index 80cc21aa..00000000 Binary files a/static/icons/06001EEB.png and /dev/null differ diff --git a/static/icons/06001EEC.png b/static/icons/06001EEC.png deleted file mode 100755 index f5ae6eb9..00000000 Binary files a/static/icons/06001EEC.png and /dev/null differ diff --git a/static/icons/06001EED.png b/static/icons/06001EED.png deleted file mode 100755 index 98991f72..00000000 Binary files a/static/icons/06001EED.png and /dev/null differ diff --git a/static/icons/06001EEE.png b/static/icons/06001EEE.png deleted file mode 100755 index 87c44efd..00000000 Binary files a/static/icons/06001EEE.png and /dev/null differ diff --git a/static/icons/06001EEF.png b/static/icons/06001EEF.png deleted file mode 100755 index 3c9fc2f8..00000000 Binary files a/static/icons/06001EEF.png and /dev/null differ diff --git a/static/icons/06001EF0.png b/static/icons/06001EF0.png deleted file mode 100755 index bbf709c7..00000000 Binary files a/static/icons/06001EF0.png and /dev/null differ diff --git a/static/icons/06001EF1.png b/static/icons/06001EF1.png deleted file mode 100755 index a0063f15..00000000 Binary files a/static/icons/06001EF1.png and /dev/null differ diff --git a/static/icons/06001EF2.png b/static/icons/06001EF2.png deleted file mode 100755 index 801ba69e..00000000 Binary files a/static/icons/06001EF2.png and /dev/null differ diff --git a/static/icons/06001EF3.png b/static/icons/06001EF3.png deleted file mode 100755 index fc6cdaf2..00000000 Binary files a/static/icons/06001EF3.png and /dev/null differ diff --git a/static/icons/06001EF4.png b/static/icons/06001EF4.png deleted file mode 100755 index d1f88369..00000000 Binary files a/static/icons/06001EF4.png and /dev/null differ diff --git a/static/icons/06001EF5.png b/static/icons/06001EF5.png deleted file mode 100755 index 14a99e6b..00000000 Binary files a/static/icons/06001EF5.png and /dev/null differ diff --git a/static/icons/06001EF6.png b/static/icons/06001EF6.png deleted file mode 100755 index 9be2b119..00000000 Binary files a/static/icons/06001EF6.png and /dev/null differ diff --git a/static/icons/06001EF7.png b/static/icons/06001EF7.png deleted file mode 100755 index 437dad32..00000000 Binary files a/static/icons/06001EF7.png and /dev/null differ diff --git a/static/icons/06001EF8.png b/static/icons/06001EF8.png deleted file mode 100755 index 3ba5f220..00000000 Binary files a/static/icons/06001EF8.png and /dev/null differ diff --git a/static/icons/06001EF9.png b/static/icons/06001EF9.png deleted file mode 100755 index 6357abb7..00000000 Binary files a/static/icons/06001EF9.png and /dev/null differ diff --git a/static/icons/06001EFA.png b/static/icons/06001EFA.png deleted file mode 100755 index b33240b3..00000000 Binary files a/static/icons/06001EFA.png and /dev/null differ diff --git a/static/icons/06001EFB.png b/static/icons/06001EFB.png deleted file mode 100755 index e3d8ee33..00000000 Binary files a/static/icons/06001EFB.png and /dev/null differ diff --git a/static/icons/06001EFC.png b/static/icons/06001EFC.png deleted file mode 100755 index 18b4b261..00000000 Binary files a/static/icons/06001EFC.png and /dev/null differ diff --git a/static/icons/06001EFD.png b/static/icons/06001EFD.png deleted file mode 100755 index 5637e6d2..00000000 Binary files a/static/icons/06001EFD.png and /dev/null differ diff --git a/static/icons/06001EFE.png b/static/icons/06001EFE.png deleted file mode 100755 index cb4f85cf..00000000 Binary files a/static/icons/06001EFE.png and /dev/null differ diff --git a/static/icons/06001EFF.png b/static/icons/06001EFF.png deleted file mode 100755 index 104e1393..00000000 Binary files a/static/icons/06001EFF.png and /dev/null differ diff --git a/static/icons/06001F00.png b/static/icons/06001F00.png deleted file mode 100755 index 50ceb393..00000000 Binary files a/static/icons/06001F00.png and /dev/null differ diff --git a/static/icons/06001F01.png b/static/icons/06001F01.png deleted file mode 100755 index 87b87c65..00000000 Binary files a/static/icons/06001F01.png and /dev/null differ diff --git a/static/icons/06001F02.png b/static/icons/06001F02.png deleted file mode 100755 index 343a5774..00000000 Binary files a/static/icons/06001F02.png and /dev/null differ diff --git a/static/icons/06001F03.png b/static/icons/06001F03.png deleted file mode 100755 index 6fdb4e05..00000000 Binary files a/static/icons/06001F03.png and /dev/null differ diff --git a/static/icons/06001F04.png b/static/icons/06001F04.png deleted file mode 100755 index 3647af59..00000000 Binary files a/static/icons/06001F04.png and /dev/null differ diff --git a/static/icons/06001F05.png b/static/icons/06001F05.png deleted file mode 100755 index 76dabaf0..00000000 Binary files a/static/icons/06001F05.png and /dev/null differ diff --git a/static/icons/06001F06.png b/static/icons/06001F06.png deleted file mode 100755 index 0fdaffe3..00000000 Binary files a/static/icons/06001F06.png and /dev/null differ diff --git a/static/icons/06001F07.png b/static/icons/06001F07.png deleted file mode 100755 index f55dd121..00000000 Binary files a/static/icons/06001F07.png and /dev/null differ diff --git a/static/icons/06001F08.png b/static/icons/06001F08.png deleted file mode 100755 index 6d5638a5..00000000 Binary files a/static/icons/06001F08.png and /dev/null differ diff --git a/static/icons/06001F09.png b/static/icons/06001F09.png deleted file mode 100755 index 249b1b12..00000000 Binary files a/static/icons/06001F09.png and /dev/null differ diff --git a/static/icons/06001F0A.png b/static/icons/06001F0A.png deleted file mode 100755 index 1c680e34..00000000 Binary files a/static/icons/06001F0A.png and /dev/null differ diff --git a/static/icons/06001F0B.png b/static/icons/06001F0B.png deleted file mode 100755 index 40931444..00000000 Binary files a/static/icons/06001F0B.png and /dev/null differ diff --git a/static/icons/06001F0C.png b/static/icons/06001F0C.png deleted file mode 100755 index 5364bea9..00000000 Binary files a/static/icons/06001F0C.png and /dev/null differ diff --git a/static/icons/06001F0D.png b/static/icons/06001F0D.png deleted file mode 100755 index d5f12382..00000000 Binary files a/static/icons/06001F0D.png and /dev/null differ diff --git a/static/icons/06001F0E.png b/static/icons/06001F0E.png deleted file mode 100755 index 56cf9a4b..00000000 Binary files a/static/icons/06001F0E.png and /dev/null differ diff --git a/static/icons/06001F0F.png b/static/icons/06001F0F.png deleted file mode 100755 index 1c1c359a..00000000 Binary files a/static/icons/06001F0F.png and /dev/null differ diff --git a/static/icons/06001F10.png b/static/icons/06001F10.png deleted file mode 100755 index 1c5982db..00000000 Binary files a/static/icons/06001F10.png and /dev/null differ diff --git a/static/icons/06001F11.png b/static/icons/06001F11.png deleted file mode 100755 index 3889adfb..00000000 Binary files a/static/icons/06001F11.png and /dev/null differ diff --git a/static/icons/06001F12.png b/static/icons/06001F12.png deleted file mode 100755 index ee424774..00000000 Binary files a/static/icons/06001F12.png and /dev/null differ diff --git a/static/icons/06001F13.png b/static/icons/06001F13.png deleted file mode 100755 index e65cc974..00000000 Binary files a/static/icons/06001F13.png and /dev/null differ diff --git a/static/icons/06001F14.png b/static/icons/06001F14.png deleted file mode 100755 index aaeae3f9..00000000 Binary files a/static/icons/06001F14.png and /dev/null differ diff --git a/static/icons/06001F15.png b/static/icons/06001F15.png deleted file mode 100755 index dc8ce5e9..00000000 Binary files a/static/icons/06001F15.png and /dev/null differ diff --git a/static/icons/06001F16.png b/static/icons/06001F16.png deleted file mode 100755 index 7a061f38..00000000 Binary files a/static/icons/06001F16.png and /dev/null differ diff --git a/static/icons/06001F17.png b/static/icons/06001F17.png deleted file mode 100755 index d6fd3b85..00000000 Binary files a/static/icons/06001F17.png and /dev/null differ diff --git a/static/icons/06001F18.png b/static/icons/06001F18.png deleted file mode 100755 index 357263ba..00000000 Binary files a/static/icons/06001F18.png and /dev/null differ diff --git a/static/icons/06001F19.png b/static/icons/06001F19.png deleted file mode 100755 index 6c877512..00000000 Binary files a/static/icons/06001F19.png and /dev/null differ diff --git a/static/icons/06001F1A.png b/static/icons/06001F1A.png deleted file mode 100755 index e988c7f5..00000000 Binary files a/static/icons/06001F1A.png and /dev/null differ diff --git a/static/icons/06001F1B.png b/static/icons/06001F1B.png deleted file mode 100755 index 4435aa3e..00000000 Binary files a/static/icons/06001F1B.png and /dev/null differ diff --git a/static/icons/06001F1C.png b/static/icons/06001F1C.png deleted file mode 100755 index aa2295a4..00000000 Binary files a/static/icons/06001F1C.png and /dev/null differ diff --git a/static/icons/06001F1D.png b/static/icons/06001F1D.png deleted file mode 100755 index 092055d3..00000000 Binary files a/static/icons/06001F1D.png and /dev/null differ diff --git a/static/icons/06001F1E.png b/static/icons/06001F1E.png deleted file mode 100755 index 1a998487..00000000 Binary files a/static/icons/06001F1E.png and /dev/null differ diff --git a/static/icons/06001F1F.png b/static/icons/06001F1F.png deleted file mode 100755 index 389800dc..00000000 Binary files a/static/icons/06001F1F.png and /dev/null differ diff --git a/static/icons/06001F20.png b/static/icons/06001F20.png deleted file mode 100755 index 1bc44436..00000000 Binary files a/static/icons/06001F20.png and /dev/null differ diff --git a/static/icons/06001F21.png b/static/icons/06001F21.png deleted file mode 100755 index c63e6eb3..00000000 Binary files a/static/icons/06001F21.png and /dev/null differ diff --git a/static/icons/06001F22.png b/static/icons/06001F22.png deleted file mode 100755 index 95774ff7..00000000 Binary files a/static/icons/06001F22.png and /dev/null differ diff --git a/static/icons/06001F23.png b/static/icons/06001F23.png deleted file mode 100755 index 6583fd42..00000000 Binary files a/static/icons/06001F23.png and /dev/null differ diff --git a/static/icons/06001F24.png b/static/icons/06001F24.png deleted file mode 100755 index a43f4ea6..00000000 Binary files a/static/icons/06001F24.png and /dev/null differ diff --git a/static/icons/06001F25.png b/static/icons/06001F25.png deleted file mode 100755 index 20efc013..00000000 Binary files a/static/icons/06001F25.png and /dev/null differ diff --git a/static/icons/06001F26.png b/static/icons/06001F26.png deleted file mode 100755 index cbfb9927..00000000 Binary files a/static/icons/06001F26.png and /dev/null differ diff --git a/static/icons/06001F27.png b/static/icons/06001F27.png deleted file mode 100755 index a24096d2..00000000 Binary files a/static/icons/06001F27.png and /dev/null differ diff --git a/static/icons/06001F28.png b/static/icons/06001F28.png deleted file mode 100755 index 39bf1010..00000000 Binary files a/static/icons/06001F28.png and /dev/null differ diff --git a/static/icons/06001F29.png b/static/icons/06001F29.png deleted file mode 100755 index 20389023..00000000 Binary files a/static/icons/06001F29.png and /dev/null differ diff --git a/static/icons/06001F2A.png b/static/icons/06001F2A.png deleted file mode 100755 index 0fbf7aa8..00000000 Binary files a/static/icons/06001F2A.png and /dev/null differ diff --git a/static/icons/06001F2B.png b/static/icons/06001F2B.png deleted file mode 100755 index 2f6610d4..00000000 Binary files a/static/icons/06001F2B.png and /dev/null differ diff --git a/static/icons/06001F2C.png b/static/icons/06001F2C.png deleted file mode 100755 index 93798c9b..00000000 Binary files a/static/icons/06001F2C.png and /dev/null differ diff --git a/static/icons/06001F2D.png b/static/icons/06001F2D.png deleted file mode 100755 index 961e3712..00000000 Binary files a/static/icons/06001F2D.png and /dev/null differ diff --git a/static/icons/06001F2E.png b/static/icons/06001F2E.png deleted file mode 100755 index b7ccc58e..00000000 Binary files a/static/icons/06001F2E.png and /dev/null differ diff --git a/static/icons/06001F2F.png b/static/icons/06001F2F.png deleted file mode 100755 index 16ac181d..00000000 Binary files a/static/icons/06001F2F.png and /dev/null differ diff --git a/static/icons/06001F30.png b/static/icons/06001F30.png deleted file mode 100755 index ce939d39..00000000 Binary files a/static/icons/06001F30.png and /dev/null differ diff --git a/static/icons/06001F31.png b/static/icons/06001F31.png deleted file mode 100755 index 93db1965..00000000 Binary files a/static/icons/06001F31.png and /dev/null differ diff --git a/static/icons/06001F32.png b/static/icons/06001F32.png deleted file mode 100755 index 7298ef90..00000000 Binary files a/static/icons/06001F32.png and /dev/null differ diff --git a/static/icons/06001F33.png b/static/icons/06001F33.png deleted file mode 100755 index dae2c8db..00000000 Binary files a/static/icons/06001F33.png and /dev/null differ diff --git a/static/icons/06001F34.png b/static/icons/06001F34.png deleted file mode 100755 index 8201b00f..00000000 Binary files a/static/icons/06001F34.png and /dev/null differ diff --git a/static/icons/06001F35.png b/static/icons/06001F35.png deleted file mode 100755 index 3bfc22cf..00000000 Binary files a/static/icons/06001F35.png and /dev/null differ diff --git a/static/icons/06001F36.png b/static/icons/06001F36.png deleted file mode 100755 index f5a3cc15..00000000 Binary files a/static/icons/06001F36.png and /dev/null differ diff --git a/static/icons/06001F37.png b/static/icons/06001F37.png deleted file mode 100755 index 7f83b7a2..00000000 Binary files a/static/icons/06001F37.png and /dev/null differ diff --git a/static/icons/06001F38.png b/static/icons/06001F38.png deleted file mode 100755 index a5b3dfce..00000000 Binary files a/static/icons/06001F38.png and /dev/null differ diff --git a/static/icons/06001F39.png b/static/icons/06001F39.png deleted file mode 100755 index 593e0e8e..00000000 Binary files a/static/icons/06001F39.png and /dev/null differ diff --git a/static/icons/06001F3A.png b/static/icons/06001F3A.png deleted file mode 100755 index 1e7f3af4..00000000 Binary files a/static/icons/06001F3A.png and /dev/null differ diff --git a/static/icons/06001F3B.png b/static/icons/06001F3B.png deleted file mode 100755 index 365aa7f2..00000000 Binary files a/static/icons/06001F3B.png and /dev/null differ diff --git a/static/icons/06001F3C.png b/static/icons/06001F3C.png deleted file mode 100755 index a8c31df4..00000000 Binary files a/static/icons/06001F3C.png and /dev/null differ diff --git a/static/icons/06001F3D.png b/static/icons/06001F3D.png deleted file mode 100755 index ccf09186..00000000 Binary files a/static/icons/06001F3D.png and /dev/null differ diff --git a/static/icons/06001F3E.png b/static/icons/06001F3E.png deleted file mode 100755 index fe01c6ef..00000000 Binary files a/static/icons/06001F3E.png and /dev/null differ diff --git a/static/icons/06001F3F.png b/static/icons/06001F3F.png deleted file mode 100755 index d1e68ed9..00000000 Binary files a/static/icons/06001F3F.png and /dev/null differ diff --git a/static/icons/06001F40.png b/static/icons/06001F40.png deleted file mode 100755 index ea6ee32c..00000000 Binary files a/static/icons/06001F40.png and /dev/null differ diff --git a/static/icons/06001F41.png b/static/icons/06001F41.png deleted file mode 100755 index cecf344f..00000000 Binary files a/static/icons/06001F41.png and /dev/null differ diff --git a/static/icons/06001F42.png b/static/icons/06001F42.png deleted file mode 100755 index 907d2361..00000000 Binary files a/static/icons/06001F42.png and /dev/null differ diff --git a/static/icons/06001F43.png b/static/icons/06001F43.png deleted file mode 100755 index 293b2b18..00000000 Binary files a/static/icons/06001F43.png and /dev/null differ diff --git a/static/icons/06001F44.png b/static/icons/06001F44.png deleted file mode 100755 index d87e03a5..00000000 Binary files a/static/icons/06001F44.png and /dev/null differ diff --git a/static/icons/06001F45.png b/static/icons/06001F45.png deleted file mode 100755 index 4d8baa29..00000000 Binary files a/static/icons/06001F45.png and /dev/null differ diff --git a/static/icons/06001F46.png b/static/icons/06001F46.png deleted file mode 100755 index 496325a3..00000000 Binary files a/static/icons/06001F46.png and /dev/null differ diff --git a/static/icons/06001F47.png b/static/icons/06001F47.png deleted file mode 100755 index 56f1463f..00000000 Binary files a/static/icons/06001F47.png and /dev/null differ diff --git a/static/icons/06001F4B.png b/static/icons/06001F4B.png deleted file mode 100755 index b2c50765..00000000 Binary files a/static/icons/06001F4B.png and /dev/null differ diff --git a/static/icons/06001F4C.png b/static/icons/06001F4C.png deleted file mode 100755 index 9747c5c2..00000000 Binary files a/static/icons/06001F4C.png and /dev/null differ diff --git a/static/icons/06001F4D.png b/static/icons/06001F4D.png deleted file mode 100755 index a73db56a..00000000 Binary files a/static/icons/06001F4D.png and /dev/null differ diff --git a/static/icons/06001F4E.png b/static/icons/06001F4E.png deleted file mode 100755 index 2c9531a7..00000000 Binary files a/static/icons/06001F4E.png and /dev/null differ diff --git a/static/icons/06001F4F.png b/static/icons/06001F4F.png deleted file mode 100755 index 7e5ac0aa..00000000 Binary files a/static/icons/06001F4F.png and /dev/null differ diff --git a/static/icons/06001F50.png b/static/icons/06001F50.png deleted file mode 100755 index 7f21b861..00000000 Binary files a/static/icons/06001F50.png and /dev/null differ diff --git a/static/icons/06001F51.png b/static/icons/06001F51.png deleted file mode 100755 index 6b0cddc9..00000000 Binary files a/static/icons/06001F51.png and /dev/null differ diff --git a/static/icons/06001F52.png b/static/icons/06001F52.png deleted file mode 100755 index dad04dff..00000000 Binary files a/static/icons/06001F52.png and /dev/null differ diff --git a/static/icons/06001F53.png b/static/icons/06001F53.png deleted file mode 100755 index fd2b664d..00000000 Binary files a/static/icons/06001F53.png and /dev/null differ diff --git a/static/icons/06001F54.png b/static/icons/06001F54.png deleted file mode 100755 index 731e1173..00000000 Binary files a/static/icons/06001F54.png and /dev/null differ diff --git a/static/icons/06001F55.png b/static/icons/06001F55.png deleted file mode 100755 index 913ee4fc..00000000 Binary files a/static/icons/06001F55.png and /dev/null differ diff --git a/static/icons/06001F56.png b/static/icons/06001F56.png deleted file mode 100755 index cb6fb5b5..00000000 Binary files a/static/icons/06001F56.png and /dev/null differ diff --git a/static/icons/06001F57.png b/static/icons/06001F57.png deleted file mode 100755 index 3e95631c..00000000 Binary files a/static/icons/06001F57.png and /dev/null differ diff --git a/static/icons/06001F58.png b/static/icons/06001F58.png deleted file mode 100755 index 198dac65..00000000 Binary files a/static/icons/06001F58.png and /dev/null differ diff --git a/static/icons/06001F59.png b/static/icons/06001F59.png deleted file mode 100755 index 33720fc1..00000000 Binary files a/static/icons/06001F59.png and /dev/null differ diff --git a/static/icons/06001F5A.png b/static/icons/06001F5A.png deleted file mode 100755 index 53f67e3a..00000000 Binary files a/static/icons/06001F5A.png and /dev/null differ diff --git a/static/icons/06001F5B.png b/static/icons/06001F5B.png deleted file mode 100755 index 8fd4f4f7..00000000 Binary files a/static/icons/06001F5B.png and /dev/null differ diff --git a/static/icons/06001F5C.png b/static/icons/06001F5C.png deleted file mode 100755 index 2e552411..00000000 Binary files a/static/icons/06001F5C.png and /dev/null differ diff --git a/static/icons/06001F5D.png b/static/icons/06001F5D.png deleted file mode 100755 index aaeed049..00000000 Binary files a/static/icons/06001F5D.png and /dev/null differ diff --git a/static/icons/06001F5E.png b/static/icons/06001F5E.png deleted file mode 100755 index a6e725af..00000000 Binary files a/static/icons/06001F5E.png and /dev/null differ diff --git a/static/icons/06001F5F.png b/static/icons/06001F5F.png deleted file mode 100755 index 8a24e155..00000000 Binary files a/static/icons/06001F5F.png and /dev/null differ diff --git a/static/icons/06001F60.png b/static/icons/06001F60.png deleted file mode 100755 index 9e1a5a50..00000000 Binary files a/static/icons/06001F60.png and /dev/null differ diff --git a/static/icons/06001F61.png b/static/icons/06001F61.png deleted file mode 100755 index f9de8d21..00000000 Binary files a/static/icons/06001F61.png and /dev/null differ diff --git a/static/icons/06001F62.png b/static/icons/06001F62.png deleted file mode 100755 index b8fe99dd..00000000 Binary files a/static/icons/06001F62.png and /dev/null differ diff --git a/static/icons/06001F63.png b/static/icons/06001F63.png deleted file mode 100755 index 69a9bbf6..00000000 Binary files a/static/icons/06001F63.png and /dev/null differ diff --git a/static/icons/06001F64.png b/static/icons/06001F64.png deleted file mode 100755 index 6702dc9c..00000000 Binary files a/static/icons/06001F64.png and /dev/null differ diff --git a/static/icons/06001F65.png b/static/icons/06001F65.png deleted file mode 100755 index 08a875df..00000000 Binary files a/static/icons/06001F65.png and /dev/null differ diff --git a/static/icons/06001F66.png b/static/icons/06001F66.png deleted file mode 100755 index f11dfa46..00000000 Binary files a/static/icons/06001F66.png and /dev/null differ diff --git a/static/icons/06001F67.png b/static/icons/06001F67.png deleted file mode 100755 index 17611b0d..00000000 Binary files a/static/icons/06001F67.png and /dev/null differ diff --git a/static/icons/06001F68.png b/static/icons/06001F68.png deleted file mode 100755 index 3de77113..00000000 Binary files a/static/icons/06001F68.png and /dev/null differ diff --git a/static/icons/06001F69.png b/static/icons/06001F69.png deleted file mode 100755 index 172067de..00000000 Binary files a/static/icons/06001F69.png and /dev/null differ diff --git a/static/icons/06001F6A.png b/static/icons/06001F6A.png deleted file mode 100755 index a1f029a2..00000000 Binary files a/static/icons/06001F6A.png and /dev/null differ diff --git a/static/icons/06001F6B.png b/static/icons/06001F6B.png deleted file mode 100755 index 991f0b60..00000000 Binary files a/static/icons/06001F6B.png and /dev/null differ diff --git a/static/icons/06001F6C.png b/static/icons/06001F6C.png deleted file mode 100755 index 5684bfda..00000000 Binary files a/static/icons/06001F6C.png and /dev/null differ diff --git a/static/icons/06001F6D.png b/static/icons/06001F6D.png deleted file mode 100755 index 78c0cbd0..00000000 Binary files a/static/icons/06001F6D.png and /dev/null differ diff --git a/static/icons/06001F6E.png b/static/icons/06001F6E.png deleted file mode 100755 index f301aab2..00000000 Binary files a/static/icons/06001F6E.png and /dev/null differ diff --git a/static/icons/06001F6F.png b/static/icons/06001F6F.png deleted file mode 100755 index d293d880..00000000 Binary files a/static/icons/06001F6F.png and /dev/null differ diff --git a/static/icons/06001F70.png b/static/icons/06001F70.png deleted file mode 100755 index 92e8fced..00000000 Binary files a/static/icons/06001F70.png and /dev/null differ diff --git a/static/icons/06001F71.png b/static/icons/06001F71.png deleted file mode 100755 index dfc641e8..00000000 Binary files a/static/icons/06001F71.png and /dev/null differ diff --git a/static/icons/06001F72.png b/static/icons/06001F72.png deleted file mode 100755 index 0b679531..00000000 Binary files a/static/icons/06001F72.png and /dev/null differ diff --git a/static/icons/06001F73.png b/static/icons/06001F73.png deleted file mode 100755 index b1e1f9f8..00000000 Binary files a/static/icons/06001F73.png and /dev/null differ diff --git a/static/icons/06001F74.png b/static/icons/06001F74.png deleted file mode 100755 index d8f64967..00000000 Binary files a/static/icons/06001F74.png and /dev/null differ diff --git a/static/icons/06001F75.png b/static/icons/06001F75.png deleted file mode 100755 index a4879c3e..00000000 Binary files a/static/icons/06001F75.png and /dev/null differ diff --git a/static/icons/06001F76.png b/static/icons/06001F76.png deleted file mode 100755 index 94682849..00000000 Binary files a/static/icons/06001F76.png and /dev/null differ diff --git a/static/icons/06001F77.png b/static/icons/06001F77.png deleted file mode 100755 index 482dff57..00000000 Binary files a/static/icons/06001F77.png and /dev/null differ diff --git a/static/icons/06001F78.png b/static/icons/06001F78.png deleted file mode 100755 index f6f762af..00000000 Binary files a/static/icons/06001F78.png and /dev/null differ diff --git a/static/icons/06001F79.png b/static/icons/06001F79.png deleted file mode 100755 index 20f3389e..00000000 Binary files a/static/icons/06001F79.png and /dev/null differ diff --git a/static/icons/06001F7A.png b/static/icons/06001F7A.png deleted file mode 100755 index 58865902..00000000 Binary files a/static/icons/06001F7A.png and /dev/null differ diff --git a/static/icons/06001F7B.png b/static/icons/06001F7B.png deleted file mode 100755 index 7f76aaaa..00000000 Binary files a/static/icons/06001F7B.png and /dev/null differ diff --git a/static/icons/06001F7C.png b/static/icons/06001F7C.png deleted file mode 100755 index 4e76f54c..00000000 Binary files a/static/icons/06001F7C.png and /dev/null differ diff --git a/static/icons/06001F7D.png b/static/icons/06001F7D.png deleted file mode 100755 index 01de562d..00000000 Binary files a/static/icons/06001F7D.png and /dev/null differ diff --git a/static/icons/06001F7E.png b/static/icons/06001F7E.png deleted file mode 100755 index 3ecca061..00000000 Binary files a/static/icons/06001F7E.png and /dev/null differ diff --git a/static/icons/06001F7F.png b/static/icons/06001F7F.png deleted file mode 100755 index 11559150..00000000 Binary files a/static/icons/06001F7F.png and /dev/null differ diff --git a/static/icons/06001F80.png b/static/icons/06001F80.png deleted file mode 100755 index 2d040dbc..00000000 Binary files a/static/icons/06001F80.png and /dev/null differ diff --git a/static/icons/06001F82.png b/static/icons/06001F82.png deleted file mode 100755 index 33afed57..00000000 Binary files a/static/icons/06001F82.png and /dev/null differ diff --git a/static/icons/06001F83.png b/static/icons/06001F83.png deleted file mode 100755 index ef556918..00000000 Binary files a/static/icons/06001F83.png and /dev/null differ diff --git a/static/icons/06001F84.png b/static/icons/06001F84.png deleted file mode 100755 index a23b088d..00000000 Binary files a/static/icons/06001F84.png and /dev/null differ diff --git a/static/icons/06001F85.png b/static/icons/06001F85.png deleted file mode 100755 index 2e364650..00000000 Binary files a/static/icons/06001F85.png and /dev/null differ diff --git a/static/icons/06001F86.png b/static/icons/06001F86.png deleted file mode 100755 index 8b596aaa..00000000 Binary files a/static/icons/06001F86.png and /dev/null differ diff --git a/static/icons/06001F87.png b/static/icons/06001F87.png deleted file mode 100755 index 0ad2fd1e..00000000 Binary files a/static/icons/06001F87.png and /dev/null differ diff --git a/static/icons/06001F88.png b/static/icons/06001F88.png deleted file mode 100755 index cfab10b4..00000000 Binary files a/static/icons/06001F88.png and /dev/null differ diff --git a/static/icons/06001F89.png b/static/icons/06001F89.png deleted file mode 100755 index cfff4a45..00000000 Binary files a/static/icons/06001F89.png and /dev/null differ diff --git a/static/icons/06001F8A.png b/static/icons/06001F8A.png deleted file mode 100755 index ff91a87a..00000000 Binary files a/static/icons/06001F8A.png and /dev/null differ diff --git a/static/icons/06001F8B.png b/static/icons/06001F8B.png deleted file mode 100755 index a5ab4d5e..00000000 Binary files a/static/icons/06001F8B.png and /dev/null differ diff --git a/static/icons/06001F8C.png b/static/icons/06001F8C.png deleted file mode 100755 index 2b69898f..00000000 Binary files a/static/icons/06001F8C.png and /dev/null differ diff --git a/static/icons/06001F8D.png b/static/icons/06001F8D.png deleted file mode 100755 index c2f8c466..00000000 Binary files a/static/icons/06001F8D.png and /dev/null differ diff --git a/static/icons/06001F8E.png b/static/icons/06001F8E.png deleted file mode 100755 index 14095596..00000000 Binary files a/static/icons/06001F8E.png and /dev/null differ diff --git a/static/icons/06001F8F.png b/static/icons/06001F8F.png deleted file mode 100755 index d9c56696..00000000 Binary files a/static/icons/06001F8F.png and /dev/null differ diff --git a/static/icons/06001F91.png b/static/icons/06001F91.png deleted file mode 100755 index 0a008860..00000000 Binary files a/static/icons/06001F91.png and /dev/null differ diff --git a/static/icons/06001F92.png b/static/icons/06001F92.png deleted file mode 100755 index daac5bc2..00000000 Binary files a/static/icons/06001F92.png and /dev/null differ diff --git a/static/icons/06001F93.png b/static/icons/06001F93.png deleted file mode 100755 index d1abf673..00000000 Binary files a/static/icons/06001F93.png and /dev/null differ diff --git a/static/icons/06001F94.png b/static/icons/06001F94.png deleted file mode 100755 index d61c6b6e..00000000 Binary files a/static/icons/06001F94.png and /dev/null differ diff --git a/static/icons/06001F95.png b/static/icons/06001F95.png deleted file mode 100755 index bf3ff904..00000000 Binary files a/static/icons/06001F95.png and /dev/null differ diff --git a/static/icons/06001F96.png b/static/icons/06001F96.png deleted file mode 100755 index 255281f9..00000000 Binary files a/static/icons/06001F96.png and /dev/null differ diff --git a/static/icons/06001F97.png b/static/icons/06001F97.png deleted file mode 100755 index 945bd953..00000000 Binary files a/static/icons/06001F97.png and /dev/null differ diff --git a/static/icons/06001F98.png b/static/icons/06001F98.png deleted file mode 100755 index c5e27b84..00000000 Binary files a/static/icons/06001F98.png and /dev/null differ diff --git a/static/icons/06001F9A.png b/static/icons/06001F9A.png deleted file mode 100755 index 4875ab02..00000000 Binary files a/static/icons/06001F9A.png and /dev/null differ diff --git a/static/icons/06001F9B.png b/static/icons/06001F9B.png deleted file mode 100755 index 2530f2ac..00000000 Binary files a/static/icons/06001F9B.png and /dev/null differ diff --git a/static/icons/06001F9C.png b/static/icons/06001F9C.png deleted file mode 100755 index 50614b8a..00000000 Binary files a/static/icons/06001F9C.png and /dev/null differ diff --git a/static/icons/06001F9D.png b/static/icons/06001F9D.png deleted file mode 100755 index 85cf339a..00000000 Binary files a/static/icons/06001F9D.png and /dev/null differ diff --git a/static/icons/06001F9E.png b/static/icons/06001F9E.png deleted file mode 100755 index 6837e45a..00000000 Binary files a/static/icons/06001F9E.png and /dev/null differ diff --git a/static/icons/06001F9F.png b/static/icons/06001F9F.png deleted file mode 100755 index a34f2e92..00000000 Binary files a/static/icons/06001F9F.png and /dev/null differ diff --git a/static/icons/06001FA0.png b/static/icons/06001FA0.png deleted file mode 100755 index 347a9d74..00000000 Binary files a/static/icons/06001FA0.png and /dev/null differ diff --git a/static/icons/06001FA1.png b/static/icons/06001FA1.png deleted file mode 100755 index 243f57a6..00000000 Binary files a/static/icons/06001FA1.png and /dev/null differ diff --git a/static/icons/06001FA3.png b/static/icons/06001FA3.png deleted file mode 100755 index e9fa87ad..00000000 Binary files a/static/icons/06001FA3.png and /dev/null differ diff --git a/static/icons/06001FA4.png b/static/icons/06001FA4.png deleted file mode 100755 index da32e8ea..00000000 Binary files a/static/icons/06001FA4.png and /dev/null differ diff --git a/static/icons/06001FA5.png b/static/icons/06001FA5.png deleted file mode 100755 index 84d8f1ea..00000000 Binary files a/static/icons/06001FA5.png and /dev/null differ diff --git a/static/icons/06001FA6.png b/static/icons/06001FA6.png deleted file mode 100755 index 2619c278..00000000 Binary files a/static/icons/06001FA6.png and /dev/null differ diff --git a/static/icons/06001FA7.png b/static/icons/06001FA7.png deleted file mode 100755 index 919b2ff4..00000000 Binary files a/static/icons/06001FA7.png and /dev/null differ diff --git a/static/icons/06001FA8.png b/static/icons/06001FA8.png deleted file mode 100755 index 09462b9e..00000000 Binary files a/static/icons/06001FA8.png and /dev/null differ diff --git a/static/icons/06001FA9.png b/static/icons/06001FA9.png deleted file mode 100755 index 9a3f03a0..00000000 Binary files a/static/icons/06001FA9.png and /dev/null differ diff --git a/static/icons/06001FAA.png b/static/icons/06001FAA.png deleted file mode 100755 index 285de625..00000000 Binary files a/static/icons/06001FAA.png and /dev/null differ diff --git a/static/icons/06001FAB.png b/static/icons/06001FAB.png deleted file mode 100755 index 8d333760..00000000 Binary files a/static/icons/06001FAB.png and /dev/null differ diff --git a/static/icons/06001FAC.png b/static/icons/06001FAC.png deleted file mode 100755 index 4fb7fff0..00000000 Binary files a/static/icons/06001FAC.png and /dev/null differ diff --git a/static/icons/06001FAD.png b/static/icons/06001FAD.png deleted file mode 100755 index 48aaa324..00000000 Binary files a/static/icons/06001FAD.png and /dev/null differ diff --git a/static/icons/06001FAE.png b/static/icons/06001FAE.png deleted file mode 100755 index 9408cacb..00000000 Binary files a/static/icons/06001FAE.png and /dev/null differ diff --git a/static/icons/06001FAF.png b/static/icons/06001FAF.png deleted file mode 100755 index aeb78ad6..00000000 Binary files a/static/icons/06001FAF.png and /dev/null differ diff --git a/static/icons/06001FB0.png b/static/icons/06001FB0.png deleted file mode 100755 index ef2264be..00000000 Binary files a/static/icons/06001FB0.png and /dev/null differ diff --git a/static/icons/06001FB1.png b/static/icons/06001FB1.png deleted file mode 100755 index 397d4756..00000000 Binary files a/static/icons/06001FB1.png and /dev/null differ diff --git a/static/icons/06001FB2.png b/static/icons/06001FB2.png deleted file mode 100755 index b64bc5f0..00000000 Binary files a/static/icons/06001FB2.png and /dev/null differ diff --git a/static/icons/06001FB3.png b/static/icons/06001FB3.png deleted file mode 100755 index dd6adf4f..00000000 Binary files a/static/icons/06001FB3.png and /dev/null differ diff --git a/static/icons/06001FB4.png b/static/icons/06001FB4.png deleted file mode 100755 index 67e48093..00000000 Binary files a/static/icons/06001FB4.png and /dev/null differ diff --git a/static/icons/06001FB5.png b/static/icons/06001FB5.png deleted file mode 100755 index 4f93cdfc..00000000 Binary files a/static/icons/06001FB5.png and /dev/null differ diff --git a/static/icons/06001FB6.png b/static/icons/06001FB6.png deleted file mode 100755 index ef4ec36f..00000000 Binary files a/static/icons/06001FB6.png and /dev/null differ diff --git a/static/icons/06001FB7.png b/static/icons/06001FB7.png deleted file mode 100755 index f61de3f3..00000000 Binary files a/static/icons/06001FB7.png and /dev/null differ diff --git a/static/icons/06001FB8.png b/static/icons/06001FB8.png deleted file mode 100755 index fb0196e7..00000000 Binary files a/static/icons/06001FB8.png and /dev/null differ diff --git a/static/icons/06001FB9.png b/static/icons/06001FB9.png deleted file mode 100755 index c4b19ef2..00000000 Binary files a/static/icons/06001FB9.png and /dev/null differ diff --git a/static/icons/06001FBA.png b/static/icons/06001FBA.png deleted file mode 100755 index 7bb210e7..00000000 Binary files a/static/icons/06001FBA.png and /dev/null differ diff --git a/static/icons/06001FBB.png b/static/icons/06001FBB.png deleted file mode 100755 index 1d4afc64..00000000 Binary files a/static/icons/06001FBB.png and /dev/null differ diff --git a/static/icons/06001FBC.png b/static/icons/06001FBC.png deleted file mode 100755 index bed2d221..00000000 Binary files a/static/icons/06001FBC.png and /dev/null differ diff --git a/static/icons/06001FBD.png b/static/icons/06001FBD.png deleted file mode 100755 index d7db7301..00000000 Binary files a/static/icons/06001FBD.png and /dev/null differ diff --git a/static/icons/06001FBE.png b/static/icons/06001FBE.png deleted file mode 100755 index 5e418663..00000000 Binary files a/static/icons/06001FBE.png and /dev/null differ diff --git a/static/icons/06001FBF.png b/static/icons/06001FBF.png deleted file mode 100755 index 396e94fb..00000000 Binary files a/static/icons/06001FBF.png and /dev/null differ diff --git a/static/icons/06001FC0.png b/static/icons/06001FC0.png deleted file mode 100755 index 8068b038..00000000 Binary files a/static/icons/06001FC0.png and /dev/null differ diff --git a/static/icons/06001FC1.png b/static/icons/06001FC1.png deleted file mode 100755 index 1764148f..00000000 Binary files a/static/icons/06001FC1.png and /dev/null differ diff --git a/static/icons/06001FC2.png b/static/icons/06001FC2.png deleted file mode 100755 index f7da537e..00000000 Binary files a/static/icons/06001FC2.png and /dev/null differ diff --git a/static/icons/06001FC3.png b/static/icons/06001FC3.png deleted file mode 100755 index 364e8ec3..00000000 Binary files a/static/icons/06001FC3.png and /dev/null differ diff --git a/static/icons/06001FC4.png b/static/icons/06001FC4.png deleted file mode 100755 index 0eb303b3..00000000 Binary files a/static/icons/06001FC4.png and /dev/null differ diff --git a/static/icons/06001FC5.png b/static/icons/06001FC5.png deleted file mode 100755 index abc9f5cf..00000000 Binary files a/static/icons/06001FC5.png and /dev/null differ diff --git a/static/icons/06001FC6.png b/static/icons/06001FC6.png deleted file mode 100755 index 63527d17..00000000 Binary files a/static/icons/06001FC6.png and /dev/null differ diff --git a/static/icons/06001FC7.png b/static/icons/06001FC7.png deleted file mode 100755 index 39024677..00000000 Binary files a/static/icons/06001FC7.png and /dev/null differ diff --git a/static/icons/06001FC8.png b/static/icons/06001FC8.png deleted file mode 100755 index cd8c4d0d..00000000 Binary files a/static/icons/06001FC8.png and /dev/null differ diff --git a/static/icons/06001FD5.png b/static/icons/06001FD5.png deleted file mode 100755 index 63e0d2f8..00000000 Binary files a/static/icons/06001FD5.png and /dev/null differ diff --git a/static/icons/06001FD6.png b/static/icons/06001FD6.png deleted file mode 100755 index a798c323..00000000 Binary files a/static/icons/06001FD6.png and /dev/null differ diff --git a/static/icons/06001FD7.png b/static/icons/06001FD7.png deleted file mode 100755 index cdcef516..00000000 Binary files a/static/icons/06001FD7.png and /dev/null differ diff --git a/static/icons/06001FD8.png b/static/icons/06001FD8.png deleted file mode 100755 index e22a69f4..00000000 Binary files a/static/icons/06001FD8.png and /dev/null differ diff --git a/static/icons/06001FD9.png b/static/icons/06001FD9.png deleted file mode 100755 index e4fbfebd..00000000 Binary files a/static/icons/06001FD9.png and /dev/null differ diff --git a/static/icons/06001FE1.png b/static/icons/06001FE1.png deleted file mode 100755 index 788b3c00..00000000 Binary files a/static/icons/06001FE1.png and /dev/null differ diff --git a/static/icons/06001FE2.png b/static/icons/06001FE2.png deleted file mode 100755 index a8852deb..00000000 Binary files a/static/icons/06001FE2.png and /dev/null differ diff --git a/static/icons/06001FE3.png b/static/icons/06001FE3.png deleted file mode 100755 index 9b3627ed..00000000 Binary files a/static/icons/06001FE3.png and /dev/null differ diff --git a/static/icons/06001FE4.png b/static/icons/06001FE4.png deleted file mode 100755 index 3d2f9941..00000000 Binary files a/static/icons/06001FE4.png and /dev/null differ diff --git a/static/icons/06001FE5.png b/static/icons/06001FE5.png deleted file mode 100755 index bb389c17..00000000 Binary files a/static/icons/06001FE5.png and /dev/null differ diff --git a/static/icons/06001FE6.png b/static/icons/06001FE6.png deleted file mode 100755 index 5eb73f2c..00000000 Binary files a/static/icons/06001FE6.png and /dev/null differ diff --git a/static/icons/06001FE7.png b/static/icons/06001FE7.png deleted file mode 100755 index cf64c06f..00000000 Binary files a/static/icons/06001FE7.png and /dev/null differ diff --git a/static/icons/06001FE8.png b/static/icons/06001FE8.png deleted file mode 100755 index 48e3f8ff..00000000 Binary files a/static/icons/06001FE8.png and /dev/null differ diff --git a/static/icons/06001FE9.png b/static/icons/06001FE9.png deleted file mode 100755 index 0cdde153..00000000 Binary files a/static/icons/06001FE9.png and /dev/null differ diff --git a/static/icons/06001FEA.png b/static/icons/06001FEA.png deleted file mode 100755 index 7ab5bd04..00000000 Binary files a/static/icons/06001FEA.png and /dev/null differ diff --git a/static/icons/06001FEB.png b/static/icons/06001FEB.png deleted file mode 100755 index 64bb5274..00000000 Binary files a/static/icons/06001FEB.png and /dev/null differ diff --git a/static/icons/06001FEC.png b/static/icons/06001FEC.png deleted file mode 100755 index 744f7262..00000000 Binary files a/static/icons/06001FEC.png and /dev/null differ diff --git a/static/icons/06001FED.png b/static/icons/06001FED.png deleted file mode 100755 index 7f4b79be..00000000 Binary files a/static/icons/06001FED.png and /dev/null differ diff --git a/static/icons/06001FEE.png b/static/icons/06001FEE.png deleted file mode 100755 index 89588b4e..00000000 Binary files a/static/icons/06001FEE.png and /dev/null differ diff --git a/static/icons/06001FEF.png b/static/icons/06001FEF.png deleted file mode 100755 index 33c9c6ac..00000000 Binary files a/static/icons/06001FEF.png and /dev/null differ diff --git a/static/icons/06001FF0.png b/static/icons/06001FF0.png deleted file mode 100755 index 70336f0e..00000000 Binary files a/static/icons/06001FF0.png and /dev/null differ diff --git a/static/icons/06001FF1.png b/static/icons/06001FF1.png deleted file mode 100755 index dae6de7b..00000000 Binary files a/static/icons/06001FF1.png and /dev/null differ diff --git a/static/icons/06001FF2.png b/static/icons/06001FF2.png deleted file mode 100755 index 52ce7a90..00000000 Binary files a/static/icons/06001FF2.png and /dev/null differ diff --git a/static/icons/06001FF3.png b/static/icons/06001FF3.png deleted file mode 100755 index 21d54bbc..00000000 Binary files a/static/icons/06001FF3.png and /dev/null differ diff --git a/static/icons/06001FF4.png b/static/icons/06001FF4.png deleted file mode 100755 index fa27297a..00000000 Binary files a/static/icons/06001FF4.png and /dev/null differ diff --git a/static/icons/06001FF5.png b/static/icons/06001FF5.png deleted file mode 100755 index c0aac7d1..00000000 Binary files a/static/icons/06001FF5.png and /dev/null differ diff --git a/static/icons/06001FF6.png b/static/icons/06001FF6.png deleted file mode 100755 index 2980956f..00000000 Binary files a/static/icons/06001FF6.png and /dev/null differ diff --git a/static/icons/06001FF8.png b/static/icons/06001FF8.png deleted file mode 100755 index 243a4226..00000000 Binary files a/static/icons/06001FF8.png and /dev/null differ diff --git a/static/icons/06001FF9.png b/static/icons/06001FF9.png deleted file mode 100755 index f1e6d389..00000000 Binary files a/static/icons/06001FF9.png and /dev/null differ diff --git a/static/icons/06001FFA.png b/static/icons/06001FFA.png deleted file mode 100755 index 1e1506ba..00000000 Binary files a/static/icons/06001FFA.png and /dev/null differ diff --git a/static/icons/06001FFC.png b/static/icons/06001FFC.png deleted file mode 100755 index 1def22d0..00000000 Binary files a/static/icons/06001FFC.png and /dev/null differ diff --git a/static/icons/06001FFD.png b/static/icons/06001FFD.png deleted file mode 100755 index 789cd2fe..00000000 Binary files a/static/icons/06001FFD.png and /dev/null differ diff --git a/static/icons/06001FFE.png b/static/icons/06001FFE.png deleted file mode 100755 index 35805e11..00000000 Binary files a/static/icons/06001FFE.png and /dev/null differ diff --git a/static/icons/06001FFF.png b/static/icons/06001FFF.png deleted file mode 100755 index 7b8529f0..00000000 Binary files a/static/icons/06001FFF.png and /dev/null differ diff --git a/static/icons/06002000.png b/static/icons/06002000.png deleted file mode 100755 index d5c0eb19..00000000 Binary files a/static/icons/06002000.png and /dev/null differ diff --git a/static/icons/06002001.png b/static/icons/06002001.png deleted file mode 100755 index 8a9e1168..00000000 Binary files a/static/icons/06002001.png and /dev/null differ diff --git a/static/icons/06002002.png b/static/icons/06002002.png deleted file mode 100755 index a4c1989e..00000000 Binary files a/static/icons/06002002.png and /dev/null differ diff --git a/static/icons/06002003.png b/static/icons/06002003.png deleted file mode 100755 index a83e2922..00000000 Binary files a/static/icons/06002003.png and /dev/null differ diff --git a/static/icons/06002004.png b/static/icons/06002004.png deleted file mode 100755 index 9b3d9d89..00000000 Binary files a/static/icons/06002004.png and /dev/null differ diff --git a/static/icons/06002005.png b/static/icons/06002005.png deleted file mode 100755 index 89dbd3af..00000000 Binary files a/static/icons/06002005.png and /dev/null differ diff --git a/static/icons/06002006.png b/static/icons/06002006.png deleted file mode 100755 index ac10bf8c..00000000 Binary files a/static/icons/06002006.png and /dev/null differ diff --git a/static/icons/06002007.png b/static/icons/06002007.png deleted file mode 100755 index 7376f060..00000000 Binary files a/static/icons/06002007.png and /dev/null differ diff --git a/static/icons/06002008.png b/static/icons/06002008.png deleted file mode 100755 index 392eb6bb..00000000 Binary files a/static/icons/06002008.png and /dev/null differ diff --git a/static/icons/06002009.png b/static/icons/06002009.png deleted file mode 100755 index ba4f0d4b..00000000 Binary files a/static/icons/06002009.png and /dev/null differ diff --git a/static/icons/0600200A.png b/static/icons/0600200A.png deleted file mode 100755 index e9674c36..00000000 Binary files a/static/icons/0600200A.png and /dev/null differ diff --git a/static/icons/0600200B.png b/static/icons/0600200B.png deleted file mode 100755 index 7cdee295..00000000 Binary files a/static/icons/0600200B.png and /dev/null differ diff --git a/static/icons/0600200C.png b/static/icons/0600200C.png deleted file mode 100755 index 27ab4ece..00000000 Binary files a/static/icons/0600200C.png and /dev/null differ diff --git a/static/icons/0600200D.png b/static/icons/0600200D.png deleted file mode 100755 index 9986bf14..00000000 Binary files a/static/icons/0600200D.png and /dev/null differ diff --git a/static/icons/0600200E.png b/static/icons/0600200E.png deleted file mode 100755 index 61ee46a1..00000000 Binary files a/static/icons/0600200E.png and /dev/null differ diff --git a/static/icons/0600200F.png b/static/icons/0600200F.png deleted file mode 100755 index fed675ce..00000000 Binary files a/static/icons/0600200F.png and /dev/null differ diff --git a/static/icons/06002010.png b/static/icons/06002010.png deleted file mode 100755 index b348b66e..00000000 Binary files a/static/icons/06002010.png and /dev/null differ diff --git a/static/icons/06002011.png b/static/icons/06002011.png deleted file mode 100755 index 7927f261..00000000 Binary files a/static/icons/06002011.png and /dev/null differ diff --git a/static/icons/06002012.png b/static/icons/06002012.png deleted file mode 100755 index 37a18a6b..00000000 Binary files a/static/icons/06002012.png and /dev/null differ diff --git a/static/icons/06002013.png b/static/icons/06002013.png deleted file mode 100755 index 1095d4db..00000000 Binary files a/static/icons/06002013.png and /dev/null differ diff --git a/static/icons/06002014.png b/static/icons/06002014.png deleted file mode 100755 index d9b56b0f..00000000 Binary files a/static/icons/06002014.png and /dev/null differ diff --git a/static/icons/06002015.png b/static/icons/06002015.png deleted file mode 100755 index 8bdb1a53..00000000 Binary files a/static/icons/06002015.png and /dev/null differ diff --git a/static/icons/06002016.png b/static/icons/06002016.png deleted file mode 100755 index 4cef6936..00000000 Binary files a/static/icons/06002016.png and /dev/null differ diff --git a/static/icons/06002017.png b/static/icons/06002017.png deleted file mode 100755 index 3af2a68c..00000000 Binary files a/static/icons/06002017.png and /dev/null differ diff --git a/static/icons/06002018.png b/static/icons/06002018.png deleted file mode 100755 index 80a1a8d2..00000000 Binary files a/static/icons/06002018.png and /dev/null differ diff --git a/static/icons/06002019.png b/static/icons/06002019.png deleted file mode 100755 index 8870d675..00000000 Binary files a/static/icons/06002019.png and /dev/null differ diff --git a/static/icons/0600201A.png b/static/icons/0600201A.png deleted file mode 100755 index 275e6512..00000000 Binary files a/static/icons/0600201A.png and /dev/null differ diff --git a/static/icons/0600201B.png b/static/icons/0600201B.png deleted file mode 100755 index 960f42bd..00000000 Binary files a/static/icons/0600201B.png and /dev/null differ diff --git a/static/icons/0600201C.png b/static/icons/0600201C.png deleted file mode 100755 index 0a05d03b..00000000 Binary files a/static/icons/0600201C.png and /dev/null differ diff --git a/static/icons/0600201D.png b/static/icons/0600201D.png deleted file mode 100755 index b1587386..00000000 Binary files a/static/icons/0600201D.png and /dev/null differ diff --git a/static/icons/0600201E.png b/static/icons/0600201E.png deleted file mode 100755 index da8614f6..00000000 Binary files a/static/icons/0600201E.png and /dev/null differ diff --git a/static/icons/0600201F.png b/static/icons/0600201F.png deleted file mode 100755 index 971117bb..00000000 Binary files a/static/icons/0600201F.png and /dev/null differ diff --git a/static/icons/06002020.png b/static/icons/06002020.png deleted file mode 100755 index 61a585cb..00000000 Binary files a/static/icons/06002020.png and /dev/null differ diff --git a/static/icons/06002021.png b/static/icons/06002021.png deleted file mode 100755 index 45f90f8b..00000000 Binary files a/static/icons/06002021.png and /dev/null differ diff --git a/static/icons/06002022.png b/static/icons/06002022.png deleted file mode 100755 index 52e37b3d..00000000 Binary files a/static/icons/06002022.png and /dev/null differ diff --git a/static/icons/06002023.png b/static/icons/06002023.png deleted file mode 100755 index 39bc9f95..00000000 Binary files a/static/icons/06002023.png and /dev/null differ diff --git a/static/icons/06002024.png b/static/icons/06002024.png deleted file mode 100755 index 35906e25..00000000 Binary files a/static/icons/06002024.png and /dev/null differ diff --git a/static/icons/06002025.png b/static/icons/06002025.png deleted file mode 100755 index 0fdf6ca5..00000000 Binary files a/static/icons/06002025.png and /dev/null differ diff --git a/static/icons/06002026.png b/static/icons/06002026.png deleted file mode 100755 index 2d775a06..00000000 Binary files a/static/icons/06002026.png and /dev/null differ diff --git a/static/icons/06002027.png b/static/icons/06002027.png deleted file mode 100755 index 2085cbe3..00000000 Binary files a/static/icons/06002027.png and /dev/null differ diff --git a/static/icons/06002028.png b/static/icons/06002028.png deleted file mode 100755 index a156b2b6..00000000 Binary files a/static/icons/06002028.png and /dev/null differ diff --git a/static/icons/06002029.png b/static/icons/06002029.png deleted file mode 100755 index 0987c0eb..00000000 Binary files a/static/icons/06002029.png and /dev/null differ diff --git a/static/icons/0600202B.png b/static/icons/0600202B.png deleted file mode 100755 index f8691875..00000000 Binary files a/static/icons/0600202B.png and /dev/null differ diff --git a/static/icons/0600202C.png b/static/icons/0600202C.png deleted file mode 100755 index 6ba54f4d..00000000 Binary files a/static/icons/0600202C.png and /dev/null differ diff --git a/static/icons/0600202D.png b/static/icons/0600202D.png deleted file mode 100755 index 051ba8c9..00000000 Binary files a/static/icons/0600202D.png and /dev/null differ diff --git a/static/icons/0600202E.png b/static/icons/0600202E.png deleted file mode 100755 index dfaeb6ec..00000000 Binary files a/static/icons/0600202E.png and /dev/null differ diff --git a/static/icons/0600202F.png b/static/icons/0600202F.png deleted file mode 100755 index e395d633..00000000 Binary files a/static/icons/0600202F.png and /dev/null differ diff --git a/static/icons/06002030.png b/static/icons/06002030.png deleted file mode 100755 index dfdad92c..00000000 Binary files a/static/icons/06002030.png and /dev/null differ diff --git a/static/icons/06002031.png b/static/icons/06002031.png deleted file mode 100755 index eca0640f..00000000 Binary files a/static/icons/06002031.png and /dev/null differ diff --git a/static/icons/06002032.png b/static/icons/06002032.png deleted file mode 100755 index a873dac1..00000000 Binary files a/static/icons/06002032.png and /dev/null differ diff --git a/static/icons/06002033.png b/static/icons/06002033.png deleted file mode 100755 index e9f90f9a..00000000 Binary files a/static/icons/06002033.png and /dev/null differ diff --git a/static/icons/06002034.png b/static/icons/06002034.png deleted file mode 100755 index a89c2302..00000000 Binary files a/static/icons/06002034.png and /dev/null differ diff --git a/static/icons/06002035.png b/static/icons/06002035.png deleted file mode 100755 index df19e23e..00000000 Binary files a/static/icons/06002035.png and /dev/null differ diff --git a/static/icons/06002036.png b/static/icons/06002036.png deleted file mode 100755 index 8028c407..00000000 Binary files a/static/icons/06002036.png and /dev/null differ diff --git a/static/icons/06002037.png b/static/icons/06002037.png deleted file mode 100755 index ae3011bf..00000000 Binary files a/static/icons/06002037.png and /dev/null differ diff --git a/static/icons/06002038.png b/static/icons/06002038.png deleted file mode 100755 index 3628b319..00000000 Binary files a/static/icons/06002038.png and /dev/null differ diff --git a/static/icons/06002039.png b/static/icons/06002039.png deleted file mode 100755 index 0479851a..00000000 Binary files a/static/icons/06002039.png and /dev/null differ diff --git a/static/icons/0600203A.png b/static/icons/0600203A.png deleted file mode 100755 index 2e56fcda..00000000 Binary files a/static/icons/0600203A.png and /dev/null differ diff --git a/static/icons/0600203B.png b/static/icons/0600203B.png deleted file mode 100755 index 2f5b5ed1..00000000 Binary files a/static/icons/0600203B.png and /dev/null differ diff --git a/static/icons/0600203C.png b/static/icons/0600203C.png deleted file mode 100755 index d6f5b341..00000000 Binary files a/static/icons/0600203C.png and /dev/null differ diff --git a/static/icons/0600203D.png b/static/icons/0600203D.png deleted file mode 100755 index 70149349..00000000 Binary files a/static/icons/0600203D.png and /dev/null differ diff --git a/static/icons/0600203E.png b/static/icons/0600203E.png deleted file mode 100755 index 1382520e..00000000 Binary files a/static/icons/0600203E.png and /dev/null differ diff --git a/static/icons/0600203F.png b/static/icons/0600203F.png deleted file mode 100755 index 8738d839..00000000 Binary files a/static/icons/0600203F.png and /dev/null differ diff --git a/static/icons/06002040.png b/static/icons/06002040.png deleted file mode 100755 index c3f07b5f..00000000 Binary files a/static/icons/06002040.png and /dev/null differ diff --git a/static/icons/06002041.png b/static/icons/06002041.png deleted file mode 100755 index 7c0afa70..00000000 Binary files a/static/icons/06002041.png and /dev/null differ diff --git a/static/icons/06002042.png b/static/icons/06002042.png deleted file mode 100755 index 0fdf7fcc..00000000 Binary files a/static/icons/06002042.png and /dev/null differ diff --git a/static/icons/06002043.png b/static/icons/06002043.png deleted file mode 100755 index 84b945e5..00000000 Binary files a/static/icons/06002043.png and /dev/null differ diff --git a/static/icons/06002044.png b/static/icons/06002044.png deleted file mode 100755 index 2dd0cd68..00000000 Binary files a/static/icons/06002044.png and /dev/null differ diff --git a/static/icons/06002045.png b/static/icons/06002045.png deleted file mode 100755 index eee061cf..00000000 Binary files a/static/icons/06002045.png and /dev/null differ diff --git a/static/icons/06002046.png b/static/icons/06002046.png deleted file mode 100755 index d72281ac..00000000 Binary files a/static/icons/06002046.png and /dev/null differ diff --git a/static/icons/06002047.png b/static/icons/06002047.png deleted file mode 100755 index 12ec5ea5..00000000 Binary files a/static/icons/06002047.png and /dev/null differ diff --git a/static/icons/06002048.png b/static/icons/06002048.png deleted file mode 100755 index 87373898..00000000 Binary files a/static/icons/06002048.png and /dev/null differ diff --git a/static/icons/06002049.png b/static/icons/06002049.png deleted file mode 100755 index 6d48b641..00000000 Binary files a/static/icons/06002049.png and /dev/null differ diff --git a/static/icons/0600204A.png b/static/icons/0600204A.png deleted file mode 100755 index 2174f561..00000000 Binary files a/static/icons/0600204A.png and /dev/null differ diff --git a/static/icons/0600204B.png b/static/icons/0600204B.png deleted file mode 100755 index 174e55c6..00000000 Binary files a/static/icons/0600204B.png and /dev/null differ diff --git a/static/icons/0600204C.png b/static/icons/0600204C.png deleted file mode 100755 index a0851ed6..00000000 Binary files a/static/icons/0600204C.png and /dev/null differ diff --git a/static/icons/0600204D.png b/static/icons/0600204D.png deleted file mode 100755 index 06adb5e7..00000000 Binary files a/static/icons/0600204D.png and /dev/null differ diff --git a/static/icons/0600204E.png b/static/icons/0600204E.png deleted file mode 100755 index d7c3bf1e..00000000 Binary files a/static/icons/0600204E.png and /dev/null differ diff --git a/static/icons/0600204F.png b/static/icons/0600204F.png deleted file mode 100755 index 934bd55f..00000000 Binary files a/static/icons/0600204F.png and /dev/null differ diff --git a/static/icons/06002050.png b/static/icons/06002050.png deleted file mode 100755 index 64a09c73..00000000 Binary files a/static/icons/06002050.png and /dev/null differ diff --git a/static/icons/06002051.png b/static/icons/06002051.png deleted file mode 100755 index ba5ade0f..00000000 Binary files a/static/icons/06002051.png and /dev/null differ diff --git a/static/icons/06002052.png b/static/icons/06002052.png deleted file mode 100755 index 694058eb..00000000 Binary files a/static/icons/06002052.png and /dev/null differ diff --git a/static/icons/06002053.png b/static/icons/06002053.png deleted file mode 100755 index 3c1c2192..00000000 Binary files a/static/icons/06002053.png and /dev/null differ diff --git a/static/icons/06002054.png b/static/icons/06002054.png deleted file mode 100755 index cc53e8b1..00000000 Binary files a/static/icons/06002054.png and /dev/null differ diff --git a/static/icons/06002055.png b/static/icons/06002055.png deleted file mode 100755 index fdaee9d3..00000000 Binary files a/static/icons/06002055.png and /dev/null differ diff --git a/static/icons/06002056.png b/static/icons/06002056.png deleted file mode 100755 index b2e836ee..00000000 Binary files a/static/icons/06002056.png and /dev/null differ diff --git a/static/icons/06002057.png b/static/icons/06002057.png deleted file mode 100755 index b9224412..00000000 Binary files a/static/icons/06002057.png and /dev/null differ diff --git a/static/icons/06002058.png b/static/icons/06002058.png deleted file mode 100755 index bbd01acf..00000000 Binary files a/static/icons/06002058.png and /dev/null differ diff --git a/static/icons/06002059.png b/static/icons/06002059.png deleted file mode 100755 index 9576fa02..00000000 Binary files a/static/icons/06002059.png and /dev/null differ diff --git a/static/icons/0600205A.png b/static/icons/0600205A.png deleted file mode 100755 index ac3afadb..00000000 Binary files a/static/icons/0600205A.png and /dev/null differ diff --git a/static/icons/0600205B.png b/static/icons/0600205B.png deleted file mode 100755 index d6246426..00000000 Binary files a/static/icons/0600205B.png and /dev/null differ diff --git a/static/icons/0600205C.png b/static/icons/0600205C.png deleted file mode 100755 index 8b2478de..00000000 Binary files a/static/icons/0600205C.png and /dev/null differ diff --git a/static/icons/0600205D.png b/static/icons/0600205D.png deleted file mode 100755 index b47fe0af..00000000 Binary files a/static/icons/0600205D.png and /dev/null differ diff --git a/static/icons/0600205E.png b/static/icons/0600205E.png deleted file mode 100755 index 1c8cc945..00000000 Binary files a/static/icons/0600205E.png and /dev/null differ diff --git a/static/icons/0600205F.png b/static/icons/0600205F.png deleted file mode 100755 index 0a22de3f..00000000 Binary files a/static/icons/0600205F.png and /dev/null differ diff --git a/static/icons/06002060.png b/static/icons/06002060.png deleted file mode 100755 index 208df587..00000000 Binary files a/static/icons/06002060.png and /dev/null differ diff --git a/static/icons/06002061.png b/static/icons/06002061.png deleted file mode 100755 index 8b257e68..00000000 Binary files a/static/icons/06002061.png and /dev/null differ diff --git a/static/icons/06002062.png b/static/icons/06002062.png deleted file mode 100755 index c1230df2..00000000 Binary files a/static/icons/06002062.png and /dev/null differ diff --git a/static/icons/06002063.png b/static/icons/06002063.png deleted file mode 100755 index 684b2858..00000000 Binary files a/static/icons/06002063.png and /dev/null differ diff --git a/static/icons/06002064.png b/static/icons/06002064.png deleted file mode 100755 index 864f70f7..00000000 Binary files a/static/icons/06002064.png and /dev/null differ diff --git a/static/icons/06002065.png b/static/icons/06002065.png deleted file mode 100755 index 9a1429ca..00000000 Binary files a/static/icons/06002065.png and /dev/null differ diff --git a/static/icons/06002066.png b/static/icons/06002066.png deleted file mode 100755 index 0c9c9550..00000000 Binary files a/static/icons/06002066.png and /dev/null differ diff --git a/static/icons/06002067.png b/static/icons/06002067.png deleted file mode 100755 index dfbc5650..00000000 Binary files a/static/icons/06002067.png and /dev/null differ diff --git a/static/icons/06002068.png b/static/icons/06002068.png deleted file mode 100755 index 3fa75991..00000000 Binary files a/static/icons/06002068.png and /dev/null differ diff --git a/static/icons/06002069.png b/static/icons/06002069.png deleted file mode 100755 index 5869565a..00000000 Binary files a/static/icons/06002069.png and /dev/null differ diff --git a/static/icons/0600206A.png b/static/icons/0600206A.png deleted file mode 100755 index aa604dd8..00000000 Binary files a/static/icons/0600206A.png and /dev/null differ diff --git a/static/icons/0600206B.png b/static/icons/0600206B.png deleted file mode 100755 index 7f4f0117..00000000 Binary files a/static/icons/0600206B.png and /dev/null differ diff --git a/static/icons/0600206C.png b/static/icons/0600206C.png deleted file mode 100755 index c8682fe0..00000000 Binary files a/static/icons/0600206C.png and /dev/null differ diff --git a/static/icons/0600206D.png b/static/icons/0600206D.png deleted file mode 100755 index 804f17d0..00000000 Binary files a/static/icons/0600206D.png and /dev/null differ diff --git a/static/icons/0600206E.png b/static/icons/0600206E.png deleted file mode 100755 index cc63ec9e..00000000 Binary files a/static/icons/0600206E.png and /dev/null differ diff --git a/static/icons/0600206F.png b/static/icons/0600206F.png deleted file mode 100755 index 8f413822..00000000 Binary files a/static/icons/0600206F.png and /dev/null differ diff --git a/static/icons/06002070.png b/static/icons/06002070.png deleted file mode 100755 index a84ba57b..00000000 Binary files a/static/icons/06002070.png and /dev/null differ diff --git a/static/icons/06002071.png b/static/icons/06002071.png deleted file mode 100755 index 57fee1bc..00000000 Binary files a/static/icons/06002071.png and /dev/null differ diff --git a/static/icons/06002072.png b/static/icons/06002072.png deleted file mode 100755 index 963ac16d..00000000 Binary files a/static/icons/06002072.png and /dev/null differ diff --git a/static/icons/06002073.png b/static/icons/06002073.png deleted file mode 100755 index 6ade81bb..00000000 Binary files a/static/icons/06002073.png and /dev/null differ diff --git a/static/icons/06002074.png b/static/icons/06002074.png deleted file mode 100755 index 771c42d2..00000000 Binary files a/static/icons/06002074.png and /dev/null differ diff --git a/static/icons/06002075.png b/static/icons/06002075.png deleted file mode 100755 index 8e564a33..00000000 Binary files a/static/icons/06002075.png and /dev/null differ diff --git a/static/icons/06002076.png b/static/icons/06002076.png deleted file mode 100755 index a438da62..00000000 Binary files a/static/icons/06002076.png and /dev/null differ diff --git a/static/icons/06002077.png b/static/icons/06002077.png deleted file mode 100755 index 242c46af..00000000 Binary files a/static/icons/06002077.png and /dev/null differ diff --git a/static/icons/06002078.png b/static/icons/06002078.png deleted file mode 100755 index 0c23fd9c..00000000 Binary files a/static/icons/06002078.png and /dev/null differ diff --git a/static/icons/06002079.png b/static/icons/06002079.png deleted file mode 100755 index 9dc70611..00000000 Binary files a/static/icons/06002079.png and /dev/null differ diff --git a/static/icons/0600207B.png b/static/icons/0600207B.png deleted file mode 100755 index 7a307278..00000000 Binary files a/static/icons/0600207B.png and /dev/null differ diff --git a/static/icons/0600207C.png b/static/icons/0600207C.png deleted file mode 100755 index 7b99014f..00000000 Binary files a/static/icons/0600207C.png and /dev/null differ diff --git a/static/icons/0600207D.png b/static/icons/0600207D.png deleted file mode 100755 index 44fb8100..00000000 Binary files a/static/icons/0600207D.png and /dev/null differ diff --git a/static/icons/0600207E.png b/static/icons/0600207E.png deleted file mode 100755 index 303ffbdd..00000000 Binary files a/static/icons/0600207E.png and /dev/null differ diff --git a/static/icons/0600207F.png b/static/icons/0600207F.png deleted file mode 100755 index 79a3e629..00000000 Binary files a/static/icons/0600207F.png and /dev/null differ diff --git a/static/icons/06002080.png b/static/icons/06002080.png deleted file mode 100755 index 1eafa793..00000000 Binary files a/static/icons/06002080.png and /dev/null differ diff --git a/static/icons/06002081.png b/static/icons/06002081.png deleted file mode 100755 index 88ba9650..00000000 Binary files a/static/icons/06002081.png and /dev/null differ diff --git a/static/icons/06002082.png b/static/icons/06002082.png deleted file mode 100755 index 6804c39e..00000000 Binary files a/static/icons/06002082.png and /dev/null differ diff --git a/static/icons/06002083.png b/static/icons/06002083.png deleted file mode 100755 index d1585a5a..00000000 Binary files a/static/icons/06002083.png and /dev/null differ diff --git a/static/icons/06002084.png b/static/icons/06002084.png deleted file mode 100755 index b6958636..00000000 Binary files a/static/icons/06002084.png and /dev/null differ diff --git a/static/icons/06002085.png b/static/icons/06002085.png deleted file mode 100755 index ba0f8bdb..00000000 Binary files a/static/icons/06002085.png and /dev/null differ diff --git a/static/icons/06002086.png b/static/icons/06002086.png deleted file mode 100755 index d021f6b5..00000000 Binary files a/static/icons/06002086.png and /dev/null differ diff --git a/static/icons/06002087.png b/static/icons/06002087.png deleted file mode 100755 index c49a5d2e..00000000 Binary files a/static/icons/06002087.png and /dev/null differ diff --git a/static/icons/06002088.png b/static/icons/06002088.png deleted file mode 100755 index e2881d1d..00000000 Binary files a/static/icons/06002088.png and /dev/null differ diff --git a/static/icons/06002089.png b/static/icons/06002089.png deleted file mode 100755 index aa8ea923..00000000 Binary files a/static/icons/06002089.png and /dev/null differ diff --git a/static/icons/0600208A.png b/static/icons/0600208A.png deleted file mode 100755 index 1f504c27..00000000 Binary files a/static/icons/0600208A.png and /dev/null differ diff --git a/static/icons/0600208B.png b/static/icons/0600208B.png deleted file mode 100755 index 4f3cdb77..00000000 Binary files a/static/icons/0600208B.png and /dev/null differ diff --git a/static/icons/0600208C.png b/static/icons/0600208C.png deleted file mode 100755 index 210f5424..00000000 Binary files a/static/icons/0600208C.png and /dev/null differ diff --git a/static/icons/0600208D.png b/static/icons/0600208D.png deleted file mode 100755 index 6cf4d504..00000000 Binary files a/static/icons/0600208D.png and /dev/null differ diff --git a/static/icons/0600208E.png b/static/icons/0600208E.png deleted file mode 100755 index 56c0facc..00000000 Binary files a/static/icons/0600208E.png and /dev/null differ diff --git a/static/icons/0600208F.png b/static/icons/0600208F.png deleted file mode 100755 index 34eb192d..00000000 Binary files a/static/icons/0600208F.png and /dev/null differ diff --git a/static/icons/06002090.png b/static/icons/06002090.png deleted file mode 100755 index 152c7222..00000000 Binary files a/static/icons/06002090.png and /dev/null differ diff --git a/static/icons/06002091.png b/static/icons/06002091.png deleted file mode 100755 index 8336bd68..00000000 Binary files a/static/icons/06002091.png and /dev/null differ diff --git a/static/icons/06002092.png b/static/icons/06002092.png deleted file mode 100755 index 3e537ffd..00000000 Binary files a/static/icons/06002092.png and /dev/null differ diff --git a/static/icons/06002093.png b/static/icons/06002093.png deleted file mode 100755 index dc70f9ca..00000000 Binary files a/static/icons/06002093.png and /dev/null differ diff --git a/static/icons/06002094.png b/static/icons/06002094.png deleted file mode 100755 index 3d016c0a..00000000 Binary files a/static/icons/06002094.png and /dev/null differ diff --git a/static/icons/06002095.png b/static/icons/06002095.png deleted file mode 100755 index c21bdeef..00000000 Binary files a/static/icons/06002095.png and /dev/null differ diff --git a/static/icons/06002096.png b/static/icons/06002096.png deleted file mode 100755 index 13e6300f..00000000 Binary files a/static/icons/06002096.png and /dev/null differ diff --git a/static/icons/06002097.png b/static/icons/06002097.png deleted file mode 100755 index f6adf972..00000000 Binary files a/static/icons/06002097.png and /dev/null differ diff --git a/static/icons/06002098.png b/static/icons/06002098.png deleted file mode 100755 index 18324a35..00000000 Binary files a/static/icons/06002098.png and /dev/null differ diff --git a/static/icons/06002099.png b/static/icons/06002099.png deleted file mode 100755 index ac28d605..00000000 Binary files a/static/icons/06002099.png and /dev/null differ diff --git a/static/icons/0600209A.png b/static/icons/0600209A.png deleted file mode 100755 index 17109d89..00000000 Binary files a/static/icons/0600209A.png and /dev/null differ diff --git a/static/icons/0600209B.png b/static/icons/0600209B.png deleted file mode 100755 index 4db6bbd9..00000000 Binary files a/static/icons/0600209B.png and /dev/null differ diff --git a/static/icons/0600209C.png b/static/icons/0600209C.png deleted file mode 100755 index 930cb63c..00000000 Binary files a/static/icons/0600209C.png and /dev/null differ diff --git a/static/icons/0600209D.png b/static/icons/0600209D.png deleted file mode 100755 index 3e863ea0..00000000 Binary files a/static/icons/0600209D.png and /dev/null differ diff --git a/static/icons/0600209E.png b/static/icons/0600209E.png deleted file mode 100755 index 903a9883..00000000 Binary files a/static/icons/0600209E.png and /dev/null differ diff --git a/static/icons/0600209F.png b/static/icons/0600209F.png deleted file mode 100755 index db6b73c3..00000000 Binary files a/static/icons/0600209F.png and /dev/null differ diff --git a/static/icons/060020A0.png b/static/icons/060020A0.png deleted file mode 100755 index a2ba832a..00000000 Binary files a/static/icons/060020A0.png and /dev/null differ diff --git a/static/icons/060020A2.png b/static/icons/060020A2.png deleted file mode 100755 index ef0ec30d..00000000 Binary files a/static/icons/060020A2.png and /dev/null differ diff --git a/static/icons/060020A3.png b/static/icons/060020A3.png deleted file mode 100755 index 5ee9d911..00000000 Binary files a/static/icons/060020A3.png and /dev/null differ diff --git a/static/icons/060020A4.png b/static/icons/060020A4.png deleted file mode 100755 index 1d08c85f..00000000 Binary files a/static/icons/060020A4.png and /dev/null differ diff --git a/static/icons/060020A5.png b/static/icons/060020A5.png deleted file mode 100755 index 5e5196d8..00000000 Binary files a/static/icons/060020A5.png and /dev/null differ diff --git a/static/icons/060020A6.png b/static/icons/060020A6.png deleted file mode 100755 index f44f4646..00000000 Binary files a/static/icons/060020A6.png and /dev/null differ diff --git a/static/icons/060020A7.png b/static/icons/060020A7.png deleted file mode 100755 index 0fa86ef3..00000000 Binary files a/static/icons/060020A7.png and /dev/null differ diff --git a/static/icons/060020A8.png b/static/icons/060020A8.png deleted file mode 100755 index 73c210f5..00000000 Binary files a/static/icons/060020A8.png and /dev/null differ diff --git a/static/icons/060020A9.png b/static/icons/060020A9.png deleted file mode 100755 index f5fa2347..00000000 Binary files a/static/icons/060020A9.png and /dev/null differ diff --git a/static/icons/060020AA.png b/static/icons/060020AA.png deleted file mode 100755 index 6b0b441a..00000000 Binary files a/static/icons/060020AA.png and /dev/null differ diff --git a/static/icons/060020AB.png b/static/icons/060020AB.png deleted file mode 100755 index fa71cfe4..00000000 Binary files a/static/icons/060020AB.png and /dev/null differ diff --git a/static/icons/060020AC.png b/static/icons/060020AC.png deleted file mode 100755 index 91322a66..00000000 Binary files a/static/icons/060020AC.png and /dev/null differ diff --git a/static/icons/060020AD.png b/static/icons/060020AD.png deleted file mode 100755 index 0c66b83b..00000000 Binary files a/static/icons/060020AD.png and /dev/null differ diff --git a/static/icons/060020AE.png b/static/icons/060020AE.png deleted file mode 100755 index 8bba5e99..00000000 Binary files a/static/icons/060020AE.png and /dev/null differ diff --git a/static/icons/060020AF.png b/static/icons/060020AF.png deleted file mode 100755 index 0f2e17ca..00000000 Binary files a/static/icons/060020AF.png and /dev/null differ diff --git a/static/icons/060020B0.png b/static/icons/060020B0.png deleted file mode 100755 index 51c27c50..00000000 Binary files a/static/icons/060020B0.png and /dev/null differ diff --git a/static/icons/060020B1.png b/static/icons/060020B1.png deleted file mode 100755 index c07bc719..00000000 Binary files a/static/icons/060020B1.png and /dev/null differ diff --git a/static/icons/060020B2.png b/static/icons/060020B2.png deleted file mode 100755 index 00b82b96..00000000 Binary files a/static/icons/060020B2.png and /dev/null differ diff --git a/static/icons/060020B3.png b/static/icons/060020B3.png deleted file mode 100755 index 34f11aea..00000000 Binary files a/static/icons/060020B3.png and /dev/null differ diff --git a/static/icons/060020B5.png b/static/icons/060020B5.png deleted file mode 100755 index b64d459d..00000000 Binary files a/static/icons/060020B5.png and /dev/null differ diff --git a/static/icons/060020B6.png b/static/icons/060020B6.png deleted file mode 100755 index e0ed86e1..00000000 Binary files a/static/icons/060020B6.png and /dev/null differ diff --git a/static/icons/060020B7.png b/static/icons/060020B7.png deleted file mode 100755 index d1db2a9f..00000000 Binary files a/static/icons/060020B7.png and /dev/null differ diff --git a/static/icons/060020B8.png b/static/icons/060020B8.png deleted file mode 100755 index a20f00d7..00000000 Binary files a/static/icons/060020B8.png and /dev/null differ diff --git a/static/icons/060020B9.png b/static/icons/060020B9.png deleted file mode 100755 index 042d48b9..00000000 Binary files a/static/icons/060020B9.png and /dev/null differ diff --git a/static/icons/060020BA.png b/static/icons/060020BA.png deleted file mode 100755 index f3ccc9d3..00000000 Binary files a/static/icons/060020BA.png and /dev/null differ diff --git a/static/icons/060020BB.png b/static/icons/060020BB.png deleted file mode 100755 index 615f0ffd..00000000 Binary files a/static/icons/060020BB.png and /dev/null differ diff --git a/static/icons/060020BC.png b/static/icons/060020BC.png deleted file mode 100755 index ca415767..00000000 Binary files a/static/icons/060020BC.png and /dev/null differ diff --git a/static/icons/060020BD.png b/static/icons/060020BD.png deleted file mode 100755 index ab5672dc..00000000 Binary files a/static/icons/060020BD.png and /dev/null differ diff --git a/static/icons/060020BE.png b/static/icons/060020BE.png deleted file mode 100755 index 376fcf5c..00000000 Binary files a/static/icons/060020BE.png and /dev/null differ diff --git a/static/icons/060020BF.png b/static/icons/060020BF.png deleted file mode 100755 index 635145ff..00000000 Binary files a/static/icons/060020BF.png and /dev/null differ diff --git a/static/icons/060020C0.png b/static/icons/060020C0.png deleted file mode 100755 index 23ec8d51..00000000 Binary files a/static/icons/060020C0.png and /dev/null differ diff --git a/static/icons/060020C3.png b/static/icons/060020C3.png deleted file mode 100755 index 92db9ce1..00000000 Binary files a/static/icons/060020C3.png and /dev/null differ diff --git a/static/icons/060020C4.png b/static/icons/060020C4.png deleted file mode 100755 index 57b438a0..00000000 Binary files a/static/icons/060020C4.png and /dev/null differ diff --git a/static/icons/060020C5.png b/static/icons/060020C5.png deleted file mode 100755 index 0675cc6a..00000000 Binary files a/static/icons/060020C5.png and /dev/null differ diff --git a/static/icons/060020C6.png b/static/icons/060020C6.png deleted file mode 100755 index feb5a016..00000000 Binary files a/static/icons/060020C6.png and /dev/null differ diff --git a/static/icons/060020C7.png b/static/icons/060020C7.png deleted file mode 100755 index 311d0378..00000000 Binary files a/static/icons/060020C7.png and /dev/null differ diff --git a/static/icons/060020C8.png b/static/icons/060020C8.png deleted file mode 100755 index 306c4513..00000000 Binary files a/static/icons/060020C8.png and /dev/null differ diff --git a/static/icons/060020C9.png b/static/icons/060020C9.png deleted file mode 100755 index bf56fc49..00000000 Binary files a/static/icons/060020C9.png and /dev/null differ diff --git a/static/icons/060020CA.png b/static/icons/060020CA.png deleted file mode 100755 index 0134d33e..00000000 Binary files a/static/icons/060020CA.png and /dev/null differ diff --git a/static/icons/060020CB.png b/static/icons/060020CB.png deleted file mode 100755 index 935beb44..00000000 Binary files a/static/icons/060020CB.png and /dev/null differ diff --git a/static/icons/060020CC.png b/static/icons/060020CC.png deleted file mode 100755 index f0fd9ca3..00000000 Binary files a/static/icons/060020CC.png and /dev/null differ diff --git a/static/icons/060020CD.png b/static/icons/060020CD.png deleted file mode 100755 index 5d8995a7..00000000 Binary files a/static/icons/060020CD.png and /dev/null differ diff --git a/static/icons/060020CE.png b/static/icons/060020CE.png deleted file mode 100755 index fe7a2eee..00000000 Binary files a/static/icons/060020CE.png and /dev/null differ diff --git a/static/icons/060020CF.png b/static/icons/060020CF.png deleted file mode 100755 index 17020115..00000000 Binary files a/static/icons/060020CF.png and /dev/null differ diff --git a/static/icons/060020D0.png b/static/icons/060020D0.png deleted file mode 100755 index 5a955ca3..00000000 Binary files a/static/icons/060020D0.png and /dev/null differ diff --git a/static/icons/060020D1.png b/static/icons/060020D1.png deleted file mode 100755 index 48e213e3..00000000 Binary files a/static/icons/060020D1.png and /dev/null differ diff --git a/static/icons/060020D2.png b/static/icons/060020D2.png deleted file mode 100755 index b0e7d3aa..00000000 Binary files a/static/icons/060020D2.png and /dev/null differ diff --git a/static/icons/060020D3.png b/static/icons/060020D3.png deleted file mode 100755 index 809bc900..00000000 Binary files a/static/icons/060020D3.png and /dev/null differ diff --git a/static/icons/060020D4.png b/static/icons/060020D4.png deleted file mode 100755 index 0280c984..00000000 Binary files a/static/icons/060020D4.png and /dev/null differ diff --git a/static/icons/060020D5.png b/static/icons/060020D5.png deleted file mode 100755 index 5ae9fb98..00000000 Binary files a/static/icons/060020D5.png and /dev/null differ diff --git a/static/icons/060020D6.png b/static/icons/060020D6.png deleted file mode 100755 index 414ef3df..00000000 Binary files a/static/icons/060020D6.png and /dev/null differ diff --git a/static/icons/060020D7.png b/static/icons/060020D7.png deleted file mode 100755 index f9f26be5..00000000 Binary files a/static/icons/060020D7.png and /dev/null differ diff --git a/static/icons/060020D8.png b/static/icons/060020D8.png deleted file mode 100755 index 937459b1..00000000 Binary files a/static/icons/060020D8.png and /dev/null differ diff --git a/static/icons/060020D9.png b/static/icons/060020D9.png deleted file mode 100755 index 68e0104a..00000000 Binary files a/static/icons/060020D9.png and /dev/null differ diff --git a/static/icons/060020DA.png b/static/icons/060020DA.png deleted file mode 100755 index 5b83d413..00000000 Binary files a/static/icons/060020DA.png and /dev/null differ diff --git a/static/icons/060020DB.png b/static/icons/060020DB.png deleted file mode 100755 index 22b8a736..00000000 Binary files a/static/icons/060020DB.png and /dev/null differ diff --git a/static/icons/060020DC.png b/static/icons/060020DC.png deleted file mode 100755 index 624103ee..00000000 Binary files a/static/icons/060020DC.png and /dev/null differ diff --git a/static/icons/060020DD.png b/static/icons/060020DD.png deleted file mode 100755 index 20e84087..00000000 Binary files a/static/icons/060020DD.png and /dev/null differ diff --git a/static/icons/060020DE.png b/static/icons/060020DE.png deleted file mode 100755 index befd1c3b..00000000 Binary files a/static/icons/060020DE.png and /dev/null differ diff --git a/static/icons/060020DF.png b/static/icons/060020DF.png deleted file mode 100755 index a210f626..00000000 Binary files a/static/icons/060020DF.png and /dev/null differ diff --git a/static/icons/060020E0.png b/static/icons/060020E0.png deleted file mode 100755 index f664279b..00000000 Binary files a/static/icons/060020E0.png and /dev/null differ diff --git a/static/icons/060020E1.png b/static/icons/060020E1.png deleted file mode 100755 index 715bfd0a..00000000 Binary files a/static/icons/060020E1.png and /dev/null differ diff --git a/static/icons/060020E2.png b/static/icons/060020E2.png deleted file mode 100755 index 3cd7e88f..00000000 Binary files a/static/icons/060020E2.png and /dev/null differ diff --git a/static/icons/060020E3.png b/static/icons/060020E3.png deleted file mode 100755 index b6953aaf..00000000 Binary files a/static/icons/060020E3.png and /dev/null differ diff --git a/static/icons/060020E4.png b/static/icons/060020E4.png deleted file mode 100755 index 74d08c8d..00000000 Binary files a/static/icons/060020E4.png and /dev/null differ diff --git a/static/icons/060020E5.png b/static/icons/060020E5.png deleted file mode 100755 index a88e59e6..00000000 Binary files a/static/icons/060020E5.png and /dev/null differ diff --git a/static/icons/060020E6.png b/static/icons/060020E6.png deleted file mode 100755 index a86acc2b..00000000 Binary files a/static/icons/060020E6.png and /dev/null differ diff --git a/static/icons/060020E7.png b/static/icons/060020E7.png deleted file mode 100755 index b2e3ef44..00000000 Binary files a/static/icons/060020E7.png and /dev/null differ diff --git a/static/icons/060020E8.png b/static/icons/060020E8.png deleted file mode 100755 index db7cebb1..00000000 Binary files a/static/icons/060020E8.png and /dev/null differ diff --git a/static/icons/060020E9.png b/static/icons/060020E9.png deleted file mode 100755 index e959cad9..00000000 Binary files a/static/icons/060020E9.png and /dev/null differ diff --git a/static/icons/060020EA.png b/static/icons/060020EA.png deleted file mode 100755 index ee7c765f..00000000 Binary files a/static/icons/060020EA.png and /dev/null differ diff --git a/static/icons/060020EB.png b/static/icons/060020EB.png deleted file mode 100755 index b80fee87..00000000 Binary files a/static/icons/060020EB.png and /dev/null differ diff --git a/static/icons/060020EC.png b/static/icons/060020EC.png deleted file mode 100755 index 3282ea79..00000000 Binary files a/static/icons/060020EC.png and /dev/null differ diff --git a/static/icons/060020ED.png b/static/icons/060020ED.png deleted file mode 100755 index 6ee22d5a..00000000 Binary files a/static/icons/060020ED.png and /dev/null differ diff --git a/static/icons/060020EE.png b/static/icons/060020EE.png deleted file mode 100755 index d8305264..00000000 Binary files a/static/icons/060020EE.png and /dev/null differ diff --git a/static/icons/060020EF.png b/static/icons/060020EF.png deleted file mode 100755 index 359d4400..00000000 Binary files a/static/icons/060020EF.png and /dev/null differ diff --git a/static/icons/060020F0.png b/static/icons/060020F0.png deleted file mode 100755 index ddd94b64..00000000 Binary files a/static/icons/060020F0.png and /dev/null differ diff --git a/static/icons/060020F1.png b/static/icons/060020F1.png deleted file mode 100755 index c6c7027f..00000000 Binary files a/static/icons/060020F1.png and /dev/null differ diff --git a/static/icons/060020F2.png b/static/icons/060020F2.png deleted file mode 100755 index e6c79d9a..00000000 Binary files a/static/icons/060020F2.png and /dev/null differ diff --git a/static/icons/060020F3.png b/static/icons/060020F3.png deleted file mode 100755 index 2fc3388c..00000000 Binary files a/static/icons/060020F3.png and /dev/null differ diff --git a/static/icons/060020F4.png b/static/icons/060020F4.png deleted file mode 100755 index b9024d64..00000000 Binary files a/static/icons/060020F4.png and /dev/null differ diff --git a/static/icons/060020F5.png b/static/icons/060020F5.png deleted file mode 100755 index 49264953..00000000 Binary files a/static/icons/060020F5.png and /dev/null differ diff --git a/static/icons/060020F6.png b/static/icons/060020F6.png deleted file mode 100755 index 6d1a762a..00000000 Binary files a/static/icons/060020F6.png and /dev/null differ diff --git a/static/icons/060020F7.png b/static/icons/060020F7.png deleted file mode 100755 index 87cedd6f..00000000 Binary files a/static/icons/060020F7.png and /dev/null differ diff --git a/static/icons/060020F8.png b/static/icons/060020F8.png deleted file mode 100755 index 7fce53a3..00000000 Binary files a/static/icons/060020F8.png and /dev/null differ diff --git a/static/icons/060020F9.png b/static/icons/060020F9.png deleted file mode 100755 index bf1be12a..00000000 Binary files a/static/icons/060020F9.png and /dev/null differ diff --git a/static/icons/060020FA.png b/static/icons/060020FA.png deleted file mode 100755 index dc70b837..00000000 Binary files a/static/icons/060020FA.png and /dev/null differ diff --git a/static/icons/060020FB.png b/static/icons/060020FB.png deleted file mode 100755 index 042f11a9..00000000 Binary files a/static/icons/060020FB.png and /dev/null differ diff --git a/static/icons/060020FC.png b/static/icons/060020FC.png deleted file mode 100755 index f0586008..00000000 Binary files a/static/icons/060020FC.png and /dev/null differ diff --git a/static/icons/060020FD.png b/static/icons/060020FD.png deleted file mode 100755 index 32dd7bd3..00000000 Binary files a/static/icons/060020FD.png and /dev/null differ diff --git a/static/icons/060020FE.png b/static/icons/060020FE.png deleted file mode 100755 index af4e7729..00000000 Binary files a/static/icons/060020FE.png and /dev/null differ diff --git a/static/icons/060020FF.png b/static/icons/060020FF.png deleted file mode 100755 index 611511d9..00000000 Binary files a/static/icons/060020FF.png and /dev/null differ diff --git a/static/icons/06002100.png b/static/icons/06002100.png deleted file mode 100755 index a0f8fc99..00000000 Binary files a/static/icons/06002100.png and /dev/null differ diff --git a/static/icons/06002101.png b/static/icons/06002101.png deleted file mode 100755 index aba979ba..00000000 Binary files a/static/icons/06002101.png and /dev/null differ diff --git a/static/icons/06002102.png b/static/icons/06002102.png deleted file mode 100755 index c387e66f..00000000 Binary files a/static/icons/06002102.png and /dev/null differ diff --git a/static/icons/06002103.png b/static/icons/06002103.png deleted file mode 100755 index ccaa8994..00000000 Binary files a/static/icons/06002103.png and /dev/null differ diff --git a/static/icons/06002104.png b/static/icons/06002104.png deleted file mode 100755 index b6483d45..00000000 Binary files a/static/icons/06002104.png and /dev/null differ diff --git a/static/icons/06002105.png b/static/icons/06002105.png deleted file mode 100755 index f6a24809..00000000 Binary files a/static/icons/06002105.png and /dev/null differ diff --git a/static/icons/06002106.png b/static/icons/06002106.png deleted file mode 100755 index c294394a..00000000 Binary files a/static/icons/06002106.png and /dev/null differ diff --git a/static/icons/06002107.png b/static/icons/06002107.png deleted file mode 100755 index 92fc72f4..00000000 Binary files a/static/icons/06002107.png and /dev/null differ diff --git a/static/icons/06002109.png b/static/icons/06002109.png deleted file mode 100755 index 422799d0..00000000 Binary files a/static/icons/06002109.png and /dev/null differ diff --git a/static/icons/0600210A.png b/static/icons/0600210A.png deleted file mode 100755 index 4139c2e0..00000000 Binary files a/static/icons/0600210A.png and /dev/null differ diff --git a/static/icons/0600210C.png b/static/icons/0600210C.png deleted file mode 100755 index c9ce869d..00000000 Binary files a/static/icons/0600210C.png and /dev/null differ diff --git a/static/icons/0600210D.png b/static/icons/0600210D.png deleted file mode 100755 index fbe81843..00000000 Binary files a/static/icons/0600210D.png and /dev/null differ diff --git a/static/icons/0600210E.png b/static/icons/0600210E.png deleted file mode 100755 index 18ae4bd3..00000000 Binary files a/static/icons/0600210E.png and /dev/null differ diff --git a/static/icons/0600210F.png b/static/icons/0600210F.png deleted file mode 100755 index e61fcc7c..00000000 Binary files a/static/icons/0600210F.png and /dev/null differ diff --git a/static/icons/06002110.png b/static/icons/06002110.png deleted file mode 100755 index bc72f0a4..00000000 Binary files a/static/icons/06002110.png and /dev/null differ diff --git a/static/icons/06002111.png b/static/icons/06002111.png deleted file mode 100755 index 51f921d1..00000000 Binary files a/static/icons/06002111.png and /dev/null differ diff --git a/static/icons/06002112.png b/static/icons/06002112.png deleted file mode 100755 index 4d1a9dbf..00000000 Binary files a/static/icons/06002112.png and /dev/null differ diff --git a/static/icons/06002113.png b/static/icons/06002113.png deleted file mode 100755 index 852d69ca..00000000 Binary files a/static/icons/06002113.png and /dev/null differ diff --git a/static/icons/06002114.png b/static/icons/06002114.png deleted file mode 100755 index c47640ed..00000000 Binary files a/static/icons/06002114.png and /dev/null differ diff --git a/static/icons/06002115.png b/static/icons/06002115.png deleted file mode 100755 index d0911d95..00000000 Binary files a/static/icons/06002115.png and /dev/null differ diff --git a/static/icons/06002116.png b/static/icons/06002116.png deleted file mode 100755 index 0ccfd0f5..00000000 Binary files a/static/icons/06002116.png and /dev/null differ diff --git a/static/icons/06002117.png b/static/icons/06002117.png deleted file mode 100755 index e2902390..00000000 Binary files a/static/icons/06002117.png and /dev/null differ diff --git a/static/icons/06002119.png b/static/icons/06002119.png deleted file mode 100755 index 72d7c860..00000000 Binary files a/static/icons/06002119.png and /dev/null differ diff --git a/static/icons/0600211A.png b/static/icons/0600211A.png deleted file mode 100755 index ddaf964e..00000000 Binary files a/static/icons/0600211A.png and /dev/null differ diff --git a/static/icons/0600211B.png b/static/icons/0600211B.png deleted file mode 100755 index fd7870e0..00000000 Binary files a/static/icons/0600211B.png and /dev/null differ diff --git a/static/icons/0600211C.png b/static/icons/0600211C.png deleted file mode 100755 index 3ba17b17..00000000 Binary files a/static/icons/0600211C.png and /dev/null differ diff --git a/static/icons/0600211D.png b/static/icons/0600211D.png deleted file mode 100755 index b3d35d94..00000000 Binary files a/static/icons/0600211D.png and /dev/null differ diff --git a/static/icons/0600211E.png b/static/icons/0600211E.png deleted file mode 100755 index e4412a2f..00000000 Binary files a/static/icons/0600211E.png and /dev/null differ diff --git a/static/icons/0600211F.png b/static/icons/0600211F.png deleted file mode 100755 index 03f5323b..00000000 Binary files a/static/icons/0600211F.png and /dev/null differ diff --git a/static/icons/06002120.png b/static/icons/06002120.png deleted file mode 100755 index e421fbbc..00000000 Binary files a/static/icons/06002120.png and /dev/null differ diff --git a/static/icons/06002123.png b/static/icons/06002123.png deleted file mode 100755 index bd3aa128..00000000 Binary files a/static/icons/06002123.png and /dev/null differ diff --git a/static/icons/06002124.png b/static/icons/06002124.png deleted file mode 100755 index 12004678..00000000 Binary files a/static/icons/06002124.png and /dev/null differ diff --git a/static/icons/06002125.png b/static/icons/06002125.png deleted file mode 100755 index 7d1c74eb..00000000 Binary files a/static/icons/06002125.png and /dev/null differ diff --git a/static/icons/06002126.png b/static/icons/06002126.png deleted file mode 100755 index f9294f19..00000000 Binary files a/static/icons/06002126.png and /dev/null differ diff --git a/static/icons/06002127.png b/static/icons/06002127.png deleted file mode 100755 index 6b910b51..00000000 Binary files a/static/icons/06002127.png and /dev/null differ diff --git a/static/icons/0600212A.png b/static/icons/0600212A.png deleted file mode 100755 index cb87c8da..00000000 Binary files a/static/icons/0600212A.png and /dev/null differ diff --git a/static/icons/0600212C.png b/static/icons/0600212C.png deleted file mode 100755 index d514b960..00000000 Binary files a/static/icons/0600212C.png and /dev/null differ diff --git a/static/icons/0600212E.png b/static/icons/0600212E.png deleted file mode 100755 index a75dc5db..00000000 Binary files a/static/icons/0600212E.png and /dev/null differ diff --git a/static/icons/06002130.png b/static/icons/06002130.png deleted file mode 100755 index 1ab43f92..00000000 Binary files a/static/icons/06002130.png and /dev/null differ diff --git a/static/icons/06002132.png b/static/icons/06002132.png deleted file mode 100755 index ef79e4ee..00000000 Binary files a/static/icons/06002132.png and /dev/null differ diff --git a/static/icons/06002134.png b/static/icons/06002134.png deleted file mode 100755 index 946eb49d..00000000 Binary files a/static/icons/06002134.png and /dev/null differ diff --git a/static/icons/06002136.png b/static/icons/06002136.png deleted file mode 100755 index 55098c03..00000000 Binary files a/static/icons/06002136.png and /dev/null differ diff --git a/static/icons/06002138.png b/static/icons/06002138.png deleted file mode 100755 index b68ae4d3..00000000 Binary files a/static/icons/06002138.png and /dev/null differ diff --git a/static/icons/0600213A.png b/static/icons/0600213A.png deleted file mode 100755 index 60a57407..00000000 Binary files a/static/icons/0600213A.png and /dev/null differ diff --git a/static/icons/0600213C.png b/static/icons/0600213C.png deleted file mode 100755 index 18fe9a02..00000000 Binary files a/static/icons/0600213C.png and /dev/null differ diff --git a/static/icons/0600213E.png b/static/icons/0600213E.png deleted file mode 100755 index 8e1ce6a3..00000000 Binary files a/static/icons/0600213E.png and /dev/null differ diff --git a/static/icons/06002140.png b/static/icons/06002140.png deleted file mode 100755 index 0e66711c..00000000 Binary files a/static/icons/06002140.png and /dev/null differ diff --git a/static/icons/06002142.png b/static/icons/06002142.png deleted file mode 100755 index d0a1de8c..00000000 Binary files a/static/icons/06002142.png and /dev/null differ diff --git a/static/icons/06002144.png b/static/icons/06002144.png deleted file mode 100755 index 36d0dfa6..00000000 Binary files a/static/icons/06002144.png and /dev/null differ diff --git a/static/icons/06002146.png b/static/icons/06002146.png deleted file mode 100755 index ff37d776..00000000 Binary files a/static/icons/06002146.png and /dev/null differ diff --git a/static/icons/06002148.png b/static/icons/06002148.png deleted file mode 100755 index ab535195..00000000 Binary files a/static/icons/06002148.png and /dev/null differ diff --git a/static/icons/0600214A.png b/static/icons/0600214A.png deleted file mode 100755 index 2a93518f..00000000 Binary files a/static/icons/0600214A.png and /dev/null differ diff --git a/static/icons/0600214B.png b/static/icons/0600214B.png deleted file mode 100755 index 26edbb12..00000000 Binary files a/static/icons/0600214B.png and /dev/null differ diff --git a/static/icons/0600214C.png b/static/icons/0600214C.png deleted file mode 100755 index 905f1d0a..00000000 Binary files a/static/icons/0600214C.png and /dev/null differ diff --git a/static/icons/0600214E.png b/static/icons/0600214E.png deleted file mode 100755 index f17e83aa..00000000 Binary files a/static/icons/0600214E.png and /dev/null differ diff --git a/static/icons/0600214F.png b/static/icons/0600214F.png deleted file mode 100755 index 98bfbe73..00000000 Binary files a/static/icons/0600214F.png and /dev/null differ diff --git a/static/icons/06002150.png b/static/icons/06002150.png deleted file mode 100755 index 6504ee8c..00000000 Binary files a/static/icons/06002150.png and /dev/null differ diff --git a/static/icons/06002151.png b/static/icons/06002151.png deleted file mode 100755 index 72162847..00000000 Binary files a/static/icons/06002151.png and /dev/null differ diff --git a/static/icons/06002152.png b/static/icons/06002152.png deleted file mode 100755 index 04d7c668..00000000 Binary files a/static/icons/06002152.png and /dev/null differ diff --git a/static/icons/06002153.png b/static/icons/06002153.png deleted file mode 100755 index 114cf0b3..00000000 Binary files a/static/icons/06002153.png and /dev/null differ diff --git a/static/icons/06002154.png b/static/icons/06002154.png deleted file mode 100755 index a9666378..00000000 Binary files a/static/icons/06002154.png and /dev/null differ diff --git a/static/icons/06002155.png b/static/icons/06002155.png deleted file mode 100755 index 8d77898a..00000000 Binary files a/static/icons/06002155.png and /dev/null differ diff --git a/static/icons/06002156.png b/static/icons/06002156.png deleted file mode 100755 index a62009f4..00000000 Binary files a/static/icons/06002156.png and /dev/null differ diff --git a/static/icons/06002157.png b/static/icons/06002157.png deleted file mode 100755 index fe56f055..00000000 Binary files a/static/icons/06002157.png and /dev/null differ diff --git a/static/icons/06002158.png b/static/icons/06002158.png deleted file mode 100755 index c5792c32..00000000 Binary files a/static/icons/06002158.png and /dev/null differ diff --git a/static/icons/06002159.png b/static/icons/06002159.png deleted file mode 100755 index 7d91a2b6..00000000 Binary files a/static/icons/06002159.png and /dev/null differ diff --git a/static/icons/0600215A.png b/static/icons/0600215A.png deleted file mode 100755 index 6884137a..00000000 Binary files a/static/icons/0600215A.png and /dev/null differ diff --git a/static/icons/0600215B.png b/static/icons/0600215B.png deleted file mode 100755 index 545d1d36..00000000 Binary files a/static/icons/0600215B.png and /dev/null differ diff --git a/static/icons/0600215C.png b/static/icons/0600215C.png deleted file mode 100755 index 0f5ba566..00000000 Binary files a/static/icons/0600215C.png and /dev/null differ diff --git a/static/icons/0600215D.png b/static/icons/0600215D.png deleted file mode 100755 index ffa73da1..00000000 Binary files a/static/icons/0600215D.png and /dev/null differ diff --git a/static/icons/0600215E.png b/static/icons/0600215E.png deleted file mode 100755 index 27dbb20b..00000000 Binary files a/static/icons/0600215E.png and /dev/null differ diff --git a/static/icons/0600215F.png b/static/icons/0600215F.png deleted file mode 100755 index 74abe816..00000000 Binary files a/static/icons/0600215F.png and /dev/null differ diff --git a/static/icons/06002160.png b/static/icons/06002160.png deleted file mode 100755 index eb03c1f8..00000000 Binary files a/static/icons/06002160.png and /dev/null differ diff --git a/static/icons/06002161.png b/static/icons/06002161.png deleted file mode 100755 index cbf94dfa..00000000 Binary files a/static/icons/06002161.png and /dev/null differ diff --git a/static/icons/06002162.png b/static/icons/06002162.png deleted file mode 100755 index 54baca3d..00000000 Binary files a/static/icons/06002162.png and /dev/null differ diff --git a/static/icons/06002163.png b/static/icons/06002163.png deleted file mode 100755 index 1bf4149b..00000000 Binary files a/static/icons/06002163.png and /dev/null differ diff --git a/static/icons/06002166.png b/static/icons/06002166.png deleted file mode 100755 index fd7c0533..00000000 Binary files a/static/icons/06002166.png and /dev/null differ diff --git a/static/icons/06002167.png b/static/icons/06002167.png deleted file mode 100755 index d36ba067..00000000 Binary files a/static/icons/06002167.png and /dev/null differ diff --git a/static/icons/06002169.png b/static/icons/06002169.png deleted file mode 100755 index 91fd41ed..00000000 Binary files a/static/icons/06002169.png and /dev/null differ diff --git a/static/icons/0600216A.png b/static/icons/0600216A.png deleted file mode 100755 index b1a609eb..00000000 Binary files a/static/icons/0600216A.png and /dev/null differ diff --git a/static/icons/0600216B.png b/static/icons/0600216B.png deleted file mode 100755 index 9bf7b0ce..00000000 Binary files a/static/icons/0600216B.png and /dev/null differ diff --git a/static/icons/0600216C.png b/static/icons/0600216C.png deleted file mode 100755 index a0567670..00000000 Binary files a/static/icons/0600216C.png and /dev/null differ diff --git a/static/icons/0600216D.png b/static/icons/0600216D.png deleted file mode 100755 index 6d778aad..00000000 Binary files a/static/icons/0600216D.png and /dev/null differ diff --git a/static/icons/0600216E.png b/static/icons/0600216E.png deleted file mode 100755 index 374d2f61..00000000 Binary files a/static/icons/0600216E.png and /dev/null differ diff --git a/static/icons/0600216F.png b/static/icons/0600216F.png deleted file mode 100755 index 887c174f..00000000 Binary files a/static/icons/0600216F.png and /dev/null differ diff --git a/static/icons/06002170.png b/static/icons/06002170.png deleted file mode 100755 index 788ccd1f..00000000 Binary files a/static/icons/06002170.png and /dev/null differ diff --git a/static/icons/06002171.png b/static/icons/06002171.png deleted file mode 100755 index 59588949..00000000 Binary files a/static/icons/06002171.png and /dev/null differ diff --git a/static/icons/06002172.png b/static/icons/06002172.png deleted file mode 100755 index dc1b05f4..00000000 Binary files a/static/icons/06002172.png and /dev/null differ diff --git a/static/icons/06002173.png b/static/icons/06002173.png deleted file mode 100755 index 6dbc905e..00000000 Binary files a/static/icons/06002173.png and /dev/null differ diff --git a/static/icons/06002174.png b/static/icons/06002174.png deleted file mode 100755 index 3450bdf4..00000000 Binary files a/static/icons/06002174.png and /dev/null differ diff --git a/static/icons/06002175.png b/static/icons/06002175.png deleted file mode 100755 index f69dc257..00000000 Binary files a/static/icons/06002175.png and /dev/null differ diff --git a/static/icons/06002176.png b/static/icons/06002176.png deleted file mode 100755 index 511d3db9..00000000 Binary files a/static/icons/06002176.png and /dev/null differ diff --git a/static/icons/06002177.png b/static/icons/06002177.png deleted file mode 100755 index fd6bf221..00000000 Binary files a/static/icons/06002177.png and /dev/null differ diff --git a/static/icons/06002178.png b/static/icons/06002178.png deleted file mode 100755 index fd837ab4..00000000 Binary files a/static/icons/06002178.png and /dev/null differ diff --git a/static/icons/06002179.png b/static/icons/06002179.png deleted file mode 100755 index 3f0a6ea2..00000000 Binary files a/static/icons/06002179.png and /dev/null differ diff --git a/static/icons/0600217A.png b/static/icons/0600217A.png deleted file mode 100755 index ab09db57..00000000 Binary files a/static/icons/0600217A.png and /dev/null differ diff --git a/static/icons/0600217B.png b/static/icons/0600217B.png deleted file mode 100755 index 2f3bd228..00000000 Binary files a/static/icons/0600217B.png and /dev/null differ diff --git a/static/icons/0600217C.png b/static/icons/0600217C.png deleted file mode 100755 index b9487864..00000000 Binary files a/static/icons/0600217C.png and /dev/null differ diff --git a/static/icons/0600217D.png b/static/icons/0600217D.png deleted file mode 100755 index e5c783e5..00000000 Binary files a/static/icons/0600217D.png and /dev/null differ diff --git a/static/icons/0600217E.png b/static/icons/0600217E.png deleted file mode 100755 index d61f5bd8..00000000 Binary files a/static/icons/0600217E.png and /dev/null differ diff --git a/static/icons/0600217F.png b/static/icons/0600217F.png deleted file mode 100755 index 0f010f5d..00000000 Binary files a/static/icons/0600217F.png and /dev/null differ diff --git a/static/icons/06002180.png b/static/icons/06002180.png deleted file mode 100755 index 5f83dcff..00000000 Binary files a/static/icons/06002180.png and /dev/null differ diff --git a/static/icons/06002181.png b/static/icons/06002181.png deleted file mode 100755 index 989314bc..00000000 Binary files a/static/icons/06002181.png and /dev/null differ diff --git a/static/icons/06002182.png b/static/icons/06002182.png deleted file mode 100755 index 1cf9a913..00000000 Binary files a/static/icons/06002182.png and /dev/null differ diff --git a/static/icons/06002183.png b/static/icons/06002183.png deleted file mode 100755 index 213b501b..00000000 Binary files a/static/icons/06002183.png and /dev/null differ diff --git a/static/icons/06002184.png b/static/icons/06002184.png deleted file mode 100755 index af7cfaf5..00000000 Binary files a/static/icons/06002184.png and /dev/null differ diff --git a/static/icons/06002185.png b/static/icons/06002185.png deleted file mode 100755 index 8e5a1a67..00000000 Binary files a/static/icons/06002185.png and /dev/null differ diff --git a/static/icons/06002186.png b/static/icons/06002186.png deleted file mode 100755 index ec9ab6a2..00000000 Binary files a/static/icons/06002186.png and /dev/null differ diff --git a/static/icons/0600218B.png b/static/icons/0600218B.png deleted file mode 100755 index b2d753d0..00000000 Binary files a/static/icons/0600218B.png and /dev/null differ diff --git a/static/icons/0600218C.png b/static/icons/0600218C.png deleted file mode 100755 index bb838b89..00000000 Binary files a/static/icons/0600218C.png and /dev/null differ diff --git a/static/icons/0600218D.png b/static/icons/0600218D.png deleted file mode 100755 index f8437b95..00000000 Binary files a/static/icons/0600218D.png and /dev/null differ diff --git a/static/icons/0600218E.png b/static/icons/0600218E.png deleted file mode 100755 index 5cbc835e..00000000 Binary files a/static/icons/0600218E.png and /dev/null differ diff --git a/static/icons/0600218F.png b/static/icons/0600218F.png deleted file mode 100755 index 3221e650..00000000 Binary files a/static/icons/0600218F.png and /dev/null differ diff --git a/static/icons/06002190.png b/static/icons/06002190.png deleted file mode 100755 index 0557d259..00000000 Binary files a/static/icons/06002190.png and /dev/null differ diff --git a/static/icons/06002191.png b/static/icons/06002191.png deleted file mode 100755 index 0a8890e8..00000000 Binary files a/static/icons/06002191.png and /dev/null differ diff --git a/static/icons/06002192.png b/static/icons/06002192.png deleted file mode 100755 index 3646825d..00000000 Binary files a/static/icons/06002192.png and /dev/null differ diff --git a/static/icons/06002193.png b/static/icons/06002193.png deleted file mode 100755 index 84f549a7..00000000 Binary files a/static/icons/06002193.png and /dev/null differ diff --git a/static/icons/06002194.png b/static/icons/06002194.png deleted file mode 100755 index 91c82e51..00000000 Binary files a/static/icons/06002194.png and /dev/null differ diff --git a/static/icons/06002195.png b/static/icons/06002195.png deleted file mode 100755 index 0de2bf9e..00000000 Binary files a/static/icons/06002195.png and /dev/null differ diff --git a/static/icons/06002196.png b/static/icons/06002196.png deleted file mode 100755 index 826572a9..00000000 Binary files a/static/icons/06002196.png and /dev/null differ diff --git a/static/icons/06002197.png b/static/icons/06002197.png deleted file mode 100755 index 6540b5a5..00000000 Binary files a/static/icons/06002197.png and /dev/null differ diff --git a/static/icons/06002198.png b/static/icons/06002198.png deleted file mode 100755 index 013df94e..00000000 Binary files a/static/icons/06002198.png and /dev/null differ diff --git a/static/icons/06002199.png b/static/icons/06002199.png deleted file mode 100755 index 24bb8945..00000000 Binary files a/static/icons/06002199.png and /dev/null differ diff --git a/static/icons/0600219A.png b/static/icons/0600219A.png deleted file mode 100755 index e5de1ea7..00000000 Binary files a/static/icons/0600219A.png and /dev/null differ diff --git a/static/icons/0600219B.png b/static/icons/0600219B.png deleted file mode 100755 index 2b740892..00000000 Binary files a/static/icons/0600219B.png and /dev/null differ diff --git a/static/icons/0600219C.png b/static/icons/0600219C.png deleted file mode 100755 index 2fd21b65..00000000 Binary files a/static/icons/0600219C.png and /dev/null differ diff --git a/static/icons/0600219D.png b/static/icons/0600219D.png deleted file mode 100755 index 4ad5eecc..00000000 Binary files a/static/icons/0600219D.png and /dev/null differ diff --git a/static/icons/0600219E.png b/static/icons/0600219E.png deleted file mode 100755 index c12c66f5..00000000 Binary files a/static/icons/0600219E.png and /dev/null differ diff --git a/static/icons/0600219F.png b/static/icons/0600219F.png deleted file mode 100755 index 342af7da..00000000 Binary files a/static/icons/0600219F.png and /dev/null differ diff --git a/static/icons/060021A0.png b/static/icons/060021A0.png deleted file mode 100755 index a7863b5b..00000000 Binary files a/static/icons/060021A0.png and /dev/null differ diff --git a/static/icons/060021A1.png b/static/icons/060021A1.png deleted file mode 100755 index 60cae9d2..00000000 Binary files a/static/icons/060021A1.png and /dev/null differ diff --git a/static/icons/060021A2.png b/static/icons/060021A2.png deleted file mode 100755 index 13d62b41..00000000 Binary files a/static/icons/060021A2.png and /dev/null differ diff --git a/static/icons/060021A3.png b/static/icons/060021A3.png deleted file mode 100755 index 02413f8e..00000000 Binary files a/static/icons/060021A3.png and /dev/null differ diff --git a/static/icons/060021A4.png b/static/icons/060021A4.png deleted file mode 100755 index 2197c3d6..00000000 Binary files a/static/icons/060021A4.png and /dev/null differ diff --git a/static/icons/060021A5.png b/static/icons/060021A5.png deleted file mode 100755 index 6619f1d3..00000000 Binary files a/static/icons/060021A5.png and /dev/null differ diff --git a/static/icons/060021A6.png b/static/icons/060021A6.png deleted file mode 100755 index 5e0ed8d3..00000000 Binary files a/static/icons/060021A6.png and /dev/null differ diff --git a/static/icons/060021A7.png b/static/icons/060021A7.png deleted file mode 100755 index a8d2b26b..00000000 Binary files a/static/icons/060021A7.png and /dev/null differ diff --git a/static/icons/060021A8.png b/static/icons/060021A8.png deleted file mode 100755 index 6071ab9a..00000000 Binary files a/static/icons/060021A8.png and /dev/null differ diff --git a/static/icons/060021A9.png b/static/icons/060021A9.png deleted file mode 100755 index 623a1d83..00000000 Binary files a/static/icons/060021A9.png and /dev/null differ diff --git a/static/icons/060021AA.png b/static/icons/060021AA.png deleted file mode 100755 index ae009984..00000000 Binary files a/static/icons/060021AA.png and /dev/null differ diff --git a/static/icons/060021AB.png b/static/icons/060021AB.png deleted file mode 100755 index 61fc2458..00000000 Binary files a/static/icons/060021AB.png and /dev/null differ diff --git a/static/icons/060021AC.png b/static/icons/060021AC.png deleted file mode 100755 index 806353fe..00000000 Binary files a/static/icons/060021AC.png and /dev/null differ diff --git a/static/icons/060021AD.png b/static/icons/060021AD.png deleted file mode 100755 index 901bfe60..00000000 Binary files a/static/icons/060021AD.png and /dev/null differ diff --git a/static/icons/060021AE.png b/static/icons/060021AE.png deleted file mode 100755 index 1079cdd3..00000000 Binary files a/static/icons/060021AE.png and /dev/null differ diff --git a/static/icons/060021AF.png b/static/icons/060021AF.png deleted file mode 100755 index a8d6083f..00000000 Binary files a/static/icons/060021AF.png and /dev/null differ diff --git a/static/icons/060021B0.png b/static/icons/060021B0.png deleted file mode 100755 index aec5b04b..00000000 Binary files a/static/icons/060021B0.png and /dev/null differ diff --git a/static/icons/060021B1.png b/static/icons/060021B1.png deleted file mode 100755 index df7584cd..00000000 Binary files a/static/icons/060021B1.png and /dev/null differ diff --git a/static/icons/060021B2.png b/static/icons/060021B2.png deleted file mode 100755 index 8ace1eb8..00000000 Binary files a/static/icons/060021B2.png and /dev/null differ diff --git a/static/icons/060021B3.png b/static/icons/060021B3.png deleted file mode 100755 index cace519b..00000000 Binary files a/static/icons/060021B3.png and /dev/null differ diff --git a/static/icons/060021B4.png b/static/icons/060021B4.png deleted file mode 100755 index 7c5ac6c2..00000000 Binary files a/static/icons/060021B4.png and /dev/null differ diff --git a/static/icons/060021B5.png b/static/icons/060021B5.png deleted file mode 100755 index 6edf9938..00000000 Binary files a/static/icons/060021B5.png and /dev/null differ diff --git a/static/icons/060021B6.png b/static/icons/060021B6.png deleted file mode 100755 index ed40d1f1..00000000 Binary files a/static/icons/060021B6.png and /dev/null differ diff --git a/static/icons/060021B7.png b/static/icons/060021B7.png deleted file mode 100755 index 6348ed33..00000000 Binary files a/static/icons/060021B7.png and /dev/null differ diff --git a/static/icons/060021B8.png b/static/icons/060021B8.png deleted file mode 100755 index 01574fad..00000000 Binary files a/static/icons/060021B8.png and /dev/null differ diff --git a/static/icons/060021B9.png b/static/icons/060021B9.png deleted file mode 100755 index fedfa3ef..00000000 Binary files a/static/icons/060021B9.png and /dev/null differ diff --git a/static/icons/060021BA.png b/static/icons/060021BA.png deleted file mode 100755 index 4e0d4921..00000000 Binary files a/static/icons/060021BA.png and /dev/null differ diff --git a/static/icons/060021BB.png b/static/icons/060021BB.png deleted file mode 100755 index 47a4286e..00000000 Binary files a/static/icons/060021BB.png and /dev/null differ diff --git a/static/icons/060021BC.png b/static/icons/060021BC.png deleted file mode 100755 index ff764e67..00000000 Binary files a/static/icons/060021BC.png and /dev/null differ diff --git a/static/icons/060021BD.png b/static/icons/060021BD.png deleted file mode 100755 index fccdae60..00000000 Binary files a/static/icons/060021BD.png and /dev/null differ diff --git a/static/icons/060021BE.png b/static/icons/060021BE.png deleted file mode 100755 index 0140fb32..00000000 Binary files a/static/icons/060021BE.png and /dev/null differ diff --git a/static/icons/060021BF.png b/static/icons/060021BF.png deleted file mode 100755 index e7587465..00000000 Binary files a/static/icons/060021BF.png and /dev/null differ diff --git a/static/icons/060021C0.png b/static/icons/060021C0.png deleted file mode 100755 index 352578b0..00000000 Binary files a/static/icons/060021C0.png and /dev/null differ diff --git a/static/icons/060021C1.png b/static/icons/060021C1.png deleted file mode 100755 index 81702fd1..00000000 Binary files a/static/icons/060021C1.png and /dev/null differ diff --git a/static/icons/060021C2.png b/static/icons/060021C2.png deleted file mode 100755 index 39d58ef2..00000000 Binary files a/static/icons/060021C2.png and /dev/null differ diff --git a/static/icons/060021C3.png b/static/icons/060021C3.png deleted file mode 100755 index a76f5637..00000000 Binary files a/static/icons/060021C3.png and /dev/null differ diff --git a/static/icons/060021C4.png b/static/icons/060021C4.png deleted file mode 100755 index 17b1ece8..00000000 Binary files a/static/icons/060021C4.png and /dev/null differ diff --git a/static/icons/060021C5.png b/static/icons/060021C5.png deleted file mode 100755 index 8cadf8d6..00000000 Binary files a/static/icons/060021C5.png and /dev/null differ diff --git a/static/icons/060021C6.png b/static/icons/060021C6.png deleted file mode 100755 index 4ec4bee9..00000000 Binary files a/static/icons/060021C6.png and /dev/null differ diff --git a/static/icons/060021C7.png b/static/icons/060021C7.png deleted file mode 100755 index a3811058..00000000 Binary files a/static/icons/060021C7.png and /dev/null differ diff --git a/static/icons/060021C8.png b/static/icons/060021C8.png deleted file mode 100755 index e005277c..00000000 Binary files a/static/icons/060021C8.png and /dev/null differ diff --git a/static/icons/060021C9.png b/static/icons/060021C9.png deleted file mode 100755 index 901a4b2b..00000000 Binary files a/static/icons/060021C9.png and /dev/null differ diff --git a/static/icons/060021CA.png b/static/icons/060021CA.png deleted file mode 100755 index e5473780..00000000 Binary files a/static/icons/060021CA.png and /dev/null differ diff --git a/static/icons/060021CB.png b/static/icons/060021CB.png deleted file mode 100755 index 427e41fe..00000000 Binary files a/static/icons/060021CB.png and /dev/null differ diff --git a/static/icons/060021CC.png b/static/icons/060021CC.png deleted file mode 100755 index ca5d4106..00000000 Binary files a/static/icons/060021CC.png and /dev/null differ diff --git a/static/icons/060021CD.png b/static/icons/060021CD.png deleted file mode 100755 index b95146eb..00000000 Binary files a/static/icons/060021CD.png and /dev/null differ diff --git a/static/icons/060021CE.png b/static/icons/060021CE.png deleted file mode 100755 index 0d6c6ee4..00000000 Binary files a/static/icons/060021CE.png and /dev/null differ diff --git a/static/icons/060021CF.png b/static/icons/060021CF.png deleted file mode 100755 index 31d93f4a..00000000 Binary files a/static/icons/060021CF.png and /dev/null differ diff --git a/static/icons/060021D0.png b/static/icons/060021D0.png deleted file mode 100755 index 94de3040..00000000 Binary files a/static/icons/060021D0.png and /dev/null differ diff --git a/static/icons/060021D1.png b/static/icons/060021D1.png deleted file mode 100755 index 70d90b4f..00000000 Binary files a/static/icons/060021D1.png and /dev/null differ diff --git a/static/icons/060021D2.png b/static/icons/060021D2.png deleted file mode 100755 index 2ba7383f..00000000 Binary files a/static/icons/060021D2.png and /dev/null differ diff --git a/static/icons/060021D4.png b/static/icons/060021D4.png deleted file mode 100755 index 44ce7bd7..00000000 Binary files a/static/icons/060021D4.png and /dev/null differ diff --git a/static/icons/060021D6.png b/static/icons/060021D6.png deleted file mode 100755 index 325b9b19..00000000 Binary files a/static/icons/060021D6.png and /dev/null differ diff --git a/static/icons/060021D7.png b/static/icons/060021D7.png deleted file mode 100755 index e78620cb..00000000 Binary files a/static/icons/060021D7.png and /dev/null differ diff --git a/static/icons/060021D8.png b/static/icons/060021D8.png deleted file mode 100755 index 7fe8a135..00000000 Binary files a/static/icons/060021D8.png and /dev/null differ diff --git a/static/icons/060021D9.png b/static/icons/060021D9.png deleted file mode 100755 index 6a7f981d..00000000 Binary files a/static/icons/060021D9.png and /dev/null differ diff --git a/static/icons/060021DA.png b/static/icons/060021DA.png deleted file mode 100755 index f8c82845..00000000 Binary files a/static/icons/060021DA.png and /dev/null differ diff --git a/static/icons/060021DB.png b/static/icons/060021DB.png deleted file mode 100755 index ae1edf4e..00000000 Binary files a/static/icons/060021DB.png and /dev/null differ diff --git a/static/icons/060021DC.png b/static/icons/060021DC.png deleted file mode 100755 index 48408d80..00000000 Binary files a/static/icons/060021DC.png and /dev/null differ diff --git a/static/icons/060021DD.png b/static/icons/060021DD.png deleted file mode 100755 index 974afff1..00000000 Binary files a/static/icons/060021DD.png and /dev/null differ diff --git a/static/icons/060021DE.png b/static/icons/060021DE.png deleted file mode 100755 index 2cf7ee84..00000000 Binary files a/static/icons/060021DE.png and /dev/null differ diff --git a/static/icons/060021DF.png b/static/icons/060021DF.png deleted file mode 100755 index 9a44a652..00000000 Binary files a/static/icons/060021DF.png and /dev/null differ diff --git a/static/icons/060021E0.png b/static/icons/060021E0.png deleted file mode 100755 index e799774f..00000000 Binary files a/static/icons/060021E0.png and /dev/null differ diff --git a/static/icons/060021E1.png b/static/icons/060021E1.png deleted file mode 100755 index 222daa00..00000000 Binary files a/static/icons/060021E1.png and /dev/null differ diff --git a/static/icons/060021E2.png b/static/icons/060021E2.png deleted file mode 100755 index cf01f30f..00000000 Binary files a/static/icons/060021E2.png and /dev/null differ diff --git a/static/icons/060021E3.png b/static/icons/060021E3.png deleted file mode 100755 index e638df00..00000000 Binary files a/static/icons/060021E3.png and /dev/null differ diff --git a/static/icons/060021E4.png b/static/icons/060021E4.png deleted file mode 100755 index 097ea1af..00000000 Binary files a/static/icons/060021E4.png and /dev/null differ diff --git a/static/icons/060021E5.png b/static/icons/060021E5.png deleted file mode 100755 index 3f112d83..00000000 Binary files a/static/icons/060021E5.png and /dev/null differ diff --git a/static/icons/060021E6.png b/static/icons/060021E6.png deleted file mode 100755 index 16e91794..00000000 Binary files a/static/icons/060021E6.png and /dev/null differ diff --git a/static/icons/060021E7.png b/static/icons/060021E7.png deleted file mode 100755 index 225c21bc..00000000 Binary files a/static/icons/060021E7.png and /dev/null differ diff --git a/static/icons/060021E8.png b/static/icons/060021E8.png deleted file mode 100755 index 18ae4bd3..00000000 Binary files a/static/icons/060021E8.png and /dev/null differ diff --git a/static/icons/060021E9.png b/static/icons/060021E9.png deleted file mode 100755 index 1ce2cc87..00000000 Binary files a/static/icons/060021E9.png and /dev/null differ diff --git a/static/icons/060021EA.png b/static/icons/060021EA.png deleted file mode 100755 index 4bcbcee0..00000000 Binary files a/static/icons/060021EA.png and /dev/null differ diff --git a/static/icons/060021EB.png b/static/icons/060021EB.png deleted file mode 100755 index 16712087..00000000 Binary files a/static/icons/060021EB.png and /dev/null differ diff --git a/static/icons/060021EC.png b/static/icons/060021EC.png deleted file mode 100755 index c02470b8..00000000 Binary files a/static/icons/060021EC.png and /dev/null differ diff --git a/static/icons/060021ED.png b/static/icons/060021ED.png deleted file mode 100755 index 5c6666ac..00000000 Binary files a/static/icons/060021ED.png and /dev/null differ diff --git a/static/icons/060021EE.png b/static/icons/060021EE.png deleted file mode 100755 index ccfbe009..00000000 Binary files a/static/icons/060021EE.png and /dev/null differ diff --git a/static/icons/060021EF.png b/static/icons/060021EF.png deleted file mode 100755 index 00746ffc..00000000 Binary files a/static/icons/060021EF.png and /dev/null differ diff --git a/static/icons/060021F0.png b/static/icons/060021F0.png deleted file mode 100755 index 66f43e9e..00000000 Binary files a/static/icons/060021F0.png and /dev/null differ diff --git a/static/icons/060021F1.png b/static/icons/060021F1.png deleted file mode 100755 index bb6c3158..00000000 Binary files a/static/icons/060021F1.png and /dev/null differ diff --git a/static/icons/060021F4.png b/static/icons/060021F4.png deleted file mode 100755 index f82cb5e5..00000000 Binary files a/static/icons/060021F4.png and /dev/null differ diff --git a/static/icons/060021F5.png b/static/icons/060021F5.png deleted file mode 100755 index 28020d5e..00000000 Binary files a/static/icons/060021F5.png and /dev/null differ diff --git a/static/icons/060021F6.png b/static/icons/060021F6.png deleted file mode 100755 index d9aa3ad4..00000000 Binary files a/static/icons/060021F6.png and /dev/null differ diff --git a/static/icons/060021F7.png b/static/icons/060021F7.png deleted file mode 100755 index f7b22c37..00000000 Binary files a/static/icons/060021F7.png and /dev/null differ diff --git a/static/icons/060021F8.png b/static/icons/060021F8.png deleted file mode 100755 index 3bdcff37..00000000 Binary files a/static/icons/060021F8.png and /dev/null differ diff --git a/static/icons/060021F9.png b/static/icons/060021F9.png deleted file mode 100755 index d95ff4a1..00000000 Binary files a/static/icons/060021F9.png and /dev/null differ diff --git a/static/icons/060021FB.png b/static/icons/060021FB.png deleted file mode 100755 index 27a3f080..00000000 Binary files a/static/icons/060021FB.png and /dev/null differ diff --git a/static/icons/060021FC.png b/static/icons/060021FC.png deleted file mode 100755 index 9a282615..00000000 Binary files a/static/icons/060021FC.png and /dev/null differ diff --git a/static/icons/060021FD.png b/static/icons/060021FD.png deleted file mode 100755 index 1623db29..00000000 Binary files a/static/icons/060021FD.png and /dev/null differ diff --git a/static/icons/060021FE.png b/static/icons/060021FE.png deleted file mode 100755 index 790bb1c9..00000000 Binary files a/static/icons/060021FE.png and /dev/null differ diff --git a/static/icons/060021FF.png b/static/icons/060021FF.png deleted file mode 100755 index 8a6e5338..00000000 Binary files a/static/icons/060021FF.png and /dev/null differ diff --git a/static/icons/06002200.png b/static/icons/06002200.png deleted file mode 100755 index dc70d0f9..00000000 Binary files a/static/icons/06002200.png and /dev/null differ diff --git a/static/icons/06002201.png b/static/icons/06002201.png deleted file mode 100755 index a26c60d8..00000000 Binary files a/static/icons/06002201.png and /dev/null differ diff --git a/static/icons/06002202.png b/static/icons/06002202.png deleted file mode 100755 index 40049495..00000000 Binary files a/static/icons/06002202.png and /dev/null differ diff --git a/static/icons/06002203.png b/static/icons/06002203.png deleted file mode 100755 index 6157d10a..00000000 Binary files a/static/icons/06002203.png and /dev/null differ diff --git a/static/icons/06002204.png b/static/icons/06002204.png deleted file mode 100755 index 16d0661b..00000000 Binary files a/static/icons/06002204.png and /dev/null differ diff --git a/static/icons/06002205.png b/static/icons/06002205.png deleted file mode 100755 index a16098b1..00000000 Binary files a/static/icons/06002205.png and /dev/null differ diff --git a/static/icons/06002206.png b/static/icons/06002206.png deleted file mode 100755 index ef0ecfb1..00000000 Binary files a/static/icons/06002206.png and /dev/null differ diff --git a/static/icons/06002207.png b/static/icons/06002207.png deleted file mode 100755 index e42214cf..00000000 Binary files a/static/icons/06002207.png and /dev/null differ diff --git a/static/icons/06002208.png b/static/icons/06002208.png deleted file mode 100755 index 9f31ff81..00000000 Binary files a/static/icons/06002208.png and /dev/null differ diff --git a/static/icons/06002209.png b/static/icons/06002209.png deleted file mode 100755 index e25ea2a0..00000000 Binary files a/static/icons/06002209.png and /dev/null differ diff --git a/static/icons/0600220A.png b/static/icons/0600220A.png deleted file mode 100755 index 24fc1029..00000000 Binary files a/static/icons/0600220A.png and /dev/null differ diff --git a/static/icons/0600220B.png b/static/icons/0600220B.png deleted file mode 100755 index 4b9870a7..00000000 Binary files a/static/icons/0600220B.png and /dev/null differ diff --git a/static/icons/0600220C.png b/static/icons/0600220C.png deleted file mode 100755 index 4fa0a985..00000000 Binary files a/static/icons/0600220C.png and /dev/null differ diff --git a/static/icons/0600220D.png b/static/icons/0600220D.png deleted file mode 100755 index f48fa403..00000000 Binary files a/static/icons/0600220D.png and /dev/null differ diff --git a/static/icons/0600220E.png b/static/icons/0600220E.png deleted file mode 100755 index f9f939e0..00000000 Binary files a/static/icons/0600220E.png and /dev/null differ diff --git a/static/icons/0600220F.png b/static/icons/0600220F.png deleted file mode 100755 index b9690bc6..00000000 Binary files a/static/icons/0600220F.png and /dev/null differ diff --git a/static/icons/06002210.png b/static/icons/06002210.png deleted file mode 100755 index 97088a9c..00000000 Binary files a/static/icons/06002210.png and /dev/null differ diff --git a/static/icons/06002211.png b/static/icons/06002211.png deleted file mode 100755 index 1c762592..00000000 Binary files a/static/icons/06002211.png and /dev/null differ diff --git a/static/icons/06002212.png b/static/icons/06002212.png deleted file mode 100755 index 25a6f168..00000000 Binary files a/static/icons/06002212.png and /dev/null differ diff --git a/static/icons/06002214.png b/static/icons/06002214.png deleted file mode 100755 index 582f95b7..00000000 Binary files a/static/icons/06002214.png and /dev/null differ diff --git a/static/icons/06002216.png b/static/icons/06002216.png deleted file mode 100755 index 8f3ed6e8..00000000 Binary files a/static/icons/06002216.png and /dev/null differ diff --git a/static/icons/06002217.png b/static/icons/06002217.png deleted file mode 100755 index 8b1d07ad..00000000 Binary files a/static/icons/06002217.png and /dev/null differ diff --git a/static/icons/06002218.png b/static/icons/06002218.png deleted file mode 100755 index 08f314c6..00000000 Binary files a/static/icons/06002218.png and /dev/null differ diff --git a/static/icons/06002219.png b/static/icons/06002219.png deleted file mode 100755 index ad25cd12..00000000 Binary files a/static/icons/06002219.png and /dev/null differ diff --git a/static/icons/0600221B.png b/static/icons/0600221B.png deleted file mode 100755 index 3c63770b..00000000 Binary files a/static/icons/0600221B.png and /dev/null differ diff --git a/static/icons/0600221C.png b/static/icons/0600221C.png deleted file mode 100755 index 7648031f..00000000 Binary files a/static/icons/0600221C.png and /dev/null differ diff --git a/static/icons/0600221D.png b/static/icons/0600221D.png deleted file mode 100755 index 61822a92..00000000 Binary files a/static/icons/0600221D.png and /dev/null differ diff --git a/static/icons/0600221E.png b/static/icons/0600221E.png deleted file mode 100755 index ba8d2ebb..00000000 Binary files a/static/icons/0600221E.png and /dev/null differ diff --git a/static/icons/0600221F.png b/static/icons/0600221F.png deleted file mode 100755 index 966043a9..00000000 Binary files a/static/icons/0600221F.png and /dev/null differ diff --git a/static/icons/06002220.png b/static/icons/06002220.png deleted file mode 100755 index 9435a00b..00000000 Binary files a/static/icons/06002220.png and /dev/null differ diff --git a/static/icons/06002221.png b/static/icons/06002221.png deleted file mode 100755 index 3da7d0c2..00000000 Binary files a/static/icons/06002221.png and /dev/null differ diff --git a/static/icons/06002222.png b/static/icons/06002222.png deleted file mode 100755 index 5ef20bfb..00000000 Binary files a/static/icons/06002222.png and /dev/null differ diff --git a/static/icons/06002223.png b/static/icons/06002223.png deleted file mode 100755 index b81b2a8a..00000000 Binary files a/static/icons/06002223.png and /dev/null differ diff --git a/static/icons/06002224.png b/static/icons/06002224.png deleted file mode 100755 index 7003ef33..00000000 Binary files a/static/icons/06002224.png and /dev/null differ diff --git a/static/icons/06002225.png b/static/icons/06002225.png deleted file mode 100755 index 6c744031..00000000 Binary files a/static/icons/06002225.png and /dev/null differ diff --git a/static/icons/06002226.png b/static/icons/06002226.png deleted file mode 100755 index 8bfa268d..00000000 Binary files a/static/icons/06002226.png and /dev/null differ diff --git a/static/icons/06002227.png b/static/icons/06002227.png deleted file mode 100755 index bd537883..00000000 Binary files a/static/icons/06002227.png and /dev/null differ diff --git a/static/icons/06002228.png b/static/icons/06002228.png deleted file mode 100755 index 6484bdec..00000000 Binary files a/static/icons/06002228.png and /dev/null differ diff --git a/static/icons/06002229.png b/static/icons/06002229.png deleted file mode 100755 index 73d90513..00000000 Binary files a/static/icons/06002229.png and /dev/null differ diff --git a/static/icons/0600222A.png b/static/icons/0600222A.png deleted file mode 100755 index 282e1c00..00000000 Binary files a/static/icons/0600222A.png and /dev/null differ diff --git a/static/icons/0600222B.png b/static/icons/0600222B.png deleted file mode 100755 index 2dab21e7..00000000 Binary files a/static/icons/0600222B.png and /dev/null differ diff --git a/static/icons/0600222C.png b/static/icons/0600222C.png deleted file mode 100755 index 48e8eda7..00000000 Binary files a/static/icons/0600222C.png and /dev/null differ diff --git a/static/icons/0600222D.png b/static/icons/0600222D.png deleted file mode 100755 index f2ac73c3..00000000 Binary files a/static/icons/0600222D.png and /dev/null differ diff --git a/static/icons/0600222E.png b/static/icons/0600222E.png deleted file mode 100755 index c1406d63..00000000 Binary files a/static/icons/0600222E.png and /dev/null differ diff --git a/static/icons/0600222F.png b/static/icons/0600222F.png deleted file mode 100755 index 49850a4f..00000000 Binary files a/static/icons/0600222F.png and /dev/null differ diff --git a/static/icons/06002230.png b/static/icons/06002230.png deleted file mode 100755 index 545df553..00000000 Binary files a/static/icons/06002230.png and /dev/null differ diff --git a/static/icons/06002231.png b/static/icons/06002231.png deleted file mode 100755 index 88a53d8e..00000000 Binary files a/static/icons/06002231.png and /dev/null differ diff --git a/static/icons/06002232.png b/static/icons/06002232.png deleted file mode 100755 index 35794b4a..00000000 Binary files a/static/icons/06002232.png and /dev/null differ diff --git a/static/icons/06002233.png b/static/icons/06002233.png deleted file mode 100755 index dcd07235..00000000 Binary files a/static/icons/06002233.png and /dev/null differ diff --git a/static/icons/06002234.png b/static/icons/06002234.png deleted file mode 100755 index bb266b85..00000000 Binary files a/static/icons/06002234.png and /dev/null differ diff --git a/static/icons/06002235.png b/static/icons/06002235.png deleted file mode 100755 index 7df5205b..00000000 Binary files a/static/icons/06002235.png and /dev/null differ diff --git a/static/icons/06002236.png b/static/icons/06002236.png deleted file mode 100755 index fc110e7b..00000000 Binary files a/static/icons/06002236.png and /dev/null differ diff --git a/static/icons/06002237.png b/static/icons/06002237.png deleted file mode 100755 index 7702ff39..00000000 Binary files a/static/icons/06002237.png and /dev/null differ diff --git a/static/icons/06002238.png b/static/icons/06002238.png deleted file mode 100755 index 1bed81d1..00000000 Binary files a/static/icons/06002238.png and /dev/null differ diff --git a/static/icons/06002239.png b/static/icons/06002239.png deleted file mode 100755 index d3c9e590..00000000 Binary files a/static/icons/06002239.png and /dev/null differ diff --git a/static/icons/0600223A.png b/static/icons/0600223A.png deleted file mode 100755 index e8bf7b8d..00000000 Binary files a/static/icons/0600223A.png and /dev/null differ diff --git a/static/icons/0600223B.png b/static/icons/0600223B.png deleted file mode 100755 index 17907d25..00000000 Binary files a/static/icons/0600223B.png and /dev/null differ diff --git a/static/icons/0600223D.png b/static/icons/0600223D.png deleted file mode 100755 index 976b80ca..00000000 Binary files a/static/icons/0600223D.png and /dev/null differ diff --git a/static/icons/06002241.png b/static/icons/06002241.png deleted file mode 100755 index 689a1a95..00000000 Binary files a/static/icons/06002241.png and /dev/null differ diff --git a/static/icons/06002242.png b/static/icons/06002242.png deleted file mode 100755 index d67ea6cd..00000000 Binary files a/static/icons/06002242.png and /dev/null differ diff --git a/static/icons/06002243.png b/static/icons/06002243.png deleted file mode 100755 index 1aa076cf..00000000 Binary files a/static/icons/06002243.png and /dev/null differ diff --git a/static/icons/06002244.png b/static/icons/06002244.png deleted file mode 100755 index ef323484..00000000 Binary files a/static/icons/06002244.png and /dev/null differ diff --git a/static/icons/06002245.png b/static/icons/06002245.png deleted file mode 100755 index 719f277d..00000000 Binary files a/static/icons/06002245.png and /dev/null differ diff --git a/static/icons/06002246.png b/static/icons/06002246.png deleted file mode 100755 index 1afac294..00000000 Binary files a/static/icons/06002246.png and /dev/null differ diff --git a/static/icons/06002247.png b/static/icons/06002247.png deleted file mode 100755 index db2bd4dc..00000000 Binary files a/static/icons/06002247.png and /dev/null differ diff --git a/static/icons/06002248.png b/static/icons/06002248.png deleted file mode 100755 index 0cba7b53..00000000 Binary files a/static/icons/06002248.png and /dev/null differ diff --git a/static/icons/06002249.png b/static/icons/06002249.png deleted file mode 100755 index 77928597..00000000 Binary files a/static/icons/06002249.png and /dev/null differ diff --git a/static/icons/0600224A.png b/static/icons/0600224A.png deleted file mode 100755 index ddcdd2f8..00000000 Binary files a/static/icons/0600224A.png and /dev/null differ diff --git a/static/icons/0600224B.png b/static/icons/0600224B.png deleted file mode 100755 index 79f0dbc2..00000000 Binary files a/static/icons/0600224B.png and /dev/null differ diff --git a/static/icons/0600224C.png b/static/icons/0600224C.png deleted file mode 100755 index 5c6fb33a..00000000 Binary files a/static/icons/0600224C.png and /dev/null differ diff --git a/static/icons/0600224D.png b/static/icons/0600224D.png deleted file mode 100755 index 9435a00b..00000000 Binary files a/static/icons/0600224D.png and /dev/null differ diff --git a/static/icons/0600224E.png b/static/icons/0600224E.png deleted file mode 100755 index 2eeb55f3..00000000 Binary files a/static/icons/0600224E.png and /dev/null differ diff --git a/static/icons/0600224F.png b/static/icons/0600224F.png deleted file mode 100755 index fb58d043..00000000 Binary files a/static/icons/0600224F.png and /dev/null differ diff --git a/static/icons/06002250.png b/static/icons/06002250.png deleted file mode 100755 index f9a13bb9..00000000 Binary files a/static/icons/06002250.png and /dev/null differ diff --git a/static/icons/06002251.png b/static/icons/06002251.png deleted file mode 100755 index 9aa2961a..00000000 Binary files a/static/icons/06002251.png and /dev/null differ diff --git a/static/icons/06002252.png b/static/icons/06002252.png deleted file mode 100755 index ae3f665f..00000000 Binary files a/static/icons/06002252.png and /dev/null differ diff --git a/static/icons/06002253.png b/static/icons/06002253.png deleted file mode 100755 index 023b8e92..00000000 Binary files a/static/icons/06002253.png and /dev/null differ diff --git a/static/icons/06002254.png b/static/icons/06002254.png deleted file mode 100755 index ab3ce640..00000000 Binary files a/static/icons/06002254.png and /dev/null differ diff --git a/static/icons/06002255.png b/static/icons/06002255.png deleted file mode 100755 index 948f6740..00000000 Binary files a/static/icons/06002255.png and /dev/null differ diff --git a/static/icons/06002256.png b/static/icons/06002256.png deleted file mode 100755 index 27077f0f..00000000 Binary files a/static/icons/06002256.png and /dev/null differ diff --git a/static/icons/06002257.png b/static/icons/06002257.png deleted file mode 100755 index f29bcf86..00000000 Binary files a/static/icons/06002257.png and /dev/null differ diff --git a/static/icons/06002258.png b/static/icons/06002258.png deleted file mode 100755 index ddd13150..00000000 Binary files a/static/icons/06002258.png and /dev/null differ diff --git a/static/icons/06002259.png b/static/icons/06002259.png deleted file mode 100755 index e0c1af22..00000000 Binary files a/static/icons/06002259.png and /dev/null differ diff --git a/static/icons/0600225A.png b/static/icons/0600225A.png deleted file mode 100755 index aec95e09..00000000 Binary files a/static/icons/0600225A.png and /dev/null differ diff --git a/static/icons/0600225B.png b/static/icons/0600225B.png deleted file mode 100755 index 5ef20bfb..00000000 Binary files a/static/icons/0600225B.png and /dev/null differ diff --git a/static/icons/0600225C.png b/static/icons/0600225C.png deleted file mode 100755 index 4f0c7f94..00000000 Binary files a/static/icons/0600225C.png and /dev/null differ diff --git a/static/icons/0600225D.png b/static/icons/0600225D.png deleted file mode 100755 index 1307ee50..00000000 Binary files a/static/icons/0600225D.png and /dev/null differ diff --git a/static/icons/0600225E.png b/static/icons/0600225E.png deleted file mode 100755 index 2e29cc85..00000000 Binary files a/static/icons/0600225E.png and /dev/null differ diff --git a/static/icons/0600225F.png b/static/icons/0600225F.png deleted file mode 100755 index f5330ea7..00000000 Binary files a/static/icons/0600225F.png and /dev/null differ diff --git a/static/icons/06002260.png b/static/icons/06002260.png deleted file mode 100755 index cf9f60e4..00000000 Binary files a/static/icons/06002260.png and /dev/null differ diff --git a/static/icons/06002261.png b/static/icons/06002261.png deleted file mode 100755 index 91490eb8..00000000 Binary files a/static/icons/06002261.png and /dev/null differ diff --git a/static/icons/06002262.png b/static/icons/06002262.png deleted file mode 100755 index b81b2a8a..00000000 Binary files a/static/icons/06002262.png and /dev/null differ diff --git a/static/icons/06002263.png b/static/icons/06002263.png deleted file mode 100755 index aff83756..00000000 Binary files a/static/icons/06002263.png and /dev/null differ diff --git a/static/icons/06002264.png b/static/icons/06002264.png deleted file mode 100755 index 12cd1a41..00000000 Binary files a/static/icons/06002264.png and /dev/null differ diff --git a/static/icons/06002265.png b/static/icons/06002265.png deleted file mode 100755 index 3cb920e8..00000000 Binary files a/static/icons/06002265.png and /dev/null differ diff --git a/static/icons/06002266.png b/static/icons/06002266.png deleted file mode 100755 index e7442790..00000000 Binary files a/static/icons/06002266.png and /dev/null differ diff --git a/static/icons/06002267.png b/static/icons/06002267.png deleted file mode 100755 index 7ae30a8f..00000000 Binary files a/static/icons/06002267.png and /dev/null differ diff --git a/static/icons/06002269.png b/static/icons/06002269.png deleted file mode 100755 index d8b8670b..00000000 Binary files a/static/icons/06002269.png and /dev/null differ diff --git a/static/icons/0600226A.png b/static/icons/0600226A.png deleted file mode 100755 index eadcb860..00000000 Binary files a/static/icons/0600226A.png and /dev/null differ diff --git a/static/icons/0600226B.png b/static/icons/0600226B.png deleted file mode 100755 index 6ade1cbc..00000000 Binary files a/static/icons/0600226B.png and /dev/null differ diff --git a/static/icons/0600226C.png b/static/icons/0600226C.png deleted file mode 100755 index 73d737d3..00000000 Binary files a/static/icons/0600226C.png and /dev/null differ diff --git a/static/icons/0600226D.png b/static/icons/0600226D.png deleted file mode 100755 index b340b590..00000000 Binary files a/static/icons/0600226D.png and /dev/null differ diff --git a/static/icons/0600226E.png b/static/icons/0600226E.png deleted file mode 100755 index 929e1c1c..00000000 Binary files a/static/icons/0600226E.png and /dev/null differ diff --git a/static/icons/0600226F.png b/static/icons/0600226F.png deleted file mode 100755 index a9a20f74..00000000 Binary files a/static/icons/0600226F.png and /dev/null differ diff --git a/static/icons/06002271.png b/static/icons/06002271.png deleted file mode 100755 index aa3453e0..00000000 Binary files a/static/icons/06002271.png and /dev/null differ diff --git a/static/icons/06002272.png b/static/icons/06002272.png deleted file mode 100755 index 538b8a9b..00000000 Binary files a/static/icons/06002272.png and /dev/null differ diff --git a/static/icons/06002273.png b/static/icons/06002273.png deleted file mode 100755 index 5789b335..00000000 Binary files a/static/icons/06002273.png and /dev/null differ diff --git a/static/icons/06002274.png b/static/icons/06002274.png deleted file mode 100755 index 082c2a53..00000000 Binary files a/static/icons/06002274.png and /dev/null differ diff --git a/static/icons/06002275.png b/static/icons/06002275.png deleted file mode 100755 index eabba198..00000000 Binary files a/static/icons/06002275.png and /dev/null differ diff --git a/static/icons/06002276.png b/static/icons/06002276.png deleted file mode 100755 index b1aadf7c..00000000 Binary files a/static/icons/06002276.png and /dev/null differ diff --git a/static/icons/06002277.png b/static/icons/06002277.png deleted file mode 100755 index 613714b8..00000000 Binary files a/static/icons/06002277.png and /dev/null differ diff --git a/static/icons/06002278.png b/static/icons/06002278.png deleted file mode 100755 index 2edea20d..00000000 Binary files a/static/icons/06002278.png and /dev/null differ diff --git a/static/icons/0600227A.png b/static/icons/0600227A.png deleted file mode 100755 index 0b343ec7..00000000 Binary files a/static/icons/0600227A.png and /dev/null differ diff --git a/static/icons/0600227B.png b/static/icons/0600227B.png deleted file mode 100755 index 925b80e1..00000000 Binary files a/static/icons/0600227B.png and /dev/null differ diff --git a/static/icons/0600227C.png b/static/icons/0600227C.png deleted file mode 100755 index 9d997b42..00000000 Binary files a/static/icons/0600227C.png and /dev/null differ diff --git a/static/icons/0600227D.png b/static/icons/0600227D.png deleted file mode 100755 index 9d3b5336..00000000 Binary files a/static/icons/0600227D.png and /dev/null differ diff --git a/static/icons/0600227E.png b/static/icons/0600227E.png deleted file mode 100755 index 28e53364..00000000 Binary files a/static/icons/0600227E.png and /dev/null differ diff --git a/static/icons/0600227F.png b/static/icons/0600227F.png deleted file mode 100755 index 29080c5d..00000000 Binary files a/static/icons/0600227F.png and /dev/null differ diff --git a/static/icons/06002280.png b/static/icons/06002280.png deleted file mode 100755 index 0b6078bc..00000000 Binary files a/static/icons/06002280.png and /dev/null differ diff --git a/static/icons/06002281.png b/static/icons/06002281.png deleted file mode 100755 index a627d67b..00000000 Binary files a/static/icons/06002281.png and /dev/null differ diff --git a/static/icons/06002282.png b/static/icons/06002282.png deleted file mode 100755 index c789502c..00000000 Binary files a/static/icons/06002282.png and /dev/null differ diff --git a/static/icons/06002283.png b/static/icons/06002283.png deleted file mode 100755 index 17b388d8..00000000 Binary files a/static/icons/06002283.png and /dev/null differ diff --git a/static/icons/06002284.png b/static/icons/06002284.png deleted file mode 100755 index 58c7a1e2..00000000 Binary files a/static/icons/06002284.png and /dev/null differ diff --git a/static/icons/06002285.png b/static/icons/06002285.png deleted file mode 100755 index 6c3d782c..00000000 Binary files a/static/icons/06002285.png and /dev/null differ diff --git a/static/icons/06002286.png b/static/icons/06002286.png deleted file mode 100755 index 987cbd40..00000000 Binary files a/static/icons/06002286.png and /dev/null differ diff --git a/static/icons/06002287.png b/static/icons/06002287.png deleted file mode 100755 index 69dc011f..00000000 Binary files a/static/icons/06002287.png and /dev/null differ diff --git a/static/icons/06002288.png b/static/icons/06002288.png deleted file mode 100755 index 9acdd964..00000000 Binary files a/static/icons/06002288.png and /dev/null differ diff --git a/static/icons/06002289.png b/static/icons/06002289.png deleted file mode 100755 index 301e3bbe..00000000 Binary files a/static/icons/06002289.png and /dev/null differ diff --git a/static/icons/0600228A.png b/static/icons/0600228A.png deleted file mode 100755 index 052f8ffc..00000000 Binary files a/static/icons/0600228A.png and /dev/null differ diff --git a/static/icons/06002292.png b/static/icons/06002292.png deleted file mode 100755 index 4c578564..00000000 Binary files a/static/icons/06002292.png and /dev/null differ diff --git a/static/icons/06002295.png b/static/icons/06002295.png deleted file mode 100755 index abfea917..00000000 Binary files a/static/icons/06002295.png and /dev/null differ diff --git a/static/icons/06002296.png b/static/icons/06002296.png deleted file mode 100755 index e61fa6ff..00000000 Binary files a/static/icons/06002296.png and /dev/null differ diff --git a/static/icons/06002297.png b/static/icons/06002297.png deleted file mode 100755 index 28f5f50d..00000000 Binary files a/static/icons/06002297.png and /dev/null differ diff --git a/static/icons/06002298.png b/static/icons/06002298.png deleted file mode 100755 index ff5a9acb..00000000 Binary files a/static/icons/06002298.png and /dev/null differ diff --git a/static/icons/06002299.png b/static/icons/06002299.png deleted file mode 100755 index 2ad6a825..00000000 Binary files a/static/icons/06002299.png and /dev/null differ diff --git a/static/icons/0600229B.png b/static/icons/0600229B.png deleted file mode 100755 index 431bae1d..00000000 Binary files a/static/icons/0600229B.png and /dev/null differ diff --git a/static/icons/0600229F.png b/static/icons/0600229F.png deleted file mode 100755 index 4ac345fb..00000000 Binary files a/static/icons/0600229F.png and /dev/null differ diff --git a/static/icons/060022A0.png b/static/icons/060022A0.png deleted file mode 100755 index 59bca6df..00000000 Binary files a/static/icons/060022A0.png and /dev/null differ diff --git a/static/icons/060022A2.png b/static/icons/060022A2.png deleted file mode 100755 index f87223f4..00000000 Binary files a/static/icons/060022A2.png and /dev/null differ diff --git a/static/icons/060022A3.png b/static/icons/060022A3.png deleted file mode 100755 index 22a5c2a7..00000000 Binary files a/static/icons/060022A3.png and /dev/null differ diff --git a/static/icons/060022A4.png b/static/icons/060022A4.png deleted file mode 100755 index e8071591..00000000 Binary files a/static/icons/060022A4.png and /dev/null differ diff --git a/static/icons/060022A5.png b/static/icons/060022A5.png deleted file mode 100755 index c7256b2a..00000000 Binary files a/static/icons/060022A5.png and /dev/null differ diff --git a/static/icons/060022A8.png b/static/icons/060022A8.png deleted file mode 100755 index 3e4c36f2..00000000 Binary files a/static/icons/060022A8.png and /dev/null differ diff --git a/static/icons/060022A9.png b/static/icons/060022A9.png deleted file mode 100755 index f43f6fad..00000000 Binary files a/static/icons/060022A9.png and /dev/null differ diff --git a/static/icons/060022AB.png b/static/icons/060022AB.png deleted file mode 100755 index 2761f203..00000000 Binary files a/static/icons/060022AB.png and /dev/null differ diff --git a/static/icons/060022AC.png b/static/icons/060022AC.png deleted file mode 100755 index 1f9fcc71..00000000 Binary files a/static/icons/060022AC.png and /dev/null differ diff --git a/static/icons/060022AD.png b/static/icons/060022AD.png deleted file mode 100755 index 791f86c4..00000000 Binary files a/static/icons/060022AD.png and /dev/null differ diff --git a/static/icons/060022AE.png b/static/icons/060022AE.png deleted file mode 100755 index f5e08f1f..00000000 Binary files a/static/icons/060022AE.png and /dev/null differ diff --git a/static/icons/060022AF.png b/static/icons/060022AF.png deleted file mode 100755 index 7fc1d572..00000000 Binary files a/static/icons/060022AF.png and /dev/null differ diff --git a/static/icons/060022B0.png b/static/icons/060022B0.png deleted file mode 100755 index 2242a1d3..00000000 Binary files a/static/icons/060022B0.png and /dev/null differ diff --git a/static/icons/060022B1.png b/static/icons/060022B1.png deleted file mode 100755 index 21931c3a..00000000 Binary files a/static/icons/060022B1.png and /dev/null differ diff --git a/static/icons/060022B2.png b/static/icons/060022B2.png deleted file mode 100755 index 3ab465b6..00000000 Binary files a/static/icons/060022B2.png and /dev/null differ diff --git a/static/icons/060022B3.png b/static/icons/060022B3.png deleted file mode 100755 index 4aef5ad4..00000000 Binary files a/static/icons/060022B3.png and /dev/null differ diff --git a/static/icons/060022B4.png b/static/icons/060022B4.png deleted file mode 100755 index cb5362ae..00000000 Binary files a/static/icons/060022B4.png and /dev/null differ diff --git a/static/icons/060022B5.png b/static/icons/060022B5.png deleted file mode 100755 index 3b6c5bbb..00000000 Binary files a/static/icons/060022B5.png and /dev/null differ diff --git a/static/icons/060022B6.png b/static/icons/060022B6.png deleted file mode 100755 index d3d864a8..00000000 Binary files a/static/icons/060022B6.png and /dev/null differ diff --git a/static/icons/060022B7.png b/static/icons/060022B7.png deleted file mode 100755 index e58fcb2b..00000000 Binary files a/static/icons/060022B7.png and /dev/null differ diff --git a/static/icons/060022B8.png b/static/icons/060022B8.png deleted file mode 100755 index e223c933..00000000 Binary files a/static/icons/060022B8.png and /dev/null differ diff --git a/static/icons/060022B9.png b/static/icons/060022B9.png deleted file mode 100755 index fe44d863..00000000 Binary files a/static/icons/060022B9.png and /dev/null differ diff --git a/static/icons/060022BA.png b/static/icons/060022BA.png deleted file mode 100755 index ee6a26a5..00000000 Binary files a/static/icons/060022BA.png and /dev/null differ diff --git a/static/icons/060022BE.png b/static/icons/060022BE.png deleted file mode 100755 index 5f51669c..00000000 Binary files a/static/icons/060022BE.png and /dev/null differ diff --git a/static/icons/060022BF.png b/static/icons/060022BF.png deleted file mode 100755 index e23d7772..00000000 Binary files a/static/icons/060022BF.png and /dev/null differ diff --git a/static/icons/060022C0.png b/static/icons/060022C0.png deleted file mode 100755 index 5eed27f5..00000000 Binary files a/static/icons/060022C0.png and /dev/null differ diff --git a/static/icons/060022C1.png b/static/icons/060022C1.png deleted file mode 100755 index 51fb9506..00000000 Binary files a/static/icons/060022C1.png and /dev/null differ diff --git a/static/icons/060022C2.png b/static/icons/060022C2.png deleted file mode 100755 index a7457d5a..00000000 Binary files a/static/icons/060022C2.png and /dev/null differ diff --git a/static/icons/060022C3.png b/static/icons/060022C3.png deleted file mode 100755 index 9ff73572..00000000 Binary files a/static/icons/060022C3.png and /dev/null differ diff --git a/static/icons/060022C4.png b/static/icons/060022C4.png deleted file mode 100755 index 5c074dc2..00000000 Binary files a/static/icons/060022C4.png and /dev/null differ diff --git a/static/icons/060022C5.png b/static/icons/060022C5.png deleted file mode 100755 index 048048b7..00000000 Binary files a/static/icons/060022C5.png and /dev/null differ diff --git a/static/icons/060022C6.png b/static/icons/060022C6.png deleted file mode 100755 index 1bc0bb31..00000000 Binary files a/static/icons/060022C6.png and /dev/null differ diff --git a/static/icons/060022C7.png b/static/icons/060022C7.png deleted file mode 100755 index 9104a121..00000000 Binary files a/static/icons/060022C7.png and /dev/null differ diff --git a/static/icons/060022C8.png b/static/icons/060022C8.png deleted file mode 100755 index 6738d7b1..00000000 Binary files a/static/icons/060022C8.png and /dev/null differ diff --git a/static/icons/060022C9.png b/static/icons/060022C9.png deleted file mode 100755 index 076f8cdd..00000000 Binary files a/static/icons/060022C9.png and /dev/null differ diff --git a/static/icons/060022CA.png b/static/icons/060022CA.png deleted file mode 100755 index f2b78401..00000000 Binary files a/static/icons/060022CA.png and /dev/null differ diff --git a/static/icons/060022CB.png b/static/icons/060022CB.png deleted file mode 100755 index ec203b77..00000000 Binary files a/static/icons/060022CB.png and /dev/null differ diff --git a/static/icons/060022CC.png b/static/icons/060022CC.png deleted file mode 100755 index a71d52c4..00000000 Binary files a/static/icons/060022CC.png and /dev/null differ diff --git a/static/icons/060022CD.png b/static/icons/060022CD.png deleted file mode 100755 index b8f624c5..00000000 Binary files a/static/icons/060022CD.png and /dev/null differ diff --git a/static/icons/060022CE.png b/static/icons/060022CE.png deleted file mode 100755 index a2c9b640..00000000 Binary files a/static/icons/060022CE.png and /dev/null differ diff --git a/static/icons/060022CF.png b/static/icons/060022CF.png deleted file mode 100755 index b36663b6..00000000 Binary files a/static/icons/060022CF.png and /dev/null differ diff --git a/static/icons/060022D0.png b/static/icons/060022D0.png deleted file mode 100755 index 8ba4b87b..00000000 Binary files a/static/icons/060022D0.png and /dev/null differ diff --git a/static/icons/060022D1.png b/static/icons/060022D1.png deleted file mode 100755 index 2f2f0cb0..00000000 Binary files a/static/icons/060022D1.png and /dev/null differ diff --git a/static/icons/060022D2.png b/static/icons/060022D2.png deleted file mode 100755 index 1a17fc89..00000000 Binary files a/static/icons/060022D2.png and /dev/null differ diff --git a/static/icons/060022D5.png b/static/icons/060022D5.png deleted file mode 100755 index 864b5209..00000000 Binary files a/static/icons/060022D5.png and /dev/null differ diff --git a/static/icons/060022D6.png b/static/icons/060022D6.png deleted file mode 100755 index 6ea7b123..00000000 Binary files a/static/icons/060022D6.png and /dev/null differ diff --git a/static/icons/060022D7.png b/static/icons/060022D7.png deleted file mode 100755 index d44f5ae2..00000000 Binary files a/static/icons/060022D7.png and /dev/null differ diff --git a/static/icons/060022D8.png b/static/icons/060022D8.png deleted file mode 100755 index e84701fa..00000000 Binary files a/static/icons/060022D8.png and /dev/null differ diff --git a/static/icons/060022D9.png b/static/icons/060022D9.png deleted file mode 100755 index 2512e38f..00000000 Binary files a/static/icons/060022D9.png and /dev/null differ diff --git a/static/icons/060022DA.png b/static/icons/060022DA.png deleted file mode 100755 index dbf8687d..00000000 Binary files a/static/icons/060022DA.png and /dev/null differ diff --git a/static/icons/060022DB.png b/static/icons/060022DB.png deleted file mode 100755 index cf252e7d..00000000 Binary files a/static/icons/060022DB.png and /dev/null differ diff --git a/static/icons/060022DD.png b/static/icons/060022DD.png deleted file mode 100755 index 738e2479..00000000 Binary files a/static/icons/060022DD.png and /dev/null differ diff --git a/static/icons/060022DE.png b/static/icons/060022DE.png deleted file mode 100755 index 30387a4a..00000000 Binary files a/static/icons/060022DE.png and /dev/null differ diff --git a/static/icons/060022DF.png b/static/icons/060022DF.png deleted file mode 100755 index e7099814..00000000 Binary files a/static/icons/060022DF.png and /dev/null differ diff --git a/static/icons/060022E0.png b/static/icons/060022E0.png deleted file mode 100755 index 7d4c89a0..00000000 Binary files a/static/icons/060022E0.png and /dev/null differ diff --git a/static/icons/060022E1.png b/static/icons/060022E1.png deleted file mode 100755 index b51bdc34..00000000 Binary files a/static/icons/060022E1.png and /dev/null differ diff --git a/static/icons/060022E2.png b/static/icons/060022E2.png deleted file mode 100755 index cb69c486..00000000 Binary files a/static/icons/060022E2.png and /dev/null differ diff --git a/static/icons/060022E3.png b/static/icons/060022E3.png deleted file mode 100755 index 299db9a6..00000000 Binary files a/static/icons/060022E3.png and /dev/null differ diff --git a/static/icons/060022E4.png b/static/icons/060022E4.png deleted file mode 100755 index 02cadfe1..00000000 Binary files a/static/icons/060022E4.png and /dev/null differ diff --git a/static/icons/060022E5.png b/static/icons/060022E5.png deleted file mode 100755 index cd0cdd10..00000000 Binary files a/static/icons/060022E5.png and /dev/null differ diff --git a/static/icons/060022E6.png b/static/icons/060022E6.png deleted file mode 100755 index 7536b3df..00000000 Binary files a/static/icons/060022E6.png and /dev/null differ diff --git a/static/icons/060022E8.png b/static/icons/060022E8.png deleted file mode 100755 index 242c56ac..00000000 Binary files a/static/icons/060022E8.png and /dev/null differ diff --git a/static/icons/060022E9.png b/static/icons/060022E9.png deleted file mode 100755 index bcc44148..00000000 Binary files a/static/icons/060022E9.png and /dev/null differ diff --git a/static/icons/060022EA.png b/static/icons/060022EA.png deleted file mode 100755 index ef541382..00000000 Binary files a/static/icons/060022EA.png and /dev/null differ diff --git a/static/icons/060022EB.png b/static/icons/060022EB.png deleted file mode 100755 index 9ba51784..00000000 Binary files a/static/icons/060022EB.png and /dev/null differ diff --git a/static/icons/060022EC.png b/static/icons/060022EC.png deleted file mode 100755 index fd6ab46b..00000000 Binary files a/static/icons/060022EC.png and /dev/null differ diff --git a/static/icons/060022ED.png b/static/icons/060022ED.png deleted file mode 100755 index 2a4f7f32..00000000 Binary files a/static/icons/060022ED.png and /dev/null differ diff --git a/static/icons/060022EE.png b/static/icons/060022EE.png deleted file mode 100755 index 185e3a15..00000000 Binary files a/static/icons/060022EE.png and /dev/null differ diff --git a/static/icons/060022EF.png b/static/icons/060022EF.png deleted file mode 100755 index 8e1145b8..00000000 Binary files a/static/icons/060022EF.png and /dev/null differ diff --git a/static/icons/060022F0.png b/static/icons/060022F0.png deleted file mode 100755 index 524735c8..00000000 Binary files a/static/icons/060022F0.png and /dev/null differ diff --git a/static/icons/060022F1.png b/static/icons/060022F1.png deleted file mode 100755 index 434c7dbc..00000000 Binary files a/static/icons/060022F1.png and /dev/null differ diff --git a/static/icons/060022F2.png b/static/icons/060022F2.png deleted file mode 100755 index cbd90712..00000000 Binary files a/static/icons/060022F2.png and /dev/null differ diff --git a/static/icons/060022F4.png b/static/icons/060022F4.png deleted file mode 100755 index ca6b52b9..00000000 Binary files a/static/icons/060022F4.png and /dev/null differ diff --git a/static/icons/060022F5.png b/static/icons/060022F5.png deleted file mode 100755 index 1a3ac910..00000000 Binary files a/static/icons/060022F5.png and /dev/null differ diff --git a/static/icons/060022F6.png b/static/icons/060022F6.png deleted file mode 100755 index 533d09e9..00000000 Binary files a/static/icons/060022F6.png and /dev/null differ diff --git a/static/icons/060022F7.png b/static/icons/060022F7.png deleted file mode 100755 index 32b78c5b..00000000 Binary files a/static/icons/060022F7.png and /dev/null differ diff --git a/static/icons/060022F8.png b/static/icons/060022F8.png deleted file mode 100755 index 6d80c73b..00000000 Binary files a/static/icons/060022F8.png and /dev/null differ diff --git a/static/icons/060022F9.png b/static/icons/060022F9.png deleted file mode 100755 index 36e6b6b9..00000000 Binary files a/static/icons/060022F9.png and /dev/null differ diff --git a/static/icons/060022FA.png b/static/icons/060022FA.png deleted file mode 100755 index b2476cc3..00000000 Binary files a/static/icons/060022FA.png and /dev/null differ diff --git a/static/icons/060022FB.png b/static/icons/060022FB.png deleted file mode 100755 index d6e94a24..00000000 Binary files a/static/icons/060022FB.png and /dev/null differ diff --git a/static/icons/060022FC.png b/static/icons/060022FC.png deleted file mode 100755 index 8c08ca35..00000000 Binary files a/static/icons/060022FC.png and /dev/null differ diff --git a/static/icons/060022FD.png b/static/icons/060022FD.png deleted file mode 100755 index 9906a1ed..00000000 Binary files a/static/icons/060022FD.png and /dev/null differ diff --git a/static/icons/060022FE.png b/static/icons/060022FE.png deleted file mode 100755 index 77d2cedc..00000000 Binary files a/static/icons/060022FE.png and /dev/null differ diff --git a/static/icons/060022FF.png b/static/icons/060022FF.png deleted file mode 100755 index 4f7df652..00000000 Binary files a/static/icons/060022FF.png and /dev/null differ diff --git a/static/icons/06002300.png b/static/icons/06002300.png deleted file mode 100755 index a6b6a29d..00000000 Binary files a/static/icons/06002300.png and /dev/null differ diff --git a/static/icons/06002301.png b/static/icons/06002301.png deleted file mode 100755 index 69676eb3..00000000 Binary files a/static/icons/06002301.png and /dev/null differ diff --git a/static/icons/06002302.png b/static/icons/06002302.png deleted file mode 100755 index 5d7cf543..00000000 Binary files a/static/icons/06002302.png and /dev/null differ diff --git a/static/icons/06002303.png b/static/icons/06002303.png deleted file mode 100755 index f9347ffd..00000000 Binary files a/static/icons/06002303.png and /dev/null differ diff --git a/static/icons/06002304.png b/static/icons/06002304.png deleted file mode 100755 index 48f7e794..00000000 Binary files a/static/icons/06002304.png and /dev/null differ diff --git a/static/icons/06002305.png b/static/icons/06002305.png deleted file mode 100755 index 328ff636..00000000 Binary files a/static/icons/06002305.png and /dev/null differ diff --git a/static/icons/06002306.png b/static/icons/06002306.png deleted file mode 100755 index 53713af5..00000000 Binary files a/static/icons/06002306.png and /dev/null differ diff --git a/static/icons/06002307.png b/static/icons/06002307.png deleted file mode 100755 index 8121fb34..00000000 Binary files a/static/icons/06002307.png and /dev/null differ diff --git a/static/icons/06002308.png b/static/icons/06002308.png deleted file mode 100755 index fcbdd852..00000000 Binary files a/static/icons/06002308.png and /dev/null differ diff --git a/static/icons/06002309.png b/static/icons/06002309.png deleted file mode 100755 index 5e37cf1c..00000000 Binary files a/static/icons/06002309.png and /dev/null differ diff --git a/static/icons/0600230A.png b/static/icons/0600230A.png deleted file mode 100755 index 93d5b812..00000000 Binary files a/static/icons/0600230A.png and /dev/null differ diff --git a/static/icons/0600230B.png b/static/icons/0600230B.png deleted file mode 100755 index 7d360794..00000000 Binary files a/static/icons/0600230B.png and /dev/null differ diff --git a/static/icons/0600230C.png b/static/icons/0600230C.png deleted file mode 100755 index 23e51c46..00000000 Binary files a/static/icons/0600230C.png and /dev/null differ diff --git a/static/icons/0600230D.png b/static/icons/0600230D.png deleted file mode 100755 index b872e6f0..00000000 Binary files a/static/icons/0600230D.png and /dev/null differ diff --git a/static/icons/0600230E.png b/static/icons/0600230E.png deleted file mode 100755 index ab8afd0d..00000000 Binary files a/static/icons/0600230E.png and /dev/null differ diff --git a/static/icons/0600230F.png b/static/icons/0600230F.png deleted file mode 100755 index 9edce7e8..00000000 Binary files a/static/icons/0600230F.png and /dev/null differ diff --git a/static/icons/06002310.png b/static/icons/06002310.png deleted file mode 100755 index 4d9c6207..00000000 Binary files a/static/icons/06002310.png and /dev/null differ diff --git a/static/icons/06002311.png b/static/icons/06002311.png deleted file mode 100755 index 79e76fac..00000000 Binary files a/static/icons/06002311.png and /dev/null differ diff --git a/static/icons/06002312.png b/static/icons/06002312.png deleted file mode 100755 index c7c5e85b..00000000 Binary files a/static/icons/06002312.png and /dev/null differ diff --git a/static/icons/06002313.png b/static/icons/06002313.png deleted file mode 100755 index 2f372290..00000000 Binary files a/static/icons/06002313.png and /dev/null differ diff --git a/static/icons/06002314.png b/static/icons/06002314.png deleted file mode 100755 index 20855847..00000000 Binary files a/static/icons/06002314.png and /dev/null differ diff --git a/static/icons/06002315.png b/static/icons/06002315.png deleted file mode 100755 index d48a6db7..00000000 Binary files a/static/icons/06002315.png and /dev/null differ diff --git a/static/icons/06002316.png b/static/icons/06002316.png deleted file mode 100755 index d13a62b4..00000000 Binary files a/static/icons/06002316.png and /dev/null differ diff --git a/static/icons/06002317.png b/static/icons/06002317.png deleted file mode 100755 index 0e18b164..00000000 Binary files a/static/icons/06002317.png and /dev/null differ diff --git a/static/icons/06002318.png b/static/icons/06002318.png deleted file mode 100755 index 8ee93c76..00000000 Binary files a/static/icons/06002318.png and /dev/null differ diff --git a/static/icons/06002319.png b/static/icons/06002319.png deleted file mode 100755 index 5c0a9476..00000000 Binary files a/static/icons/06002319.png and /dev/null differ diff --git a/static/icons/0600231A.png b/static/icons/0600231A.png deleted file mode 100755 index 17e9e56a..00000000 Binary files a/static/icons/0600231A.png and /dev/null differ diff --git a/static/icons/0600231B.png b/static/icons/0600231B.png deleted file mode 100755 index 3cc7fb15..00000000 Binary files a/static/icons/0600231B.png and /dev/null differ diff --git a/static/icons/0600231C.png b/static/icons/0600231C.png deleted file mode 100755 index 784fb5e4..00000000 Binary files a/static/icons/0600231C.png and /dev/null differ diff --git a/static/icons/0600231D.png b/static/icons/0600231D.png deleted file mode 100755 index 69c780dc..00000000 Binary files a/static/icons/0600231D.png and /dev/null differ diff --git a/static/icons/0600231E.png b/static/icons/0600231E.png deleted file mode 100755 index 2af49c1c..00000000 Binary files a/static/icons/0600231E.png and /dev/null differ diff --git a/static/icons/0600231F.png b/static/icons/0600231F.png deleted file mode 100755 index 6098924b..00000000 Binary files a/static/icons/0600231F.png and /dev/null differ diff --git a/static/icons/06002320.png b/static/icons/06002320.png deleted file mode 100755 index 5b817f8a..00000000 Binary files a/static/icons/06002320.png and /dev/null differ diff --git a/static/icons/06002321.png b/static/icons/06002321.png deleted file mode 100755 index 7ad4ce51..00000000 Binary files a/static/icons/06002321.png and /dev/null differ diff --git a/static/icons/06002322.png b/static/icons/06002322.png deleted file mode 100755 index 3e92c26d..00000000 Binary files a/static/icons/06002322.png and /dev/null differ diff --git a/static/icons/06002323.png b/static/icons/06002323.png deleted file mode 100755 index f18b0ddb..00000000 Binary files a/static/icons/06002323.png and /dev/null differ diff --git a/static/icons/06002324.png b/static/icons/06002324.png deleted file mode 100755 index c3965356..00000000 Binary files a/static/icons/06002324.png and /dev/null differ diff --git a/static/icons/06002325.png b/static/icons/06002325.png deleted file mode 100755 index 32af5a9a..00000000 Binary files a/static/icons/06002325.png and /dev/null differ diff --git a/static/icons/06002326.png b/static/icons/06002326.png deleted file mode 100755 index ddb51780..00000000 Binary files a/static/icons/06002326.png and /dev/null differ diff --git a/static/icons/06002327.png b/static/icons/06002327.png deleted file mode 100755 index a7a7a8eb..00000000 Binary files a/static/icons/06002327.png and /dev/null differ diff --git a/static/icons/06002328.png b/static/icons/06002328.png deleted file mode 100755 index 378bc727..00000000 Binary files a/static/icons/06002328.png and /dev/null differ diff --git a/static/icons/06002329.png b/static/icons/06002329.png deleted file mode 100755 index 48974408..00000000 Binary files a/static/icons/06002329.png and /dev/null differ diff --git a/static/icons/0600232A.png b/static/icons/0600232A.png deleted file mode 100755 index a5ce6b6c..00000000 Binary files a/static/icons/0600232A.png and /dev/null differ diff --git a/static/icons/0600232B.png b/static/icons/0600232B.png deleted file mode 100755 index d78e92a3..00000000 Binary files a/static/icons/0600232B.png and /dev/null differ diff --git a/static/icons/0600232C.png b/static/icons/0600232C.png deleted file mode 100755 index 06f430b7..00000000 Binary files a/static/icons/0600232C.png and /dev/null differ diff --git a/static/icons/0600232D.png b/static/icons/0600232D.png deleted file mode 100755 index 6fad80ad..00000000 Binary files a/static/icons/0600232D.png and /dev/null differ diff --git a/static/icons/0600232E.png b/static/icons/0600232E.png deleted file mode 100755 index 7266e934..00000000 Binary files a/static/icons/0600232E.png and /dev/null differ diff --git a/static/icons/0600232F.png b/static/icons/0600232F.png deleted file mode 100755 index ceae5342..00000000 Binary files a/static/icons/0600232F.png and /dev/null differ diff --git a/static/icons/06002330.png b/static/icons/06002330.png deleted file mode 100755 index 6c5baa22..00000000 Binary files a/static/icons/06002330.png and /dev/null differ diff --git a/static/icons/06002331.png b/static/icons/06002331.png deleted file mode 100755 index 3fa07a01..00000000 Binary files a/static/icons/06002331.png and /dev/null differ diff --git a/static/icons/06002332.png b/static/icons/06002332.png deleted file mode 100755 index ab220746..00000000 Binary files a/static/icons/06002332.png and /dev/null differ diff --git a/static/icons/06002333.png b/static/icons/06002333.png deleted file mode 100755 index 9464b777..00000000 Binary files a/static/icons/06002333.png and /dev/null differ diff --git a/static/icons/06002334.png b/static/icons/06002334.png deleted file mode 100755 index 23b6c35e..00000000 Binary files a/static/icons/06002334.png and /dev/null differ diff --git a/static/icons/06002335.png b/static/icons/06002335.png deleted file mode 100755 index 4caf5c8d..00000000 Binary files a/static/icons/06002335.png and /dev/null differ diff --git a/static/icons/06002336.png b/static/icons/06002336.png deleted file mode 100755 index ddbb70c4..00000000 Binary files a/static/icons/06002336.png and /dev/null differ diff --git a/static/icons/06002337.png b/static/icons/06002337.png deleted file mode 100755 index 61c29c76..00000000 Binary files a/static/icons/06002337.png and /dev/null differ diff --git a/static/icons/06002338.png b/static/icons/06002338.png deleted file mode 100755 index 7e714794..00000000 Binary files a/static/icons/06002338.png and /dev/null differ diff --git a/static/icons/06002339.png b/static/icons/06002339.png deleted file mode 100755 index 7a2e27f4..00000000 Binary files a/static/icons/06002339.png and /dev/null differ diff --git a/static/icons/0600233A.png b/static/icons/0600233A.png deleted file mode 100755 index 82df3e06..00000000 Binary files a/static/icons/0600233A.png and /dev/null differ diff --git a/static/icons/0600233B.png b/static/icons/0600233B.png deleted file mode 100755 index 7324a07a..00000000 Binary files a/static/icons/0600233B.png and /dev/null differ diff --git a/static/icons/0600233C.png b/static/icons/0600233C.png deleted file mode 100755 index f18aa5f4..00000000 Binary files a/static/icons/0600233C.png and /dev/null differ diff --git a/static/icons/0600233D.png b/static/icons/0600233D.png deleted file mode 100755 index ad2250e5..00000000 Binary files a/static/icons/0600233D.png and /dev/null differ diff --git a/static/icons/0600233E.png b/static/icons/0600233E.png deleted file mode 100755 index 932bb376..00000000 Binary files a/static/icons/0600233E.png and /dev/null differ diff --git a/static/icons/0600233F.png b/static/icons/0600233F.png deleted file mode 100755 index 655f1c1d..00000000 Binary files a/static/icons/0600233F.png and /dev/null differ diff --git a/static/icons/06002340.png b/static/icons/06002340.png deleted file mode 100755 index 5243363f..00000000 Binary files a/static/icons/06002340.png and /dev/null differ diff --git a/static/icons/06002341.png b/static/icons/06002341.png deleted file mode 100755 index cae9ac5f..00000000 Binary files a/static/icons/06002341.png and /dev/null differ diff --git a/static/icons/06002342.png b/static/icons/06002342.png deleted file mode 100755 index f5f34238..00000000 Binary files a/static/icons/06002342.png and /dev/null differ diff --git a/static/icons/06002343.png b/static/icons/06002343.png deleted file mode 100755 index 8e5fa1d6..00000000 Binary files a/static/icons/06002343.png and /dev/null differ diff --git a/static/icons/06002344.png b/static/icons/06002344.png deleted file mode 100755 index 8eb5167b..00000000 Binary files a/static/icons/06002344.png and /dev/null differ diff --git a/static/icons/06002345.png b/static/icons/06002345.png deleted file mode 100755 index 6bfd98bb..00000000 Binary files a/static/icons/06002345.png and /dev/null differ diff --git a/static/icons/06002346.png b/static/icons/06002346.png deleted file mode 100755 index 854b03e0..00000000 Binary files a/static/icons/06002346.png and /dev/null differ diff --git a/static/icons/06002347.png b/static/icons/06002347.png deleted file mode 100755 index 8eb5167b..00000000 Binary files a/static/icons/06002347.png and /dev/null differ diff --git a/static/icons/06002348.png b/static/icons/06002348.png deleted file mode 100755 index 6bfd98bb..00000000 Binary files a/static/icons/06002348.png and /dev/null differ diff --git a/static/icons/06002349.png b/static/icons/06002349.png deleted file mode 100755 index 854b03e0..00000000 Binary files a/static/icons/06002349.png and /dev/null differ diff --git a/static/icons/0600234A.png b/static/icons/0600234A.png deleted file mode 100755 index 0f449b84..00000000 Binary files a/static/icons/0600234A.png and /dev/null differ diff --git a/static/icons/0600234B.png b/static/icons/0600234B.png deleted file mode 100755 index 375a0430..00000000 Binary files a/static/icons/0600234B.png and /dev/null differ diff --git a/static/icons/0600234C.png b/static/icons/0600234C.png deleted file mode 100755 index 08199e0e..00000000 Binary files a/static/icons/0600234C.png and /dev/null differ diff --git a/static/icons/0600234D.png b/static/icons/0600234D.png deleted file mode 100755 index c033da65..00000000 Binary files a/static/icons/0600234D.png and /dev/null differ diff --git a/static/icons/0600234E.png b/static/icons/0600234E.png deleted file mode 100755 index 11f737e0..00000000 Binary files a/static/icons/0600234E.png and /dev/null differ diff --git a/static/icons/0600234F.png b/static/icons/0600234F.png deleted file mode 100755 index f9598026..00000000 Binary files a/static/icons/0600234F.png and /dev/null differ diff --git a/static/icons/06002350.png b/static/icons/06002350.png deleted file mode 100755 index c5893210..00000000 Binary files a/static/icons/06002350.png and /dev/null differ diff --git a/static/icons/06002351.png b/static/icons/06002351.png deleted file mode 100755 index 4b790da4..00000000 Binary files a/static/icons/06002351.png and /dev/null differ diff --git a/static/icons/06002352.png b/static/icons/06002352.png deleted file mode 100755 index 7877ebcc..00000000 Binary files a/static/icons/06002352.png and /dev/null differ diff --git a/static/icons/06002353.png b/static/icons/06002353.png deleted file mode 100755 index 9c8a51cc..00000000 Binary files a/static/icons/06002353.png and /dev/null differ diff --git a/static/icons/06002354.png b/static/icons/06002354.png deleted file mode 100755 index d81cc143..00000000 Binary files a/static/icons/06002354.png and /dev/null differ diff --git a/static/icons/06002355.png b/static/icons/06002355.png deleted file mode 100755 index fd2277e2..00000000 Binary files a/static/icons/06002355.png and /dev/null differ diff --git a/static/icons/06002356.png b/static/icons/06002356.png deleted file mode 100755 index c5b5d502..00000000 Binary files a/static/icons/06002356.png and /dev/null differ diff --git a/static/icons/06002357.png b/static/icons/06002357.png deleted file mode 100755 index 560a1f53..00000000 Binary files a/static/icons/06002357.png and /dev/null differ diff --git a/static/icons/06002358.png b/static/icons/06002358.png deleted file mode 100755 index 88f1d187..00000000 Binary files a/static/icons/06002358.png and /dev/null differ diff --git a/static/icons/06002359.png b/static/icons/06002359.png deleted file mode 100755 index 133d13f4..00000000 Binary files a/static/icons/06002359.png and /dev/null differ diff --git a/static/icons/0600235A.png b/static/icons/0600235A.png deleted file mode 100755 index 6ebdaaa6..00000000 Binary files a/static/icons/0600235A.png and /dev/null differ diff --git a/static/icons/0600235B.png b/static/icons/0600235B.png deleted file mode 100755 index 2a302153..00000000 Binary files a/static/icons/0600235B.png and /dev/null differ diff --git a/static/icons/0600235C.png b/static/icons/0600235C.png deleted file mode 100755 index d8825298..00000000 Binary files a/static/icons/0600235C.png and /dev/null differ diff --git a/static/icons/0600235D.png b/static/icons/0600235D.png deleted file mode 100755 index b542b9e5..00000000 Binary files a/static/icons/0600235D.png and /dev/null differ diff --git a/static/icons/0600235E.png b/static/icons/0600235E.png deleted file mode 100755 index 878ed55f..00000000 Binary files a/static/icons/0600235E.png and /dev/null differ diff --git a/static/icons/0600235F.png b/static/icons/0600235F.png deleted file mode 100755 index 03e60796..00000000 Binary files a/static/icons/0600235F.png and /dev/null differ diff --git a/static/icons/06002360.png b/static/icons/06002360.png deleted file mode 100755 index 7a90df16..00000000 Binary files a/static/icons/06002360.png and /dev/null differ diff --git a/static/icons/06002361.png b/static/icons/06002361.png deleted file mode 100755 index 5e8afb76..00000000 Binary files a/static/icons/06002361.png and /dev/null differ diff --git a/static/icons/06002362.png b/static/icons/06002362.png deleted file mode 100755 index 9d2bf733..00000000 Binary files a/static/icons/06002362.png and /dev/null differ diff --git a/static/icons/06002363.png b/static/icons/06002363.png deleted file mode 100755 index 9ac3aa59..00000000 Binary files a/static/icons/06002363.png and /dev/null differ diff --git a/static/icons/06002364.png b/static/icons/06002364.png deleted file mode 100755 index 044780df..00000000 Binary files a/static/icons/06002364.png and /dev/null differ diff --git a/static/icons/06002365.png b/static/icons/06002365.png deleted file mode 100755 index f5876aec..00000000 Binary files a/static/icons/06002365.png and /dev/null differ diff --git a/static/icons/06002366.png b/static/icons/06002366.png deleted file mode 100755 index 7ee44731..00000000 Binary files a/static/icons/06002366.png and /dev/null differ diff --git a/static/icons/06002367.png b/static/icons/06002367.png deleted file mode 100755 index 05eb0fab..00000000 Binary files a/static/icons/06002367.png and /dev/null differ diff --git a/static/icons/06002368.png b/static/icons/06002368.png deleted file mode 100755 index ecf1fcc8..00000000 Binary files a/static/icons/06002368.png and /dev/null differ diff --git a/static/icons/06002369.png b/static/icons/06002369.png deleted file mode 100755 index 34a4cd92..00000000 Binary files a/static/icons/06002369.png and /dev/null differ diff --git a/static/icons/0600236A.png b/static/icons/0600236A.png deleted file mode 100755 index 4451cdfb..00000000 Binary files a/static/icons/0600236A.png and /dev/null differ diff --git a/static/icons/0600236B.png b/static/icons/0600236B.png deleted file mode 100755 index a280fd4d..00000000 Binary files a/static/icons/0600236B.png and /dev/null differ diff --git a/static/icons/0600236C.png b/static/icons/0600236C.png deleted file mode 100755 index 6d9eda38..00000000 Binary files a/static/icons/0600236C.png and /dev/null differ diff --git a/static/icons/0600236D.png b/static/icons/0600236D.png deleted file mode 100755 index daf0080a..00000000 Binary files a/static/icons/0600236D.png and /dev/null differ diff --git a/static/icons/0600236E.png b/static/icons/0600236E.png deleted file mode 100755 index 4dc0cac1..00000000 Binary files a/static/icons/0600236E.png and /dev/null differ diff --git a/static/icons/0600236F.png b/static/icons/0600236F.png deleted file mode 100755 index 4d261a65..00000000 Binary files a/static/icons/0600236F.png and /dev/null differ diff --git a/static/icons/06002370.png b/static/icons/06002370.png deleted file mode 100755 index 894e46f4..00000000 Binary files a/static/icons/06002370.png and /dev/null differ diff --git a/static/icons/06002371.png b/static/icons/06002371.png deleted file mode 100755 index ab3c2133..00000000 Binary files a/static/icons/06002371.png and /dev/null differ diff --git a/static/icons/06002373.png b/static/icons/06002373.png deleted file mode 100755 index 9777a227..00000000 Binary files a/static/icons/06002373.png and /dev/null differ diff --git a/static/icons/06002374.png b/static/icons/06002374.png deleted file mode 100755 index 8a471219..00000000 Binary files a/static/icons/06002374.png and /dev/null differ diff --git a/static/icons/06002375.png b/static/icons/06002375.png deleted file mode 100755 index 8e5bca02..00000000 Binary files a/static/icons/06002375.png and /dev/null differ diff --git a/static/icons/06002376.png b/static/icons/06002376.png deleted file mode 100755 index 06b76f0e..00000000 Binary files a/static/icons/06002376.png and /dev/null differ diff --git a/static/icons/06002377.png b/static/icons/06002377.png deleted file mode 100755 index 8fe975f7..00000000 Binary files a/static/icons/06002377.png and /dev/null differ diff --git a/static/icons/06002378.png b/static/icons/06002378.png deleted file mode 100755 index 3ac1356d..00000000 Binary files a/static/icons/06002378.png and /dev/null differ diff --git a/static/icons/06002379.png b/static/icons/06002379.png deleted file mode 100755 index 652ac301..00000000 Binary files a/static/icons/06002379.png and /dev/null differ diff --git a/static/icons/0600237A.png b/static/icons/0600237A.png deleted file mode 100755 index 5cacbd91..00000000 Binary files a/static/icons/0600237A.png and /dev/null differ diff --git a/static/icons/0600237B.png b/static/icons/0600237B.png deleted file mode 100755 index 5998fe53..00000000 Binary files a/static/icons/0600237B.png and /dev/null differ diff --git a/static/icons/0600237C.png b/static/icons/0600237C.png deleted file mode 100755 index bae82061..00000000 Binary files a/static/icons/0600237C.png and /dev/null differ diff --git a/static/icons/0600237D.png b/static/icons/0600237D.png deleted file mode 100755 index 43c8c422..00000000 Binary files a/static/icons/0600237D.png and /dev/null differ diff --git a/static/icons/0600237F.png b/static/icons/0600237F.png deleted file mode 100755 index 1459f9e2..00000000 Binary files a/static/icons/0600237F.png and /dev/null differ diff --git a/static/icons/06002380.png b/static/icons/06002380.png deleted file mode 100755 index 85d4d024..00000000 Binary files a/static/icons/06002380.png and /dev/null differ diff --git a/static/icons/06002381.png b/static/icons/06002381.png deleted file mode 100755 index 37c03846..00000000 Binary files a/static/icons/06002381.png and /dev/null differ diff --git a/static/icons/06002382.png b/static/icons/06002382.png deleted file mode 100755 index 1261d08e..00000000 Binary files a/static/icons/06002382.png and /dev/null differ diff --git a/static/icons/06002383.png b/static/icons/06002383.png deleted file mode 100755 index 91ecdca2..00000000 Binary files a/static/icons/06002383.png and /dev/null differ diff --git a/static/icons/06002384.png b/static/icons/06002384.png deleted file mode 100755 index cec88d38..00000000 Binary files a/static/icons/06002384.png and /dev/null differ diff --git a/static/icons/06002385.png b/static/icons/06002385.png deleted file mode 100755 index 555f5204..00000000 Binary files a/static/icons/06002385.png and /dev/null differ diff --git a/static/icons/06002386.png b/static/icons/06002386.png deleted file mode 100755 index cb22dad3..00000000 Binary files a/static/icons/06002386.png and /dev/null differ diff --git a/static/icons/06002388.png b/static/icons/06002388.png deleted file mode 100755 index c5b3cbb1..00000000 Binary files a/static/icons/06002388.png and /dev/null differ diff --git a/static/icons/06002389.png b/static/icons/06002389.png deleted file mode 100755 index 083b9b6e..00000000 Binary files a/static/icons/06002389.png and /dev/null differ diff --git a/static/icons/0600238A.png b/static/icons/0600238A.png deleted file mode 100755 index 5e493533..00000000 Binary files a/static/icons/0600238A.png and /dev/null differ diff --git a/static/icons/0600238E.png b/static/icons/0600238E.png deleted file mode 100755 index fd3f6ebe..00000000 Binary files a/static/icons/0600238E.png and /dev/null differ diff --git a/static/icons/06002393.png b/static/icons/06002393.png deleted file mode 100755 index ce9b0747..00000000 Binary files a/static/icons/06002393.png and /dev/null differ diff --git a/static/icons/06002395.png b/static/icons/06002395.png deleted file mode 100755 index 7f6c223a..00000000 Binary files a/static/icons/06002395.png and /dev/null differ diff --git a/static/icons/06002396.png b/static/icons/06002396.png deleted file mode 100755 index faa30232..00000000 Binary files a/static/icons/06002396.png and /dev/null differ diff --git a/static/icons/06002397.png b/static/icons/06002397.png deleted file mode 100755 index 0c9295dd..00000000 Binary files a/static/icons/06002397.png and /dev/null differ diff --git a/static/icons/06002398.png b/static/icons/06002398.png deleted file mode 100755 index e1488046..00000000 Binary files a/static/icons/06002398.png and /dev/null differ diff --git a/static/icons/06002399.png b/static/icons/06002399.png deleted file mode 100755 index 8aa4935f..00000000 Binary files a/static/icons/06002399.png and /dev/null differ diff --git a/static/icons/0600239A.png b/static/icons/0600239A.png deleted file mode 100755 index cdd72305..00000000 Binary files a/static/icons/0600239A.png and /dev/null differ diff --git a/static/icons/0600239B.png b/static/icons/0600239B.png deleted file mode 100755 index e95295fc..00000000 Binary files a/static/icons/0600239B.png and /dev/null differ diff --git a/static/icons/0600239C.png b/static/icons/0600239C.png deleted file mode 100755 index 6b567a0e..00000000 Binary files a/static/icons/0600239C.png and /dev/null differ diff --git a/static/icons/0600239D.png b/static/icons/0600239D.png deleted file mode 100755 index 083d2276..00000000 Binary files a/static/icons/0600239D.png and /dev/null differ diff --git a/static/icons/0600239E.png b/static/icons/0600239E.png deleted file mode 100755 index 25c55ffc..00000000 Binary files a/static/icons/0600239E.png and /dev/null differ diff --git a/static/icons/0600239F.png b/static/icons/0600239F.png deleted file mode 100755 index 8d52d0e6..00000000 Binary files a/static/icons/0600239F.png and /dev/null differ diff --git a/static/icons/060023A0.png b/static/icons/060023A0.png deleted file mode 100755 index 414d7517..00000000 Binary files a/static/icons/060023A0.png and /dev/null differ diff --git a/static/icons/060023A1.png b/static/icons/060023A1.png deleted file mode 100755 index cb9fbe8a..00000000 Binary files a/static/icons/060023A1.png and /dev/null differ diff --git a/static/icons/060023A2.png b/static/icons/060023A2.png deleted file mode 100755 index a16e9b42..00000000 Binary files a/static/icons/060023A2.png and /dev/null differ diff --git a/static/icons/060023A3.png b/static/icons/060023A3.png deleted file mode 100755 index 62ca6a2a..00000000 Binary files a/static/icons/060023A3.png and /dev/null differ diff --git a/static/icons/060023A4.png b/static/icons/060023A4.png deleted file mode 100755 index 290d77d4..00000000 Binary files a/static/icons/060023A4.png and /dev/null differ diff --git a/static/icons/060023A5.png b/static/icons/060023A5.png deleted file mode 100755 index aff3264d..00000000 Binary files a/static/icons/060023A5.png and /dev/null differ diff --git a/static/icons/060023A6.png b/static/icons/060023A6.png deleted file mode 100755 index 6629e08d..00000000 Binary files a/static/icons/060023A6.png and /dev/null differ diff --git a/static/icons/060023A7.png b/static/icons/060023A7.png deleted file mode 100755 index fecfaaf0..00000000 Binary files a/static/icons/060023A7.png and /dev/null differ diff --git a/static/icons/060023A8.png b/static/icons/060023A8.png deleted file mode 100755 index 5733b3aa..00000000 Binary files a/static/icons/060023A8.png and /dev/null differ diff --git a/static/icons/060023A9.png b/static/icons/060023A9.png deleted file mode 100755 index a08c77a6..00000000 Binary files a/static/icons/060023A9.png and /dev/null differ diff --git a/static/icons/060023AA.png b/static/icons/060023AA.png deleted file mode 100755 index 96754703..00000000 Binary files a/static/icons/060023AA.png and /dev/null differ diff --git a/static/icons/060023AB.png b/static/icons/060023AB.png deleted file mode 100755 index 86f50fe9..00000000 Binary files a/static/icons/060023AB.png and /dev/null differ diff --git a/static/icons/060023AC.png b/static/icons/060023AC.png deleted file mode 100755 index 762efa0a..00000000 Binary files a/static/icons/060023AC.png and /dev/null differ diff --git a/static/icons/060023AD.png b/static/icons/060023AD.png deleted file mode 100755 index 43d7ac75..00000000 Binary files a/static/icons/060023AD.png and /dev/null differ diff --git a/static/icons/060023AE.png b/static/icons/060023AE.png deleted file mode 100755 index 0d0f9642..00000000 Binary files a/static/icons/060023AE.png and /dev/null differ diff --git a/static/icons/060023AF.png b/static/icons/060023AF.png deleted file mode 100755 index 9c3328a0..00000000 Binary files a/static/icons/060023AF.png and /dev/null differ diff --git a/static/icons/060023B0.png b/static/icons/060023B0.png deleted file mode 100755 index ebb793a3..00000000 Binary files a/static/icons/060023B0.png and /dev/null differ diff --git a/static/icons/060023B1.png b/static/icons/060023B1.png deleted file mode 100755 index c3184804..00000000 Binary files a/static/icons/060023B1.png and /dev/null differ diff --git a/static/icons/060023B2.png b/static/icons/060023B2.png deleted file mode 100755 index a5355239..00000000 Binary files a/static/icons/060023B2.png and /dev/null differ diff --git a/static/icons/060023B3.png b/static/icons/060023B3.png deleted file mode 100755 index b2567848..00000000 Binary files a/static/icons/060023B3.png and /dev/null differ diff --git a/static/icons/060023B8.png b/static/icons/060023B8.png deleted file mode 100755 index 9cf2e547..00000000 Binary files a/static/icons/060023B8.png and /dev/null differ diff --git a/static/icons/060023B9.png b/static/icons/060023B9.png deleted file mode 100755 index 43ae5711..00000000 Binary files a/static/icons/060023B9.png and /dev/null differ diff --git a/static/icons/060023BA.png b/static/icons/060023BA.png deleted file mode 100755 index 319e21de..00000000 Binary files a/static/icons/060023BA.png and /dev/null differ diff --git a/static/icons/060023BB.png b/static/icons/060023BB.png deleted file mode 100755 index 2708e982..00000000 Binary files a/static/icons/060023BB.png and /dev/null differ diff --git a/static/icons/060023BC.png b/static/icons/060023BC.png deleted file mode 100755 index 9807ea07..00000000 Binary files a/static/icons/060023BC.png and /dev/null differ diff --git a/static/icons/060023BD.png b/static/icons/060023BD.png deleted file mode 100755 index dadd934b..00000000 Binary files a/static/icons/060023BD.png and /dev/null differ diff --git a/static/icons/060023BE.png b/static/icons/060023BE.png deleted file mode 100755 index cb936860..00000000 Binary files a/static/icons/060023BE.png and /dev/null differ diff --git a/static/icons/060023BF.png b/static/icons/060023BF.png deleted file mode 100755 index 117a0e23..00000000 Binary files a/static/icons/060023BF.png and /dev/null differ diff --git a/static/icons/060023C1.png b/static/icons/060023C1.png deleted file mode 100755 index 394af090..00000000 Binary files a/static/icons/060023C1.png and /dev/null differ diff --git a/static/icons/060023C2.png b/static/icons/060023C2.png deleted file mode 100755 index 26cb8ba8..00000000 Binary files a/static/icons/060023C2.png and /dev/null differ diff --git a/static/icons/060023C3.png b/static/icons/060023C3.png deleted file mode 100755 index 54c22c46..00000000 Binary files a/static/icons/060023C3.png and /dev/null differ diff --git a/static/icons/060023C4.png b/static/icons/060023C4.png deleted file mode 100755 index 9e98de7e..00000000 Binary files a/static/icons/060023C4.png and /dev/null differ diff --git a/static/icons/060023C5.png b/static/icons/060023C5.png deleted file mode 100755 index c5f17a8f..00000000 Binary files a/static/icons/060023C5.png and /dev/null differ diff --git a/static/icons/060023C6.png b/static/icons/060023C6.png deleted file mode 100755 index 6656e3db..00000000 Binary files a/static/icons/060023C6.png and /dev/null differ diff --git a/static/icons/060023C7.png b/static/icons/060023C7.png deleted file mode 100755 index 03a9abeb..00000000 Binary files a/static/icons/060023C7.png and /dev/null differ diff --git a/static/icons/060023C8.png b/static/icons/060023C8.png deleted file mode 100755 index 7e9db293..00000000 Binary files a/static/icons/060023C8.png and /dev/null differ diff --git a/static/icons/060023C9.png b/static/icons/060023C9.png deleted file mode 100755 index 3ef03271..00000000 Binary files a/static/icons/060023C9.png and /dev/null differ diff --git a/static/icons/060023CA.png b/static/icons/060023CA.png deleted file mode 100755 index df88b980..00000000 Binary files a/static/icons/060023CA.png and /dev/null differ diff --git a/static/icons/060023CB.png b/static/icons/060023CB.png deleted file mode 100755 index 105544d3..00000000 Binary files a/static/icons/060023CB.png and /dev/null differ diff --git a/static/icons/060023CC.png b/static/icons/060023CC.png deleted file mode 100755 index 5b259fb2..00000000 Binary files a/static/icons/060023CC.png and /dev/null differ diff --git a/static/icons/060023CD.png b/static/icons/060023CD.png deleted file mode 100755 index 18073dba..00000000 Binary files a/static/icons/060023CD.png and /dev/null differ diff --git a/static/icons/060023CE.png b/static/icons/060023CE.png deleted file mode 100755 index bd4463c0..00000000 Binary files a/static/icons/060023CE.png and /dev/null differ diff --git a/static/icons/060023CF.png b/static/icons/060023CF.png deleted file mode 100755 index 3f8a0486..00000000 Binary files a/static/icons/060023CF.png and /dev/null differ diff --git a/static/icons/060023D0.png b/static/icons/060023D0.png deleted file mode 100755 index af09a23b..00000000 Binary files a/static/icons/060023D0.png and /dev/null differ diff --git a/static/icons/060023D1.png b/static/icons/060023D1.png deleted file mode 100755 index 44e8d73b..00000000 Binary files a/static/icons/060023D1.png and /dev/null differ diff --git a/static/icons/060023D2.png b/static/icons/060023D2.png deleted file mode 100755 index 263eec2e..00000000 Binary files a/static/icons/060023D2.png and /dev/null differ diff --git a/static/icons/060023D3.png b/static/icons/060023D3.png deleted file mode 100755 index 9af0cef1..00000000 Binary files a/static/icons/060023D3.png and /dev/null differ diff --git a/static/icons/060023D4.png b/static/icons/060023D4.png deleted file mode 100755 index 3be0d6c0..00000000 Binary files a/static/icons/060023D4.png and /dev/null differ diff --git a/static/icons/060023D5.png b/static/icons/060023D5.png deleted file mode 100755 index 1e0e3626..00000000 Binary files a/static/icons/060023D5.png and /dev/null differ diff --git a/static/icons/060023D6.png b/static/icons/060023D6.png deleted file mode 100755 index 0403979c..00000000 Binary files a/static/icons/060023D6.png and /dev/null differ diff --git a/static/icons/060023D9.png b/static/icons/060023D9.png deleted file mode 100755 index 8a229e86..00000000 Binary files a/static/icons/060023D9.png and /dev/null differ diff --git a/static/icons/060023DA.png b/static/icons/060023DA.png deleted file mode 100755 index dc99fa91..00000000 Binary files a/static/icons/060023DA.png and /dev/null differ diff --git a/static/icons/060023DD.png b/static/icons/060023DD.png deleted file mode 100755 index 3822c284..00000000 Binary files a/static/icons/060023DD.png and /dev/null differ diff --git a/static/icons/060023E0.png b/static/icons/060023E0.png deleted file mode 100755 index 3f2a0981..00000000 Binary files a/static/icons/060023E0.png and /dev/null differ diff --git a/static/icons/060023E2.png b/static/icons/060023E2.png deleted file mode 100755 index 9b83bbb7..00000000 Binary files a/static/icons/060023E2.png and /dev/null differ diff --git a/static/icons/060023E3.png b/static/icons/060023E3.png deleted file mode 100755 index 276f6171..00000000 Binary files a/static/icons/060023E3.png and /dev/null differ diff --git a/static/icons/060023E4.png b/static/icons/060023E4.png deleted file mode 100755 index 45d64489..00000000 Binary files a/static/icons/060023E4.png and /dev/null differ diff --git a/static/icons/060023E5.png b/static/icons/060023E5.png deleted file mode 100755 index 893499b3..00000000 Binary files a/static/icons/060023E5.png and /dev/null differ diff --git a/static/icons/060023E6.png b/static/icons/060023E6.png deleted file mode 100755 index 2f310ae6..00000000 Binary files a/static/icons/060023E6.png and /dev/null differ diff --git a/static/icons/060023E7.png b/static/icons/060023E7.png deleted file mode 100755 index 6c730875..00000000 Binary files a/static/icons/060023E7.png and /dev/null differ diff --git a/static/icons/060023E8.png b/static/icons/060023E8.png deleted file mode 100755 index b088b0c9..00000000 Binary files a/static/icons/060023E8.png and /dev/null differ diff --git a/static/icons/060023E9.png b/static/icons/060023E9.png deleted file mode 100755 index 9d447009..00000000 Binary files a/static/icons/060023E9.png and /dev/null differ diff --git a/static/icons/060023EA.png b/static/icons/060023EA.png deleted file mode 100755 index bec53dbe..00000000 Binary files a/static/icons/060023EA.png and /dev/null differ diff --git a/static/icons/060023EB.png b/static/icons/060023EB.png deleted file mode 100755 index be41cf5a..00000000 Binary files a/static/icons/060023EB.png and /dev/null differ diff --git a/static/icons/060023EC.png b/static/icons/060023EC.png deleted file mode 100755 index 84683395..00000000 Binary files a/static/icons/060023EC.png and /dev/null differ diff --git a/static/icons/060023F2.png b/static/icons/060023F2.png deleted file mode 100755 index 29d5b6a4..00000000 Binary files a/static/icons/060023F2.png and /dev/null differ diff --git a/static/icons/060023F3.png b/static/icons/060023F3.png deleted file mode 100755 index 6f748026..00000000 Binary files a/static/icons/060023F3.png and /dev/null differ diff --git a/static/icons/060023F4.png b/static/icons/060023F4.png deleted file mode 100755 index 44d18afe..00000000 Binary files a/static/icons/060023F4.png and /dev/null differ diff --git a/static/icons/060023F6.png b/static/icons/060023F6.png deleted file mode 100755 index 3c578e02..00000000 Binary files a/static/icons/060023F6.png and /dev/null differ diff --git a/static/icons/060023F7.png b/static/icons/060023F7.png deleted file mode 100755 index 56868b7a..00000000 Binary files a/static/icons/060023F7.png and /dev/null differ diff --git a/static/icons/060023F8.png b/static/icons/060023F8.png deleted file mode 100755 index 56ac66f6..00000000 Binary files a/static/icons/060023F8.png and /dev/null differ diff --git a/static/icons/060023F9.png b/static/icons/060023F9.png deleted file mode 100755 index 401be533..00000000 Binary files a/static/icons/060023F9.png and /dev/null differ diff --git a/static/icons/060023FA.png b/static/icons/060023FA.png deleted file mode 100755 index 0902cacd..00000000 Binary files a/static/icons/060023FA.png and /dev/null differ diff --git a/static/icons/060023FC.png b/static/icons/060023FC.png deleted file mode 100755 index d781ec9b..00000000 Binary files a/static/icons/060023FC.png and /dev/null differ diff --git a/static/icons/060023FD.png b/static/icons/060023FD.png deleted file mode 100755 index 07efffe9..00000000 Binary files a/static/icons/060023FD.png and /dev/null differ diff --git a/static/icons/060023FE.png b/static/icons/060023FE.png deleted file mode 100755 index 5e9b9878..00000000 Binary files a/static/icons/060023FE.png and /dev/null differ diff --git a/static/icons/060023FF.png b/static/icons/060023FF.png deleted file mode 100755 index 9559ee01..00000000 Binary files a/static/icons/060023FF.png and /dev/null differ diff --git a/static/icons/06002400.png b/static/icons/06002400.png deleted file mode 100755 index adb2b287..00000000 Binary files a/static/icons/06002400.png and /dev/null differ diff --git a/static/icons/06002401.png b/static/icons/06002401.png deleted file mode 100755 index 78a1bbda..00000000 Binary files a/static/icons/06002401.png and /dev/null differ diff --git a/static/icons/06002402.png b/static/icons/06002402.png deleted file mode 100755 index fe8e6b5a..00000000 Binary files a/static/icons/06002402.png and /dev/null differ diff --git a/static/icons/06002403.png b/static/icons/06002403.png deleted file mode 100755 index ac6a153f..00000000 Binary files a/static/icons/06002403.png and /dev/null differ diff --git a/static/icons/06002404.png b/static/icons/06002404.png deleted file mode 100755 index 0121593f..00000000 Binary files a/static/icons/06002404.png and /dev/null differ diff --git a/static/icons/06002405.png b/static/icons/06002405.png deleted file mode 100755 index eae21e63..00000000 Binary files a/static/icons/06002405.png and /dev/null differ diff --git a/static/icons/06002406.png b/static/icons/06002406.png deleted file mode 100755 index c5f3c70e..00000000 Binary files a/static/icons/06002406.png and /dev/null differ diff --git a/static/icons/06002407.png b/static/icons/06002407.png deleted file mode 100755 index e8606912..00000000 Binary files a/static/icons/06002407.png and /dev/null differ diff --git a/static/icons/06002408.png b/static/icons/06002408.png deleted file mode 100755 index 9bc29bc9..00000000 Binary files a/static/icons/06002408.png and /dev/null differ diff --git a/static/icons/06002409.png b/static/icons/06002409.png deleted file mode 100755 index 3ade315b..00000000 Binary files a/static/icons/06002409.png and /dev/null differ diff --git a/static/icons/0600240A.png b/static/icons/0600240A.png deleted file mode 100755 index e5ba3729..00000000 Binary files a/static/icons/0600240A.png and /dev/null differ diff --git a/static/icons/0600240B.png b/static/icons/0600240B.png deleted file mode 100755 index 2904c24d..00000000 Binary files a/static/icons/0600240B.png and /dev/null differ diff --git a/static/icons/0600240C.png b/static/icons/0600240C.png deleted file mode 100755 index 2ca68ca3..00000000 Binary files a/static/icons/0600240C.png and /dev/null differ diff --git a/static/icons/0600240D.png b/static/icons/0600240D.png deleted file mode 100755 index ac529e37..00000000 Binary files a/static/icons/0600240D.png and /dev/null differ diff --git a/static/icons/0600240E.png b/static/icons/0600240E.png deleted file mode 100755 index 9602ecae..00000000 Binary files a/static/icons/0600240E.png and /dev/null differ diff --git a/static/icons/0600240F.png b/static/icons/0600240F.png deleted file mode 100755 index c0333c9f..00000000 Binary files a/static/icons/0600240F.png and /dev/null differ diff --git a/static/icons/06002410.png b/static/icons/06002410.png deleted file mode 100755 index 55f08f40..00000000 Binary files a/static/icons/06002410.png and /dev/null differ diff --git a/static/icons/06002411.png b/static/icons/06002411.png deleted file mode 100755 index 128c9723..00000000 Binary files a/static/icons/06002411.png and /dev/null differ diff --git a/static/icons/06002412.png b/static/icons/06002412.png deleted file mode 100755 index 6da8adeb..00000000 Binary files a/static/icons/06002412.png and /dev/null differ diff --git a/static/icons/06002413.png b/static/icons/06002413.png deleted file mode 100755 index 7a115b11..00000000 Binary files a/static/icons/06002413.png and /dev/null differ diff --git a/static/icons/06002414.png b/static/icons/06002414.png deleted file mode 100755 index 8dc8771d..00000000 Binary files a/static/icons/06002414.png and /dev/null differ diff --git a/static/icons/06002415.png b/static/icons/06002415.png deleted file mode 100755 index dea0af59..00000000 Binary files a/static/icons/06002415.png and /dev/null differ diff --git a/static/icons/06002416.png b/static/icons/06002416.png deleted file mode 100755 index 53055e4c..00000000 Binary files a/static/icons/06002416.png and /dev/null differ diff --git a/static/icons/06002417.png b/static/icons/06002417.png deleted file mode 100755 index 2aca89d2..00000000 Binary files a/static/icons/06002417.png and /dev/null differ diff --git a/static/icons/06002418.png b/static/icons/06002418.png deleted file mode 100755 index 572969c4..00000000 Binary files a/static/icons/06002418.png and /dev/null differ diff --git a/static/icons/06002419.png b/static/icons/06002419.png deleted file mode 100755 index 7fb5fc5d..00000000 Binary files a/static/icons/06002419.png and /dev/null differ diff --git a/static/icons/0600241A.png b/static/icons/0600241A.png deleted file mode 100755 index f237dc60..00000000 Binary files a/static/icons/0600241A.png and /dev/null differ diff --git a/static/icons/0600241B.png b/static/icons/0600241B.png deleted file mode 100755 index b22e6472..00000000 Binary files a/static/icons/0600241B.png and /dev/null differ diff --git a/static/icons/0600241C.png b/static/icons/0600241C.png deleted file mode 100755 index 4fed3373..00000000 Binary files a/static/icons/0600241C.png and /dev/null differ diff --git a/static/icons/0600241D.png b/static/icons/0600241D.png deleted file mode 100755 index 96f7d15a..00000000 Binary files a/static/icons/0600241D.png and /dev/null differ diff --git a/static/icons/0600241E.png b/static/icons/0600241E.png deleted file mode 100755 index abc1e1d4..00000000 Binary files a/static/icons/0600241E.png and /dev/null differ diff --git a/static/icons/0600241F.png b/static/icons/0600241F.png deleted file mode 100755 index 50e3e47f..00000000 Binary files a/static/icons/0600241F.png and /dev/null differ diff --git a/static/icons/06002420.png b/static/icons/06002420.png deleted file mode 100755 index 6a4a35dc..00000000 Binary files a/static/icons/06002420.png and /dev/null differ diff --git a/static/icons/06002421.png b/static/icons/06002421.png deleted file mode 100755 index 60f08e2e..00000000 Binary files a/static/icons/06002421.png and /dev/null differ diff --git a/static/icons/06002422.png b/static/icons/06002422.png deleted file mode 100755 index 1aba04d5..00000000 Binary files a/static/icons/06002422.png and /dev/null differ diff --git a/static/icons/06002423.png b/static/icons/06002423.png deleted file mode 100755 index ca8b79f1..00000000 Binary files a/static/icons/06002423.png and /dev/null differ diff --git a/static/icons/06002424.png b/static/icons/06002424.png deleted file mode 100755 index 1af66a3a..00000000 Binary files a/static/icons/06002424.png and /dev/null differ diff --git a/static/icons/06002425.png b/static/icons/06002425.png deleted file mode 100755 index f5d6df25..00000000 Binary files a/static/icons/06002425.png and /dev/null differ diff --git a/static/icons/06002426.png b/static/icons/06002426.png deleted file mode 100755 index eb52f020..00000000 Binary files a/static/icons/06002426.png and /dev/null differ diff --git a/static/icons/06002427.png b/static/icons/06002427.png deleted file mode 100755 index a029d81a..00000000 Binary files a/static/icons/06002427.png and /dev/null differ diff --git a/static/icons/06002429.png b/static/icons/06002429.png deleted file mode 100755 index 64d0903a..00000000 Binary files a/static/icons/06002429.png and /dev/null differ diff --git a/static/icons/0600242A.png b/static/icons/0600242A.png deleted file mode 100755 index 77a69a6f..00000000 Binary files a/static/icons/0600242A.png and /dev/null differ diff --git a/static/icons/0600242B.png b/static/icons/0600242B.png deleted file mode 100755 index 1ade3673..00000000 Binary files a/static/icons/0600242B.png and /dev/null differ diff --git a/static/icons/0600242C.png b/static/icons/0600242C.png deleted file mode 100755 index 6d93dfd0..00000000 Binary files a/static/icons/0600242C.png and /dev/null differ diff --git a/static/icons/0600242D.png b/static/icons/0600242D.png deleted file mode 100755 index 55b3a19c..00000000 Binary files a/static/icons/0600242D.png and /dev/null differ diff --git a/static/icons/0600242E.png b/static/icons/0600242E.png deleted file mode 100755 index 6e13db9b..00000000 Binary files a/static/icons/0600242E.png and /dev/null differ diff --git a/static/icons/0600242F.png b/static/icons/0600242F.png deleted file mode 100755 index 57a8e78c..00000000 Binary files a/static/icons/0600242F.png and /dev/null differ diff --git a/static/icons/06002430.png b/static/icons/06002430.png deleted file mode 100755 index f22655c5..00000000 Binary files a/static/icons/06002430.png and /dev/null differ diff --git a/static/icons/06002431.png b/static/icons/06002431.png deleted file mode 100755 index ba6e7448..00000000 Binary files a/static/icons/06002431.png and /dev/null differ diff --git a/static/icons/06002432.png b/static/icons/06002432.png deleted file mode 100755 index 5f45e335..00000000 Binary files a/static/icons/06002432.png and /dev/null differ diff --git a/static/icons/06002433.png b/static/icons/06002433.png deleted file mode 100755 index 83a5e2a3..00000000 Binary files a/static/icons/06002433.png and /dev/null differ diff --git a/static/icons/06002434.png b/static/icons/06002434.png deleted file mode 100755 index 32cce3d4..00000000 Binary files a/static/icons/06002434.png and /dev/null differ diff --git a/static/icons/06002435.png b/static/icons/06002435.png deleted file mode 100755 index f20b7277..00000000 Binary files a/static/icons/06002435.png and /dev/null differ diff --git a/static/icons/06002436.png b/static/icons/06002436.png deleted file mode 100755 index 15a0a978..00000000 Binary files a/static/icons/06002436.png and /dev/null differ diff --git a/static/icons/06002437.png b/static/icons/06002437.png deleted file mode 100755 index b6ffa6ba..00000000 Binary files a/static/icons/06002437.png and /dev/null differ diff --git a/static/icons/06002438.png b/static/icons/06002438.png deleted file mode 100755 index 644d9eff..00000000 Binary files a/static/icons/06002438.png and /dev/null differ diff --git a/static/icons/06002439.png b/static/icons/06002439.png deleted file mode 100755 index cd6f7d31..00000000 Binary files a/static/icons/06002439.png and /dev/null differ diff --git a/static/icons/0600243A.png b/static/icons/0600243A.png deleted file mode 100755 index 3576a83d..00000000 Binary files a/static/icons/0600243A.png and /dev/null differ diff --git a/static/icons/0600243B.png b/static/icons/0600243B.png deleted file mode 100755 index 3caf68b7..00000000 Binary files a/static/icons/0600243B.png and /dev/null differ diff --git a/static/icons/0600243C.png b/static/icons/0600243C.png deleted file mode 100755 index 2ab9319d..00000000 Binary files a/static/icons/0600243C.png and /dev/null differ diff --git a/static/icons/0600243D.png b/static/icons/0600243D.png deleted file mode 100755 index a1b655da..00000000 Binary files a/static/icons/0600243D.png and /dev/null differ diff --git a/static/icons/0600243E.png b/static/icons/0600243E.png deleted file mode 100755 index 1631f2d6..00000000 Binary files a/static/icons/0600243E.png and /dev/null differ diff --git a/static/icons/0600243F.png b/static/icons/0600243F.png deleted file mode 100755 index 47b0f5d3..00000000 Binary files a/static/icons/0600243F.png and /dev/null differ diff --git a/static/icons/06002440.png b/static/icons/06002440.png deleted file mode 100755 index a8e53a5d..00000000 Binary files a/static/icons/06002440.png and /dev/null differ diff --git a/static/icons/06002441.png b/static/icons/06002441.png deleted file mode 100755 index 904b6d66..00000000 Binary files a/static/icons/06002441.png and /dev/null differ diff --git a/static/icons/06002442.png b/static/icons/06002442.png deleted file mode 100755 index dc8b8df1..00000000 Binary files a/static/icons/06002442.png and /dev/null differ diff --git a/static/icons/06002443.png b/static/icons/06002443.png deleted file mode 100755 index 7f88167b..00000000 Binary files a/static/icons/06002443.png and /dev/null differ diff --git a/static/icons/06002444.png b/static/icons/06002444.png deleted file mode 100755 index 9e4f4d69..00000000 Binary files a/static/icons/06002444.png and /dev/null differ diff --git a/static/icons/06002445.png b/static/icons/06002445.png deleted file mode 100755 index bcfdc03e..00000000 Binary files a/static/icons/06002445.png and /dev/null differ diff --git a/static/icons/06002446.png b/static/icons/06002446.png deleted file mode 100755 index 839b134d..00000000 Binary files a/static/icons/06002446.png and /dev/null differ diff --git a/static/icons/06002447.png b/static/icons/06002447.png deleted file mode 100755 index 759a85e9..00000000 Binary files a/static/icons/06002447.png and /dev/null differ diff --git a/static/icons/06002448.png b/static/icons/06002448.png deleted file mode 100755 index 360bf502..00000000 Binary files a/static/icons/06002448.png and /dev/null differ diff --git a/static/icons/06002449.png b/static/icons/06002449.png deleted file mode 100755 index d9bc6281..00000000 Binary files a/static/icons/06002449.png and /dev/null differ diff --git a/static/icons/0600244A.png b/static/icons/0600244A.png deleted file mode 100755 index dbb17ea5..00000000 Binary files a/static/icons/0600244A.png and /dev/null differ diff --git a/static/icons/0600244B.png b/static/icons/0600244B.png deleted file mode 100755 index 1bf47659..00000000 Binary files a/static/icons/0600244B.png and /dev/null differ diff --git a/static/icons/0600244C.png b/static/icons/0600244C.png deleted file mode 100755 index 5fc5df82..00000000 Binary files a/static/icons/0600244C.png and /dev/null differ diff --git a/static/icons/0600244E.png b/static/icons/0600244E.png deleted file mode 100755 index 158218c3..00000000 Binary files a/static/icons/0600244E.png and /dev/null differ diff --git a/static/icons/0600244F.png b/static/icons/0600244F.png deleted file mode 100755 index b01a699d..00000000 Binary files a/static/icons/0600244F.png and /dev/null differ diff --git a/static/icons/06002450.png b/static/icons/06002450.png deleted file mode 100755 index 77df6c84..00000000 Binary files a/static/icons/06002450.png and /dev/null differ diff --git a/static/icons/06002451.png b/static/icons/06002451.png deleted file mode 100755 index dd3e6cf8..00000000 Binary files a/static/icons/06002451.png and /dev/null differ diff --git a/static/icons/06002452.png b/static/icons/06002452.png deleted file mode 100755 index 0a98e363..00000000 Binary files a/static/icons/06002452.png and /dev/null differ diff --git a/static/icons/06002453.png b/static/icons/06002453.png deleted file mode 100755 index 6f6e8a63..00000000 Binary files a/static/icons/06002453.png and /dev/null differ diff --git a/static/icons/06002454.png b/static/icons/06002454.png deleted file mode 100755 index 712de709..00000000 Binary files a/static/icons/06002454.png and /dev/null differ diff --git a/static/icons/06002455.png b/static/icons/06002455.png deleted file mode 100755 index 89f710c4..00000000 Binary files a/static/icons/06002455.png and /dev/null differ diff --git a/static/icons/06002457.png b/static/icons/06002457.png deleted file mode 100755 index 37da7b6f..00000000 Binary files a/static/icons/06002457.png and /dev/null differ diff --git a/static/icons/06002458.png b/static/icons/06002458.png deleted file mode 100755 index 5fc71f15..00000000 Binary files a/static/icons/06002458.png and /dev/null differ diff --git a/static/icons/06002459.png b/static/icons/06002459.png deleted file mode 100755 index 7baac70f..00000000 Binary files a/static/icons/06002459.png and /dev/null differ diff --git a/static/icons/0600245A.png b/static/icons/0600245A.png deleted file mode 100755 index 17fdc1b4..00000000 Binary files a/static/icons/0600245A.png and /dev/null differ diff --git a/static/icons/0600245B.png b/static/icons/0600245B.png deleted file mode 100755 index 45fe07f1..00000000 Binary files a/static/icons/0600245B.png and /dev/null differ diff --git a/static/icons/0600245C.png b/static/icons/0600245C.png deleted file mode 100755 index b54645d1..00000000 Binary files a/static/icons/0600245C.png and /dev/null differ diff --git a/static/icons/0600245D.png b/static/icons/0600245D.png deleted file mode 100755 index c7b71cc7..00000000 Binary files a/static/icons/0600245D.png and /dev/null differ diff --git a/static/icons/0600245E.png b/static/icons/0600245E.png deleted file mode 100755 index 817be142..00000000 Binary files a/static/icons/0600245E.png and /dev/null differ diff --git a/static/icons/0600245F.png b/static/icons/0600245F.png deleted file mode 100755 index 9b23c1c1..00000000 Binary files a/static/icons/0600245F.png and /dev/null differ diff --git a/static/icons/06002460.png b/static/icons/06002460.png deleted file mode 100755 index 65ce712d..00000000 Binary files a/static/icons/06002460.png and /dev/null differ diff --git a/static/icons/06002461.png b/static/icons/06002461.png deleted file mode 100755 index 7632bdbc..00000000 Binary files a/static/icons/06002461.png and /dev/null differ diff --git a/static/icons/06002462.png b/static/icons/06002462.png deleted file mode 100755 index 514def43..00000000 Binary files a/static/icons/06002462.png and /dev/null differ diff --git a/static/icons/06002463.png b/static/icons/06002463.png deleted file mode 100755 index fd036dbc..00000000 Binary files a/static/icons/06002463.png and /dev/null differ diff --git a/static/icons/06002464.png b/static/icons/06002464.png deleted file mode 100755 index 24bb0a3c..00000000 Binary files a/static/icons/06002464.png and /dev/null differ diff --git a/static/icons/06002465.png b/static/icons/06002465.png deleted file mode 100755 index e8c0c49c..00000000 Binary files a/static/icons/06002465.png and /dev/null differ diff --git a/static/icons/06002466.png b/static/icons/06002466.png deleted file mode 100755 index 7588a794..00000000 Binary files a/static/icons/06002466.png and /dev/null differ diff --git a/static/icons/06002467.png b/static/icons/06002467.png deleted file mode 100755 index 3ee1986a..00000000 Binary files a/static/icons/06002467.png and /dev/null differ diff --git a/static/icons/06002468.png b/static/icons/06002468.png deleted file mode 100755 index 0fd06686..00000000 Binary files a/static/icons/06002468.png and /dev/null differ diff --git a/static/icons/06002469.png b/static/icons/06002469.png deleted file mode 100755 index acbdb68a..00000000 Binary files a/static/icons/06002469.png and /dev/null differ diff --git a/static/icons/0600246A.png b/static/icons/0600246A.png deleted file mode 100755 index 40df1040..00000000 Binary files a/static/icons/0600246A.png and /dev/null differ diff --git a/static/icons/0600246B.png b/static/icons/0600246B.png deleted file mode 100755 index 8a5d2d8e..00000000 Binary files a/static/icons/0600246B.png and /dev/null differ diff --git a/static/icons/0600246C.png b/static/icons/0600246C.png deleted file mode 100755 index 097c605b..00000000 Binary files a/static/icons/0600246C.png and /dev/null differ diff --git a/static/icons/0600246D.png b/static/icons/0600246D.png deleted file mode 100755 index b9642c80..00000000 Binary files a/static/icons/0600246D.png and /dev/null differ diff --git a/static/icons/0600246E.png b/static/icons/0600246E.png deleted file mode 100755 index a7013503..00000000 Binary files a/static/icons/0600246E.png and /dev/null differ diff --git a/static/icons/0600246F.png b/static/icons/0600246F.png deleted file mode 100755 index a21decea..00000000 Binary files a/static/icons/0600246F.png and /dev/null differ diff --git a/static/icons/06002470.png b/static/icons/06002470.png deleted file mode 100755 index 3fe033e7..00000000 Binary files a/static/icons/06002470.png and /dev/null differ diff --git a/static/icons/06002471.png b/static/icons/06002471.png deleted file mode 100755 index 94660f28..00000000 Binary files a/static/icons/06002471.png and /dev/null differ diff --git a/static/icons/06002472.png b/static/icons/06002472.png deleted file mode 100755 index d6e68b72..00000000 Binary files a/static/icons/06002472.png and /dev/null differ diff --git a/static/icons/06002473.png b/static/icons/06002473.png deleted file mode 100755 index 71effe18..00000000 Binary files a/static/icons/06002473.png and /dev/null differ diff --git a/static/icons/06002474.png b/static/icons/06002474.png deleted file mode 100755 index 95872fb8..00000000 Binary files a/static/icons/06002474.png and /dev/null differ diff --git a/static/icons/06002475.png b/static/icons/06002475.png deleted file mode 100755 index b88e0a49..00000000 Binary files a/static/icons/06002475.png and /dev/null differ diff --git a/static/icons/06002476.png b/static/icons/06002476.png deleted file mode 100755 index df34684e..00000000 Binary files a/static/icons/06002476.png and /dev/null differ diff --git a/static/icons/06002477.png b/static/icons/06002477.png deleted file mode 100755 index 97e33f4a..00000000 Binary files a/static/icons/06002477.png and /dev/null differ diff --git a/static/icons/06002478.png b/static/icons/06002478.png deleted file mode 100755 index de9c8ff0..00000000 Binary files a/static/icons/06002478.png and /dev/null differ diff --git a/static/icons/06002479.png b/static/icons/06002479.png deleted file mode 100755 index 6177252a..00000000 Binary files a/static/icons/06002479.png and /dev/null differ diff --git a/static/icons/0600247A.png b/static/icons/0600247A.png deleted file mode 100755 index f3088f05..00000000 Binary files a/static/icons/0600247A.png and /dev/null differ diff --git a/static/icons/0600247B.png b/static/icons/0600247B.png deleted file mode 100755 index 861d20ae..00000000 Binary files a/static/icons/0600247B.png and /dev/null differ diff --git a/static/icons/0600247C.png b/static/icons/0600247C.png deleted file mode 100755 index ec521752..00000000 Binary files a/static/icons/0600247C.png and /dev/null differ diff --git a/static/icons/0600247D.png b/static/icons/0600247D.png deleted file mode 100755 index 77bdd381..00000000 Binary files a/static/icons/0600247D.png and /dev/null differ diff --git a/static/icons/0600247E.png b/static/icons/0600247E.png deleted file mode 100755 index 30f80fc0..00000000 Binary files a/static/icons/0600247E.png and /dev/null differ diff --git a/static/icons/0600247F.png b/static/icons/0600247F.png deleted file mode 100755 index 69a9edba..00000000 Binary files a/static/icons/0600247F.png and /dev/null differ diff --git a/static/icons/06002480.png b/static/icons/06002480.png deleted file mode 100755 index ca944b96..00000000 Binary files a/static/icons/06002480.png and /dev/null differ diff --git a/static/icons/06002481.png b/static/icons/06002481.png deleted file mode 100755 index 9a83b9de..00000000 Binary files a/static/icons/06002481.png and /dev/null differ diff --git a/static/icons/06002482.png b/static/icons/06002482.png deleted file mode 100755 index 27c57621..00000000 Binary files a/static/icons/06002482.png and /dev/null differ diff --git a/static/icons/06002483.png b/static/icons/06002483.png deleted file mode 100755 index e8733b16..00000000 Binary files a/static/icons/06002483.png and /dev/null differ diff --git a/static/icons/06002484.png b/static/icons/06002484.png deleted file mode 100755 index fab0856b..00000000 Binary files a/static/icons/06002484.png and /dev/null differ diff --git a/static/icons/06002485.png b/static/icons/06002485.png deleted file mode 100755 index 3f5f5489..00000000 Binary files a/static/icons/06002485.png and /dev/null differ diff --git a/static/icons/06002486.png b/static/icons/06002486.png deleted file mode 100755 index c5f8138a..00000000 Binary files a/static/icons/06002486.png and /dev/null differ diff --git a/static/icons/06002487.png b/static/icons/06002487.png deleted file mode 100755 index fd79401a..00000000 Binary files a/static/icons/06002487.png and /dev/null differ diff --git a/static/icons/06002488.png b/static/icons/06002488.png deleted file mode 100755 index 86192299..00000000 Binary files a/static/icons/06002488.png and /dev/null differ diff --git a/static/icons/06002489.png b/static/icons/06002489.png deleted file mode 100755 index 842dbba9..00000000 Binary files a/static/icons/06002489.png and /dev/null differ diff --git a/static/icons/0600248B.png b/static/icons/0600248B.png deleted file mode 100755 index 52869534..00000000 Binary files a/static/icons/0600248B.png and /dev/null differ diff --git a/static/icons/0600248C.png b/static/icons/0600248C.png deleted file mode 100755 index ffbdc6d0..00000000 Binary files a/static/icons/0600248C.png and /dev/null differ diff --git a/static/icons/0600248D.png b/static/icons/0600248D.png deleted file mode 100755 index a285b796..00000000 Binary files a/static/icons/0600248D.png and /dev/null differ diff --git a/static/icons/0600248E.png b/static/icons/0600248E.png deleted file mode 100755 index 66002015..00000000 Binary files a/static/icons/0600248E.png and /dev/null differ diff --git a/static/icons/0600248F.png b/static/icons/0600248F.png deleted file mode 100755 index 3eb35dce..00000000 Binary files a/static/icons/0600248F.png and /dev/null differ diff --git a/static/icons/06002490.png b/static/icons/06002490.png deleted file mode 100755 index 637fb312..00000000 Binary files a/static/icons/06002490.png and /dev/null differ diff --git a/static/icons/06002491.png b/static/icons/06002491.png deleted file mode 100755 index 6b4c73f6..00000000 Binary files a/static/icons/06002491.png and /dev/null differ diff --git a/static/icons/06002492.png b/static/icons/06002492.png deleted file mode 100755 index 2467d18c..00000000 Binary files a/static/icons/06002492.png and /dev/null differ diff --git a/static/icons/06002493.png b/static/icons/06002493.png deleted file mode 100755 index 64a28a24..00000000 Binary files a/static/icons/06002493.png and /dev/null differ diff --git a/static/icons/06002495.png b/static/icons/06002495.png deleted file mode 100755 index fd05802d..00000000 Binary files a/static/icons/06002495.png and /dev/null differ diff --git a/static/icons/06002496.png b/static/icons/06002496.png deleted file mode 100755 index 87ee21e5..00000000 Binary files a/static/icons/06002496.png and /dev/null differ diff --git a/static/icons/06002497.png b/static/icons/06002497.png deleted file mode 100755 index fb1853e1..00000000 Binary files a/static/icons/06002497.png and /dev/null differ diff --git a/static/icons/06002498.png b/static/icons/06002498.png deleted file mode 100755 index e30177f8..00000000 Binary files a/static/icons/06002498.png and /dev/null differ diff --git a/static/icons/06002499.png b/static/icons/06002499.png deleted file mode 100755 index 1ed48c01..00000000 Binary files a/static/icons/06002499.png and /dev/null differ diff --git a/static/icons/0600249A.png b/static/icons/0600249A.png deleted file mode 100755 index ddbe1ee7..00000000 Binary files a/static/icons/0600249A.png and /dev/null differ diff --git a/static/icons/0600249B.png b/static/icons/0600249B.png deleted file mode 100755 index 83c7dd6c..00000000 Binary files a/static/icons/0600249B.png and /dev/null differ diff --git a/static/icons/0600249C.png b/static/icons/0600249C.png deleted file mode 100755 index b9a447f5..00000000 Binary files a/static/icons/0600249C.png and /dev/null differ diff --git a/static/icons/0600249D.png b/static/icons/0600249D.png deleted file mode 100755 index 5ab5c5de..00000000 Binary files a/static/icons/0600249D.png and /dev/null differ diff --git a/static/icons/0600249E.png b/static/icons/0600249E.png deleted file mode 100755 index 7f91e38a..00000000 Binary files a/static/icons/0600249E.png and /dev/null differ diff --git a/static/icons/0600249F.png b/static/icons/0600249F.png deleted file mode 100755 index 7fdea201..00000000 Binary files a/static/icons/0600249F.png and /dev/null differ diff --git a/static/icons/060024A0.png b/static/icons/060024A0.png deleted file mode 100755 index 6cf3fa69..00000000 Binary files a/static/icons/060024A0.png and /dev/null differ diff --git a/static/icons/060024A1.png b/static/icons/060024A1.png deleted file mode 100755 index 99239e4a..00000000 Binary files a/static/icons/060024A1.png and /dev/null differ diff --git a/static/icons/060024A2.png b/static/icons/060024A2.png deleted file mode 100755 index 96a305df..00000000 Binary files a/static/icons/060024A2.png and /dev/null differ diff --git a/static/icons/060024A3.png b/static/icons/060024A3.png deleted file mode 100755 index c6eee168..00000000 Binary files a/static/icons/060024A3.png and /dev/null differ diff --git a/static/icons/060024A4.png b/static/icons/060024A4.png deleted file mode 100755 index 0d41ec92..00000000 Binary files a/static/icons/060024A4.png and /dev/null differ diff --git a/static/icons/060024A5.png b/static/icons/060024A5.png deleted file mode 100755 index 9aebb93f..00000000 Binary files a/static/icons/060024A5.png and /dev/null differ diff --git a/static/icons/060024A6.png b/static/icons/060024A6.png deleted file mode 100755 index 7962a298..00000000 Binary files a/static/icons/060024A6.png and /dev/null differ diff --git a/static/icons/060024A8.png b/static/icons/060024A8.png deleted file mode 100755 index e67f65f2..00000000 Binary files a/static/icons/060024A8.png and /dev/null differ diff --git a/static/icons/060024A9.png b/static/icons/060024A9.png deleted file mode 100755 index 5bab5dbf..00000000 Binary files a/static/icons/060024A9.png and /dev/null differ diff --git a/static/icons/060024AA.png b/static/icons/060024AA.png deleted file mode 100755 index 302447f8..00000000 Binary files a/static/icons/060024AA.png and /dev/null differ diff --git a/static/icons/060024AB.png b/static/icons/060024AB.png deleted file mode 100755 index 4299ae0a..00000000 Binary files a/static/icons/060024AB.png and /dev/null differ diff --git a/static/icons/060024AC.png b/static/icons/060024AC.png deleted file mode 100755 index 05f4617d..00000000 Binary files a/static/icons/060024AC.png and /dev/null differ diff --git a/static/icons/060024AD.png b/static/icons/060024AD.png deleted file mode 100755 index 8955f967..00000000 Binary files a/static/icons/060024AD.png and /dev/null differ diff --git a/static/icons/060024AE.png b/static/icons/060024AE.png deleted file mode 100755 index 7cf7ac94..00000000 Binary files a/static/icons/060024AE.png and /dev/null differ diff --git a/static/icons/060024AF.png b/static/icons/060024AF.png deleted file mode 100755 index 381d9c2b..00000000 Binary files a/static/icons/060024AF.png and /dev/null differ diff --git a/static/icons/060024B0.png b/static/icons/060024B0.png deleted file mode 100755 index 255ea5fc..00000000 Binary files a/static/icons/060024B0.png and /dev/null differ diff --git a/static/icons/060024B1.png b/static/icons/060024B1.png deleted file mode 100755 index 9c04461f..00000000 Binary files a/static/icons/060024B1.png and /dev/null differ diff --git a/static/icons/060024B2.png b/static/icons/060024B2.png deleted file mode 100755 index ad0c3acf..00000000 Binary files a/static/icons/060024B2.png and /dev/null differ diff --git a/static/icons/060024B3.png b/static/icons/060024B3.png deleted file mode 100755 index 414ae740..00000000 Binary files a/static/icons/060024B3.png and /dev/null differ diff --git a/static/icons/060024B4.png b/static/icons/060024B4.png deleted file mode 100755 index 4258a852..00000000 Binary files a/static/icons/060024B4.png and /dev/null differ diff --git a/static/icons/060024B5.png b/static/icons/060024B5.png deleted file mode 100755 index a3f0bada..00000000 Binary files a/static/icons/060024B5.png and /dev/null differ diff --git a/static/icons/060024B6.png b/static/icons/060024B6.png deleted file mode 100755 index 146da999..00000000 Binary files a/static/icons/060024B6.png and /dev/null differ diff --git a/static/icons/060024B7.png b/static/icons/060024B7.png deleted file mode 100755 index 107fb4eb..00000000 Binary files a/static/icons/060024B7.png and /dev/null differ diff --git a/static/icons/060024B8.png b/static/icons/060024B8.png deleted file mode 100755 index 69abd0eb..00000000 Binary files a/static/icons/060024B8.png and /dev/null differ diff --git a/static/icons/060024BA.png b/static/icons/060024BA.png deleted file mode 100755 index 0cca3419..00000000 Binary files a/static/icons/060024BA.png and /dev/null differ diff --git a/static/icons/060024BB.png b/static/icons/060024BB.png deleted file mode 100755 index 85c50fb3..00000000 Binary files a/static/icons/060024BB.png and /dev/null differ diff --git a/static/icons/060024BC.png b/static/icons/060024BC.png deleted file mode 100755 index bb0cb715..00000000 Binary files a/static/icons/060024BC.png and /dev/null differ diff --git a/static/icons/060024BD.png b/static/icons/060024BD.png deleted file mode 100755 index fde7fe71..00000000 Binary files a/static/icons/060024BD.png and /dev/null differ diff --git a/static/icons/060024BE.png b/static/icons/060024BE.png deleted file mode 100755 index c7786b24..00000000 Binary files a/static/icons/060024BE.png and /dev/null differ diff --git a/static/icons/060024BF.png b/static/icons/060024BF.png deleted file mode 100755 index 72b3f8ed..00000000 Binary files a/static/icons/060024BF.png and /dev/null differ diff --git a/static/icons/060024C0.png b/static/icons/060024C0.png deleted file mode 100755 index 7b1d6d38..00000000 Binary files a/static/icons/060024C0.png and /dev/null differ diff --git a/static/icons/060024C1.png b/static/icons/060024C1.png deleted file mode 100755 index 66aa4e3b..00000000 Binary files a/static/icons/060024C1.png and /dev/null differ diff --git a/static/icons/060024C2.png b/static/icons/060024C2.png deleted file mode 100755 index f37d4bf6..00000000 Binary files a/static/icons/060024C2.png and /dev/null differ diff --git a/static/icons/060024C3.png b/static/icons/060024C3.png deleted file mode 100755 index 6c41278b..00000000 Binary files a/static/icons/060024C3.png and /dev/null differ diff --git a/static/icons/060024C4.png b/static/icons/060024C4.png deleted file mode 100755 index 1f0aea84..00000000 Binary files a/static/icons/060024C4.png and /dev/null differ diff --git a/static/icons/060024C5.png b/static/icons/060024C5.png deleted file mode 100755 index fc8fd459..00000000 Binary files a/static/icons/060024C5.png and /dev/null differ diff --git a/static/icons/060024C6.png b/static/icons/060024C6.png deleted file mode 100755 index 64dca540..00000000 Binary files a/static/icons/060024C6.png and /dev/null differ diff --git a/static/icons/060024C7.png b/static/icons/060024C7.png deleted file mode 100755 index 2a21a02e..00000000 Binary files a/static/icons/060024C7.png and /dev/null differ diff --git a/static/icons/060024C8.png b/static/icons/060024C8.png deleted file mode 100755 index 012a8480..00000000 Binary files a/static/icons/060024C8.png and /dev/null differ diff --git a/static/icons/060024C9.png b/static/icons/060024C9.png deleted file mode 100755 index a7e56116..00000000 Binary files a/static/icons/060024C9.png and /dev/null differ diff --git a/static/icons/060024CA.png b/static/icons/060024CA.png deleted file mode 100755 index bd8adecb..00000000 Binary files a/static/icons/060024CA.png and /dev/null differ diff --git a/static/icons/060024CB.png b/static/icons/060024CB.png deleted file mode 100755 index 54de38db..00000000 Binary files a/static/icons/060024CB.png and /dev/null differ diff --git a/static/icons/060024CC.png b/static/icons/060024CC.png deleted file mode 100755 index 377f86ae..00000000 Binary files a/static/icons/060024CC.png and /dev/null differ diff --git a/static/icons/060024CD.png b/static/icons/060024CD.png deleted file mode 100755 index 263433c2..00000000 Binary files a/static/icons/060024CD.png and /dev/null differ diff --git a/static/icons/060024CE.png b/static/icons/060024CE.png deleted file mode 100755 index 5c1ebe8b..00000000 Binary files a/static/icons/060024CE.png and /dev/null differ diff --git a/static/icons/060024CF.png b/static/icons/060024CF.png deleted file mode 100755 index c40da729..00000000 Binary files a/static/icons/060024CF.png and /dev/null differ diff --git a/static/icons/060024D0.png b/static/icons/060024D0.png deleted file mode 100755 index 22edafc6..00000000 Binary files a/static/icons/060024D0.png and /dev/null differ diff --git a/static/icons/060024D1.png b/static/icons/060024D1.png deleted file mode 100755 index 18c3cc67..00000000 Binary files a/static/icons/060024D1.png and /dev/null differ diff --git a/static/icons/060024D2.png b/static/icons/060024D2.png deleted file mode 100755 index 595aa71b..00000000 Binary files a/static/icons/060024D2.png and /dev/null differ diff --git a/static/icons/060024D3.png b/static/icons/060024D3.png deleted file mode 100755 index ea67bf0a..00000000 Binary files a/static/icons/060024D3.png and /dev/null differ diff --git a/static/icons/060024D4.png b/static/icons/060024D4.png deleted file mode 100755 index ec92acbf..00000000 Binary files a/static/icons/060024D4.png and /dev/null differ diff --git a/static/icons/060024D5.png b/static/icons/060024D5.png deleted file mode 100755 index f3110ca5..00000000 Binary files a/static/icons/060024D5.png and /dev/null differ diff --git a/static/icons/060024D6.png b/static/icons/060024D6.png deleted file mode 100755 index 303afd30..00000000 Binary files a/static/icons/060024D6.png and /dev/null differ diff --git a/static/icons/060024D7.png b/static/icons/060024D7.png deleted file mode 100755 index 4667f21d..00000000 Binary files a/static/icons/060024D7.png and /dev/null differ diff --git a/static/icons/060024D8.png b/static/icons/060024D8.png deleted file mode 100755 index 665cffe7..00000000 Binary files a/static/icons/060024D8.png and /dev/null differ diff --git a/static/icons/060024D9.png b/static/icons/060024D9.png deleted file mode 100755 index 0f64641b..00000000 Binary files a/static/icons/060024D9.png and /dev/null differ diff --git a/static/icons/060024DA.png b/static/icons/060024DA.png deleted file mode 100755 index 5ee8225d..00000000 Binary files a/static/icons/060024DA.png and /dev/null differ diff --git a/static/icons/060024DB.png b/static/icons/060024DB.png deleted file mode 100755 index 01286984..00000000 Binary files a/static/icons/060024DB.png and /dev/null differ diff --git a/static/icons/060024DC.png b/static/icons/060024DC.png deleted file mode 100755 index 01d0825d..00000000 Binary files a/static/icons/060024DC.png and /dev/null differ diff --git a/static/icons/060024DD.png b/static/icons/060024DD.png deleted file mode 100755 index ee2bc5e4..00000000 Binary files a/static/icons/060024DD.png and /dev/null differ diff --git a/static/icons/060024DE.png b/static/icons/060024DE.png deleted file mode 100755 index 39c6a456..00000000 Binary files a/static/icons/060024DE.png and /dev/null differ diff --git a/static/icons/060024DF.png b/static/icons/060024DF.png deleted file mode 100755 index 594466d6..00000000 Binary files a/static/icons/060024DF.png and /dev/null differ diff --git a/static/icons/060024E0.png b/static/icons/060024E0.png deleted file mode 100755 index 961b4371..00000000 Binary files a/static/icons/060024E0.png and /dev/null differ diff --git a/static/icons/060024E1.png b/static/icons/060024E1.png deleted file mode 100755 index 25ae8807..00000000 Binary files a/static/icons/060024E1.png and /dev/null differ diff --git a/static/icons/060024E2.png b/static/icons/060024E2.png deleted file mode 100755 index 36cc8e6d..00000000 Binary files a/static/icons/060024E2.png and /dev/null differ diff --git a/static/icons/060024E7.png b/static/icons/060024E7.png deleted file mode 100755 index c0fed513..00000000 Binary files a/static/icons/060024E7.png and /dev/null differ diff --git a/static/icons/060024E8.png b/static/icons/060024E8.png deleted file mode 100755 index 7c9b7964..00000000 Binary files a/static/icons/060024E8.png and /dev/null differ diff --git a/static/icons/060024E9.png b/static/icons/060024E9.png deleted file mode 100755 index 3427b6f7..00000000 Binary files a/static/icons/060024E9.png and /dev/null differ diff --git a/static/icons/060024EA.png b/static/icons/060024EA.png deleted file mode 100755 index 82567b15..00000000 Binary files a/static/icons/060024EA.png and /dev/null differ diff --git a/static/icons/060024EB.png b/static/icons/060024EB.png deleted file mode 100755 index 2d9de711..00000000 Binary files a/static/icons/060024EB.png and /dev/null differ diff --git a/static/icons/060024EC.png b/static/icons/060024EC.png deleted file mode 100755 index b2a3c2df..00000000 Binary files a/static/icons/060024EC.png and /dev/null differ diff --git a/static/icons/060024ED.png b/static/icons/060024ED.png deleted file mode 100755 index 71da2455..00000000 Binary files a/static/icons/060024ED.png and /dev/null differ diff --git a/static/icons/060024EE.png b/static/icons/060024EE.png deleted file mode 100755 index 933799d1..00000000 Binary files a/static/icons/060024EE.png and /dev/null differ diff --git a/static/icons/060024EF.png b/static/icons/060024EF.png deleted file mode 100755 index 49342817..00000000 Binary files a/static/icons/060024EF.png and /dev/null differ diff --git a/static/icons/060024F0.png b/static/icons/060024F0.png deleted file mode 100755 index e8171d19..00000000 Binary files a/static/icons/060024F0.png and /dev/null differ diff --git a/static/icons/060024F1.png b/static/icons/060024F1.png deleted file mode 100755 index dad94760..00000000 Binary files a/static/icons/060024F1.png and /dev/null differ diff --git a/static/icons/060024F2.png b/static/icons/060024F2.png deleted file mode 100755 index fd0d1b24..00000000 Binary files a/static/icons/060024F2.png and /dev/null differ diff --git a/static/icons/060024F3.png b/static/icons/060024F3.png deleted file mode 100755 index 601dfbf9..00000000 Binary files a/static/icons/060024F3.png and /dev/null differ diff --git a/static/icons/060024F4.png b/static/icons/060024F4.png deleted file mode 100755 index 02979b9b..00000000 Binary files a/static/icons/060024F4.png and /dev/null differ diff --git a/static/icons/060024F5.png b/static/icons/060024F5.png deleted file mode 100755 index 46c9959b..00000000 Binary files a/static/icons/060024F5.png and /dev/null differ diff --git a/static/icons/060024F6.png b/static/icons/060024F6.png deleted file mode 100755 index 3f7a3cae..00000000 Binary files a/static/icons/060024F6.png and /dev/null differ diff --git a/static/icons/060024F7.png b/static/icons/060024F7.png deleted file mode 100755 index ae010a04..00000000 Binary files a/static/icons/060024F7.png and /dev/null differ diff --git a/static/icons/060024F8.png b/static/icons/060024F8.png deleted file mode 100755 index c8667023..00000000 Binary files a/static/icons/060024F8.png and /dev/null differ diff --git a/static/icons/060024F9.png b/static/icons/060024F9.png deleted file mode 100755 index b312647e..00000000 Binary files a/static/icons/060024F9.png and /dev/null differ diff --git a/static/icons/060024FA.png b/static/icons/060024FA.png deleted file mode 100755 index 1ee703da..00000000 Binary files a/static/icons/060024FA.png and /dev/null differ diff --git a/static/icons/060024FD.png b/static/icons/060024FD.png deleted file mode 100755 index da5621b2..00000000 Binary files a/static/icons/060024FD.png and /dev/null differ diff --git a/static/icons/060024FE.png b/static/icons/060024FE.png deleted file mode 100755 index 46e8e544..00000000 Binary files a/static/icons/060024FE.png and /dev/null differ diff --git a/static/icons/060024FF.png b/static/icons/060024FF.png deleted file mode 100755 index 4b3ff169..00000000 Binary files a/static/icons/060024FF.png and /dev/null differ diff --git a/static/icons/06002500.png b/static/icons/06002500.png deleted file mode 100755 index 81b674c3..00000000 Binary files a/static/icons/06002500.png and /dev/null differ diff --git a/static/icons/06002501.png b/static/icons/06002501.png deleted file mode 100755 index 05523b9e..00000000 Binary files a/static/icons/06002501.png and /dev/null differ diff --git a/static/icons/06002502.png b/static/icons/06002502.png deleted file mode 100755 index 4cb65e37..00000000 Binary files a/static/icons/06002502.png and /dev/null differ diff --git a/static/icons/06002503.png b/static/icons/06002503.png deleted file mode 100755 index b9598be1..00000000 Binary files a/static/icons/06002503.png and /dev/null differ diff --git a/static/icons/06002504.png b/static/icons/06002504.png deleted file mode 100755 index 82fc609e..00000000 Binary files a/static/icons/06002504.png and /dev/null differ diff --git a/static/icons/06002505.png b/static/icons/06002505.png deleted file mode 100755 index 5d10ecc1..00000000 Binary files a/static/icons/06002505.png and /dev/null differ diff --git a/static/icons/06002506.png b/static/icons/06002506.png deleted file mode 100755 index d0084d97..00000000 Binary files a/static/icons/06002506.png and /dev/null differ diff --git a/static/icons/06002507.png b/static/icons/06002507.png deleted file mode 100755 index 51e44f85..00000000 Binary files a/static/icons/06002507.png and /dev/null differ diff --git a/static/icons/06002508.png b/static/icons/06002508.png deleted file mode 100755 index d7195f90..00000000 Binary files a/static/icons/06002508.png and /dev/null differ diff --git a/static/icons/06002509.png b/static/icons/06002509.png deleted file mode 100755 index 9c46a53a..00000000 Binary files a/static/icons/06002509.png and /dev/null differ diff --git a/static/icons/0600250A.png b/static/icons/0600250A.png deleted file mode 100755 index 6a73aee2..00000000 Binary files a/static/icons/0600250A.png and /dev/null differ diff --git a/static/icons/0600250B.png b/static/icons/0600250B.png deleted file mode 100755 index 35ffa3c2..00000000 Binary files a/static/icons/0600250B.png and /dev/null differ diff --git a/static/icons/0600250C.png b/static/icons/0600250C.png deleted file mode 100755 index 83c4b336..00000000 Binary files a/static/icons/0600250C.png and /dev/null differ diff --git a/static/icons/0600250D.png b/static/icons/0600250D.png deleted file mode 100755 index aad7999f..00000000 Binary files a/static/icons/0600250D.png and /dev/null differ diff --git a/static/icons/0600250E.png b/static/icons/0600250E.png deleted file mode 100755 index 419900a9..00000000 Binary files a/static/icons/0600250E.png and /dev/null differ diff --git a/static/icons/0600250F.png b/static/icons/0600250F.png deleted file mode 100755 index 5894d7bc..00000000 Binary files a/static/icons/0600250F.png and /dev/null differ diff --git a/static/icons/06002510.png b/static/icons/06002510.png deleted file mode 100755 index 4c197b25..00000000 Binary files a/static/icons/06002510.png and /dev/null differ diff --git a/static/icons/06002511.png b/static/icons/06002511.png deleted file mode 100755 index b6d892fe..00000000 Binary files a/static/icons/06002511.png and /dev/null differ diff --git a/static/icons/06002512.png b/static/icons/06002512.png deleted file mode 100755 index a2ee810a..00000000 Binary files a/static/icons/06002512.png and /dev/null differ diff --git a/static/icons/06002513.png b/static/icons/06002513.png deleted file mode 100755 index 34936b18..00000000 Binary files a/static/icons/06002513.png and /dev/null differ diff --git a/static/icons/06002514.png b/static/icons/06002514.png deleted file mode 100755 index d60ee2b4..00000000 Binary files a/static/icons/06002514.png and /dev/null differ diff --git a/static/icons/06002515.png b/static/icons/06002515.png deleted file mode 100755 index 7e8bb059..00000000 Binary files a/static/icons/06002515.png and /dev/null differ diff --git a/static/icons/06002516.png b/static/icons/06002516.png deleted file mode 100755 index fcac1728..00000000 Binary files a/static/icons/06002516.png and /dev/null differ diff --git a/static/icons/06002517.png b/static/icons/06002517.png deleted file mode 100755 index a0911659..00000000 Binary files a/static/icons/06002517.png and /dev/null differ diff --git a/static/icons/06002518.png b/static/icons/06002518.png deleted file mode 100755 index 087e2a15..00000000 Binary files a/static/icons/06002518.png and /dev/null differ diff --git a/static/icons/06002519.png b/static/icons/06002519.png deleted file mode 100755 index 34cc44fe..00000000 Binary files a/static/icons/06002519.png and /dev/null differ diff --git a/static/icons/0600251A.png b/static/icons/0600251A.png deleted file mode 100755 index 66059adb..00000000 Binary files a/static/icons/0600251A.png and /dev/null differ diff --git a/static/icons/0600251B.png b/static/icons/0600251B.png deleted file mode 100755 index ac843466..00000000 Binary files a/static/icons/0600251B.png and /dev/null differ diff --git a/static/icons/0600251C.png b/static/icons/0600251C.png deleted file mode 100755 index a7b821e5..00000000 Binary files a/static/icons/0600251C.png and /dev/null differ diff --git a/static/icons/0600251D.png b/static/icons/0600251D.png deleted file mode 100755 index bce3f43b..00000000 Binary files a/static/icons/0600251D.png and /dev/null differ diff --git a/static/icons/0600251E.png b/static/icons/0600251E.png deleted file mode 100755 index 3feb6f86..00000000 Binary files a/static/icons/0600251E.png and /dev/null differ diff --git a/static/icons/0600251F.png b/static/icons/0600251F.png deleted file mode 100755 index 9b682ec0..00000000 Binary files a/static/icons/0600251F.png and /dev/null differ diff --git a/static/icons/06002520.png b/static/icons/06002520.png deleted file mode 100755 index cf3f324a..00000000 Binary files a/static/icons/06002520.png and /dev/null differ diff --git a/static/icons/06002521.png b/static/icons/06002521.png deleted file mode 100755 index 5bf9ea3d..00000000 Binary files a/static/icons/06002521.png and /dev/null differ diff --git a/static/icons/06002522.png b/static/icons/06002522.png deleted file mode 100755 index ccc30596..00000000 Binary files a/static/icons/06002522.png and /dev/null differ diff --git a/static/icons/06002523.png b/static/icons/06002523.png deleted file mode 100755 index 74341e99..00000000 Binary files a/static/icons/06002523.png and /dev/null differ diff --git a/static/icons/06002524.png b/static/icons/06002524.png deleted file mode 100755 index 0c0c822f..00000000 Binary files a/static/icons/06002524.png and /dev/null differ diff --git a/static/icons/06002525.png b/static/icons/06002525.png deleted file mode 100755 index da4362d8..00000000 Binary files a/static/icons/06002525.png and /dev/null differ diff --git a/static/icons/06002526.png b/static/icons/06002526.png deleted file mode 100755 index 0d29dba2..00000000 Binary files a/static/icons/06002526.png and /dev/null differ diff --git a/static/icons/06002527.png b/static/icons/06002527.png deleted file mode 100755 index 85b794d3..00000000 Binary files a/static/icons/06002527.png and /dev/null differ diff --git a/static/icons/06002528.png b/static/icons/06002528.png deleted file mode 100755 index 5caa40af..00000000 Binary files a/static/icons/06002528.png and /dev/null differ diff --git a/static/icons/06002529.png b/static/icons/06002529.png deleted file mode 100755 index d65e7885..00000000 Binary files a/static/icons/06002529.png and /dev/null differ diff --git a/static/icons/0600252A.png b/static/icons/0600252A.png deleted file mode 100755 index 89d59b00..00000000 Binary files a/static/icons/0600252A.png and /dev/null differ diff --git a/static/icons/0600252B.png b/static/icons/0600252B.png deleted file mode 100755 index d0cd6be4..00000000 Binary files a/static/icons/0600252B.png and /dev/null differ diff --git a/static/icons/0600252C.png b/static/icons/0600252C.png deleted file mode 100755 index eb771af4..00000000 Binary files a/static/icons/0600252C.png and /dev/null differ diff --git a/static/icons/0600252D.png b/static/icons/0600252D.png deleted file mode 100755 index dcae88fa..00000000 Binary files a/static/icons/0600252D.png and /dev/null differ diff --git a/static/icons/0600252E.png b/static/icons/0600252E.png deleted file mode 100755 index 3752267d..00000000 Binary files a/static/icons/0600252E.png and /dev/null differ diff --git a/static/icons/0600252F.png b/static/icons/0600252F.png deleted file mode 100755 index a6470cb0..00000000 Binary files a/static/icons/0600252F.png and /dev/null differ diff --git a/static/icons/06002530.png b/static/icons/06002530.png deleted file mode 100755 index c5cabdfa..00000000 Binary files a/static/icons/06002530.png and /dev/null differ diff --git a/static/icons/06002531.png b/static/icons/06002531.png deleted file mode 100755 index a4f303f9..00000000 Binary files a/static/icons/06002531.png and /dev/null differ diff --git a/static/icons/06002532.png b/static/icons/06002532.png deleted file mode 100755 index 7836199c..00000000 Binary files a/static/icons/06002532.png and /dev/null differ diff --git a/static/icons/06002533.png b/static/icons/06002533.png deleted file mode 100755 index b5a667a9..00000000 Binary files a/static/icons/06002533.png and /dev/null differ diff --git a/static/icons/06002534.png b/static/icons/06002534.png deleted file mode 100755 index 4c928a08..00000000 Binary files a/static/icons/06002534.png and /dev/null differ diff --git a/static/icons/06002535.png b/static/icons/06002535.png deleted file mode 100755 index 844fca14..00000000 Binary files a/static/icons/06002535.png and /dev/null differ diff --git a/static/icons/06002536.png b/static/icons/06002536.png deleted file mode 100755 index 55b898c6..00000000 Binary files a/static/icons/06002536.png and /dev/null differ diff --git a/static/icons/06002537.png b/static/icons/06002537.png deleted file mode 100755 index 81d24071..00000000 Binary files a/static/icons/06002537.png and /dev/null differ diff --git a/static/icons/06002538.png b/static/icons/06002538.png deleted file mode 100755 index 359a3505..00000000 Binary files a/static/icons/06002538.png and /dev/null differ diff --git a/static/icons/06002539.png b/static/icons/06002539.png deleted file mode 100755 index 955a6268..00000000 Binary files a/static/icons/06002539.png and /dev/null differ diff --git a/static/icons/0600253A.png b/static/icons/0600253A.png deleted file mode 100755 index 6bd1b779..00000000 Binary files a/static/icons/0600253A.png and /dev/null differ diff --git a/static/icons/0600253B.png b/static/icons/0600253B.png deleted file mode 100755 index 4013cc1d..00000000 Binary files a/static/icons/0600253B.png and /dev/null differ diff --git a/static/icons/0600253C.png b/static/icons/0600253C.png deleted file mode 100755 index 7a998cc3..00000000 Binary files a/static/icons/0600253C.png and /dev/null differ diff --git a/static/icons/0600253D.png b/static/icons/0600253D.png deleted file mode 100755 index 195e7fee..00000000 Binary files a/static/icons/0600253D.png and /dev/null differ diff --git a/static/icons/0600253E.png b/static/icons/0600253E.png deleted file mode 100755 index eee5a423..00000000 Binary files a/static/icons/0600253E.png and /dev/null differ diff --git a/static/icons/0600253F.png b/static/icons/0600253F.png deleted file mode 100755 index 69aedffe..00000000 Binary files a/static/icons/0600253F.png and /dev/null differ diff --git a/static/icons/06002540.png b/static/icons/06002540.png deleted file mode 100755 index 21cf2b4a..00000000 Binary files a/static/icons/06002540.png and /dev/null differ diff --git a/static/icons/06002541.png b/static/icons/06002541.png deleted file mode 100755 index 2d5698b3..00000000 Binary files a/static/icons/06002541.png and /dev/null differ diff --git a/static/icons/06002542.png b/static/icons/06002542.png deleted file mode 100755 index 20abc42b..00000000 Binary files a/static/icons/06002542.png and /dev/null differ diff --git a/static/icons/06002543.png b/static/icons/06002543.png deleted file mode 100755 index 4774427e..00000000 Binary files a/static/icons/06002543.png and /dev/null differ diff --git a/static/icons/06002544.png b/static/icons/06002544.png deleted file mode 100755 index 295d3295..00000000 Binary files a/static/icons/06002544.png and /dev/null differ diff --git a/static/icons/06002545.png b/static/icons/06002545.png deleted file mode 100755 index 75807ded..00000000 Binary files a/static/icons/06002545.png and /dev/null differ diff --git a/static/icons/06002546.png b/static/icons/06002546.png deleted file mode 100755 index 84646a32..00000000 Binary files a/static/icons/06002546.png and /dev/null differ diff --git a/static/icons/06002547.png b/static/icons/06002547.png deleted file mode 100755 index 7711d2f8..00000000 Binary files a/static/icons/06002547.png and /dev/null differ diff --git a/static/icons/06002548.png b/static/icons/06002548.png deleted file mode 100755 index 95bedbaf..00000000 Binary files a/static/icons/06002548.png and /dev/null differ diff --git a/static/icons/06002549.png b/static/icons/06002549.png deleted file mode 100755 index 1ddc3c12..00000000 Binary files a/static/icons/06002549.png and /dev/null differ diff --git a/static/icons/0600254A.png b/static/icons/0600254A.png deleted file mode 100755 index 56b4a0e3..00000000 Binary files a/static/icons/0600254A.png and /dev/null differ diff --git a/static/icons/0600254B.png b/static/icons/0600254B.png deleted file mode 100755 index 153f710d..00000000 Binary files a/static/icons/0600254B.png and /dev/null differ diff --git a/static/icons/0600254C.png b/static/icons/0600254C.png deleted file mode 100755 index bcc12686..00000000 Binary files a/static/icons/0600254C.png and /dev/null differ diff --git a/static/icons/0600254D.png b/static/icons/0600254D.png deleted file mode 100755 index c65a05e9..00000000 Binary files a/static/icons/0600254D.png and /dev/null differ diff --git a/static/icons/0600254E.png b/static/icons/0600254E.png deleted file mode 100755 index 28df297b..00000000 Binary files a/static/icons/0600254E.png and /dev/null differ diff --git a/static/icons/0600254F.png b/static/icons/0600254F.png deleted file mode 100755 index 479486ab..00000000 Binary files a/static/icons/0600254F.png and /dev/null differ diff --git a/static/icons/06002550.png b/static/icons/06002550.png deleted file mode 100755 index ac9e610b..00000000 Binary files a/static/icons/06002550.png and /dev/null differ diff --git a/static/icons/06002551.png b/static/icons/06002551.png deleted file mode 100755 index 65fd5e4b..00000000 Binary files a/static/icons/06002551.png and /dev/null differ diff --git a/static/icons/06002552.png b/static/icons/06002552.png deleted file mode 100755 index 8eba05dd..00000000 Binary files a/static/icons/06002552.png and /dev/null differ diff --git a/static/icons/06002553.png b/static/icons/06002553.png deleted file mode 100755 index 9fd3c06c..00000000 Binary files a/static/icons/06002553.png and /dev/null differ diff --git a/static/icons/06002554.png b/static/icons/06002554.png deleted file mode 100755 index 0f7659d8..00000000 Binary files a/static/icons/06002554.png and /dev/null differ diff --git a/static/icons/06002555.png b/static/icons/06002555.png deleted file mode 100755 index af38aaec..00000000 Binary files a/static/icons/06002555.png and /dev/null differ diff --git a/static/icons/06002556.png b/static/icons/06002556.png deleted file mode 100755 index 0b78c6b6..00000000 Binary files a/static/icons/06002556.png and /dev/null differ diff --git a/static/icons/06002557.png b/static/icons/06002557.png deleted file mode 100755 index ae915b31..00000000 Binary files a/static/icons/06002557.png and /dev/null differ diff --git a/static/icons/06002558.png b/static/icons/06002558.png deleted file mode 100755 index a9243ad9..00000000 Binary files a/static/icons/06002558.png and /dev/null differ diff --git a/static/icons/06002559.png b/static/icons/06002559.png deleted file mode 100755 index bb5b527f..00000000 Binary files a/static/icons/06002559.png and /dev/null differ diff --git a/static/icons/0600255A.png b/static/icons/0600255A.png deleted file mode 100755 index cbc04210..00000000 Binary files a/static/icons/0600255A.png and /dev/null differ diff --git a/static/icons/0600255B.png b/static/icons/0600255B.png deleted file mode 100755 index 9e5b2228..00000000 Binary files a/static/icons/0600255B.png and /dev/null differ diff --git a/static/icons/0600255C.png b/static/icons/0600255C.png deleted file mode 100755 index 460b0ddf..00000000 Binary files a/static/icons/0600255C.png and /dev/null differ diff --git a/static/icons/0600255D.png b/static/icons/0600255D.png deleted file mode 100755 index e4349b05..00000000 Binary files a/static/icons/0600255D.png and /dev/null differ diff --git a/static/icons/0600255E.png b/static/icons/0600255E.png deleted file mode 100755 index 3312c274..00000000 Binary files a/static/icons/0600255E.png and /dev/null differ diff --git a/static/icons/0600255F.png b/static/icons/0600255F.png deleted file mode 100755 index bd388cec..00000000 Binary files a/static/icons/0600255F.png and /dev/null differ diff --git a/static/icons/06002560.png b/static/icons/06002560.png deleted file mode 100755 index 68916752..00000000 Binary files a/static/icons/06002560.png and /dev/null differ diff --git a/static/icons/06002561.png b/static/icons/06002561.png deleted file mode 100755 index 3d83b63d..00000000 Binary files a/static/icons/06002561.png and /dev/null differ diff --git a/static/icons/06002562.png b/static/icons/06002562.png deleted file mode 100755 index ac15b501..00000000 Binary files a/static/icons/06002562.png and /dev/null differ diff --git a/static/icons/06002563.png b/static/icons/06002563.png deleted file mode 100755 index aff985b1..00000000 Binary files a/static/icons/06002563.png and /dev/null differ diff --git a/static/icons/06002564.png b/static/icons/06002564.png deleted file mode 100755 index 99014059..00000000 Binary files a/static/icons/06002564.png and /dev/null differ diff --git a/static/icons/06002565.png b/static/icons/06002565.png deleted file mode 100755 index ad585ff0..00000000 Binary files a/static/icons/06002565.png and /dev/null differ diff --git a/static/icons/06002566.png b/static/icons/06002566.png deleted file mode 100755 index c0c889eb..00000000 Binary files a/static/icons/06002566.png and /dev/null differ diff --git a/static/icons/06002567.png b/static/icons/06002567.png deleted file mode 100755 index 38b17be2..00000000 Binary files a/static/icons/06002567.png and /dev/null differ diff --git a/static/icons/06002568.png b/static/icons/06002568.png deleted file mode 100755 index 1bee6faa..00000000 Binary files a/static/icons/06002568.png and /dev/null differ diff --git a/static/icons/06002569.png b/static/icons/06002569.png deleted file mode 100755 index 1171f7aa..00000000 Binary files a/static/icons/06002569.png and /dev/null differ diff --git a/static/icons/0600256A.png b/static/icons/0600256A.png deleted file mode 100755 index cb64511f..00000000 Binary files a/static/icons/0600256A.png and /dev/null differ diff --git a/static/icons/0600256B.png b/static/icons/0600256B.png deleted file mode 100755 index 48c3184b..00000000 Binary files a/static/icons/0600256B.png and /dev/null differ diff --git a/static/icons/0600256C.png b/static/icons/0600256C.png deleted file mode 100755 index bc03b391..00000000 Binary files a/static/icons/0600256C.png and /dev/null differ diff --git a/static/icons/0600256D.png b/static/icons/0600256D.png deleted file mode 100755 index ac73cd32..00000000 Binary files a/static/icons/0600256D.png and /dev/null differ diff --git a/static/icons/0600256E.png b/static/icons/0600256E.png deleted file mode 100755 index 48e40cec..00000000 Binary files a/static/icons/0600256E.png and /dev/null differ diff --git a/static/icons/0600256F.png b/static/icons/0600256F.png deleted file mode 100755 index 74b791f2..00000000 Binary files a/static/icons/0600256F.png and /dev/null differ diff --git a/static/icons/06002570.png b/static/icons/06002570.png deleted file mode 100755 index aaa6a1ad..00000000 Binary files a/static/icons/06002570.png and /dev/null differ diff --git a/static/icons/06002571.png b/static/icons/06002571.png deleted file mode 100755 index f35b3cb5..00000000 Binary files a/static/icons/06002571.png and /dev/null differ diff --git a/static/icons/06002572.png b/static/icons/06002572.png deleted file mode 100755 index b610f20c..00000000 Binary files a/static/icons/06002572.png and /dev/null differ diff --git a/static/icons/06002573.png b/static/icons/06002573.png deleted file mode 100755 index 1741761c..00000000 Binary files a/static/icons/06002573.png and /dev/null differ diff --git a/static/icons/06002574.png b/static/icons/06002574.png deleted file mode 100755 index ee91275f..00000000 Binary files a/static/icons/06002574.png and /dev/null differ diff --git a/static/icons/06002575.png b/static/icons/06002575.png deleted file mode 100755 index aacf6c1f..00000000 Binary files a/static/icons/06002575.png and /dev/null differ diff --git a/static/icons/06002577.png b/static/icons/06002577.png deleted file mode 100755 index ebe963db..00000000 Binary files a/static/icons/06002577.png and /dev/null differ diff --git a/static/icons/0600257A.png b/static/icons/0600257A.png deleted file mode 100755 index e9b7f8d0..00000000 Binary files a/static/icons/0600257A.png and /dev/null differ diff --git a/static/icons/0600257B.png b/static/icons/0600257B.png deleted file mode 100755 index 47b919ca..00000000 Binary files a/static/icons/0600257B.png and /dev/null differ diff --git a/static/icons/06002588.png b/static/icons/06002588.png deleted file mode 100755 index 4ba6b68c..00000000 Binary files a/static/icons/06002588.png and /dev/null differ diff --git a/static/icons/06002589.png b/static/icons/06002589.png deleted file mode 100755 index 9bfcd538..00000000 Binary files a/static/icons/06002589.png and /dev/null differ diff --git a/static/icons/0600258B.png b/static/icons/0600258B.png deleted file mode 100755 index e7531aa6..00000000 Binary files a/static/icons/0600258B.png and /dev/null differ diff --git a/static/icons/0600258E.png b/static/icons/0600258E.png deleted file mode 100755 index 80bd2244..00000000 Binary files a/static/icons/0600258E.png and /dev/null differ diff --git a/static/icons/0600258F.png b/static/icons/0600258F.png deleted file mode 100755 index d72973fd..00000000 Binary files a/static/icons/0600258F.png and /dev/null differ diff --git a/static/icons/06002592.png b/static/icons/06002592.png deleted file mode 100755 index d55205ed..00000000 Binary files a/static/icons/06002592.png and /dev/null differ diff --git a/static/icons/06002593.png b/static/icons/06002593.png deleted file mode 100755 index c1308b3b..00000000 Binary files a/static/icons/06002593.png and /dev/null differ diff --git a/static/icons/06002595.png b/static/icons/06002595.png deleted file mode 100755 index fecabc1c..00000000 Binary files a/static/icons/06002595.png and /dev/null differ diff --git a/static/icons/06002598.png b/static/icons/06002598.png deleted file mode 100755 index 9600058e..00000000 Binary files a/static/icons/06002598.png and /dev/null differ diff --git a/static/icons/06002599.png b/static/icons/06002599.png deleted file mode 100755 index 4bd993ca..00000000 Binary files a/static/icons/06002599.png and /dev/null differ diff --git a/static/icons/0600259C.png b/static/icons/0600259C.png deleted file mode 100755 index 9d72c246..00000000 Binary files a/static/icons/0600259C.png and /dev/null differ diff --git a/static/icons/0600259D.png b/static/icons/0600259D.png deleted file mode 100755 index f9af9d16..00000000 Binary files a/static/icons/0600259D.png and /dev/null differ diff --git a/static/icons/0600259F.png b/static/icons/0600259F.png deleted file mode 100755 index 39616dbe..00000000 Binary files a/static/icons/0600259F.png and /dev/null differ diff --git a/static/icons/060025A2.png b/static/icons/060025A2.png deleted file mode 100755 index febe23ff..00000000 Binary files a/static/icons/060025A2.png and /dev/null differ diff --git a/static/icons/060025A3.png b/static/icons/060025A3.png deleted file mode 100755 index 5cb8ecea..00000000 Binary files a/static/icons/060025A3.png and /dev/null differ diff --git a/static/icons/060025A6.png b/static/icons/060025A6.png deleted file mode 100755 index 5263c94b..00000000 Binary files a/static/icons/060025A6.png and /dev/null differ diff --git a/static/icons/060025A7.png b/static/icons/060025A7.png deleted file mode 100755 index 09ed20bb..00000000 Binary files a/static/icons/060025A7.png and /dev/null differ diff --git a/static/icons/060025A9.png b/static/icons/060025A9.png deleted file mode 100755 index db47ec02..00000000 Binary files a/static/icons/060025A9.png and /dev/null differ diff --git a/static/icons/060025AC.png b/static/icons/060025AC.png deleted file mode 100755 index a01fd3aa..00000000 Binary files a/static/icons/060025AC.png and /dev/null differ diff --git a/static/icons/060025AD.png b/static/icons/060025AD.png deleted file mode 100755 index 3b7a8569..00000000 Binary files a/static/icons/060025AD.png and /dev/null differ diff --git a/static/icons/060025B0.png b/static/icons/060025B0.png deleted file mode 100755 index 686db9aa..00000000 Binary files a/static/icons/060025B0.png and /dev/null differ diff --git a/static/icons/060025B1.png b/static/icons/060025B1.png deleted file mode 100755 index afcdac88..00000000 Binary files a/static/icons/060025B1.png and /dev/null differ diff --git a/static/icons/060025B3.png b/static/icons/060025B3.png deleted file mode 100755 index ee1765c9..00000000 Binary files a/static/icons/060025B3.png and /dev/null differ diff --git a/static/icons/060025B6.png b/static/icons/060025B6.png deleted file mode 100755 index 56efc1fd..00000000 Binary files a/static/icons/060025B6.png and /dev/null differ diff --git a/static/icons/060025B7.png b/static/icons/060025B7.png deleted file mode 100755 index 891f93b8..00000000 Binary files a/static/icons/060025B7.png and /dev/null differ diff --git a/static/icons/060025B9.png b/static/icons/060025B9.png deleted file mode 100755 index 9cd7e481..00000000 Binary files a/static/icons/060025B9.png and /dev/null differ diff --git a/static/icons/060025BA.png b/static/icons/060025BA.png deleted file mode 100755 index 9957f3bd..00000000 Binary files a/static/icons/060025BA.png and /dev/null differ diff --git a/static/icons/060025BB.png b/static/icons/060025BB.png deleted file mode 100755 index 74ca7052..00000000 Binary files a/static/icons/060025BB.png and /dev/null differ diff --git a/static/icons/060025BC.png b/static/icons/060025BC.png deleted file mode 100755 index ef922da5..00000000 Binary files a/static/icons/060025BC.png and /dev/null differ diff --git a/static/icons/060025BD.png b/static/icons/060025BD.png deleted file mode 100755 index 606543c7..00000000 Binary files a/static/icons/060025BD.png and /dev/null differ diff --git a/static/icons/060025BE.png b/static/icons/060025BE.png deleted file mode 100755 index 8b0119c2..00000000 Binary files a/static/icons/060025BE.png and /dev/null differ diff --git a/static/icons/060025BF.png b/static/icons/060025BF.png deleted file mode 100755 index 82cf11e6..00000000 Binary files a/static/icons/060025BF.png and /dev/null differ diff --git a/static/icons/060025C0.png b/static/icons/060025C0.png deleted file mode 100755 index 866c32c5..00000000 Binary files a/static/icons/060025C0.png and /dev/null differ diff --git a/static/icons/060025C1.png b/static/icons/060025C1.png deleted file mode 100755 index 301579ef..00000000 Binary files a/static/icons/060025C1.png and /dev/null differ diff --git a/static/icons/060025C2.png b/static/icons/060025C2.png deleted file mode 100755 index 4d248124..00000000 Binary files a/static/icons/060025C2.png and /dev/null differ diff --git a/static/icons/060025C3.png b/static/icons/060025C3.png deleted file mode 100755 index 5f86c4a0..00000000 Binary files a/static/icons/060025C3.png and /dev/null differ diff --git a/static/icons/060025C4.png b/static/icons/060025C4.png deleted file mode 100755 index 5059a69e..00000000 Binary files a/static/icons/060025C4.png and /dev/null differ diff --git a/static/icons/060025C5.png b/static/icons/060025C5.png deleted file mode 100755 index 5b8c251a..00000000 Binary files a/static/icons/060025C5.png and /dev/null differ diff --git a/static/icons/060025C6.png b/static/icons/060025C6.png deleted file mode 100755 index 7194770a..00000000 Binary files a/static/icons/060025C6.png and /dev/null differ diff --git a/static/icons/060025C7.png b/static/icons/060025C7.png deleted file mode 100755 index 20515965..00000000 Binary files a/static/icons/060025C7.png and /dev/null differ diff --git a/static/icons/060025C8.png b/static/icons/060025C8.png deleted file mode 100755 index 5bd76f66..00000000 Binary files a/static/icons/060025C8.png and /dev/null differ diff --git a/static/icons/060025C9.png b/static/icons/060025C9.png deleted file mode 100755 index dab55a98..00000000 Binary files a/static/icons/060025C9.png and /dev/null differ diff --git a/static/icons/060025CA.png b/static/icons/060025CA.png deleted file mode 100755 index af803370..00000000 Binary files a/static/icons/060025CA.png and /dev/null differ diff --git a/static/icons/060025CB.png b/static/icons/060025CB.png deleted file mode 100755 index bca5ec00..00000000 Binary files a/static/icons/060025CB.png and /dev/null differ diff --git a/static/icons/060025CC.png b/static/icons/060025CC.png deleted file mode 100755 index 43a91cfc..00000000 Binary files a/static/icons/060025CC.png and /dev/null differ diff --git a/static/icons/060025CD.png b/static/icons/060025CD.png deleted file mode 100755 index 803882d1..00000000 Binary files a/static/icons/060025CD.png and /dev/null differ diff --git a/static/icons/060025CE.png b/static/icons/060025CE.png deleted file mode 100755 index dd13d1eb..00000000 Binary files a/static/icons/060025CE.png and /dev/null differ diff --git a/static/icons/060025D0.png b/static/icons/060025D0.png deleted file mode 100755 index 7ba5e902..00000000 Binary files a/static/icons/060025D0.png and /dev/null differ diff --git a/static/icons/060025D1.png b/static/icons/060025D1.png deleted file mode 100755 index b2113445..00000000 Binary files a/static/icons/060025D1.png and /dev/null differ diff --git a/static/icons/060025D2.png b/static/icons/060025D2.png deleted file mode 100755 index f508673c..00000000 Binary files a/static/icons/060025D2.png and /dev/null differ diff --git a/static/icons/060025D3.png b/static/icons/060025D3.png deleted file mode 100755 index 0085f1e5..00000000 Binary files a/static/icons/060025D3.png and /dev/null differ diff --git a/static/icons/060025D4.png b/static/icons/060025D4.png deleted file mode 100755 index f69457ad..00000000 Binary files a/static/icons/060025D4.png and /dev/null differ diff --git a/static/icons/060025D5.png b/static/icons/060025D5.png deleted file mode 100755 index 76e2819c..00000000 Binary files a/static/icons/060025D5.png and /dev/null differ diff --git a/static/icons/060025D6.png b/static/icons/060025D6.png deleted file mode 100755 index bbe2220d..00000000 Binary files a/static/icons/060025D6.png and /dev/null differ diff --git a/static/icons/060025D7.png b/static/icons/060025D7.png deleted file mode 100755 index 075c470d..00000000 Binary files a/static/icons/060025D7.png and /dev/null differ diff --git a/static/icons/060025D8.png b/static/icons/060025D8.png deleted file mode 100755 index 11df5d17..00000000 Binary files a/static/icons/060025D8.png and /dev/null differ diff --git a/static/icons/060025D9.png b/static/icons/060025D9.png deleted file mode 100755 index f41dba5d..00000000 Binary files a/static/icons/060025D9.png and /dev/null differ diff --git a/static/icons/060025DA.png b/static/icons/060025DA.png deleted file mode 100755 index 848b4356..00000000 Binary files a/static/icons/060025DA.png and /dev/null differ diff --git a/static/icons/060025DB.png b/static/icons/060025DB.png deleted file mode 100755 index 02628e5e..00000000 Binary files a/static/icons/060025DB.png and /dev/null differ diff --git a/static/icons/060025DC.png b/static/icons/060025DC.png deleted file mode 100755 index 5e3996a6..00000000 Binary files a/static/icons/060025DC.png and /dev/null differ diff --git a/static/icons/060025DD.png b/static/icons/060025DD.png deleted file mode 100755 index 5afe6cf8..00000000 Binary files a/static/icons/060025DD.png and /dev/null differ diff --git a/static/icons/060025DE.png b/static/icons/060025DE.png deleted file mode 100755 index 8696593d..00000000 Binary files a/static/icons/060025DE.png and /dev/null differ diff --git a/static/icons/060025E0.png b/static/icons/060025E0.png deleted file mode 100755 index 9263c155..00000000 Binary files a/static/icons/060025E0.png and /dev/null differ diff --git a/static/icons/060025E3.png b/static/icons/060025E3.png deleted file mode 100755 index 95ca77f4..00000000 Binary files a/static/icons/060025E3.png and /dev/null differ diff --git a/static/icons/060025E4.png b/static/icons/060025E4.png deleted file mode 100755 index a91fbf33..00000000 Binary files a/static/icons/060025E4.png and /dev/null differ diff --git a/static/icons/060025E7.png b/static/icons/060025E7.png deleted file mode 100755 index eddf5d83..00000000 Binary files a/static/icons/060025E7.png and /dev/null differ diff --git a/static/icons/060025E8.png b/static/icons/060025E8.png deleted file mode 100755 index 8f125bba..00000000 Binary files a/static/icons/060025E8.png and /dev/null differ diff --git a/static/icons/060025EA.png b/static/icons/060025EA.png deleted file mode 100755 index b9e538c7..00000000 Binary files a/static/icons/060025EA.png and /dev/null differ diff --git a/static/icons/060025ED.png b/static/icons/060025ED.png deleted file mode 100755 index 94ba7eba..00000000 Binary files a/static/icons/060025ED.png and /dev/null differ diff --git a/static/icons/060025EE.png b/static/icons/060025EE.png deleted file mode 100755 index 2fd15c37..00000000 Binary files a/static/icons/060025EE.png and /dev/null differ diff --git a/static/icons/060025F1.png b/static/icons/060025F1.png deleted file mode 100755 index 96f6ea0b..00000000 Binary files a/static/icons/060025F1.png and /dev/null differ diff --git a/static/icons/060025F2.png b/static/icons/060025F2.png deleted file mode 100755 index 0801d557..00000000 Binary files a/static/icons/060025F2.png and /dev/null differ diff --git a/static/icons/060025F4.png b/static/icons/060025F4.png deleted file mode 100755 index d23a9399..00000000 Binary files a/static/icons/060025F4.png and /dev/null differ diff --git a/static/icons/060025F7.png b/static/icons/060025F7.png deleted file mode 100755 index b5e747f9..00000000 Binary files a/static/icons/060025F7.png and /dev/null differ diff --git a/static/icons/060025F8.png b/static/icons/060025F8.png deleted file mode 100755 index b0b38b50..00000000 Binary files a/static/icons/060025F8.png and /dev/null differ diff --git a/static/icons/060025FB.png b/static/icons/060025FB.png deleted file mode 100755 index deefbcf9..00000000 Binary files a/static/icons/060025FB.png and /dev/null differ diff --git a/static/icons/060025FC.png b/static/icons/060025FC.png deleted file mode 100755 index be493bf1..00000000 Binary files a/static/icons/060025FC.png and /dev/null differ diff --git a/static/icons/060025FE.png b/static/icons/060025FE.png deleted file mode 100755 index 4dc08a96..00000000 Binary files a/static/icons/060025FE.png and /dev/null differ diff --git a/static/icons/06002601.png b/static/icons/06002601.png deleted file mode 100755 index 9bb21c27..00000000 Binary files a/static/icons/06002601.png and /dev/null differ diff --git a/static/icons/06002602.png b/static/icons/06002602.png deleted file mode 100755 index ab98be76..00000000 Binary files a/static/icons/06002602.png and /dev/null differ diff --git a/static/icons/06002605.png b/static/icons/06002605.png deleted file mode 100755 index f3c6634d..00000000 Binary files a/static/icons/06002605.png and /dev/null differ diff --git a/static/icons/06002606.png b/static/icons/06002606.png deleted file mode 100755 index 2163b2e5..00000000 Binary files a/static/icons/06002606.png and /dev/null differ diff --git a/static/icons/06002608.png b/static/icons/06002608.png deleted file mode 100755 index ef8e8aa7..00000000 Binary files a/static/icons/06002608.png and /dev/null differ diff --git a/static/icons/0600260B.png b/static/icons/0600260B.png deleted file mode 100755 index fcd7d27e..00000000 Binary files a/static/icons/0600260B.png and /dev/null differ diff --git a/static/icons/0600260C.png b/static/icons/0600260C.png deleted file mode 100755 index ab250e41..00000000 Binary files a/static/icons/0600260C.png and /dev/null differ diff --git a/static/icons/0600260F.png b/static/icons/0600260F.png deleted file mode 100755 index d387255b..00000000 Binary files a/static/icons/0600260F.png and /dev/null differ diff --git a/static/icons/06002610.png b/static/icons/06002610.png deleted file mode 100755 index d979a373..00000000 Binary files a/static/icons/06002610.png and /dev/null differ diff --git a/static/icons/06002611.png b/static/icons/06002611.png deleted file mode 100755 index 65e901c2..00000000 Binary files a/static/icons/06002611.png and /dev/null differ diff --git a/static/icons/06002612.png b/static/icons/06002612.png deleted file mode 100755 index 519673f7..00000000 Binary files a/static/icons/06002612.png and /dev/null differ diff --git a/static/icons/06002613.png b/static/icons/06002613.png deleted file mode 100755 index 8fb66c53..00000000 Binary files a/static/icons/06002613.png and /dev/null differ diff --git a/static/icons/06002614.png b/static/icons/06002614.png deleted file mode 100755 index df8d01a9..00000000 Binary files a/static/icons/06002614.png and /dev/null differ diff --git a/static/icons/06002615.png b/static/icons/06002615.png deleted file mode 100755 index 69d67f97..00000000 Binary files a/static/icons/06002615.png and /dev/null differ diff --git a/static/icons/06002616.png b/static/icons/06002616.png deleted file mode 100755 index 73e0ca5c..00000000 Binary files a/static/icons/06002616.png and /dev/null differ diff --git a/static/icons/06002617.png b/static/icons/06002617.png deleted file mode 100755 index ffaec42b..00000000 Binary files a/static/icons/06002617.png and /dev/null differ diff --git a/static/icons/06002618.png b/static/icons/06002618.png deleted file mode 100755 index 2e970946..00000000 Binary files a/static/icons/06002618.png and /dev/null differ diff --git a/static/icons/06002619.png b/static/icons/06002619.png deleted file mode 100755 index 62ad9bf0..00000000 Binary files a/static/icons/06002619.png and /dev/null differ diff --git a/static/icons/0600261A.png b/static/icons/0600261A.png deleted file mode 100755 index 30b05335..00000000 Binary files a/static/icons/0600261A.png and /dev/null differ diff --git a/static/icons/0600261B.png b/static/icons/0600261B.png deleted file mode 100755 index c0ab4b55..00000000 Binary files a/static/icons/0600261B.png and /dev/null differ diff --git a/static/icons/0600261C.png b/static/icons/0600261C.png deleted file mode 100755 index d15dc799..00000000 Binary files a/static/icons/0600261C.png and /dev/null differ diff --git a/static/icons/0600261D.png b/static/icons/0600261D.png deleted file mode 100755 index 926b94f3..00000000 Binary files a/static/icons/0600261D.png and /dev/null differ diff --git a/static/icons/0600261E.png b/static/icons/0600261E.png deleted file mode 100755 index 99059ea3..00000000 Binary files a/static/icons/0600261E.png and /dev/null differ diff --git a/static/icons/0600261F.png b/static/icons/0600261F.png deleted file mode 100755 index f3332d64..00000000 Binary files a/static/icons/0600261F.png and /dev/null differ diff --git a/static/icons/06002620.png b/static/icons/06002620.png deleted file mode 100755 index 0746c341..00000000 Binary files a/static/icons/06002620.png and /dev/null differ diff --git a/static/icons/06002621.png b/static/icons/06002621.png deleted file mode 100755 index 3db607e0..00000000 Binary files a/static/icons/06002621.png and /dev/null differ diff --git a/static/icons/06002627.png b/static/icons/06002627.png deleted file mode 100755 index 12dfa42a..00000000 Binary files a/static/icons/06002627.png and /dev/null differ diff --git a/static/icons/06002629.png b/static/icons/06002629.png deleted file mode 100755 index ab43672d..00000000 Binary files a/static/icons/06002629.png and /dev/null differ diff --git a/static/icons/0600262A.png b/static/icons/0600262A.png deleted file mode 100755 index bfcd8402..00000000 Binary files a/static/icons/0600262A.png and /dev/null differ diff --git a/static/icons/0600262B.png b/static/icons/0600262B.png deleted file mode 100755 index 2d516b16..00000000 Binary files a/static/icons/0600262B.png and /dev/null differ diff --git a/static/icons/0600262C.png b/static/icons/0600262C.png deleted file mode 100755 index 22774f8c..00000000 Binary files a/static/icons/0600262C.png and /dev/null differ diff --git a/static/icons/0600262D.png b/static/icons/0600262D.png deleted file mode 100755 index 9d4485d9..00000000 Binary files a/static/icons/0600262D.png and /dev/null differ diff --git a/static/icons/0600262E.png b/static/icons/0600262E.png deleted file mode 100755 index 4cc27cb2..00000000 Binary files a/static/icons/0600262E.png and /dev/null differ diff --git a/static/icons/06002631.png b/static/icons/06002631.png deleted file mode 100755 index 408896fa..00000000 Binary files a/static/icons/06002631.png and /dev/null differ diff --git a/static/icons/06002632.png b/static/icons/06002632.png deleted file mode 100755 index 66f5576d..00000000 Binary files a/static/icons/06002632.png and /dev/null differ diff --git a/static/icons/06002633.png b/static/icons/06002633.png deleted file mode 100755 index 5fa90f2f..00000000 Binary files a/static/icons/06002633.png and /dev/null differ diff --git a/static/icons/06002634.png b/static/icons/06002634.png deleted file mode 100755 index 6198f72a..00000000 Binary files a/static/icons/06002634.png and /dev/null differ diff --git a/static/icons/06002635.png b/static/icons/06002635.png deleted file mode 100755 index 106b89ba..00000000 Binary files a/static/icons/06002635.png and /dev/null differ diff --git a/static/icons/06002636.png b/static/icons/06002636.png deleted file mode 100755 index da8ba27a..00000000 Binary files a/static/icons/06002636.png and /dev/null differ diff --git a/static/icons/06002637.png b/static/icons/06002637.png deleted file mode 100755 index 01bbd5eb..00000000 Binary files a/static/icons/06002637.png and /dev/null differ diff --git a/static/icons/06002638.png b/static/icons/06002638.png deleted file mode 100755 index 78c03e21..00000000 Binary files a/static/icons/06002638.png and /dev/null differ diff --git a/static/icons/06002639.png b/static/icons/06002639.png deleted file mode 100755 index e24b849a..00000000 Binary files a/static/icons/06002639.png and /dev/null differ diff --git a/static/icons/0600263A.png b/static/icons/0600263A.png deleted file mode 100755 index e69e4bd0..00000000 Binary files a/static/icons/0600263A.png and /dev/null differ diff --git a/static/icons/0600263B.png b/static/icons/0600263B.png deleted file mode 100755 index abcaa716..00000000 Binary files a/static/icons/0600263B.png and /dev/null differ diff --git a/static/icons/0600263C.png b/static/icons/0600263C.png deleted file mode 100755 index 603c7a27..00000000 Binary files a/static/icons/0600263C.png and /dev/null differ diff --git a/static/icons/0600263D.png b/static/icons/0600263D.png deleted file mode 100755 index c38d63fd..00000000 Binary files a/static/icons/0600263D.png and /dev/null differ diff --git a/static/icons/0600263E.png b/static/icons/0600263E.png deleted file mode 100755 index c2a8ac7e..00000000 Binary files a/static/icons/0600263E.png and /dev/null differ diff --git a/static/icons/0600263F.png b/static/icons/0600263F.png deleted file mode 100755 index a3a93f57..00000000 Binary files a/static/icons/0600263F.png and /dev/null differ diff --git a/static/icons/06002640.png b/static/icons/06002640.png deleted file mode 100755 index fc38a4e0..00000000 Binary files a/static/icons/06002640.png and /dev/null differ diff --git a/static/icons/06002641.png b/static/icons/06002641.png deleted file mode 100755 index a41546ea..00000000 Binary files a/static/icons/06002641.png and /dev/null differ diff --git a/static/icons/06002642.png b/static/icons/06002642.png deleted file mode 100755 index 87f8e2ee..00000000 Binary files a/static/icons/06002642.png and /dev/null differ diff --git a/static/icons/06002643.png b/static/icons/06002643.png deleted file mode 100755 index 6e8480d9..00000000 Binary files a/static/icons/06002643.png and /dev/null differ diff --git a/static/icons/06002644.png b/static/icons/06002644.png deleted file mode 100755 index 063f1898..00000000 Binary files a/static/icons/06002644.png and /dev/null differ diff --git a/static/icons/06002645.png b/static/icons/06002645.png deleted file mode 100755 index 0bb40a33..00000000 Binary files a/static/icons/06002645.png and /dev/null differ diff --git a/static/icons/06002646.png b/static/icons/06002646.png deleted file mode 100755 index af7cb729..00000000 Binary files a/static/icons/06002646.png and /dev/null differ diff --git a/static/icons/06002647.png b/static/icons/06002647.png deleted file mode 100755 index 5c994474..00000000 Binary files a/static/icons/06002647.png and /dev/null differ diff --git a/static/icons/06002648.png b/static/icons/06002648.png deleted file mode 100755 index 52e2fb77..00000000 Binary files a/static/icons/06002648.png and /dev/null differ diff --git a/static/icons/06002649.png b/static/icons/06002649.png deleted file mode 100755 index 7e854fc1..00000000 Binary files a/static/icons/06002649.png and /dev/null differ diff --git a/static/icons/0600264A.png b/static/icons/0600264A.png deleted file mode 100755 index d023c96c..00000000 Binary files a/static/icons/0600264A.png and /dev/null differ diff --git a/static/icons/0600264B.png b/static/icons/0600264B.png deleted file mode 100755 index 4dd21919..00000000 Binary files a/static/icons/0600264B.png and /dev/null differ diff --git a/static/icons/0600264C.png b/static/icons/0600264C.png deleted file mode 100755 index 5421f591..00000000 Binary files a/static/icons/0600264C.png and /dev/null differ diff --git a/static/icons/0600264D.png b/static/icons/0600264D.png deleted file mode 100755 index 2f765450..00000000 Binary files a/static/icons/0600264D.png and /dev/null differ diff --git a/static/icons/0600264E.png b/static/icons/0600264E.png deleted file mode 100755 index 0a3fba78..00000000 Binary files a/static/icons/0600264E.png and /dev/null differ diff --git a/static/icons/0600264F.png b/static/icons/0600264F.png deleted file mode 100755 index a9d60c20..00000000 Binary files a/static/icons/0600264F.png and /dev/null differ diff --git a/static/icons/06002650.png b/static/icons/06002650.png deleted file mode 100755 index 908c57b4..00000000 Binary files a/static/icons/06002650.png and /dev/null differ diff --git a/static/icons/06002651.png b/static/icons/06002651.png deleted file mode 100755 index c0e1a1ae..00000000 Binary files a/static/icons/06002651.png and /dev/null differ diff --git a/static/icons/06002652.png b/static/icons/06002652.png deleted file mode 100755 index 00b01de8..00000000 Binary files a/static/icons/06002652.png and /dev/null differ diff --git a/static/icons/06002653.png b/static/icons/06002653.png deleted file mode 100755 index 64478e38..00000000 Binary files a/static/icons/06002653.png and /dev/null differ diff --git a/static/icons/06002654.png b/static/icons/06002654.png deleted file mode 100755 index 968eb761..00000000 Binary files a/static/icons/06002654.png and /dev/null differ diff --git a/static/icons/06002655.png b/static/icons/06002655.png deleted file mode 100755 index 832bee2f..00000000 Binary files a/static/icons/06002655.png and /dev/null differ diff --git a/static/icons/06002656.png b/static/icons/06002656.png deleted file mode 100755 index 92da14bb..00000000 Binary files a/static/icons/06002656.png and /dev/null differ diff --git a/static/icons/06002657.png b/static/icons/06002657.png deleted file mode 100755 index 6b338142..00000000 Binary files a/static/icons/06002657.png and /dev/null differ diff --git a/static/icons/06002658.png b/static/icons/06002658.png deleted file mode 100755 index 2ccc25f4..00000000 Binary files a/static/icons/06002658.png and /dev/null differ diff --git a/static/icons/06002659.png b/static/icons/06002659.png deleted file mode 100755 index cf857561..00000000 Binary files a/static/icons/06002659.png and /dev/null differ diff --git a/static/icons/0600265A.png b/static/icons/0600265A.png deleted file mode 100755 index 7aa061ed..00000000 Binary files a/static/icons/0600265A.png and /dev/null differ diff --git a/static/icons/0600265B.png b/static/icons/0600265B.png deleted file mode 100755 index 94bf5b72..00000000 Binary files a/static/icons/0600265B.png and /dev/null differ diff --git a/static/icons/0600265C.png b/static/icons/0600265C.png deleted file mode 100755 index 33f374a7..00000000 Binary files a/static/icons/0600265C.png and /dev/null differ diff --git a/static/icons/0600265D.png b/static/icons/0600265D.png deleted file mode 100755 index 3f6105a6..00000000 Binary files a/static/icons/0600265D.png and /dev/null differ diff --git a/static/icons/0600265E.png b/static/icons/0600265E.png deleted file mode 100755 index c810f0a9..00000000 Binary files a/static/icons/0600265E.png and /dev/null differ diff --git a/static/icons/0600265F.png b/static/icons/0600265F.png deleted file mode 100755 index 6a3fddc3..00000000 Binary files a/static/icons/0600265F.png and /dev/null differ diff --git a/static/icons/06002660.png b/static/icons/06002660.png deleted file mode 100755 index 425f9b9e..00000000 Binary files a/static/icons/06002660.png and /dev/null differ diff --git a/static/icons/06002661.png b/static/icons/06002661.png deleted file mode 100755 index 8b038fe7..00000000 Binary files a/static/icons/06002661.png and /dev/null differ diff --git a/static/icons/06002662.png b/static/icons/06002662.png deleted file mode 100755 index f6c6404b..00000000 Binary files a/static/icons/06002662.png and /dev/null differ diff --git a/static/icons/06002663.png b/static/icons/06002663.png deleted file mode 100755 index d0259187..00000000 Binary files a/static/icons/06002663.png and /dev/null differ diff --git a/static/icons/06002664.png b/static/icons/06002664.png deleted file mode 100755 index 937e10d3..00000000 Binary files a/static/icons/06002664.png and /dev/null differ diff --git a/static/icons/06002665.png b/static/icons/06002665.png deleted file mode 100755 index ea58e264..00000000 Binary files a/static/icons/06002665.png and /dev/null differ diff --git a/static/icons/06002666.png b/static/icons/06002666.png deleted file mode 100755 index 7be6b9cd..00000000 Binary files a/static/icons/06002666.png and /dev/null differ diff --git a/static/icons/06002667.png b/static/icons/06002667.png deleted file mode 100755 index 6776be04..00000000 Binary files a/static/icons/06002667.png and /dev/null differ diff --git a/static/icons/06002668.png b/static/icons/06002668.png deleted file mode 100755 index 5d06d5e5..00000000 Binary files a/static/icons/06002668.png and /dev/null differ diff --git a/static/icons/06002669.png b/static/icons/06002669.png deleted file mode 100755 index bcff6661..00000000 Binary files a/static/icons/06002669.png and /dev/null differ diff --git a/static/icons/0600266A.png b/static/icons/0600266A.png deleted file mode 100755 index 19da81b1..00000000 Binary files a/static/icons/0600266A.png and /dev/null differ diff --git a/static/icons/0600266B.png b/static/icons/0600266B.png deleted file mode 100755 index 6fce5423..00000000 Binary files a/static/icons/0600266B.png and /dev/null differ diff --git a/static/icons/0600266C.png b/static/icons/0600266C.png deleted file mode 100755 index c6092bc4..00000000 Binary files a/static/icons/0600266C.png and /dev/null differ diff --git a/static/icons/0600266D.png b/static/icons/0600266D.png deleted file mode 100755 index d8e93f11..00000000 Binary files a/static/icons/0600266D.png and /dev/null differ diff --git a/static/icons/0600266E.png b/static/icons/0600266E.png deleted file mode 100755 index c0b10147..00000000 Binary files a/static/icons/0600266E.png and /dev/null differ diff --git a/static/icons/0600266F.png b/static/icons/0600266F.png deleted file mode 100755 index 88d3f786..00000000 Binary files a/static/icons/0600266F.png and /dev/null differ diff --git a/static/icons/06002670.png b/static/icons/06002670.png deleted file mode 100755 index 30271da5..00000000 Binary files a/static/icons/06002670.png and /dev/null differ diff --git a/static/icons/06002671.png b/static/icons/06002671.png deleted file mode 100755 index 578f3842..00000000 Binary files a/static/icons/06002671.png and /dev/null differ diff --git a/static/icons/06002672.png b/static/icons/06002672.png deleted file mode 100755 index 6968ee9b..00000000 Binary files a/static/icons/06002672.png and /dev/null differ diff --git a/static/icons/06002673.png b/static/icons/06002673.png deleted file mode 100755 index 68d789ab..00000000 Binary files a/static/icons/06002673.png and /dev/null differ diff --git a/static/icons/06002674.png b/static/icons/06002674.png deleted file mode 100755 index 361a69ae..00000000 Binary files a/static/icons/06002674.png and /dev/null differ diff --git a/static/icons/06002675.png b/static/icons/06002675.png deleted file mode 100755 index ecfa74af..00000000 Binary files a/static/icons/06002675.png and /dev/null differ diff --git a/static/icons/06002676.png b/static/icons/06002676.png deleted file mode 100755 index 6cd2d800..00000000 Binary files a/static/icons/06002676.png and /dev/null differ diff --git a/static/icons/06002677.png b/static/icons/06002677.png deleted file mode 100755 index 46bd4a69..00000000 Binary files a/static/icons/06002677.png and /dev/null differ diff --git a/static/icons/06002678.png b/static/icons/06002678.png deleted file mode 100755 index 1f9e5479..00000000 Binary files a/static/icons/06002678.png and /dev/null differ diff --git a/static/icons/06002679.png b/static/icons/06002679.png deleted file mode 100755 index acede469..00000000 Binary files a/static/icons/06002679.png and /dev/null differ diff --git a/static/icons/0600267A.png b/static/icons/0600267A.png deleted file mode 100755 index 4ed31c82..00000000 Binary files a/static/icons/0600267A.png and /dev/null differ diff --git a/static/icons/0600267B.png b/static/icons/0600267B.png deleted file mode 100755 index 4ee9b6fb..00000000 Binary files a/static/icons/0600267B.png and /dev/null differ diff --git a/static/icons/0600267C.png b/static/icons/0600267C.png deleted file mode 100755 index d28852ab..00000000 Binary files a/static/icons/0600267C.png and /dev/null differ diff --git a/static/icons/0600267D.png b/static/icons/0600267D.png deleted file mode 100755 index cc2ac477..00000000 Binary files a/static/icons/0600267D.png and /dev/null differ diff --git a/static/icons/0600267E.png b/static/icons/0600267E.png deleted file mode 100755 index 2ed880d4..00000000 Binary files a/static/icons/0600267E.png and /dev/null differ diff --git a/static/icons/0600267F.png b/static/icons/0600267F.png deleted file mode 100755 index 7c98d102..00000000 Binary files a/static/icons/0600267F.png and /dev/null differ diff --git a/static/icons/06002680.png b/static/icons/06002680.png deleted file mode 100755 index a355fcb9..00000000 Binary files a/static/icons/06002680.png and /dev/null differ diff --git a/static/icons/06002681.png b/static/icons/06002681.png deleted file mode 100755 index 5fcac9ea..00000000 Binary files a/static/icons/06002681.png and /dev/null differ diff --git a/static/icons/06002682.png b/static/icons/06002682.png deleted file mode 100755 index 94df5e01..00000000 Binary files a/static/icons/06002682.png and /dev/null differ diff --git a/static/icons/06002683.png b/static/icons/06002683.png deleted file mode 100755 index 0d70cbe2..00000000 Binary files a/static/icons/06002683.png and /dev/null differ diff --git a/static/icons/06002684.png b/static/icons/06002684.png deleted file mode 100755 index a171e29d..00000000 Binary files a/static/icons/06002684.png and /dev/null differ diff --git a/static/icons/06002685.png b/static/icons/06002685.png deleted file mode 100755 index 665542b6..00000000 Binary files a/static/icons/06002685.png and /dev/null differ diff --git a/static/icons/06002686.png b/static/icons/06002686.png deleted file mode 100755 index eef6b341..00000000 Binary files a/static/icons/06002686.png and /dev/null differ diff --git a/static/icons/06002687.png b/static/icons/06002687.png deleted file mode 100755 index ef1f8575..00000000 Binary files a/static/icons/06002687.png and /dev/null differ diff --git a/static/icons/06002688.png b/static/icons/06002688.png deleted file mode 100755 index 285619e2..00000000 Binary files a/static/icons/06002688.png and /dev/null differ diff --git a/static/icons/06002689.png b/static/icons/06002689.png deleted file mode 100755 index a8e7db81..00000000 Binary files a/static/icons/06002689.png and /dev/null differ diff --git a/static/icons/0600268A.png b/static/icons/0600268A.png deleted file mode 100755 index aabc857c..00000000 Binary files a/static/icons/0600268A.png and /dev/null differ diff --git a/static/icons/0600268B.png b/static/icons/0600268B.png deleted file mode 100755 index 509607b1..00000000 Binary files a/static/icons/0600268B.png and /dev/null differ diff --git a/static/icons/0600268C.png b/static/icons/0600268C.png deleted file mode 100755 index 0d7ceb80..00000000 Binary files a/static/icons/0600268C.png and /dev/null differ diff --git a/static/icons/0600268D.png b/static/icons/0600268D.png deleted file mode 100755 index 579b00c4..00000000 Binary files a/static/icons/0600268D.png and /dev/null differ diff --git a/static/icons/0600268E.png b/static/icons/0600268E.png deleted file mode 100755 index 4e12247e..00000000 Binary files a/static/icons/0600268E.png and /dev/null differ diff --git a/static/icons/0600268F.png b/static/icons/0600268F.png deleted file mode 100755 index 88f90fa2..00000000 Binary files a/static/icons/0600268F.png and /dev/null differ diff --git a/static/icons/06002690.png b/static/icons/06002690.png deleted file mode 100755 index 8d3a9235..00000000 Binary files a/static/icons/06002690.png and /dev/null differ diff --git a/static/icons/06002691.png b/static/icons/06002691.png deleted file mode 100755 index 83015db3..00000000 Binary files a/static/icons/06002691.png and /dev/null differ diff --git a/static/icons/06002692.png b/static/icons/06002692.png deleted file mode 100755 index 08843b8a..00000000 Binary files a/static/icons/06002692.png and /dev/null differ diff --git a/static/icons/06002693.png b/static/icons/06002693.png deleted file mode 100755 index 5addcbd3..00000000 Binary files a/static/icons/06002693.png and /dev/null differ diff --git a/static/icons/06002694.png b/static/icons/06002694.png deleted file mode 100755 index a538a167..00000000 Binary files a/static/icons/06002694.png and /dev/null differ diff --git a/static/icons/06002695.png b/static/icons/06002695.png deleted file mode 100755 index aa50d5ce..00000000 Binary files a/static/icons/06002695.png and /dev/null differ diff --git a/static/icons/06002696.png b/static/icons/06002696.png deleted file mode 100755 index 405b4c7e..00000000 Binary files a/static/icons/06002696.png and /dev/null differ diff --git a/static/icons/06002697.png b/static/icons/06002697.png deleted file mode 100755 index 4f6c55fd..00000000 Binary files a/static/icons/06002697.png and /dev/null differ diff --git a/static/icons/06002698.png b/static/icons/06002698.png deleted file mode 100755 index f6fc55e3..00000000 Binary files a/static/icons/06002698.png and /dev/null differ diff --git a/static/icons/06002699.png b/static/icons/06002699.png deleted file mode 100755 index f72af738..00000000 Binary files a/static/icons/06002699.png and /dev/null differ diff --git a/static/icons/0600269A.png b/static/icons/0600269A.png deleted file mode 100755 index 679f77ba..00000000 Binary files a/static/icons/0600269A.png and /dev/null differ diff --git a/static/icons/0600269B.png b/static/icons/0600269B.png deleted file mode 100755 index 0cd09e36..00000000 Binary files a/static/icons/0600269B.png and /dev/null differ diff --git a/static/icons/0600269C.png b/static/icons/0600269C.png deleted file mode 100755 index 18a6b466..00000000 Binary files a/static/icons/0600269C.png and /dev/null differ diff --git a/static/icons/0600269D.png b/static/icons/0600269D.png deleted file mode 100755 index a629f7db..00000000 Binary files a/static/icons/0600269D.png and /dev/null differ diff --git a/static/icons/0600269E.png b/static/icons/0600269E.png deleted file mode 100755 index 2fc258e1..00000000 Binary files a/static/icons/0600269E.png and /dev/null differ diff --git a/static/icons/0600269F.png b/static/icons/0600269F.png deleted file mode 100755 index 42aecd2b..00000000 Binary files a/static/icons/0600269F.png and /dev/null differ diff --git a/static/icons/060026A0.png b/static/icons/060026A0.png deleted file mode 100755 index 13ce9b81..00000000 Binary files a/static/icons/060026A0.png and /dev/null differ diff --git a/static/icons/060026A1.png b/static/icons/060026A1.png deleted file mode 100755 index 8ff37e1e..00000000 Binary files a/static/icons/060026A1.png and /dev/null differ diff --git a/static/icons/060026A2.png b/static/icons/060026A2.png deleted file mode 100755 index 4611d4ce..00000000 Binary files a/static/icons/060026A2.png and /dev/null differ diff --git a/static/icons/060026A3.png b/static/icons/060026A3.png deleted file mode 100755 index 5f57d265..00000000 Binary files a/static/icons/060026A3.png and /dev/null differ diff --git a/static/icons/060026A4.png b/static/icons/060026A4.png deleted file mode 100755 index b8a4910d..00000000 Binary files a/static/icons/060026A4.png and /dev/null differ diff --git a/static/icons/060026A5.png b/static/icons/060026A5.png deleted file mode 100755 index 9663f044..00000000 Binary files a/static/icons/060026A5.png and /dev/null differ diff --git a/static/icons/060026A6.png b/static/icons/060026A6.png deleted file mode 100755 index 23bb845a..00000000 Binary files a/static/icons/060026A6.png and /dev/null differ diff --git a/static/icons/060026A7.png b/static/icons/060026A7.png deleted file mode 100755 index a1e8ebac..00000000 Binary files a/static/icons/060026A7.png and /dev/null differ diff --git a/static/icons/060026A8.png b/static/icons/060026A8.png deleted file mode 100755 index cfac913d..00000000 Binary files a/static/icons/060026A8.png and /dev/null differ diff --git a/static/icons/060026A9.png b/static/icons/060026A9.png deleted file mode 100755 index 9a18689b..00000000 Binary files a/static/icons/060026A9.png and /dev/null differ diff --git a/static/icons/060026AA.png b/static/icons/060026AA.png deleted file mode 100755 index ce12ee9a..00000000 Binary files a/static/icons/060026AA.png and /dev/null differ diff --git a/static/icons/060026AB.png b/static/icons/060026AB.png deleted file mode 100755 index 1ef1f7dd..00000000 Binary files a/static/icons/060026AB.png and /dev/null differ diff --git a/static/icons/060026AC.png b/static/icons/060026AC.png deleted file mode 100755 index f0304406..00000000 Binary files a/static/icons/060026AC.png and /dev/null differ diff --git a/static/icons/060026AD.png b/static/icons/060026AD.png deleted file mode 100755 index fa10fa31..00000000 Binary files a/static/icons/060026AD.png and /dev/null differ diff --git a/static/icons/060026AE.png b/static/icons/060026AE.png deleted file mode 100755 index 93953f58..00000000 Binary files a/static/icons/060026AE.png and /dev/null differ diff --git a/static/icons/060026AF.png b/static/icons/060026AF.png deleted file mode 100755 index d86d98b9..00000000 Binary files a/static/icons/060026AF.png and /dev/null differ diff --git a/static/icons/060026B0.png b/static/icons/060026B0.png deleted file mode 100755 index 1759a34e..00000000 Binary files a/static/icons/060026B0.png and /dev/null differ diff --git a/static/icons/060026B1.png b/static/icons/060026B1.png deleted file mode 100755 index 441396e6..00000000 Binary files a/static/icons/060026B1.png and /dev/null differ diff --git a/static/icons/060026B2.png b/static/icons/060026B2.png deleted file mode 100755 index 1a4cd82a..00000000 Binary files a/static/icons/060026B2.png and /dev/null differ diff --git a/static/icons/060026B3.png b/static/icons/060026B3.png deleted file mode 100755 index 6701b8f5..00000000 Binary files a/static/icons/060026B3.png and /dev/null differ diff --git a/static/icons/060026B4.png b/static/icons/060026B4.png deleted file mode 100755 index 0a7a4134..00000000 Binary files a/static/icons/060026B4.png and /dev/null differ diff --git a/static/icons/060026B5.png b/static/icons/060026B5.png deleted file mode 100755 index 05deb795..00000000 Binary files a/static/icons/060026B5.png and /dev/null differ diff --git a/static/icons/060026B6.png b/static/icons/060026B6.png deleted file mode 100755 index 48521a74..00000000 Binary files a/static/icons/060026B6.png and /dev/null differ diff --git a/static/icons/060026B7.png b/static/icons/060026B7.png deleted file mode 100755 index 526fc121..00000000 Binary files a/static/icons/060026B7.png and /dev/null differ diff --git a/static/icons/060026B8.png b/static/icons/060026B8.png deleted file mode 100755 index 30e0c593..00000000 Binary files a/static/icons/060026B8.png and /dev/null differ diff --git a/static/icons/060026B9.png b/static/icons/060026B9.png deleted file mode 100755 index c1858165..00000000 Binary files a/static/icons/060026B9.png and /dev/null differ diff --git a/static/icons/060026BA.png b/static/icons/060026BA.png deleted file mode 100755 index c0369659..00000000 Binary files a/static/icons/060026BA.png and /dev/null differ diff --git a/static/icons/060026BB.png b/static/icons/060026BB.png deleted file mode 100755 index 7267deb0..00000000 Binary files a/static/icons/060026BB.png and /dev/null differ diff --git a/static/icons/060026BC.png b/static/icons/060026BC.png deleted file mode 100755 index 7f34f84b..00000000 Binary files a/static/icons/060026BC.png and /dev/null differ diff --git a/static/icons/060026BD.png b/static/icons/060026BD.png deleted file mode 100755 index 001ef573..00000000 Binary files a/static/icons/060026BD.png and /dev/null differ diff --git a/static/icons/060026BE.png b/static/icons/060026BE.png deleted file mode 100755 index 801e8b54..00000000 Binary files a/static/icons/060026BE.png and /dev/null differ diff --git a/static/icons/060026BF.png b/static/icons/060026BF.png deleted file mode 100755 index f06522a8..00000000 Binary files a/static/icons/060026BF.png and /dev/null differ diff --git a/static/icons/060026C0.png b/static/icons/060026C0.png deleted file mode 100755 index 409740b7..00000000 Binary files a/static/icons/060026C0.png and /dev/null differ diff --git a/static/icons/060026C1.png b/static/icons/060026C1.png deleted file mode 100755 index be824fb3..00000000 Binary files a/static/icons/060026C1.png and /dev/null differ diff --git a/static/icons/060026C2.png b/static/icons/060026C2.png deleted file mode 100755 index 4c456c8f..00000000 Binary files a/static/icons/060026C2.png and /dev/null differ diff --git a/static/icons/060026C3.png b/static/icons/060026C3.png deleted file mode 100755 index 07290477..00000000 Binary files a/static/icons/060026C3.png and /dev/null differ diff --git a/static/icons/060026C4.png b/static/icons/060026C4.png deleted file mode 100755 index 9df9b0bb..00000000 Binary files a/static/icons/060026C4.png and /dev/null differ diff --git a/static/icons/060026C5.png b/static/icons/060026C5.png deleted file mode 100755 index 4d730113..00000000 Binary files a/static/icons/060026C5.png and /dev/null differ diff --git a/static/icons/060026C6.png b/static/icons/060026C6.png deleted file mode 100755 index aedb370e..00000000 Binary files a/static/icons/060026C6.png and /dev/null differ diff --git a/static/icons/060026C7.png b/static/icons/060026C7.png deleted file mode 100755 index a433508e..00000000 Binary files a/static/icons/060026C7.png and /dev/null differ diff --git a/static/icons/060026C8.png b/static/icons/060026C8.png deleted file mode 100755 index 0930ea84..00000000 Binary files a/static/icons/060026C8.png and /dev/null differ diff --git a/static/icons/060026C9.png b/static/icons/060026C9.png deleted file mode 100755 index 772d8d00..00000000 Binary files a/static/icons/060026C9.png and /dev/null differ diff --git a/static/icons/060026CA.png b/static/icons/060026CA.png deleted file mode 100755 index 4dc6a92f..00000000 Binary files a/static/icons/060026CA.png and /dev/null differ diff --git a/static/icons/060026CB.png b/static/icons/060026CB.png deleted file mode 100755 index b5d04709..00000000 Binary files a/static/icons/060026CB.png and /dev/null differ diff --git a/static/icons/060026CC.png b/static/icons/060026CC.png deleted file mode 100755 index b27ed20b..00000000 Binary files a/static/icons/060026CC.png and /dev/null differ diff --git a/static/icons/060026CD.png b/static/icons/060026CD.png deleted file mode 100755 index 3fd24ecd..00000000 Binary files a/static/icons/060026CD.png and /dev/null differ diff --git a/static/icons/060026CE.png b/static/icons/060026CE.png deleted file mode 100755 index 8810720b..00000000 Binary files a/static/icons/060026CE.png and /dev/null differ diff --git a/static/icons/060026CF.png b/static/icons/060026CF.png deleted file mode 100755 index 775f7815..00000000 Binary files a/static/icons/060026CF.png and /dev/null differ diff --git a/static/icons/060026D0.png b/static/icons/060026D0.png deleted file mode 100755 index 5820ebd0..00000000 Binary files a/static/icons/060026D0.png and /dev/null differ diff --git a/static/icons/060026D1.png b/static/icons/060026D1.png deleted file mode 100755 index bbfdf809..00000000 Binary files a/static/icons/060026D1.png and /dev/null differ diff --git a/static/icons/060026D2.png b/static/icons/060026D2.png deleted file mode 100755 index dd3d844b..00000000 Binary files a/static/icons/060026D2.png and /dev/null differ diff --git a/static/icons/060026D3.png b/static/icons/060026D3.png deleted file mode 100755 index 636e9c14..00000000 Binary files a/static/icons/060026D3.png and /dev/null differ diff --git a/static/icons/060026D4.png b/static/icons/060026D4.png deleted file mode 100755 index 5743fa27..00000000 Binary files a/static/icons/060026D4.png and /dev/null differ diff --git a/static/icons/060026D5.png b/static/icons/060026D5.png deleted file mode 100755 index a95c67c3..00000000 Binary files a/static/icons/060026D5.png and /dev/null differ diff --git a/static/icons/060026D6.png b/static/icons/060026D6.png deleted file mode 100755 index 33dfcecf..00000000 Binary files a/static/icons/060026D6.png and /dev/null differ diff --git a/static/icons/060026D7.png b/static/icons/060026D7.png deleted file mode 100755 index ed6f02ba..00000000 Binary files a/static/icons/060026D7.png and /dev/null differ diff --git a/static/icons/060026D9.png b/static/icons/060026D9.png deleted file mode 100755 index ba1ca011..00000000 Binary files a/static/icons/060026D9.png and /dev/null differ diff --git a/static/icons/060026DB.png b/static/icons/060026DB.png deleted file mode 100755 index 8952b6c3..00000000 Binary files a/static/icons/060026DB.png and /dev/null differ diff --git a/static/icons/060026DC.png b/static/icons/060026DC.png deleted file mode 100755 index 843d4477..00000000 Binary files a/static/icons/060026DC.png and /dev/null differ diff --git a/static/icons/060026DD.png b/static/icons/060026DD.png deleted file mode 100755 index 7fb151f5..00000000 Binary files a/static/icons/060026DD.png and /dev/null differ diff --git a/static/icons/060026DE.png b/static/icons/060026DE.png deleted file mode 100755 index 37119133..00000000 Binary files a/static/icons/060026DE.png and /dev/null differ diff --git a/static/icons/060026DF.png b/static/icons/060026DF.png deleted file mode 100755 index c67ed7b2..00000000 Binary files a/static/icons/060026DF.png and /dev/null differ diff --git a/static/icons/060026E0.png b/static/icons/060026E0.png deleted file mode 100755 index 5febee29..00000000 Binary files a/static/icons/060026E0.png and /dev/null differ diff --git a/static/icons/060026E1.png b/static/icons/060026E1.png deleted file mode 100755 index 792ea9d6..00000000 Binary files a/static/icons/060026E1.png and /dev/null differ diff --git a/static/icons/060026E2.png b/static/icons/060026E2.png deleted file mode 100755 index 4d5bb8ae..00000000 Binary files a/static/icons/060026E2.png and /dev/null differ diff --git a/static/icons/060026E3.png b/static/icons/060026E3.png deleted file mode 100755 index bdf71573..00000000 Binary files a/static/icons/060026E3.png and /dev/null differ diff --git a/static/icons/060026E4.png b/static/icons/060026E4.png deleted file mode 100755 index fb1cb4b2..00000000 Binary files a/static/icons/060026E4.png and /dev/null differ diff --git a/static/icons/060026E5.png b/static/icons/060026E5.png deleted file mode 100755 index 4c1e8aea..00000000 Binary files a/static/icons/060026E5.png and /dev/null differ diff --git a/static/icons/060026E6.png b/static/icons/060026E6.png deleted file mode 100755 index 3d576449..00000000 Binary files a/static/icons/060026E6.png and /dev/null differ diff --git a/static/icons/060026E7.png b/static/icons/060026E7.png deleted file mode 100755 index dfa4bb02..00000000 Binary files a/static/icons/060026E7.png and /dev/null differ diff --git a/static/icons/060026E8.png b/static/icons/060026E8.png deleted file mode 100755 index c0bb865b..00000000 Binary files a/static/icons/060026E8.png and /dev/null differ diff --git a/static/icons/060026E9.png b/static/icons/060026E9.png deleted file mode 100755 index 50439165..00000000 Binary files a/static/icons/060026E9.png and /dev/null differ diff --git a/static/icons/060026EB.png b/static/icons/060026EB.png deleted file mode 100755 index 229e89e1..00000000 Binary files a/static/icons/060026EB.png and /dev/null differ diff --git a/static/icons/060026EC.png b/static/icons/060026EC.png deleted file mode 100755 index a301dbec..00000000 Binary files a/static/icons/060026EC.png and /dev/null differ diff --git a/static/icons/060026ED.png b/static/icons/060026ED.png deleted file mode 100755 index 92bbb419..00000000 Binary files a/static/icons/060026ED.png and /dev/null differ diff --git a/static/icons/060026EE.png b/static/icons/060026EE.png deleted file mode 100755 index 102dd659..00000000 Binary files a/static/icons/060026EE.png and /dev/null differ diff --git a/static/icons/060026EF.png b/static/icons/060026EF.png deleted file mode 100755 index 399aa1a6..00000000 Binary files a/static/icons/060026EF.png and /dev/null differ diff --git a/static/icons/060026F0.png b/static/icons/060026F0.png deleted file mode 100755 index f9528d04..00000000 Binary files a/static/icons/060026F0.png and /dev/null differ diff --git a/static/icons/060026F1.png b/static/icons/060026F1.png deleted file mode 100755 index 908301b0..00000000 Binary files a/static/icons/060026F1.png and /dev/null differ diff --git a/static/icons/060026F2.png b/static/icons/060026F2.png deleted file mode 100755 index aaaaa09d..00000000 Binary files a/static/icons/060026F2.png and /dev/null differ diff --git a/static/icons/060026F3.png b/static/icons/060026F3.png deleted file mode 100755 index aa53ef85..00000000 Binary files a/static/icons/060026F3.png and /dev/null differ diff --git a/static/icons/060026F4.png b/static/icons/060026F4.png deleted file mode 100755 index ef1512cd..00000000 Binary files a/static/icons/060026F4.png and /dev/null differ diff --git a/static/icons/060026F5.png b/static/icons/060026F5.png deleted file mode 100755 index 2077f5af..00000000 Binary files a/static/icons/060026F5.png and /dev/null differ diff --git a/static/icons/060026F6.png b/static/icons/060026F6.png deleted file mode 100755 index b4988285..00000000 Binary files a/static/icons/060026F6.png and /dev/null differ diff --git a/static/icons/060026F7.png b/static/icons/060026F7.png deleted file mode 100755 index 49b2c4ef..00000000 Binary files a/static/icons/060026F7.png and /dev/null differ diff --git a/static/icons/060026F8.png b/static/icons/060026F8.png deleted file mode 100755 index 4313c3ce..00000000 Binary files a/static/icons/060026F8.png and /dev/null differ diff --git a/static/icons/060026F9.png b/static/icons/060026F9.png deleted file mode 100755 index 62d7a9ac..00000000 Binary files a/static/icons/060026F9.png and /dev/null differ diff --git a/static/icons/060026FA.png b/static/icons/060026FA.png deleted file mode 100755 index e67329a5..00000000 Binary files a/static/icons/060026FA.png and /dev/null differ diff --git a/static/icons/060026FB.png b/static/icons/060026FB.png deleted file mode 100755 index 8e025b75..00000000 Binary files a/static/icons/060026FB.png and /dev/null differ diff --git a/static/icons/060026FC.png b/static/icons/060026FC.png deleted file mode 100755 index 5888b855..00000000 Binary files a/static/icons/060026FC.png and /dev/null differ diff --git a/static/icons/060026FD.png b/static/icons/060026FD.png deleted file mode 100755 index 49e21e11..00000000 Binary files a/static/icons/060026FD.png and /dev/null differ diff --git a/static/icons/060026FE.png b/static/icons/060026FE.png deleted file mode 100755 index 666f8083..00000000 Binary files a/static/icons/060026FE.png and /dev/null differ diff --git a/static/icons/060026FF.png b/static/icons/060026FF.png deleted file mode 100755 index 5817acfb..00000000 Binary files a/static/icons/060026FF.png and /dev/null differ diff --git a/static/icons/06002700.png b/static/icons/06002700.png deleted file mode 100755 index 59c7f51e..00000000 Binary files a/static/icons/06002700.png and /dev/null differ diff --git a/static/icons/06002701.png b/static/icons/06002701.png deleted file mode 100755 index 53b2b789..00000000 Binary files a/static/icons/06002701.png and /dev/null differ diff --git a/static/icons/06002702.png b/static/icons/06002702.png deleted file mode 100755 index 9bdc53d3..00000000 Binary files a/static/icons/06002702.png and /dev/null differ diff --git a/static/icons/06002703.png b/static/icons/06002703.png deleted file mode 100755 index bfc75a48..00000000 Binary files a/static/icons/06002703.png and /dev/null differ diff --git a/static/icons/06002704.png b/static/icons/06002704.png deleted file mode 100755 index 01513369..00000000 Binary files a/static/icons/06002704.png and /dev/null differ diff --git a/static/icons/06002705.png b/static/icons/06002705.png deleted file mode 100755 index 051b8310..00000000 Binary files a/static/icons/06002705.png and /dev/null differ diff --git a/static/icons/06002706.png b/static/icons/06002706.png deleted file mode 100755 index a2c0488c..00000000 Binary files a/static/icons/06002706.png and /dev/null differ diff --git a/static/icons/06002707.png b/static/icons/06002707.png deleted file mode 100755 index 1904cf11..00000000 Binary files a/static/icons/06002707.png and /dev/null differ diff --git a/static/icons/06002708.png b/static/icons/06002708.png deleted file mode 100755 index 27e7f6e6..00000000 Binary files a/static/icons/06002708.png and /dev/null differ diff --git a/static/icons/06002709.png b/static/icons/06002709.png deleted file mode 100755 index cc22f67d..00000000 Binary files a/static/icons/06002709.png and /dev/null differ diff --git a/static/icons/0600270A.png b/static/icons/0600270A.png deleted file mode 100755 index 3b8db5c3..00000000 Binary files a/static/icons/0600270A.png and /dev/null differ diff --git a/static/icons/0600270B.png b/static/icons/0600270B.png deleted file mode 100755 index 7d2ad004..00000000 Binary files a/static/icons/0600270B.png and /dev/null differ diff --git a/static/icons/0600270C.png b/static/icons/0600270C.png deleted file mode 100755 index bb1ea224..00000000 Binary files a/static/icons/0600270C.png and /dev/null differ diff --git a/static/icons/0600270D.png b/static/icons/0600270D.png deleted file mode 100755 index ec23a8b6..00000000 Binary files a/static/icons/0600270D.png and /dev/null differ diff --git a/static/icons/0600270E.png b/static/icons/0600270E.png deleted file mode 100755 index fb35b63b..00000000 Binary files a/static/icons/0600270E.png and /dev/null differ diff --git a/static/icons/0600270F.png b/static/icons/0600270F.png deleted file mode 100755 index 6ebf9c3e..00000000 Binary files a/static/icons/0600270F.png and /dev/null differ diff --git a/static/icons/06002710.png b/static/icons/06002710.png deleted file mode 100755 index 4feb84d4..00000000 Binary files a/static/icons/06002710.png and /dev/null differ diff --git a/static/icons/06002711.png b/static/icons/06002711.png deleted file mode 100755 index 343a54f1..00000000 Binary files a/static/icons/06002711.png and /dev/null differ diff --git a/static/icons/06002712.png b/static/icons/06002712.png deleted file mode 100755 index 533f30a2..00000000 Binary files a/static/icons/06002712.png and /dev/null differ diff --git a/static/icons/06002713.png b/static/icons/06002713.png deleted file mode 100755 index a494dcc8..00000000 Binary files a/static/icons/06002713.png and /dev/null differ diff --git a/static/icons/06002714.png b/static/icons/06002714.png deleted file mode 100755 index 8848537c..00000000 Binary files a/static/icons/06002714.png and /dev/null differ diff --git a/static/icons/06002715.png b/static/icons/06002715.png deleted file mode 100755 index 6be73e3b..00000000 Binary files a/static/icons/06002715.png and /dev/null differ diff --git a/static/icons/06002716.png b/static/icons/06002716.png deleted file mode 100755 index 4ee391fa..00000000 Binary files a/static/icons/06002716.png and /dev/null differ diff --git a/static/icons/06002717.png b/static/icons/06002717.png deleted file mode 100755 index a5119adc..00000000 Binary files a/static/icons/06002717.png and /dev/null differ diff --git a/static/icons/06002718.png b/static/icons/06002718.png deleted file mode 100755 index 8b4792a4..00000000 Binary files a/static/icons/06002718.png and /dev/null differ diff --git a/static/icons/06002719.png b/static/icons/06002719.png deleted file mode 100755 index 7e36a735..00000000 Binary files a/static/icons/06002719.png and /dev/null differ diff --git a/static/icons/0600271A.png b/static/icons/0600271A.png deleted file mode 100755 index 225c5d15..00000000 Binary files a/static/icons/0600271A.png and /dev/null differ diff --git a/static/icons/0600271B.png b/static/icons/0600271B.png deleted file mode 100755 index 2e0c5605..00000000 Binary files a/static/icons/0600271B.png and /dev/null differ diff --git a/static/icons/0600271C.png b/static/icons/0600271C.png deleted file mode 100755 index 726157ff..00000000 Binary files a/static/icons/0600271C.png and /dev/null differ diff --git a/static/icons/0600271D.png b/static/icons/0600271D.png deleted file mode 100755 index efa70a8c..00000000 Binary files a/static/icons/0600271D.png and /dev/null differ diff --git a/static/icons/0600271E.png b/static/icons/0600271E.png deleted file mode 100755 index 6280a1a1..00000000 Binary files a/static/icons/0600271E.png and /dev/null differ diff --git a/static/icons/0600271F.png b/static/icons/0600271F.png deleted file mode 100755 index 1e9b0eb1..00000000 Binary files a/static/icons/0600271F.png and /dev/null differ diff --git a/static/icons/06002720.png b/static/icons/06002720.png deleted file mode 100755 index 2fcf732c..00000000 Binary files a/static/icons/06002720.png and /dev/null differ diff --git a/static/icons/06002721.png b/static/icons/06002721.png deleted file mode 100755 index 6bd55793..00000000 Binary files a/static/icons/06002721.png and /dev/null differ diff --git a/static/icons/06002722.png b/static/icons/06002722.png deleted file mode 100755 index ad5dcbf3..00000000 Binary files a/static/icons/06002722.png and /dev/null differ diff --git a/static/icons/06002723.png b/static/icons/06002723.png deleted file mode 100755 index ecad4207..00000000 Binary files a/static/icons/06002723.png and /dev/null differ diff --git a/static/icons/06002724.png b/static/icons/06002724.png deleted file mode 100755 index 7720764d..00000000 Binary files a/static/icons/06002724.png and /dev/null differ diff --git a/static/icons/06002725.png b/static/icons/06002725.png deleted file mode 100755 index dd30fa43..00000000 Binary files a/static/icons/06002725.png and /dev/null differ diff --git a/static/icons/06002726.png b/static/icons/06002726.png deleted file mode 100755 index c3efa508..00000000 Binary files a/static/icons/06002726.png and /dev/null differ diff --git a/static/icons/06002727.png b/static/icons/06002727.png deleted file mode 100755 index feadf532..00000000 Binary files a/static/icons/06002727.png and /dev/null differ diff --git a/static/icons/06002728.png b/static/icons/06002728.png deleted file mode 100755 index b8cecd63..00000000 Binary files a/static/icons/06002728.png and /dev/null differ diff --git a/static/icons/06002729.png b/static/icons/06002729.png deleted file mode 100755 index 8901da93..00000000 Binary files a/static/icons/06002729.png and /dev/null differ diff --git a/static/icons/0600272A.png b/static/icons/0600272A.png deleted file mode 100755 index cfacc4f8..00000000 Binary files a/static/icons/0600272A.png and /dev/null differ diff --git a/static/icons/0600272B.png b/static/icons/0600272B.png deleted file mode 100755 index ca8ab9ff..00000000 Binary files a/static/icons/0600272B.png and /dev/null differ diff --git a/static/icons/0600272C.png b/static/icons/0600272C.png deleted file mode 100755 index 9ec75dec..00000000 Binary files a/static/icons/0600272C.png and /dev/null differ diff --git a/static/icons/0600272D.png b/static/icons/0600272D.png deleted file mode 100755 index a267bda6..00000000 Binary files a/static/icons/0600272D.png and /dev/null differ diff --git a/static/icons/0600272E.png b/static/icons/0600272E.png deleted file mode 100755 index 61218131..00000000 Binary files a/static/icons/0600272E.png and /dev/null differ diff --git a/static/icons/0600272F.png b/static/icons/0600272F.png deleted file mode 100755 index a88e7ae5..00000000 Binary files a/static/icons/0600272F.png and /dev/null differ diff --git a/static/icons/06002730.png b/static/icons/06002730.png deleted file mode 100755 index ca11395c..00000000 Binary files a/static/icons/06002730.png and /dev/null differ diff --git a/static/icons/06002731.png b/static/icons/06002731.png deleted file mode 100755 index 5adbd6a1..00000000 Binary files a/static/icons/06002731.png and /dev/null differ diff --git a/static/icons/06002732.png b/static/icons/06002732.png deleted file mode 100755 index 3b6bacd0..00000000 Binary files a/static/icons/06002732.png and /dev/null differ diff --git a/static/icons/06002733.png b/static/icons/06002733.png deleted file mode 100755 index 6262e37a..00000000 Binary files a/static/icons/06002733.png and /dev/null differ diff --git a/static/icons/06002734.png b/static/icons/06002734.png deleted file mode 100755 index 03555966..00000000 Binary files a/static/icons/06002734.png and /dev/null differ diff --git a/static/icons/06002735.png b/static/icons/06002735.png deleted file mode 100755 index cb8e8897..00000000 Binary files a/static/icons/06002735.png and /dev/null differ diff --git a/static/icons/06002736.png b/static/icons/06002736.png deleted file mode 100755 index d4ef20c3..00000000 Binary files a/static/icons/06002736.png and /dev/null differ diff --git a/static/icons/06002737.png b/static/icons/06002737.png deleted file mode 100755 index a9b6bf64..00000000 Binary files a/static/icons/06002737.png and /dev/null differ diff --git a/static/icons/06002738.png b/static/icons/06002738.png deleted file mode 100755 index c547a44e..00000000 Binary files a/static/icons/06002738.png and /dev/null differ diff --git a/static/icons/06002739.png b/static/icons/06002739.png deleted file mode 100755 index 9c462d28..00000000 Binary files a/static/icons/06002739.png and /dev/null differ diff --git a/static/icons/0600273A.png b/static/icons/0600273A.png deleted file mode 100755 index 150dfb3c..00000000 Binary files a/static/icons/0600273A.png and /dev/null differ diff --git a/static/icons/0600273B.png b/static/icons/0600273B.png deleted file mode 100755 index 1c72bf3e..00000000 Binary files a/static/icons/0600273B.png and /dev/null differ diff --git a/static/icons/0600273C.png b/static/icons/0600273C.png deleted file mode 100755 index 773a718c..00000000 Binary files a/static/icons/0600273C.png and /dev/null differ diff --git a/static/icons/0600273D.png b/static/icons/0600273D.png deleted file mode 100755 index 1513663d..00000000 Binary files a/static/icons/0600273D.png and /dev/null differ diff --git a/static/icons/0600273E.png b/static/icons/0600273E.png deleted file mode 100755 index 105cc5d6..00000000 Binary files a/static/icons/0600273E.png and /dev/null differ diff --git a/static/icons/0600273F.png b/static/icons/0600273F.png deleted file mode 100755 index 801bea68..00000000 Binary files a/static/icons/0600273F.png and /dev/null differ diff --git a/static/icons/06002740.png b/static/icons/06002740.png deleted file mode 100755 index 3a32df69..00000000 Binary files a/static/icons/06002740.png and /dev/null differ diff --git a/static/icons/06002741.png b/static/icons/06002741.png deleted file mode 100755 index 570b33da..00000000 Binary files a/static/icons/06002741.png and /dev/null differ diff --git a/static/icons/06002742.png b/static/icons/06002742.png deleted file mode 100755 index d5ecc256..00000000 Binary files a/static/icons/06002742.png and /dev/null differ diff --git a/static/icons/06002743.png b/static/icons/06002743.png deleted file mode 100755 index 1616449a..00000000 Binary files a/static/icons/06002743.png and /dev/null differ diff --git a/static/icons/06002744.png b/static/icons/06002744.png deleted file mode 100755 index 4574c69d..00000000 Binary files a/static/icons/06002744.png and /dev/null differ diff --git a/static/icons/06002745.png b/static/icons/06002745.png deleted file mode 100755 index 1bb74b95..00000000 Binary files a/static/icons/06002745.png and /dev/null differ diff --git a/static/icons/06002746.png b/static/icons/06002746.png deleted file mode 100755 index a2975f6d..00000000 Binary files a/static/icons/06002746.png and /dev/null differ diff --git a/static/icons/06002747.png b/static/icons/06002747.png deleted file mode 100755 index 46040dac..00000000 Binary files a/static/icons/06002747.png and /dev/null differ diff --git a/static/icons/06002748.png b/static/icons/06002748.png deleted file mode 100755 index ef7c3c9d..00000000 Binary files a/static/icons/06002748.png and /dev/null differ diff --git a/static/icons/06002749.png b/static/icons/06002749.png deleted file mode 100755 index 05c025e9..00000000 Binary files a/static/icons/06002749.png and /dev/null differ diff --git a/static/icons/0600274A.png b/static/icons/0600274A.png deleted file mode 100755 index b42ba6b8..00000000 Binary files a/static/icons/0600274A.png and /dev/null differ diff --git a/static/icons/0600274B.png b/static/icons/0600274B.png deleted file mode 100755 index 74516744..00000000 Binary files a/static/icons/0600274B.png and /dev/null differ diff --git a/static/icons/0600274C.png b/static/icons/0600274C.png deleted file mode 100755 index 4975285e..00000000 Binary files a/static/icons/0600274C.png and /dev/null differ diff --git a/static/icons/0600274D.png b/static/icons/0600274D.png deleted file mode 100755 index d2b8ed84..00000000 Binary files a/static/icons/0600274D.png and /dev/null differ diff --git a/static/icons/0600274E.png b/static/icons/0600274E.png deleted file mode 100755 index 25fd7b2a..00000000 Binary files a/static/icons/0600274E.png and /dev/null differ diff --git a/static/icons/0600274F.png b/static/icons/0600274F.png deleted file mode 100755 index cc65d15a..00000000 Binary files a/static/icons/0600274F.png and /dev/null differ diff --git a/static/icons/06002750.png b/static/icons/06002750.png deleted file mode 100755 index 925b9486..00000000 Binary files a/static/icons/06002750.png and /dev/null differ diff --git a/static/icons/06002751.png b/static/icons/06002751.png deleted file mode 100755 index f0d42954..00000000 Binary files a/static/icons/06002751.png and /dev/null differ diff --git a/static/icons/06002752.png b/static/icons/06002752.png deleted file mode 100755 index fe2d9a89..00000000 Binary files a/static/icons/06002752.png and /dev/null differ diff --git a/static/icons/06002753.png b/static/icons/06002753.png deleted file mode 100755 index 53349612..00000000 Binary files a/static/icons/06002753.png and /dev/null differ diff --git a/static/icons/0600275B.png b/static/icons/0600275B.png deleted file mode 100755 index fe42a7e4..00000000 Binary files a/static/icons/0600275B.png and /dev/null differ diff --git a/static/icons/0600275C.png b/static/icons/0600275C.png deleted file mode 100755 index fa83b420..00000000 Binary files a/static/icons/0600275C.png and /dev/null differ diff --git a/static/icons/0600275F.png b/static/icons/0600275F.png deleted file mode 100755 index 5433b875..00000000 Binary files a/static/icons/0600275F.png and /dev/null differ diff --git a/static/icons/06002760.png b/static/icons/06002760.png deleted file mode 100755 index 5b45e431..00000000 Binary files a/static/icons/06002760.png and /dev/null differ diff --git a/static/icons/06002761.png b/static/icons/06002761.png deleted file mode 100755 index 2d416f69..00000000 Binary files a/static/icons/06002761.png and /dev/null differ diff --git a/static/icons/06002762.png b/static/icons/06002762.png deleted file mode 100755 index fd102809..00000000 Binary files a/static/icons/06002762.png and /dev/null differ diff --git a/static/icons/06002763.png b/static/icons/06002763.png deleted file mode 100755 index f3eb3f2f..00000000 Binary files a/static/icons/06002763.png and /dev/null differ diff --git a/static/icons/06002764.png b/static/icons/06002764.png deleted file mode 100755 index 73a083ba..00000000 Binary files a/static/icons/06002764.png and /dev/null differ diff --git a/static/icons/06002765.png b/static/icons/06002765.png deleted file mode 100755 index 685d2307..00000000 Binary files a/static/icons/06002765.png and /dev/null differ diff --git a/static/icons/06002766.png b/static/icons/06002766.png deleted file mode 100755 index 5652a4f2..00000000 Binary files a/static/icons/06002766.png and /dev/null differ diff --git a/static/icons/06002767.png b/static/icons/06002767.png deleted file mode 100755 index 51c97f14..00000000 Binary files a/static/icons/06002767.png and /dev/null differ diff --git a/static/icons/06002768.png b/static/icons/06002768.png deleted file mode 100755 index 332531ea..00000000 Binary files a/static/icons/06002768.png and /dev/null differ diff --git a/static/icons/06002769.png b/static/icons/06002769.png deleted file mode 100755 index c4903a2f..00000000 Binary files a/static/icons/06002769.png and /dev/null differ diff --git a/static/icons/0600276A.png b/static/icons/0600276A.png deleted file mode 100755 index 87441da8..00000000 Binary files a/static/icons/0600276A.png and /dev/null differ diff --git a/static/icons/0600276B.png b/static/icons/0600276B.png deleted file mode 100755 index e2615f29..00000000 Binary files a/static/icons/0600276B.png and /dev/null differ diff --git a/static/icons/0600276C.png b/static/icons/0600276C.png deleted file mode 100755 index a394e675..00000000 Binary files a/static/icons/0600276C.png and /dev/null differ diff --git a/static/icons/0600276D.png b/static/icons/0600276D.png deleted file mode 100755 index 01406c17..00000000 Binary files a/static/icons/0600276D.png and /dev/null differ diff --git a/static/icons/0600276E.png b/static/icons/0600276E.png deleted file mode 100755 index f76b39db..00000000 Binary files a/static/icons/0600276E.png and /dev/null differ diff --git a/static/icons/0600276F.png b/static/icons/0600276F.png deleted file mode 100755 index cfd6dbe4..00000000 Binary files a/static/icons/0600276F.png and /dev/null differ diff --git a/static/icons/06002770.png b/static/icons/06002770.png deleted file mode 100755 index 4ea23843..00000000 Binary files a/static/icons/06002770.png and /dev/null differ diff --git a/static/icons/06002771.png b/static/icons/06002771.png deleted file mode 100755 index b17f0742..00000000 Binary files a/static/icons/06002771.png and /dev/null differ diff --git a/static/icons/06002772.png b/static/icons/06002772.png deleted file mode 100755 index 5e396fb0..00000000 Binary files a/static/icons/06002772.png and /dev/null differ diff --git a/static/icons/06002773.png b/static/icons/06002773.png deleted file mode 100755 index e0b7b7d1..00000000 Binary files a/static/icons/06002773.png and /dev/null differ diff --git a/static/icons/06002774.png b/static/icons/06002774.png deleted file mode 100755 index 49e7c59f..00000000 Binary files a/static/icons/06002774.png and /dev/null differ diff --git a/static/icons/06002775.png b/static/icons/06002775.png deleted file mode 100755 index f31be702..00000000 Binary files a/static/icons/06002775.png and /dev/null differ diff --git a/static/icons/06002776.png b/static/icons/06002776.png deleted file mode 100755 index d999e345..00000000 Binary files a/static/icons/06002776.png and /dev/null differ diff --git a/static/icons/06002777.png b/static/icons/06002777.png deleted file mode 100755 index ed88b0be..00000000 Binary files a/static/icons/06002777.png and /dev/null differ diff --git a/static/icons/06002778.png b/static/icons/06002778.png deleted file mode 100755 index 79548544..00000000 Binary files a/static/icons/06002778.png and /dev/null differ diff --git a/static/icons/06002779.png b/static/icons/06002779.png deleted file mode 100755 index 6fb17bee..00000000 Binary files a/static/icons/06002779.png and /dev/null differ diff --git a/static/icons/0600277A.png b/static/icons/0600277A.png deleted file mode 100755 index 66b1c14d..00000000 Binary files a/static/icons/0600277A.png and /dev/null differ diff --git a/static/icons/0600277B.png b/static/icons/0600277B.png deleted file mode 100755 index 83508829..00000000 Binary files a/static/icons/0600277B.png and /dev/null differ diff --git a/static/icons/0600277C.png b/static/icons/0600277C.png deleted file mode 100755 index 2b6cd385..00000000 Binary files a/static/icons/0600277C.png and /dev/null differ diff --git a/static/icons/0600277D.png b/static/icons/0600277D.png deleted file mode 100755 index e4bb0b93..00000000 Binary files a/static/icons/0600277D.png and /dev/null differ diff --git a/static/icons/0600277E.png b/static/icons/0600277E.png deleted file mode 100755 index e10a0a63..00000000 Binary files a/static/icons/0600277E.png and /dev/null differ diff --git a/static/icons/0600277F.png b/static/icons/0600277F.png deleted file mode 100755 index 68148ace..00000000 Binary files a/static/icons/0600277F.png and /dev/null differ diff --git a/static/icons/06002780.png b/static/icons/06002780.png deleted file mode 100755 index 30baf381..00000000 Binary files a/static/icons/06002780.png and /dev/null differ diff --git a/static/icons/06002781.png b/static/icons/06002781.png deleted file mode 100755 index 9440a700..00000000 Binary files a/static/icons/06002781.png and /dev/null differ diff --git a/static/icons/06002782.png b/static/icons/06002782.png deleted file mode 100755 index 39fa1692..00000000 Binary files a/static/icons/06002782.png and /dev/null differ diff --git a/static/icons/06002783.png b/static/icons/06002783.png deleted file mode 100755 index 9b79c28f..00000000 Binary files a/static/icons/06002783.png and /dev/null differ diff --git a/static/icons/06002784.png b/static/icons/06002784.png deleted file mode 100755 index 65dce41c..00000000 Binary files a/static/icons/06002784.png and /dev/null differ diff --git a/static/icons/06002785.png b/static/icons/06002785.png deleted file mode 100755 index 7daac466..00000000 Binary files a/static/icons/06002785.png and /dev/null differ diff --git a/static/icons/06002786.png b/static/icons/06002786.png deleted file mode 100755 index 621da48d..00000000 Binary files a/static/icons/06002786.png and /dev/null differ diff --git a/static/icons/06002787.png b/static/icons/06002787.png deleted file mode 100755 index 97aa7ede..00000000 Binary files a/static/icons/06002787.png and /dev/null differ diff --git a/static/icons/06002788.png b/static/icons/06002788.png deleted file mode 100755 index d2c6bde0..00000000 Binary files a/static/icons/06002788.png and /dev/null differ diff --git a/static/icons/06002789.png b/static/icons/06002789.png deleted file mode 100755 index f9f20c8f..00000000 Binary files a/static/icons/06002789.png and /dev/null differ diff --git a/static/icons/0600278A.png b/static/icons/0600278A.png deleted file mode 100755 index 3c330a1d..00000000 Binary files a/static/icons/0600278A.png and /dev/null differ diff --git a/static/icons/0600278B.png b/static/icons/0600278B.png deleted file mode 100755 index b37970b0..00000000 Binary files a/static/icons/0600278B.png and /dev/null differ diff --git a/static/icons/0600278C.png b/static/icons/0600278C.png deleted file mode 100755 index 8bbff91b..00000000 Binary files a/static/icons/0600278C.png and /dev/null differ diff --git a/static/icons/0600278D.png b/static/icons/0600278D.png deleted file mode 100755 index 18beeceb..00000000 Binary files a/static/icons/0600278D.png and /dev/null differ diff --git a/static/icons/0600278E.png b/static/icons/0600278E.png deleted file mode 100755 index aa10cabe..00000000 Binary files a/static/icons/0600278E.png and /dev/null differ diff --git a/static/icons/0600278F.png b/static/icons/0600278F.png deleted file mode 100755 index f429ac8e..00000000 Binary files a/static/icons/0600278F.png and /dev/null differ diff --git a/static/icons/06002790.png b/static/icons/06002790.png deleted file mode 100755 index 91c322f6..00000000 Binary files a/static/icons/06002790.png and /dev/null differ diff --git a/static/icons/06002791.png b/static/icons/06002791.png deleted file mode 100755 index b6d7e966..00000000 Binary files a/static/icons/06002791.png and /dev/null differ diff --git a/static/icons/06002792.png b/static/icons/06002792.png deleted file mode 100755 index b748b325..00000000 Binary files a/static/icons/06002792.png and /dev/null differ diff --git a/static/icons/06002793.png b/static/icons/06002793.png deleted file mode 100755 index 4d8edf1f..00000000 Binary files a/static/icons/06002793.png and /dev/null differ diff --git a/static/icons/06002794.png b/static/icons/06002794.png deleted file mode 100755 index a06b3f47..00000000 Binary files a/static/icons/06002794.png and /dev/null differ diff --git a/static/icons/06002795.png b/static/icons/06002795.png deleted file mode 100755 index 2f1c5517..00000000 Binary files a/static/icons/06002795.png and /dev/null differ diff --git a/static/icons/06002796.png b/static/icons/06002796.png deleted file mode 100755 index fae07061..00000000 Binary files a/static/icons/06002796.png and /dev/null differ diff --git a/static/icons/06002797.png b/static/icons/06002797.png deleted file mode 100755 index f9708411..00000000 Binary files a/static/icons/06002797.png and /dev/null differ diff --git a/static/icons/06002798.png b/static/icons/06002798.png deleted file mode 100755 index 80ab5f3d..00000000 Binary files a/static/icons/06002798.png and /dev/null differ diff --git a/static/icons/06002799.png b/static/icons/06002799.png deleted file mode 100755 index 4459457d..00000000 Binary files a/static/icons/06002799.png and /dev/null differ diff --git a/static/icons/0600279A.png b/static/icons/0600279A.png deleted file mode 100755 index 1e5e43c0..00000000 Binary files a/static/icons/0600279A.png and /dev/null differ diff --git a/static/icons/0600279B.png b/static/icons/0600279B.png deleted file mode 100755 index d4a9d1ba..00000000 Binary files a/static/icons/0600279B.png and /dev/null differ diff --git a/static/icons/0600279C.png b/static/icons/0600279C.png deleted file mode 100755 index f2bfb453..00000000 Binary files a/static/icons/0600279C.png and /dev/null differ diff --git a/static/icons/0600279D.png b/static/icons/0600279D.png deleted file mode 100755 index 4cd39bc0..00000000 Binary files a/static/icons/0600279D.png and /dev/null differ diff --git a/static/icons/0600279E.png b/static/icons/0600279E.png deleted file mode 100755 index 15665344..00000000 Binary files a/static/icons/0600279E.png and /dev/null differ diff --git a/static/icons/0600279F.png b/static/icons/0600279F.png deleted file mode 100755 index 25f77a11..00000000 Binary files a/static/icons/0600279F.png and /dev/null differ diff --git a/static/icons/060027A0.png b/static/icons/060027A0.png deleted file mode 100755 index e3a9d36c..00000000 Binary files a/static/icons/060027A0.png and /dev/null differ diff --git a/static/icons/060027A1.png b/static/icons/060027A1.png deleted file mode 100755 index b02e77a1..00000000 Binary files a/static/icons/060027A1.png and /dev/null differ diff --git a/static/icons/060027A2.png b/static/icons/060027A2.png deleted file mode 100755 index cd2b7f06..00000000 Binary files a/static/icons/060027A2.png and /dev/null differ diff --git a/static/icons/060027A3.png b/static/icons/060027A3.png deleted file mode 100755 index 21bd9594..00000000 Binary files a/static/icons/060027A3.png and /dev/null differ diff --git a/static/icons/060027A4.png b/static/icons/060027A4.png deleted file mode 100755 index 2dada30f..00000000 Binary files a/static/icons/060027A4.png and /dev/null differ diff --git a/static/icons/060027A5.png b/static/icons/060027A5.png deleted file mode 100755 index 81787bf3..00000000 Binary files a/static/icons/060027A5.png and /dev/null differ diff --git a/static/icons/060027A6.png b/static/icons/060027A6.png deleted file mode 100755 index 38f6b270..00000000 Binary files a/static/icons/060027A6.png and /dev/null differ diff --git a/static/icons/060027A7.png b/static/icons/060027A7.png deleted file mode 100755 index cf57ed4e..00000000 Binary files a/static/icons/060027A7.png and /dev/null differ diff --git a/static/icons/060027A8.png b/static/icons/060027A8.png deleted file mode 100755 index c85c8a72..00000000 Binary files a/static/icons/060027A8.png and /dev/null differ diff --git a/static/icons/060027A9.png b/static/icons/060027A9.png deleted file mode 100755 index 8f3cc4dc..00000000 Binary files a/static/icons/060027A9.png and /dev/null differ diff --git a/static/icons/060027AA.png b/static/icons/060027AA.png deleted file mode 100755 index ded9dac9..00000000 Binary files a/static/icons/060027AA.png and /dev/null differ diff --git a/static/icons/060027AB.png b/static/icons/060027AB.png deleted file mode 100755 index e57b57a5..00000000 Binary files a/static/icons/060027AB.png and /dev/null differ diff --git a/static/icons/060027AC.png b/static/icons/060027AC.png deleted file mode 100755 index 1a214066..00000000 Binary files a/static/icons/060027AC.png and /dev/null differ diff --git a/static/icons/060027AD.png b/static/icons/060027AD.png deleted file mode 100755 index 07bac8ae..00000000 Binary files a/static/icons/060027AD.png and /dev/null differ diff --git a/static/icons/060027AE.png b/static/icons/060027AE.png deleted file mode 100755 index 4ae27994..00000000 Binary files a/static/icons/060027AE.png and /dev/null differ diff --git a/static/icons/060027AF.png b/static/icons/060027AF.png deleted file mode 100755 index 1a835a58..00000000 Binary files a/static/icons/060027AF.png and /dev/null differ diff --git a/static/icons/060027B0.png b/static/icons/060027B0.png deleted file mode 100755 index b5d064fd..00000000 Binary files a/static/icons/060027B0.png and /dev/null differ diff --git a/static/icons/060027B1.png b/static/icons/060027B1.png deleted file mode 100755 index 36cdef46..00000000 Binary files a/static/icons/060027B1.png and /dev/null differ diff --git a/static/icons/060027B2.png b/static/icons/060027B2.png deleted file mode 100755 index 010540d8..00000000 Binary files a/static/icons/060027B2.png and /dev/null differ diff --git a/static/icons/060027B3.png b/static/icons/060027B3.png deleted file mode 100755 index b468ea6b..00000000 Binary files a/static/icons/060027B3.png and /dev/null differ diff --git a/static/icons/060027B4.png b/static/icons/060027B4.png deleted file mode 100755 index db588581..00000000 Binary files a/static/icons/060027B4.png and /dev/null differ diff --git a/static/icons/060027B5.png b/static/icons/060027B5.png deleted file mode 100755 index feeeeaf5..00000000 Binary files a/static/icons/060027B5.png and /dev/null differ diff --git a/static/icons/060027B6.png b/static/icons/060027B6.png deleted file mode 100755 index 2430184d..00000000 Binary files a/static/icons/060027B6.png and /dev/null differ diff --git a/static/icons/060027B7.png b/static/icons/060027B7.png deleted file mode 100755 index 05bca156..00000000 Binary files a/static/icons/060027B7.png and /dev/null differ diff --git a/static/icons/060027B8.png b/static/icons/060027B8.png deleted file mode 100755 index 5d415db9..00000000 Binary files a/static/icons/060027B8.png and /dev/null differ diff --git a/static/icons/060027B9.png b/static/icons/060027B9.png deleted file mode 100755 index 14d996b9..00000000 Binary files a/static/icons/060027B9.png and /dev/null differ diff --git a/static/icons/060027BA.png b/static/icons/060027BA.png deleted file mode 100755 index 2a3a0dc1..00000000 Binary files a/static/icons/060027BA.png and /dev/null differ diff --git a/static/icons/060027BB.png b/static/icons/060027BB.png deleted file mode 100755 index 9f4c76dd..00000000 Binary files a/static/icons/060027BB.png and /dev/null differ diff --git a/static/icons/060027BC.png b/static/icons/060027BC.png deleted file mode 100755 index a9bcb269..00000000 Binary files a/static/icons/060027BC.png and /dev/null differ diff --git a/static/icons/060027BD.png b/static/icons/060027BD.png deleted file mode 100755 index b566087a..00000000 Binary files a/static/icons/060027BD.png and /dev/null differ diff --git a/static/icons/060027BE.png b/static/icons/060027BE.png deleted file mode 100755 index 31bc496e..00000000 Binary files a/static/icons/060027BE.png and /dev/null differ diff --git a/static/icons/060027BF.png b/static/icons/060027BF.png deleted file mode 100755 index 17536bcc..00000000 Binary files a/static/icons/060027BF.png and /dev/null differ diff --git a/static/icons/060027C0.png b/static/icons/060027C0.png deleted file mode 100755 index deb2763e..00000000 Binary files a/static/icons/060027C0.png and /dev/null differ diff --git a/static/icons/060027C1.png b/static/icons/060027C1.png deleted file mode 100755 index d99f12f0..00000000 Binary files a/static/icons/060027C1.png and /dev/null differ diff --git a/static/icons/060027C2.png b/static/icons/060027C2.png deleted file mode 100755 index ea34dd48..00000000 Binary files a/static/icons/060027C2.png and /dev/null differ diff --git a/static/icons/060027C3.png b/static/icons/060027C3.png deleted file mode 100755 index 043259f7..00000000 Binary files a/static/icons/060027C3.png and /dev/null differ diff --git a/static/icons/060027C4.png b/static/icons/060027C4.png deleted file mode 100755 index 13e575bd..00000000 Binary files a/static/icons/060027C4.png and /dev/null differ diff --git a/static/icons/060027C5.png b/static/icons/060027C5.png deleted file mode 100755 index 926da41f..00000000 Binary files a/static/icons/060027C5.png and /dev/null differ diff --git a/static/icons/060027C6.png b/static/icons/060027C6.png deleted file mode 100755 index 3ddad74b..00000000 Binary files a/static/icons/060027C6.png and /dev/null differ diff --git a/static/icons/060027C7.png b/static/icons/060027C7.png deleted file mode 100755 index 20dbe546..00000000 Binary files a/static/icons/060027C7.png and /dev/null differ diff --git a/static/icons/060027C8.png b/static/icons/060027C8.png deleted file mode 100755 index 643f2252..00000000 Binary files a/static/icons/060027C8.png and /dev/null differ diff --git a/static/icons/060027C9.png b/static/icons/060027C9.png deleted file mode 100755 index c5ca47ca..00000000 Binary files a/static/icons/060027C9.png and /dev/null differ diff --git a/static/icons/060027CA.png b/static/icons/060027CA.png deleted file mode 100755 index 1fea0aba..00000000 Binary files a/static/icons/060027CA.png and /dev/null differ diff --git a/static/icons/060027CB.png b/static/icons/060027CB.png deleted file mode 100755 index 35a57341..00000000 Binary files a/static/icons/060027CB.png and /dev/null differ diff --git a/static/icons/060027CC.png b/static/icons/060027CC.png deleted file mode 100755 index 67e3c2e8..00000000 Binary files a/static/icons/060027CC.png and /dev/null differ diff --git a/static/icons/060027CD.png b/static/icons/060027CD.png deleted file mode 100755 index c640b327..00000000 Binary files a/static/icons/060027CD.png and /dev/null differ diff --git a/static/icons/060027CE.png b/static/icons/060027CE.png deleted file mode 100755 index 57bd5b6a..00000000 Binary files a/static/icons/060027CE.png and /dev/null differ diff --git a/static/icons/060027CF.png b/static/icons/060027CF.png deleted file mode 100755 index 5e296f2a..00000000 Binary files a/static/icons/060027CF.png and /dev/null differ diff --git a/static/icons/060027D0.png b/static/icons/060027D0.png deleted file mode 100755 index 6f1e0e46..00000000 Binary files a/static/icons/060027D0.png and /dev/null differ diff --git a/static/icons/060027D1.png b/static/icons/060027D1.png deleted file mode 100755 index 31f55082..00000000 Binary files a/static/icons/060027D1.png and /dev/null differ diff --git a/static/icons/060027D2.png b/static/icons/060027D2.png deleted file mode 100755 index 914dd0de..00000000 Binary files a/static/icons/060027D2.png and /dev/null differ diff --git a/static/icons/060027D3.png b/static/icons/060027D3.png deleted file mode 100755 index e3c85d46..00000000 Binary files a/static/icons/060027D3.png and /dev/null differ diff --git a/static/icons/060027D4.png b/static/icons/060027D4.png deleted file mode 100755 index 253382ea..00000000 Binary files a/static/icons/060027D4.png and /dev/null differ diff --git a/static/icons/060027D5.png b/static/icons/060027D5.png deleted file mode 100755 index 390a1ea0..00000000 Binary files a/static/icons/060027D5.png and /dev/null differ diff --git a/static/icons/060027D6.png b/static/icons/060027D6.png deleted file mode 100755 index 4f7f6101..00000000 Binary files a/static/icons/060027D6.png and /dev/null differ diff --git a/static/icons/060027D7.png b/static/icons/060027D7.png deleted file mode 100755 index 3c6391d3..00000000 Binary files a/static/icons/060027D7.png and /dev/null differ diff --git a/static/icons/060027D8.png b/static/icons/060027D8.png deleted file mode 100755 index 84c59552..00000000 Binary files a/static/icons/060027D8.png and /dev/null differ diff --git a/static/icons/060027D9.png b/static/icons/060027D9.png deleted file mode 100755 index 6124f327..00000000 Binary files a/static/icons/060027D9.png and /dev/null differ diff --git a/static/icons/060027DA.png b/static/icons/060027DA.png deleted file mode 100755 index a7412e5e..00000000 Binary files a/static/icons/060027DA.png and /dev/null differ diff --git a/static/icons/060027DB.png b/static/icons/060027DB.png deleted file mode 100755 index b2054914..00000000 Binary files a/static/icons/060027DB.png and /dev/null differ diff --git a/static/icons/060027DC.png b/static/icons/060027DC.png deleted file mode 100755 index e5d493de..00000000 Binary files a/static/icons/060027DC.png and /dev/null differ diff --git a/static/icons/060027DD.png b/static/icons/060027DD.png deleted file mode 100755 index 7ef4e149..00000000 Binary files a/static/icons/060027DD.png and /dev/null differ diff --git a/static/icons/060027DE.png b/static/icons/060027DE.png deleted file mode 100755 index c7e39072..00000000 Binary files a/static/icons/060027DE.png and /dev/null differ diff --git a/static/icons/060027DF.png b/static/icons/060027DF.png deleted file mode 100755 index 33a555a3..00000000 Binary files a/static/icons/060027DF.png and /dev/null differ diff --git a/static/icons/060027E0.png b/static/icons/060027E0.png deleted file mode 100755 index d410f636..00000000 Binary files a/static/icons/060027E0.png and /dev/null differ diff --git a/static/icons/060027E1.png b/static/icons/060027E1.png deleted file mode 100755 index f5e822ef..00000000 Binary files a/static/icons/060027E1.png and /dev/null differ diff --git a/static/icons/060027E2.png b/static/icons/060027E2.png deleted file mode 100755 index 6ebfd5ca..00000000 Binary files a/static/icons/060027E2.png and /dev/null differ diff --git a/static/icons/060027E3.png b/static/icons/060027E3.png deleted file mode 100755 index d2c9e442..00000000 Binary files a/static/icons/060027E3.png and /dev/null differ diff --git a/static/icons/060027E5.png b/static/icons/060027E5.png deleted file mode 100755 index ae87c8dd..00000000 Binary files a/static/icons/060027E5.png and /dev/null differ diff --git a/static/icons/060027E6.png b/static/icons/060027E6.png deleted file mode 100755 index b4d4b472..00000000 Binary files a/static/icons/060027E6.png and /dev/null differ diff --git a/static/icons/06002815.png b/static/icons/06002815.png deleted file mode 100755 index b4264a65..00000000 Binary files a/static/icons/06002815.png and /dev/null differ diff --git a/static/icons/06002816.png b/static/icons/06002816.png deleted file mode 100755 index 9138d107..00000000 Binary files a/static/icons/06002816.png and /dev/null differ diff --git a/static/icons/06002817.png b/static/icons/06002817.png deleted file mode 100755 index b3dda8c1..00000000 Binary files a/static/icons/06002817.png and /dev/null differ diff --git a/static/icons/06002818.png b/static/icons/06002818.png deleted file mode 100755 index fc41662e..00000000 Binary files a/static/icons/06002818.png and /dev/null differ diff --git a/static/icons/06002819.png b/static/icons/06002819.png deleted file mode 100755 index 2b898990..00000000 Binary files a/static/icons/06002819.png and /dev/null differ diff --git a/static/icons/0600281A.png b/static/icons/0600281A.png deleted file mode 100755 index 73401fd8..00000000 Binary files a/static/icons/0600281A.png and /dev/null differ diff --git a/static/icons/0600281B.png b/static/icons/0600281B.png deleted file mode 100755 index 36d387eb..00000000 Binary files a/static/icons/0600281B.png and /dev/null differ diff --git a/static/icons/0600281C.png b/static/icons/0600281C.png deleted file mode 100755 index cd2e044f..00000000 Binary files a/static/icons/0600281C.png and /dev/null differ diff --git a/static/icons/0600281D.png b/static/icons/0600281D.png deleted file mode 100755 index 21f53d1e..00000000 Binary files a/static/icons/0600281D.png and /dev/null differ diff --git a/static/icons/0600281E.png b/static/icons/0600281E.png deleted file mode 100755 index d45320ab..00000000 Binary files a/static/icons/0600281E.png and /dev/null differ diff --git a/static/icons/0600281F.png b/static/icons/0600281F.png deleted file mode 100755 index 937c1acc..00000000 Binary files a/static/icons/0600281F.png and /dev/null differ diff --git a/static/icons/06002820.png b/static/icons/06002820.png deleted file mode 100755 index 75146402..00000000 Binary files a/static/icons/06002820.png and /dev/null differ diff --git a/static/icons/06002821.png b/static/icons/06002821.png deleted file mode 100755 index 3c922c27..00000000 Binary files a/static/icons/06002821.png and /dev/null differ diff --git a/static/icons/06002822.png b/static/icons/06002822.png deleted file mode 100755 index b952e968..00000000 Binary files a/static/icons/06002822.png and /dev/null differ diff --git a/static/icons/06002823.png b/static/icons/06002823.png deleted file mode 100755 index d63818e8..00000000 Binary files a/static/icons/06002823.png and /dev/null differ diff --git a/static/icons/06002824.png b/static/icons/06002824.png deleted file mode 100755 index 0c97b738..00000000 Binary files a/static/icons/06002824.png and /dev/null differ diff --git a/static/icons/06002825.png b/static/icons/06002825.png deleted file mode 100755 index bef4379f..00000000 Binary files a/static/icons/06002825.png and /dev/null differ diff --git a/static/icons/06002826.png b/static/icons/06002826.png deleted file mode 100755 index 3268511d..00000000 Binary files a/static/icons/06002826.png and /dev/null differ diff --git a/static/icons/06002827.png b/static/icons/06002827.png deleted file mode 100755 index ac571f63..00000000 Binary files a/static/icons/06002827.png and /dev/null differ diff --git a/static/icons/06002828.png b/static/icons/06002828.png deleted file mode 100755 index ae5fb037..00000000 Binary files a/static/icons/06002828.png and /dev/null differ diff --git a/static/icons/0600282A.png b/static/icons/0600282A.png deleted file mode 100755 index 513f7c83..00000000 Binary files a/static/icons/0600282A.png and /dev/null differ diff --git a/static/icons/0600282B.png b/static/icons/0600282B.png deleted file mode 100755 index 5f7c42d9..00000000 Binary files a/static/icons/0600282B.png and /dev/null differ diff --git a/static/icons/0600282C.png b/static/icons/0600282C.png deleted file mode 100755 index 98c20555..00000000 Binary files a/static/icons/0600282C.png and /dev/null differ diff --git a/static/icons/0600282D.png b/static/icons/0600282D.png deleted file mode 100755 index aa8e288f..00000000 Binary files a/static/icons/0600282D.png and /dev/null differ diff --git a/static/icons/0600282E.png b/static/icons/0600282E.png deleted file mode 100755 index 1c15f45b..00000000 Binary files a/static/icons/0600282E.png and /dev/null differ diff --git a/static/icons/0600282F.png b/static/icons/0600282F.png deleted file mode 100755 index e84e4a24..00000000 Binary files a/static/icons/0600282F.png and /dev/null differ diff --git a/static/icons/06002830.png b/static/icons/06002830.png deleted file mode 100755 index 7689a796..00000000 Binary files a/static/icons/06002830.png and /dev/null differ diff --git a/static/icons/06002831.png b/static/icons/06002831.png deleted file mode 100755 index d6e270d4..00000000 Binary files a/static/icons/06002831.png and /dev/null differ diff --git a/static/icons/06002832.png b/static/icons/06002832.png deleted file mode 100755 index b431e4d7..00000000 Binary files a/static/icons/06002832.png and /dev/null differ diff --git a/static/icons/06002833.png b/static/icons/06002833.png deleted file mode 100755 index d3fb53d5..00000000 Binary files a/static/icons/06002833.png and /dev/null differ diff --git a/static/icons/06002834.png b/static/icons/06002834.png deleted file mode 100755 index 50dfc4e9..00000000 Binary files a/static/icons/06002834.png and /dev/null differ diff --git a/static/icons/06002835.png b/static/icons/06002835.png deleted file mode 100755 index c9243b1b..00000000 Binary files a/static/icons/06002835.png and /dev/null differ diff --git a/static/icons/06002836.png b/static/icons/06002836.png deleted file mode 100755 index ce1aa8ad..00000000 Binary files a/static/icons/06002836.png and /dev/null differ diff --git a/static/icons/06002837.png b/static/icons/06002837.png deleted file mode 100755 index 2061c658..00000000 Binary files a/static/icons/06002837.png and /dev/null differ diff --git a/static/icons/06002838.png b/static/icons/06002838.png deleted file mode 100755 index 856df844..00000000 Binary files a/static/icons/06002838.png and /dev/null differ diff --git a/static/icons/06002839.png b/static/icons/06002839.png deleted file mode 100755 index ab842a01..00000000 Binary files a/static/icons/06002839.png and /dev/null differ diff --git a/static/icons/0600283A.png b/static/icons/0600283A.png deleted file mode 100755 index 9d2f8b32..00000000 Binary files a/static/icons/0600283A.png and /dev/null differ diff --git a/static/icons/0600283B.png b/static/icons/0600283B.png deleted file mode 100755 index 22e95623..00000000 Binary files a/static/icons/0600283B.png and /dev/null differ diff --git a/static/icons/0600283C.png b/static/icons/0600283C.png deleted file mode 100755 index 9a562c6c..00000000 Binary files a/static/icons/0600283C.png and /dev/null differ diff --git a/static/icons/0600283D.png b/static/icons/0600283D.png deleted file mode 100755 index fad5488f..00000000 Binary files a/static/icons/0600283D.png and /dev/null differ diff --git a/static/icons/0600283E.png b/static/icons/0600283E.png deleted file mode 100755 index 3461fd72..00000000 Binary files a/static/icons/0600283E.png and /dev/null differ diff --git a/static/icons/0600283F.png b/static/icons/0600283F.png deleted file mode 100755 index bbb04c4f..00000000 Binary files a/static/icons/0600283F.png and /dev/null differ diff --git a/static/icons/06002840.png b/static/icons/06002840.png deleted file mode 100755 index fdcf34fb..00000000 Binary files a/static/icons/06002840.png and /dev/null differ diff --git a/static/icons/06002841.png b/static/icons/06002841.png deleted file mode 100755 index 95ff67ac..00000000 Binary files a/static/icons/06002841.png and /dev/null differ diff --git a/static/icons/06002842.png b/static/icons/06002842.png deleted file mode 100755 index b803d89e..00000000 Binary files a/static/icons/06002842.png and /dev/null differ diff --git a/static/icons/06002843.png b/static/icons/06002843.png deleted file mode 100755 index d6ce676e..00000000 Binary files a/static/icons/06002843.png and /dev/null differ diff --git a/static/icons/06002844.png b/static/icons/06002844.png deleted file mode 100755 index eb542e73..00000000 Binary files a/static/icons/06002844.png and /dev/null differ diff --git a/static/icons/06002845.png b/static/icons/06002845.png deleted file mode 100755 index 9f19d35a..00000000 Binary files a/static/icons/06002845.png and /dev/null differ diff --git a/static/icons/06002846.png b/static/icons/06002846.png deleted file mode 100755 index fdf611e0..00000000 Binary files a/static/icons/06002846.png and /dev/null differ diff --git a/static/icons/06002847.png b/static/icons/06002847.png deleted file mode 100755 index 4880048c..00000000 Binary files a/static/icons/06002847.png and /dev/null differ diff --git a/static/icons/06002848.png b/static/icons/06002848.png deleted file mode 100755 index 510d8fcf..00000000 Binary files a/static/icons/06002848.png and /dev/null differ diff --git a/static/icons/06002849.png b/static/icons/06002849.png deleted file mode 100755 index f90f5d01..00000000 Binary files a/static/icons/06002849.png and /dev/null differ diff --git a/static/icons/0600284A.png b/static/icons/0600284A.png deleted file mode 100755 index 823e4635..00000000 Binary files a/static/icons/0600284A.png and /dev/null differ diff --git a/static/icons/0600284B.png b/static/icons/0600284B.png deleted file mode 100755 index e6ddcc98..00000000 Binary files a/static/icons/0600284B.png and /dev/null differ diff --git a/static/icons/0600284C.png b/static/icons/0600284C.png deleted file mode 100755 index a5f05f88..00000000 Binary files a/static/icons/0600284C.png and /dev/null differ diff --git a/static/icons/0600284D.png b/static/icons/0600284D.png deleted file mode 100755 index 4d7d8bc1..00000000 Binary files a/static/icons/0600284D.png and /dev/null differ diff --git a/static/icons/0600284E.png b/static/icons/0600284E.png deleted file mode 100755 index 545e1374..00000000 Binary files a/static/icons/0600284E.png and /dev/null differ diff --git a/static/icons/0600284F.png b/static/icons/0600284F.png deleted file mode 100755 index fed897ce..00000000 Binary files a/static/icons/0600284F.png and /dev/null differ diff --git a/static/icons/06002850.png b/static/icons/06002850.png deleted file mode 100755 index 8c366ddd..00000000 Binary files a/static/icons/06002850.png and /dev/null differ diff --git a/static/icons/06002851.png b/static/icons/06002851.png deleted file mode 100755 index 5faae1c7..00000000 Binary files a/static/icons/06002851.png and /dev/null differ diff --git a/static/icons/06002852.png b/static/icons/06002852.png deleted file mode 100755 index 73ef58d9..00000000 Binary files a/static/icons/06002852.png and /dev/null differ diff --git a/static/icons/06002853.png b/static/icons/06002853.png deleted file mode 100755 index e21339d6..00000000 Binary files a/static/icons/06002853.png and /dev/null differ diff --git a/static/icons/06002854.png b/static/icons/06002854.png deleted file mode 100755 index 2f833756..00000000 Binary files a/static/icons/06002854.png and /dev/null differ diff --git a/static/icons/06002855.png b/static/icons/06002855.png deleted file mode 100755 index d91fb3a6..00000000 Binary files a/static/icons/06002855.png and /dev/null differ diff --git a/static/icons/06002856.png b/static/icons/06002856.png deleted file mode 100755 index 2f5b44cb..00000000 Binary files a/static/icons/06002856.png and /dev/null differ diff --git a/static/icons/06002857.png b/static/icons/06002857.png deleted file mode 100755 index f2c9fec6..00000000 Binary files a/static/icons/06002857.png and /dev/null differ diff --git a/static/icons/06002858.png b/static/icons/06002858.png deleted file mode 100755 index 2f8049fd..00000000 Binary files a/static/icons/06002858.png and /dev/null differ diff --git a/static/icons/06002859.png b/static/icons/06002859.png deleted file mode 100755 index 6c1bfe4f..00000000 Binary files a/static/icons/06002859.png and /dev/null differ diff --git a/static/icons/0600285A.png b/static/icons/0600285A.png deleted file mode 100755 index 373ca323..00000000 Binary files a/static/icons/0600285A.png and /dev/null differ diff --git a/static/icons/0600285B.png b/static/icons/0600285B.png deleted file mode 100755 index e3682071..00000000 Binary files a/static/icons/0600285B.png and /dev/null differ diff --git a/static/icons/0600285C.png b/static/icons/0600285C.png deleted file mode 100755 index 92e3af38..00000000 Binary files a/static/icons/0600285C.png and /dev/null differ diff --git a/static/icons/0600285D.png b/static/icons/0600285D.png deleted file mode 100755 index bea8da8d..00000000 Binary files a/static/icons/0600285D.png and /dev/null differ diff --git a/static/icons/0600285E.png b/static/icons/0600285E.png deleted file mode 100755 index 85d8ac29..00000000 Binary files a/static/icons/0600285E.png and /dev/null differ diff --git a/static/icons/0600285F.png b/static/icons/0600285F.png deleted file mode 100755 index 5cb62a29..00000000 Binary files a/static/icons/0600285F.png and /dev/null differ diff --git a/static/icons/06002860.png b/static/icons/06002860.png deleted file mode 100755 index 3c19e12b..00000000 Binary files a/static/icons/06002860.png and /dev/null differ diff --git a/static/icons/06002861.png b/static/icons/06002861.png deleted file mode 100755 index 458c6d75..00000000 Binary files a/static/icons/06002861.png and /dev/null differ diff --git a/static/icons/06002862.png b/static/icons/06002862.png deleted file mode 100755 index a22b88d4..00000000 Binary files a/static/icons/06002862.png and /dev/null differ diff --git a/static/icons/06002863.png b/static/icons/06002863.png deleted file mode 100755 index 0c312b16..00000000 Binary files a/static/icons/06002863.png and /dev/null differ diff --git a/static/icons/06002864.png b/static/icons/06002864.png deleted file mode 100755 index 03c4e206..00000000 Binary files a/static/icons/06002864.png and /dev/null differ diff --git a/static/icons/06002865.png b/static/icons/06002865.png deleted file mode 100755 index bf6d7ed2..00000000 Binary files a/static/icons/06002865.png and /dev/null differ diff --git a/static/icons/06002866.png b/static/icons/06002866.png deleted file mode 100755 index 5f0a6e0c..00000000 Binary files a/static/icons/06002866.png and /dev/null differ diff --git a/static/icons/06002867.png b/static/icons/06002867.png deleted file mode 100755 index 41f8ed6b..00000000 Binary files a/static/icons/06002867.png and /dev/null differ diff --git a/static/icons/06002868.png b/static/icons/06002868.png deleted file mode 100755 index 4b8383f9..00000000 Binary files a/static/icons/06002868.png and /dev/null differ diff --git a/static/icons/06002869.png b/static/icons/06002869.png deleted file mode 100755 index 5833f1d5..00000000 Binary files a/static/icons/06002869.png and /dev/null differ diff --git a/static/icons/0600286A.png b/static/icons/0600286A.png deleted file mode 100755 index ae60c69f..00000000 Binary files a/static/icons/0600286A.png and /dev/null differ diff --git a/static/icons/0600286B.png b/static/icons/0600286B.png deleted file mode 100755 index 5dd71dbe..00000000 Binary files a/static/icons/0600286B.png and /dev/null differ diff --git a/static/icons/0600286C.png b/static/icons/0600286C.png deleted file mode 100755 index f6a11e87..00000000 Binary files a/static/icons/0600286C.png and /dev/null differ diff --git a/static/icons/0600286D.png b/static/icons/0600286D.png deleted file mode 100755 index 38861dea..00000000 Binary files a/static/icons/0600286D.png and /dev/null differ diff --git a/static/icons/0600286E.png b/static/icons/0600286E.png deleted file mode 100755 index 14a21115..00000000 Binary files a/static/icons/0600286E.png and /dev/null differ diff --git a/static/icons/0600286F.png b/static/icons/0600286F.png deleted file mode 100755 index 493919da..00000000 Binary files a/static/icons/0600286F.png and /dev/null differ diff --git a/static/icons/06002870.png b/static/icons/06002870.png deleted file mode 100755 index 283dfdae..00000000 Binary files a/static/icons/06002870.png and /dev/null differ diff --git a/static/icons/06002872.png b/static/icons/06002872.png deleted file mode 100755 index c1181729..00000000 Binary files a/static/icons/06002872.png and /dev/null differ diff --git a/static/icons/06002873.png b/static/icons/06002873.png deleted file mode 100755 index 55196ba5..00000000 Binary files a/static/icons/06002873.png and /dev/null differ diff --git a/static/icons/06002874.png b/static/icons/06002874.png deleted file mode 100755 index c6851d8a..00000000 Binary files a/static/icons/06002874.png and /dev/null differ diff --git a/static/icons/06002875.png b/static/icons/06002875.png deleted file mode 100755 index 1ca7cff0..00000000 Binary files a/static/icons/06002875.png and /dev/null differ diff --git a/static/icons/06002876.png b/static/icons/06002876.png deleted file mode 100755 index b0e991c6..00000000 Binary files a/static/icons/06002876.png and /dev/null differ diff --git a/static/icons/06002877.png b/static/icons/06002877.png deleted file mode 100755 index 54a2c3ff..00000000 Binary files a/static/icons/06002877.png and /dev/null differ diff --git a/static/icons/06002878.png b/static/icons/06002878.png deleted file mode 100755 index 6f3b902c..00000000 Binary files a/static/icons/06002878.png and /dev/null differ diff --git a/static/icons/06002879.png b/static/icons/06002879.png deleted file mode 100755 index 46fb9149..00000000 Binary files a/static/icons/06002879.png and /dev/null differ diff --git a/static/icons/0600287A.png b/static/icons/0600287A.png deleted file mode 100755 index d1425cda..00000000 Binary files a/static/icons/0600287A.png and /dev/null differ diff --git a/static/icons/0600287B.png b/static/icons/0600287B.png deleted file mode 100755 index bddc6090..00000000 Binary files a/static/icons/0600287B.png and /dev/null differ diff --git a/static/icons/0600287C.png b/static/icons/0600287C.png deleted file mode 100755 index fa0e759e..00000000 Binary files a/static/icons/0600287C.png and /dev/null differ diff --git a/static/icons/0600287D.png b/static/icons/0600287D.png deleted file mode 100755 index 2e383dea..00000000 Binary files a/static/icons/0600287D.png and /dev/null differ diff --git a/static/icons/0600287E.png b/static/icons/0600287E.png deleted file mode 100755 index fcdcfd8d..00000000 Binary files a/static/icons/0600287E.png and /dev/null differ diff --git a/static/icons/0600287F.png b/static/icons/0600287F.png deleted file mode 100755 index 9f67c930..00000000 Binary files a/static/icons/0600287F.png and /dev/null differ diff --git a/static/icons/06002880.png b/static/icons/06002880.png deleted file mode 100755 index 4e4f4a85..00000000 Binary files a/static/icons/06002880.png and /dev/null differ diff --git a/static/icons/06002881.png b/static/icons/06002881.png deleted file mode 100755 index 4ab1b0e5..00000000 Binary files a/static/icons/06002881.png and /dev/null differ diff --git a/static/icons/06002882.png b/static/icons/06002882.png deleted file mode 100755 index 0fd77524..00000000 Binary files a/static/icons/06002882.png and /dev/null differ diff --git a/static/icons/06002883.png b/static/icons/06002883.png deleted file mode 100755 index e9b08025..00000000 Binary files a/static/icons/06002883.png and /dev/null differ diff --git a/static/icons/06002884.png b/static/icons/06002884.png deleted file mode 100755 index ef82686a..00000000 Binary files a/static/icons/06002884.png and /dev/null differ diff --git a/static/icons/06002885.png b/static/icons/06002885.png deleted file mode 100755 index 9176d041..00000000 Binary files a/static/icons/06002885.png and /dev/null differ diff --git a/static/icons/06002886.png b/static/icons/06002886.png deleted file mode 100755 index be6ba98c..00000000 Binary files a/static/icons/06002886.png and /dev/null differ diff --git a/static/icons/06002887.png b/static/icons/06002887.png deleted file mode 100755 index b3b74fa2..00000000 Binary files a/static/icons/06002887.png and /dev/null differ diff --git a/static/icons/06002888.png b/static/icons/06002888.png deleted file mode 100755 index ec35b6cc..00000000 Binary files a/static/icons/06002888.png and /dev/null differ diff --git a/static/icons/06002889.png b/static/icons/06002889.png deleted file mode 100755 index 06d760a5..00000000 Binary files a/static/icons/06002889.png and /dev/null differ diff --git a/static/icons/0600288B.png b/static/icons/0600288B.png deleted file mode 100755 index 9d13241d..00000000 Binary files a/static/icons/0600288B.png and /dev/null differ diff --git a/static/icons/0600288E.png b/static/icons/0600288E.png deleted file mode 100755 index b0a200fe..00000000 Binary files a/static/icons/0600288E.png and /dev/null differ diff --git a/static/icons/0600288F.png b/static/icons/0600288F.png deleted file mode 100755 index 0301fbab..00000000 Binary files a/static/icons/0600288F.png and /dev/null differ diff --git a/static/icons/06002890.png b/static/icons/06002890.png deleted file mode 100755 index 274c4b75..00000000 Binary files a/static/icons/06002890.png and /dev/null differ diff --git a/static/icons/06002892.png b/static/icons/06002892.png deleted file mode 100755 index 923ebf29..00000000 Binary files a/static/icons/06002892.png and /dev/null differ diff --git a/static/icons/06002893.png b/static/icons/06002893.png deleted file mode 100755 index 98a4650b..00000000 Binary files a/static/icons/06002893.png and /dev/null differ diff --git a/static/icons/06002894.png b/static/icons/06002894.png deleted file mode 100755 index 5efad443..00000000 Binary files a/static/icons/06002894.png and /dev/null differ diff --git a/static/icons/06002895.png b/static/icons/06002895.png deleted file mode 100755 index 8285c3f6..00000000 Binary files a/static/icons/06002895.png and /dev/null differ diff --git a/static/icons/06002896.png b/static/icons/06002896.png deleted file mode 100755 index 9ebccd8d..00000000 Binary files a/static/icons/06002896.png and /dev/null differ diff --git a/static/icons/06002897.png b/static/icons/06002897.png deleted file mode 100755 index e3d1ce75..00000000 Binary files a/static/icons/06002897.png and /dev/null differ diff --git a/static/icons/06002898.png b/static/icons/06002898.png deleted file mode 100755 index 6933e77a..00000000 Binary files a/static/icons/06002898.png and /dev/null differ diff --git a/static/icons/06002899.png b/static/icons/06002899.png deleted file mode 100755 index 96f9936d..00000000 Binary files a/static/icons/06002899.png and /dev/null differ diff --git a/static/icons/0600289A.png b/static/icons/0600289A.png deleted file mode 100755 index aac6dfba..00000000 Binary files a/static/icons/0600289A.png and /dev/null differ diff --git a/static/icons/0600289B.png b/static/icons/0600289B.png deleted file mode 100755 index b2334751..00000000 Binary files a/static/icons/0600289B.png and /dev/null differ diff --git a/static/icons/0600289C.png b/static/icons/0600289C.png deleted file mode 100755 index f6753d28..00000000 Binary files a/static/icons/0600289C.png and /dev/null differ diff --git a/static/icons/0600289D.png b/static/icons/0600289D.png deleted file mode 100755 index fa196a9f..00000000 Binary files a/static/icons/0600289D.png and /dev/null differ diff --git a/static/icons/0600289E.png b/static/icons/0600289E.png deleted file mode 100755 index af474f8c..00000000 Binary files a/static/icons/0600289E.png and /dev/null differ diff --git a/static/icons/0600289F.png b/static/icons/0600289F.png deleted file mode 100755 index 2e0dd983..00000000 Binary files a/static/icons/0600289F.png and /dev/null differ diff --git a/static/icons/060028A0.png b/static/icons/060028A0.png deleted file mode 100755 index a9789a2b..00000000 Binary files a/static/icons/060028A0.png and /dev/null differ diff --git a/static/icons/060028A1.png b/static/icons/060028A1.png deleted file mode 100755 index 50749d5d..00000000 Binary files a/static/icons/060028A1.png and /dev/null differ diff --git a/static/icons/060028A2.png b/static/icons/060028A2.png deleted file mode 100755 index 5b0029a5..00000000 Binary files a/static/icons/060028A2.png and /dev/null differ diff --git a/static/icons/060028A3.png b/static/icons/060028A3.png deleted file mode 100755 index ee888aa4..00000000 Binary files a/static/icons/060028A3.png and /dev/null differ diff --git a/static/icons/060028A4.png b/static/icons/060028A4.png deleted file mode 100755 index 1a8eb13e..00000000 Binary files a/static/icons/060028A4.png and /dev/null differ diff --git a/static/icons/060028A5.png b/static/icons/060028A5.png deleted file mode 100755 index 7908775d..00000000 Binary files a/static/icons/060028A5.png and /dev/null differ diff --git a/static/icons/060028A6.png b/static/icons/060028A6.png deleted file mode 100755 index 76313995..00000000 Binary files a/static/icons/060028A6.png and /dev/null differ diff --git a/static/icons/060028A7.png b/static/icons/060028A7.png deleted file mode 100755 index 3b9b5ad4..00000000 Binary files a/static/icons/060028A7.png and /dev/null differ diff --git a/static/icons/060028A8.png b/static/icons/060028A8.png deleted file mode 100755 index bc71cebc..00000000 Binary files a/static/icons/060028A8.png and /dev/null differ diff --git a/static/icons/060028A9.png b/static/icons/060028A9.png deleted file mode 100755 index cc1a0ca5..00000000 Binary files a/static/icons/060028A9.png and /dev/null differ diff --git a/static/icons/060028AA.png b/static/icons/060028AA.png deleted file mode 100755 index 88bada46..00000000 Binary files a/static/icons/060028AA.png and /dev/null differ diff --git a/static/icons/060028AB.png b/static/icons/060028AB.png deleted file mode 100755 index 76b3a64f..00000000 Binary files a/static/icons/060028AB.png and /dev/null differ diff --git a/static/icons/060028AC.png b/static/icons/060028AC.png deleted file mode 100755 index 6779cb30..00000000 Binary files a/static/icons/060028AC.png and /dev/null differ diff --git a/static/icons/060028AD.png b/static/icons/060028AD.png deleted file mode 100755 index a03328f7..00000000 Binary files a/static/icons/060028AD.png and /dev/null differ diff --git a/static/icons/060028AE.png b/static/icons/060028AE.png deleted file mode 100755 index bb32787c..00000000 Binary files a/static/icons/060028AE.png and /dev/null differ diff --git a/static/icons/060028AF.png b/static/icons/060028AF.png deleted file mode 100755 index 7083b7ef..00000000 Binary files a/static/icons/060028AF.png and /dev/null differ diff --git a/static/icons/060028B0.png b/static/icons/060028B0.png deleted file mode 100755 index f8a11648..00000000 Binary files a/static/icons/060028B0.png and /dev/null differ diff --git a/static/icons/060028B1.png b/static/icons/060028B1.png deleted file mode 100755 index ba0ca6b0..00000000 Binary files a/static/icons/060028B1.png and /dev/null differ diff --git a/static/icons/060028B2.png b/static/icons/060028B2.png deleted file mode 100755 index d555cce3..00000000 Binary files a/static/icons/060028B2.png and /dev/null differ diff --git a/static/icons/060028B3.png b/static/icons/060028B3.png deleted file mode 100755 index 14543c18..00000000 Binary files a/static/icons/060028B3.png and /dev/null differ diff --git a/static/icons/060028B4.png b/static/icons/060028B4.png deleted file mode 100755 index e1fd356d..00000000 Binary files a/static/icons/060028B4.png and /dev/null differ diff --git a/static/icons/060028B5.png b/static/icons/060028B5.png deleted file mode 100755 index e0286bc4..00000000 Binary files a/static/icons/060028B5.png and /dev/null differ diff --git a/static/icons/060028B6.png b/static/icons/060028B6.png deleted file mode 100755 index e30005f7..00000000 Binary files a/static/icons/060028B6.png and /dev/null differ diff --git a/static/icons/060028B7.png b/static/icons/060028B7.png deleted file mode 100755 index 0e3c8a2e..00000000 Binary files a/static/icons/060028B7.png and /dev/null differ diff --git a/static/icons/060028C4.png b/static/icons/060028C4.png deleted file mode 100755 index 823dd8ea..00000000 Binary files a/static/icons/060028C4.png and /dev/null differ diff --git a/static/icons/060028C5.png b/static/icons/060028C5.png deleted file mode 100755 index c56bdbd8..00000000 Binary files a/static/icons/060028C5.png and /dev/null differ diff --git a/static/icons/060028C6.png b/static/icons/060028C6.png deleted file mode 100755 index 2f65d644..00000000 Binary files a/static/icons/060028C6.png and /dev/null differ diff --git a/static/icons/060028C7.png b/static/icons/060028C7.png deleted file mode 100755 index 81d5a86f..00000000 Binary files a/static/icons/060028C7.png and /dev/null differ diff --git a/static/icons/060028C8.png b/static/icons/060028C8.png deleted file mode 100755 index 3b8ba6ca..00000000 Binary files a/static/icons/060028C8.png and /dev/null differ diff --git a/static/icons/060028C9.png b/static/icons/060028C9.png deleted file mode 100755 index b51ace09..00000000 Binary files a/static/icons/060028C9.png and /dev/null differ diff --git a/static/icons/060028CA.png b/static/icons/060028CA.png deleted file mode 100755 index 11ee1307..00000000 Binary files a/static/icons/060028CA.png and /dev/null differ diff --git a/static/icons/060028CB.png b/static/icons/060028CB.png deleted file mode 100755 index 5aad5087..00000000 Binary files a/static/icons/060028CB.png and /dev/null differ diff --git a/static/icons/060028CC.png b/static/icons/060028CC.png deleted file mode 100755 index be176505..00000000 Binary files a/static/icons/060028CC.png and /dev/null differ diff --git a/static/icons/060028CD.png b/static/icons/060028CD.png deleted file mode 100755 index c6de5c10..00000000 Binary files a/static/icons/060028CD.png and /dev/null differ diff --git a/static/icons/060028D0.png b/static/icons/060028D0.png deleted file mode 100755 index 0d1c5af8..00000000 Binary files a/static/icons/060028D0.png and /dev/null differ diff --git a/static/icons/060028D9.png b/static/icons/060028D9.png deleted file mode 100755 index 32e38531..00000000 Binary files a/static/icons/060028D9.png and /dev/null differ diff --git a/static/icons/060028DA.png b/static/icons/060028DA.png deleted file mode 100755 index b7a8831d..00000000 Binary files a/static/icons/060028DA.png and /dev/null differ diff --git a/static/icons/060028DB.png b/static/icons/060028DB.png deleted file mode 100755 index 8caa3792..00000000 Binary files a/static/icons/060028DB.png and /dev/null differ diff --git a/static/icons/060028DC.png b/static/icons/060028DC.png deleted file mode 100755 index 81cf216d..00000000 Binary files a/static/icons/060028DC.png and /dev/null differ diff --git a/static/icons/060028DD.png b/static/icons/060028DD.png deleted file mode 100755 index 05c8b769..00000000 Binary files a/static/icons/060028DD.png and /dev/null differ diff --git a/static/icons/060028DE.png b/static/icons/060028DE.png deleted file mode 100755 index ca7b18cd..00000000 Binary files a/static/icons/060028DE.png and /dev/null differ diff --git a/static/icons/060028DF.png b/static/icons/060028DF.png deleted file mode 100755 index 8616c3a6..00000000 Binary files a/static/icons/060028DF.png and /dev/null differ diff --git a/static/icons/060028E0.png b/static/icons/060028E0.png deleted file mode 100755 index 32ede7f2..00000000 Binary files a/static/icons/060028E0.png and /dev/null differ diff --git a/static/icons/060028E1.png b/static/icons/060028E1.png deleted file mode 100755 index b496965e..00000000 Binary files a/static/icons/060028E1.png and /dev/null differ diff --git a/static/icons/060028E2.png b/static/icons/060028E2.png deleted file mode 100755 index fb72b9ca..00000000 Binary files a/static/icons/060028E2.png and /dev/null differ diff --git a/static/icons/060028E3.png b/static/icons/060028E3.png deleted file mode 100755 index 2d1ca8c1..00000000 Binary files a/static/icons/060028E3.png and /dev/null differ diff --git a/static/icons/060028E4.png b/static/icons/060028E4.png deleted file mode 100755 index 66e60a9f..00000000 Binary files a/static/icons/060028E4.png and /dev/null differ diff --git a/static/icons/060028E5.png b/static/icons/060028E5.png deleted file mode 100755 index c38490c0..00000000 Binary files a/static/icons/060028E5.png and /dev/null differ diff --git a/static/icons/060028E6.png b/static/icons/060028E6.png deleted file mode 100755 index 7159fd39..00000000 Binary files a/static/icons/060028E6.png and /dev/null differ diff --git a/static/icons/060028E7.png b/static/icons/060028E7.png deleted file mode 100755 index 9fbe570c..00000000 Binary files a/static/icons/060028E7.png and /dev/null differ diff --git a/static/icons/060028E8.png b/static/icons/060028E8.png deleted file mode 100755 index 7202feab..00000000 Binary files a/static/icons/060028E8.png and /dev/null differ diff --git a/static/icons/060028E9.png b/static/icons/060028E9.png deleted file mode 100755 index 7703b97d..00000000 Binary files a/static/icons/060028E9.png and /dev/null differ diff --git a/static/icons/060028EA.png b/static/icons/060028EA.png deleted file mode 100755 index e3171363..00000000 Binary files a/static/icons/060028EA.png and /dev/null differ diff --git a/static/icons/060028EB.png b/static/icons/060028EB.png deleted file mode 100755 index 18914c4b..00000000 Binary files a/static/icons/060028EB.png and /dev/null differ diff --git a/static/icons/060028EC.png b/static/icons/060028EC.png deleted file mode 100755 index cf8fb79e..00000000 Binary files a/static/icons/060028EC.png and /dev/null differ diff --git a/static/icons/060028ED.png b/static/icons/060028ED.png deleted file mode 100755 index 987838f6..00000000 Binary files a/static/icons/060028ED.png and /dev/null differ diff --git a/static/icons/060028EE.png b/static/icons/060028EE.png deleted file mode 100755 index 24989fcf..00000000 Binary files a/static/icons/060028EE.png and /dev/null differ diff --git a/static/icons/060028EF.png b/static/icons/060028EF.png deleted file mode 100755 index c74ef1af..00000000 Binary files a/static/icons/060028EF.png and /dev/null differ diff --git a/static/icons/060028F0.png b/static/icons/060028F0.png deleted file mode 100755 index b0977f79..00000000 Binary files a/static/icons/060028F0.png and /dev/null differ diff --git a/static/icons/060028F1.png b/static/icons/060028F1.png deleted file mode 100755 index 98091afd..00000000 Binary files a/static/icons/060028F1.png and /dev/null differ diff --git a/static/icons/060028F2.png b/static/icons/060028F2.png deleted file mode 100755 index 60d14055..00000000 Binary files a/static/icons/060028F2.png and /dev/null differ diff --git a/static/icons/060028F3.png b/static/icons/060028F3.png deleted file mode 100755 index ef0865a4..00000000 Binary files a/static/icons/060028F3.png and /dev/null differ diff --git a/static/icons/060028F4.png b/static/icons/060028F4.png deleted file mode 100755 index f7fb4467..00000000 Binary files a/static/icons/060028F4.png and /dev/null differ diff --git a/static/icons/060028F5.png b/static/icons/060028F5.png deleted file mode 100755 index f1096d1e..00000000 Binary files a/static/icons/060028F5.png and /dev/null differ diff --git a/static/icons/060028F6.png b/static/icons/060028F6.png deleted file mode 100755 index 1de4a782..00000000 Binary files a/static/icons/060028F6.png and /dev/null differ diff --git a/static/icons/060028F7.png b/static/icons/060028F7.png deleted file mode 100755 index b3836214..00000000 Binary files a/static/icons/060028F7.png and /dev/null differ diff --git a/static/icons/060028F8.png b/static/icons/060028F8.png deleted file mode 100755 index 31ef4d6b..00000000 Binary files a/static/icons/060028F8.png and /dev/null differ diff --git a/static/icons/060028F9.png b/static/icons/060028F9.png deleted file mode 100755 index ce8f561e..00000000 Binary files a/static/icons/060028F9.png and /dev/null differ diff --git a/static/icons/060028FA.png b/static/icons/060028FA.png deleted file mode 100755 index a39ff5ce..00000000 Binary files a/static/icons/060028FA.png and /dev/null differ diff --git a/static/icons/060028FB.png b/static/icons/060028FB.png deleted file mode 100755 index b0114ff9..00000000 Binary files a/static/icons/060028FB.png and /dev/null differ diff --git a/static/icons/060028FC.png b/static/icons/060028FC.png deleted file mode 100755 index f185cea7..00000000 Binary files a/static/icons/060028FC.png and /dev/null differ diff --git a/static/icons/060028FD.png b/static/icons/060028FD.png deleted file mode 100755 index 80303d1b..00000000 Binary files a/static/icons/060028FD.png and /dev/null differ diff --git a/static/icons/060028FE.png b/static/icons/060028FE.png deleted file mode 100755 index dd01f67c..00000000 Binary files a/static/icons/060028FE.png and /dev/null differ diff --git a/static/icons/060028FF.png b/static/icons/060028FF.png deleted file mode 100755 index 43e46402..00000000 Binary files a/static/icons/060028FF.png and /dev/null differ diff --git a/static/icons/06002900.png b/static/icons/06002900.png deleted file mode 100755 index cb3789c8..00000000 Binary files a/static/icons/06002900.png and /dev/null differ diff --git a/static/icons/06002901.png b/static/icons/06002901.png deleted file mode 100755 index 74ec6698..00000000 Binary files a/static/icons/06002901.png and /dev/null differ diff --git a/static/icons/06002902.png b/static/icons/06002902.png deleted file mode 100755 index cbc68751..00000000 Binary files a/static/icons/06002902.png and /dev/null differ diff --git a/static/icons/06002903.png b/static/icons/06002903.png deleted file mode 100755 index f1f87a70..00000000 Binary files a/static/icons/06002903.png and /dev/null differ diff --git a/static/icons/06002904.png b/static/icons/06002904.png deleted file mode 100755 index e4978984..00000000 Binary files a/static/icons/06002904.png and /dev/null differ diff --git a/static/icons/06002905.png b/static/icons/06002905.png deleted file mode 100755 index 44244adb..00000000 Binary files a/static/icons/06002905.png and /dev/null differ diff --git a/static/icons/06002906.png b/static/icons/06002906.png deleted file mode 100755 index 46cc0032..00000000 Binary files a/static/icons/06002906.png and /dev/null differ diff --git a/static/icons/06002907.png b/static/icons/06002907.png deleted file mode 100755 index c680abfc..00000000 Binary files a/static/icons/06002907.png and /dev/null differ diff --git a/static/icons/06002908.png b/static/icons/06002908.png deleted file mode 100755 index 38e952e2..00000000 Binary files a/static/icons/06002908.png and /dev/null differ diff --git a/static/icons/06002909.png b/static/icons/06002909.png deleted file mode 100755 index f744cca8..00000000 Binary files a/static/icons/06002909.png and /dev/null differ diff --git a/static/icons/0600290A.png b/static/icons/0600290A.png deleted file mode 100755 index 496c9843..00000000 Binary files a/static/icons/0600290A.png and /dev/null differ diff --git a/static/icons/0600290C.png b/static/icons/0600290C.png deleted file mode 100755 index 12090df2..00000000 Binary files a/static/icons/0600290C.png and /dev/null differ diff --git a/static/icons/0600290D.png b/static/icons/0600290D.png deleted file mode 100755 index d40ceb9f..00000000 Binary files a/static/icons/0600290D.png and /dev/null differ diff --git a/static/icons/0600290E.png b/static/icons/0600290E.png deleted file mode 100755 index 9316776f..00000000 Binary files a/static/icons/0600290E.png and /dev/null differ diff --git a/static/icons/0600290F.png b/static/icons/0600290F.png deleted file mode 100755 index 0f6f8f29..00000000 Binary files a/static/icons/0600290F.png and /dev/null differ diff --git a/static/icons/06002910.png b/static/icons/06002910.png deleted file mode 100755 index cc91c850..00000000 Binary files a/static/icons/06002910.png and /dev/null differ diff --git a/static/icons/06002911.png b/static/icons/06002911.png deleted file mode 100755 index 3798cb15..00000000 Binary files a/static/icons/06002911.png and /dev/null differ diff --git a/static/icons/06002912.png b/static/icons/06002912.png deleted file mode 100755 index a5454f59..00000000 Binary files a/static/icons/06002912.png and /dev/null differ diff --git a/static/icons/06002913.png b/static/icons/06002913.png deleted file mode 100755 index cdbe00e0..00000000 Binary files a/static/icons/06002913.png and /dev/null differ diff --git a/static/icons/06002914.png b/static/icons/06002914.png deleted file mode 100755 index e23ff154..00000000 Binary files a/static/icons/06002914.png and /dev/null differ diff --git a/static/icons/06002915.png b/static/icons/06002915.png deleted file mode 100755 index 520827e3..00000000 Binary files a/static/icons/06002915.png and /dev/null differ diff --git a/static/icons/06002916.png b/static/icons/06002916.png deleted file mode 100755 index 655f1a7e..00000000 Binary files a/static/icons/06002916.png and /dev/null differ diff --git a/static/icons/06002917.png b/static/icons/06002917.png deleted file mode 100755 index 0ba94d65..00000000 Binary files a/static/icons/06002917.png and /dev/null differ diff --git a/static/icons/06002918.png b/static/icons/06002918.png deleted file mode 100755 index a4c4fb34..00000000 Binary files a/static/icons/06002918.png and /dev/null differ diff --git a/static/icons/06002919.png b/static/icons/06002919.png deleted file mode 100755 index 723d00be..00000000 Binary files a/static/icons/06002919.png and /dev/null differ diff --git a/static/icons/0600291A.png b/static/icons/0600291A.png deleted file mode 100755 index b8f85e1d..00000000 Binary files a/static/icons/0600291A.png and /dev/null differ diff --git a/static/icons/0600291B.png b/static/icons/0600291B.png deleted file mode 100755 index e5e1ae34..00000000 Binary files a/static/icons/0600291B.png and /dev/null differ diff --git a/static/icons/0600291C.png b/static/icons/0600291C.png deleted file mode 100755 index 873023f2..00000000 Binary files a/static/icons/0600291C.png and /dev/null differ diff --git a/static/icons/0600291E.png b/static/icons/0600291E.png deleted file mode 100755 index 9ef3d9b7..00000000 Binary files a/static/icons/0600291E.png and /dev/null differ diff --git a/static/icons/0600291F.png b/static/icons/0600291F.png deleted file mode 100755 index 681e6cb7..00000000 Binary files a/static/icons/0600291F.png and /dev/null differ diff --git a/static/icons/06002920.png b/static/icons/06002920.png deleted file mode 100755 index b0d7da96..00000000 Binary files a/static/icons/06002920.png and /dev/null differ diff --git a/static/icons/06002921.png b/static/icons/06002921.png deleted file mode 100755 index 30edbff5..00000000 Binary files a/static/icons/06002921.png and /dev/null differ diff --git a/static/icons/06002922.png b/static/icons/06002922.png deleted file mode 100755 index 2c151863..00000000 Binary files a/static/icons/06002922.png and /dev/null differ diff --git a/static/icons/06002923.png b/static/icons/06002923.png deleted file mode 100755 index cbf33d38..00000000 Binary files a/static/icons/06002923.png and /dev/null differ diff --git a/static/icons/06002924.png b/static/icons/06002924.png deleted file mode 100755 index 336a7675..00000000 Binary files a/static/icons/06002924.png and /dev/null differ diff --git a/static/icons/06002925.png b/static/icons/06002925.png deleted file mode 100755 index 43ed8ab0..00000000 Binary files a/static/icons/06002925.png and /dev/null differ diff --git a/static/icons/06002926.png b/static/icons/06002926.png deleted file mode 100755 index 3634d68e..00000000 Binary files a/static/icons/06002926.png and /dev/null differ diff --git a/static/icons/06002927.png b/static/icons/06002927.png deleted file mode 100755 index fe158a40..00000000 Binary files a/static/icons/06002927.png and /dev/null differ diff --git a/static/icons/06002928.png b/static/icons/06002928.png deleted file mode 100755 index c2da7a21..00000000 Binary files a/static/icons/06002928.png and /dev/null differ diff --git a/static/icons/06002929.png b/static/icons/06002929.png deleted file mode 100755 index 341b27b6..00000000 Binary files a/static/icons/06002929.png and /dev/null differ diff --git a/static/icons/0600292A.png b/static/icons/0600292A.png deleted file mode 100755 index eb75c58c..00000000 Binary files a/static/icons/0600292A.png and /dev/null differ diff --git a/static/icons/0600292B.png b/static/icons/0600292B.png deleted file mode 100755 index 1edb0ac1..00000000 Binary files a/static/icons/0600292B.png and /dev/null differ diff --git a/static/icons/0600292C.png b/static/icons/0600292C.png deleted file mode 100755 index 6e777a42..00000000 Binary files a/static/icons/0600292C.png and /dev/null differ diff --git a/static/icons/0600292D.png b/static/icons/0600292D.png deleted file mode 100755 index ea912cb9..00000000 Binary files a/static/icons/0600292D.png and /dev/null differ diff --git a/static/icons/0600292E.png b/static/icons/0600292E.png deleted file mode 100755 index fdb0d02d..00000000 Binary files a/static/icons/0600292E.png and /dev/null differ diff --git a/static/icons/0600292F.png b/static/icons/0600292F.png deleted file mode 100755 index c69dd6ad..00000000 Binary files a/static/icons/0600292F.png and /dev/null differ diff --git a/static/icons/06002930.png b/static/icons/06002930.png deleted file mode 100755 index d7bf1617..00000000 Binary files a/static/icons/06002930.png and /dev/null differ diff --git a/static/icons/06002931.png b/static/icons/06002931.png deleted file mode 100755 index 64ffd435..00000000 Binary files a/static/icons/06002931.png and /dev/null differ diff --git a/static/icons/06002932.png b/static/icons/06002932.png deleted file mode 100755 index d8734043..00000000 Binary files a/static/icons/06002932.png and /dev/null differ diff --git a/static/icons/06002933.png b/static/icons/06002933.png deleted file mode 100755 index 64efec21..00000000 Binary files a/static/icons/06002933.png and /dev/null differ diff --git a/static/icons/06002934.png b/static/icons/06002934.png deleted file mode 100755 index 8bd6e419..00000000 Binary files a/static/icons/06002934.png and /dev/null differ diff --git a/static/icons/06002935.png b/static/icons/06002935.png deleted file mode 100755 index 1ee8f2fe..00000000 Binary files a/static/icons/06002935.png and /dev/null differ diff --git a/static/icons/06002936.png b/static/icons/06002936.png deleted file mode 100755 index 3cc1a286..00000000 Binary files a/static/icons/06002936.png and /dev/null differ diff --git a/static/icons/06002937.png b/static/icons/06002937.png deleted file mode 100755 index 7a4758a9..00000000 Binary files a/static/icons/06002937.png and /dev/null differ diff --git a/static/icons/06002938.png b/static/icons/06002938.png deleted file mode 100755 index b6323d8f..00000000 Binary files a/static/icons/06002938.png and /dev/null differ diff --git a/static/icons/0600293A.png b/static/icons/0600293A.png deleted file mode 100755 index 8d090653..00000000 Binary files a/static/icons/0600293A.png and /dev/null differ diff --git a/static/icons/0600293C.png b/static/icons/0600293C.png deleted file mode 100755 index 946d5726..00000000 Binary files a/static/icons/0600293C.png and /dev/null differ diff --git a/static/icons/0600293D.png b/static/icons/0600293D.png deleted file mode 100755 index 2e50e03f..00000000 Binary files a/static/icons/0600293D.png and /dev/null differ diff --git a/static/icons/0600293E.png b/static/icons/0600293E.png deleted file mode 100755 index cc5abdb6..00000000 Binary files a/static/icons/0600293E.png and /dev/null differ diff --git a/static/icons/0600293F.png b/static/icons/0600293F.png deleted file mode 100755 index c49722b8..00000000 Binary files a/static/icons/0600293F.png and /dev/null differ diff --git a/static/icons/06002940.png b/static/icons/06002940.png deleted file mode 100755 index 3ccf7fdb..00000000 Binary files a/static/icons/06002940.png and /dev/null differ diff --git a/static/icons/06002941.png b/static/icons/06002941.png deleted file mode 100755 index 25633a4a..00000000 Binary files a/static/icons/06002941.png and /dev/null differ diff --git a/static/icons/06002942.png b/static/icons/06002942.png deleted file mode 100755 index b4aad81c..00000000 Binary files a/static/icons/06002942.png and /dev/null differ diff --git a/static/icons/06002943.png b/static/icons/06002943.png deleted file mode 100755 index 50490875..00000000 Binary files a/static/icons/06002943.png and /dev/null differ diff --git a/static/icons/06002944.png b/static/icons/06002944.png deleted file mode 100755 index f7882cc9..00000000 Binary files a/static/icons/06002944.png and /dev/null differ diff --git a/static/icons/06002945.png b/static/icons/06002945.png deleted file mode 100755 index 6a62265a..00000000 Binary files a/static/icons/06002945.png and /dev/null differ diff --git a/static/icons/06002946.png b/static/icons/06002946.png deleted file mode 100755 index 573a6948..00000000 Binary files a/static/icons/06002946.png and /dev/null differ diff --git a/static/icons/06002947.png b/static/icons/06002947.png deleted file mode 100755 index bb20f10c..00000000 Binary files a/static/icons/06002947.png and /dev/null differ diff --git a/static/icons/06002948.png b/static/icons/06002948.png deleted file mode 100755 index 61b53825..00000000 Binary files a/static/icons/06002948.png and /dev/null differ diff --git a/static/icons/06002949.png b/static/icons/06002949.png deleted file mode 100755 index a55cfa02..00000000 Binary files a/static/icons/06002949.png and /dev/null differ diff --git a/static/icons/0600294A.png b/static/icons/0600294A.png deleted file mode 100755 index 9c7cc310..00000000 Binary files a/static/icons/0600294A.png and /dev/null differ diff --git a/static/icons/0600294B.png b/static/icons/0600294B.png deleted file mode 100755 index 9d5eee9a..00000000 Binary files a/static/icons/0600294B.png and /dev/null differ diff --git a/static/icons/0600294C.png b/static/icons/0600294C.png deleted file mode 100755 index d1e51385..00000000 Binary files a/static/icons/0600294C.png and /dev/null differ diff --git a/static/icons/0600294E.png b/static/icons/0600294E.png deleted file mode 100755 index 05cc6c08..00000000 Binary files a/static/icons/0600294E.png and /dev/null differ diff --git a/static/icons/06002950.png b/static/icons/06002950.png deleted file mode 100755 index ea8c0cd4..00000000 Binary files a/static/icons/06002950.png and /dev/null differ diff --git a/static/icons/06002951.png b/static/icons/06002951.png deleted file mode 100755 index 42ae6c75..00000000 Binary files a/static/icons/06002951.png and /dev/null differ diff --git a/static/icons/06002953.png b/static/icons/06002953.png deleted file mode 100755 index a9fb9dae..00000000 Binary files a/static/icons/06002953.png and /dev/null differ diff --git a/static/icons/06002954.png b/static/icons/06002954.png deleted file mode 100755 index e61597b0..00000000 Binary files a/static/icons/06002954.png and /dev/null differ diff --git a/static/icons/06002955.png b/static/icons/06002955.png deleted file mode 100755 index 6e8b3324..00000000 Binary files a/static/icons/06002955.png and /dev/null differ diff --git a/static/icons/06002956.png b/static/icons/06002956.png deleted file mode 100755 index 818ac1cb..00000000 Binary files a/static/icons/06002956.png and /dev/null differ diff --git a/static/icons/06002957.png b/static/icons/06002957.png deleted file mode 100755 index 518f0872..00000000 Binary files a/static/icons/06002957.png and /dev/null differ diff --git a/static/icons/06002958.png b/static/icons/06002958.png deleted file mode 100755 index 258b0c00..00000000 Binary files a/static/icons/06002958.png and /dev/null differ diff --git a/static/icons/06002959.png b/static/icons/06002959.png deleted file mode 100755 index 6bbfbd42..00000000 Binary files a/static/icons/06002959.png and /dev/null differ diff --git a/static/icons/0600295A.png b/static/icons/0600295A.png deleted file mode 100755 index 90f1013b..00000000 Binary files a/static/icons/0600295A.png and /dev/null differ diff --git a/static/icons/0600295B.png b/static/icons/0600295B.png deleted file mode 100755 index ed125dab..00000000 Binary files a/static/icons/0600295B.png and /dev/null differ diff --git a/static/icons/0600295C.png b/static/icons/0600295C.png deleted file mode 100755 index 8b83d9d2..00000000 Binary files a/static/icons/0600295C.png and /dev/null differ diff --git a/static/icons/06002960.png b/static/icons/06002960.png deleted file mode 100755 index 1d6308b9..00000000 Binary files a/static/icons/06002960.png and /dev/null differ diff --git a/static/icons/06002961.png b/static/icons/06002961.png deleted file mode 100755 index 3e54cda6..00000000 Binary files a/static/icons/06002961.png and /dev/null differ diff --git a/static/icons/06002962.png b/static/icons/06002962.png deleted file mode 100755 index 5ba618d3..00000000 Binary files a/static/icons/06002962.png and /dev/null differ diff --git a/static/icons/06002963.png b/static/icons/06002963.png deleted file mode 100755 index f460beb0..00000000 Binary files a/static/icons/06002963.png and /dev/null differ diff --git a/static/icons/06002964.png b/static/icons/06002964.png deleted file mode 100755 index 3009186d..00000000 Binary files a/static/icons/06002964.png and /dev/null differ diff --git a/static/icons/06002965.png b/static/icons/06002965.png deleted file mode 100755 index e0e3e89d..00000000 Binary files a/static/icons/06002965.png and /dev/null differ diff --git a/static/icons/06002966.png b/static/icons/06002966.png deleted file mode 100755 index 15c43dcd..00000000 Binary files a/static/icons/06002966.png and /dev/null differ diff --git a/static/icons/06002967.png b/static/icons/06002967.png deleted file mode 100755 index 791ca6fd..00000000 Binary files a/static/icons/06002967.png and /dev/null differ diff --git a/static/icons/06002968.png b/static/icons/06002968.png deleted file mode 100755 index 4cd73245..00000000 Binary files a/static/icons/06002968.png and /dev/null differ diff --git a/static/icons/06002969.png b/static/icons/06002969.png deleted file mode 100755 index 1fe63082..00000000 Binary files a/static/icons/06002969.png and /dev/null differ diff --git a/static/icons/0600296A.png b/static/icons/0600296A.png deleted file mode 100755 index aee5096b..00000000 Binary files a/static/icons/0600296A.png and /dev/null differ diff --git a/static/icons/0600296B.png b/static/icons/0600296B.png deleted file mode 100755 index 382d0f54..00000000 Binary files a/static/icons/0600296B.png and /dev/null differ diff --git a/static/icons/0600296C.png b/static/icons/0600296C.png deleted file mode 100755 index 6791a8ff..00000000 Binary files a/static/icons/0600296C.png and /dev/null differ diff --git a/static/icons/0600296D.png b/static/icons/0600296D.png deleted file mode 100755 index 8eefff0e..00000000 Binary files a/static/icons/0600296D.png and /dev/null differ diff --git a/static/icons/0600296E.png b/static/icons/0600296E.png deleted file mode 100755 index 36beac10..00000000 Binary files a/static/icons/0600296E.png and /dev/null differ diff --git a/static/icons/0600296F.png b/static/icons/0600296F.png deleted file mode 100755 index 47465575..00000000 Binary files a/static/icons/0600296F.png and /dev/null differ diff --git a/static/icons/06002970.png b/static/icons/06002970.png deleted file mode 100755 index 45342fda..00000000 Binary files a/static/icons/06002970.png and /dev/null differ diff --git a/static/icons/06002971.png b/static/icons/06002971.png deleted file mode 100755 index b35e4dbd..00000000 Binary files a/static/icons/06002971.png and /dev/null differ diff --git a/static/icons/06002972.png b/static/icons/06002972.png deleted file mode 100755 index 9d035f3a..00000000 Binary files a/static/icons/06002972.png and /dev/null differ diff --git a/static/icons/06002973.png b/static/icons/06002973.png deleted file mode 100755 index 10dae8de..00000000 Binary files a/static/icons/06002973.png and /dev/null differ diff --git a/static/icons/06002974.png b/static/icons/06002974.png deleted file mode 100755 index 918da64c..00000000 Binary files a/static/icons/06002974.png and /dev/null differ diff --git a/static/icons/06002975.png b/static/icons/06002975.png deleted file mode 100755 index f9e1dfda..00000000 Binary files a/static/icons/06002975.png and /dev/null differ diff --git a/static/icons/06002976.png b/static/icons/06002976.png deleted file mode 100755 index b7103296..00000000 Binary files a/static/icons/06002976.png and /dev/null differ diff --git a/static/icons/06002977.png b/static/icons/06002977.png deleted file mode 100755 index bba16630..00000000 Binary files a/static/icons/06002977.png and /dev/null differ diff --git a/static/icons/06002978.png b/static/icons/06002978.png deleted file mode 100755 index 8d68ef37..00000000 Binary files a/static/icons/06002978.png and /dev/null differ diff --git a/static/icons/06002979.png b/static/icons/06002979.png deleted file mode 100755 index 2b6bf770..00000000 Binary files a/static/icons/06002979.png and /dev/null differ diff --git a/static/icons/0600297A.png b/static/icons/0600297A.png deleted file mode 100755 index 46cdeb6d..00000000 Binary files a/static/icons/0600297A.png and /dev/null differ diff --git a/static/icons/0600297B.png b/static/icons/0600297B.png deleted file mode 100755 index c6746537..00000000 Binary files a/static/icons/0600297B.png and /dev/null differ diff --git a/static/icons/0600297C.png b/static/icons/0600297C.png deleted file mode 100755 index a004cc24..00000000 Binary files a/static/icons/0600297C.png and /dev/null differ diff --git a/static/icons/0600297D.png b/static/icons/0600297D.png deleted file mode 100755 index 9a09a3f8..00000000 Binary files a/static/icons/0600297D.png and /dev/null differ diff --git a/static/icons/0600297E.png b/static/icons/0600297E.png deleted file mode 100755 index a4a60463..00000000 Binary files a/static/icons/0600297E.png and /dev/null differ diff --git a/static/icons/0600297F.png b/static/icons/0600297F.png deleted file mode 100755 index 2ac43600..00000000 Binary files a/static/icons/0600297F.png and /dev/null differ diff --git a/static/icons/06002980.png b/static/icons/06002980.png deleted file mode 100755 index 3bdf7656..00000000 Binary files a/static/icons/06002980.png and /dev/null differ diff --git a/static/icons/06002981.png b/static/icons/06002981.png deleted file mode 100755 index 8000f678..00000000 Binary files a/static/icons/06002981.png and /dev/null differ diff --git a/static/icons/06002982.png b/static/icons/06002982.png deleted file mode 100755 index e7e8d4e9..00000000 Binary files a/static/icons/06002982.png and /dev/null differ diff --git a/static/icons/06002983.png b/static/icons/06002983.png deleted file mode 100755 index a960aea7..00000000 Binary files a/static/icons/06002983.png and /dev/null differ diff --git a/static/icons/06002984.png b/static/icons/06002984.png deleted file mode 100755 index 4d03f1fc..00000000 Binary files a/static/icons/06002984.png and /dev/null differ diff --git a/static/icons/06002985.png b/static/icons/06002985.png deleted file mode 100755 index 433e56c7..00000000 Binary files a/static/icons/06002985.png and /dev/null differ diff --git a/static/icons/06002986.png b/static/icons/06002986.png deleted file mode 100755 index 5629956a..00000000 Binary files a/static/icons/06002986.png and /dev/null differ diff --git a/static/icons/06002987.png b/static/icons/06002987.png deleted file mode 100755 index 63e78560..00000000 Binary files a/static/icons/06002987.png and /dev/null differ diff --git a/static/icons/06002988.png b/static/icons/06002988.png deleted file mode 100755 index 0b69d4c6..00000000 Binary files a/static/icons/06002988.png and /dev/null differ diff --git a/static/icons/06002989.png b/static/icons/06002989.png deleted file mode 100755 index 8d47af83..00000000 Binary files a/static/icons/06002989.png and /dev/null differ diff --git a/static/icons/0600298A.png b/static/icons/0600298A.png deleted file mode 100755 index 6b90cdc4..00000000 Binary files a/static/icons/0600298A.png and /dev/null differ diff --git a/static/icons/0600298B.png b/static/icons/0600298B.png deleted file mode 100755 index 9dd9c91d..00000000 Binary files a/static/icons/0600298B.png and /dev/null differ diff --git a/static/icons/0600298C.png b/static/icons/0600298C.png deleted file mode 100755 index 8c953587..00000000 Binary files a/static/icons/0600298C.png and /dev/null differ diff --git a/static/icons/0600298D.png b/static/icons/0600298D.png deleted file mode 100755 index 191d63a8..00000000 Binary files a/static/icons/0600298D.png and /dev/null differ diff --git a/static/icons/0600298E.png b/static/icons/0600298E.png deleted file mode 100755 index e46bdb54..00000000 Binary files a/static/icons/0600298E.png and /dev/null differ diff --git a/static/icons/0600298F.png b/static/icons/0600298F.png deleted file mode 100755 index dc2c8210..00000000 Binary files a/static/icons/0600298F.png and /dev/null differ diff --git a/static/icons/06002990.png b/static/icons/06002990.png deleted file mode 100755 index adf6fcf2..00000000 Binary files a/static/icons/06002990.png and /dev/null differ diff --git a/static/icons/06002991.png b/static/icons/06002991.png deleted file mode 100755 index 35f02a6f..00000000 Binary files a/static/icons/06002991.png and /dev/null differ diff --git a/static/icons/06002992.png b/static/icons/06002992.png deleted file mode 100755 index 7fb8385f..00000000 Binary files a/static/icons/06002992.png and /dev/null differ diff --git a/static/icons/06002993.png b/static/icons/06002993.png deleted file mode 100755 index 58190bb7..00000000 Binary files a/static/icons/06002993.png and /dev/null differ diff --git a/static/icons/06002994.png b/static/icons/06002994.png deleted file mode 100755 index 854a65e6..00000000 Binary files a/static/icons/06002994.png and /dev/null differ diff --git a/static/icons/06002995.png b/static/icons/06002995.png deleted file mode 100755 index 2801133b..00000000 Binary files a/static/icons/06002995.png and /dev/null differ diff --git a/static/icons/06002996.png b/static/icons/06002996.png deleted file mode 100755 index b5853b0d..00000000 Binary files a/static/icons/06002996.png and /dev/null differ diff --git a/static/icons/06002997.png b/static/icons/06002997.png deleted file mode 100755 index 3c2ff1f7..00000000 Binary files a/static/icons/06002997.png and /dev/null differ diff --git a/static/icons/06002998.png b/static/icons/06002998.png deleted file mode 100755 index 74d967c9..00000000 Binary files a/static/icons/06002998.png and /dev/null differ diff --git a/static/icons/06002999.png b/static/icons/06002999.png deleted file mode 100755 index 78b1faa3..00000000 Binary files a/static/icons/06002999.png and /dev/null differ diff --git a/static/icons/0600299A.png b/static/icons/0600299A.png deleted file mode 100755 index 75c231b3..00000000 Binary files a/static/icons/0600299A.png and /dev/null differ diff --git a/static/icons/0600299B.png b/static/icons/0600299B.png deleted file mode 100755 index d90901b4..00000000 Binary files a/static/icons/0600299B.png and /dev/null differ diff --git a/static/icons/0600299C.png b/static/icons/0600299C.png deleted file mode 100755 index 6749fb86..00000000 Binary files a/static/icons/0600299C.png and /dev/null differ diff --git a/static/icons/0600299D.png b/static/icons/0600299D.png deleted file mode 100755 index ce3ba236..00000000 Binary files a/static/icons/0600299D.png and /dev/null differ diff --git a/static/icons/0600299E.png b/static/icons/0600299E.png deleted file mode 100755 index 0cd5dd31..00000000 Binary files a/static/icons/0600299E.png and /dev/null differ diff --git a/static/icons/0600299F.png b/static/icons/0600299F.png deleted file mode 100755 index 92d0f831..00000000 Binary files a/static/icons/0600299F.png and /dev/null differ diff --git a/static/icons/060029A0.png b/static/icons/060029A0.png deleted file mode 100755 index 17d5342d..00000000 Binary files a/static/icons/060029A0.png and /dev/null differ diff --git a/static/icons/060029A1.png b/static/icons/060029A1.png deleted file mode 100755 index b8be63bd..00000000 Binary files a/static/icons/060029A1.png and /dev/null differ diff --git a/static/icons/060029A2.png b/static/icons/060029A2.png deleted file mode 100755 index 82ccc4d2..00000000 Binary files a/static/icons/060029A2.png and /dev/null differ diff --git a/static/icons/060029A3.png b/static/icons/060029A3.png deleted file mode 100755 index 0fa4072c..00000000 Binary files a/static/icons/060029A3.png and /dev/null differ diff --git a/static/icons/060029A4.png b/static/icons/060029A4.png deleted file mode 100755 index c16c8c80..00000000 Binary files a/static/icons/060029A4.png and /dev/null differ diff --git a/static/icons/060029A5.png b/static/icons/060029A5.png deleted file mode 100755 index b4b18bfc..00000000 Binary files a/static/icons/060029A5.png and /dev/null differ diff --git a/static/icons/060029A6.png b/static/icons/060029A6.png deleted file mode 100755 index 91be88ff..00000000 Binary files a/static/icons/060029A6.png and /dev/null differ diff --git a/static/icons/060029A7.png b/static/icons/060029A7.png deleted file mode 100755 index 8b463c70..00000000 Binary files a/static/icons/060029A7.png and /dev/null differ diff --git a/static/icons/060029A8.png b/static/icons/060029A8.png deleted file mode 100755 index 0e24afe1..00000000 Binary files a/static/icons/060029A8.png and /dev/null differ diff --git a/static/icons/060029A9.png b/static/icons/060029A9.png deleted file mode 100755 index 661ccbeb..00000000 Binary files a/static/icons/060029A9.png and /dev/null differ diff --git a/static/icons/060029AA.png b/static/icons/060029AA.png deleted file mode 100755 index 6db28011..00000000 Binary files a/static/icons/060029AA.png and /dev/null differ diff --git a/static/icons/060029AB.png b/static/icons/060029AB.png deleted file mode 100755 index 3eefcf5e..00000000 Binary files a/static/icons/060029AB.png and /dev/null differ diff --git a/static/icons/060029AC.png b/static/icons/060029AC.png deleted file mode 100755 index 809b72ec..00000000 Binary files a/static/icons/060029AC.png and /dev/null differ diff --git a/static/icons/060029AD.png b/static/icons/060029AD.png deleted file mode 100755 index a1df5fde..00000000 Binary files a/static/icons/060029AD.png and /dev/null differ diff --git a/static/icons/060029AE.png b/static/icons/060029AE.png deleted file mode 100755 index fe07e37b..00000000 Binary files a/static/icons/060029AE.png and /dev/null differ diff --git a/static/icons/060029AF.png b/static/icons/060029AF.png deleted file mode 100755 index ac2affe1..00000000 Binary files a/static/icons/060029AF.png and /dev/null differ diff --git a/static/icons/060029B0.png b/static/icons/060029B0.png deleted file mode 100755 index 20cf80c2..00000000 Binary files a/static/icons/060029B0.png and /dev/null differ diff --git a/static/icons/060029B1.png b/static/icons/060029B1.png deleted file mode 100755 index 786d0a86..00000000 Binary files a/static/icons/060029B1.png and /dev/null differ diff --git a/static/icons/060029B2.png b/static/icons/060029B2.png deleted file mode 100755 index 8ad090c3..00000000 Binary files a/static/icons/060029B2.png and /dev/null differ diff --git a/static/icons/060029B3.png b/static/icons/060029B3.png deleted file mode 100755 index a6f22781..00000000 Binary files a/static/icons/060029B3.png and /dev/null differ diff --git a/static/icons/060029B4.png b/static/icons/060029B4.png deleted file mode 100755 index 7c0e31db..00000000 Binary files a/static/icons/060029B4.png and /dev/null differ diff --git a/static/icons/060029B5.png b/static/icons/060029B5.png deleted file mode 100755 index e1327625..00000000 Binary files a/static/icons/060029B5.png and /dev/null differ diff --git a/static/icons/060029B6.png b/static/icons/060029B6.png deleted file mode 100755 index 61f23b3c..00000000 Binary files a/static/icons/060029B6.png and /dev/null differ diff --git a/static/icons/060029B7.png b/static/icons/060029B7.png deleted file mode 100755 index 2f848c76..00000000 Binary files a/static/icons/060029B7.png and /dev/null differ diff --git a/static/icons/060029B8.png b/static/icons/060029B8.png deleted file mode 100755 index f2a26bca..00000000 Binary files a/static/icons/060029B8.png and /dev/null differ diff --git a/static/icons/060029B9.png b/static/icons/060029B9.png deleted file mode 100755 index 550c5908..00000000 Binary files a/static/icons/060029B9.png and /dev/null differ diff --git a/static/icons/060029BA.png b/static/icons/060029BA.png deleted file mode 100755 index 4d7d3a16..00000000 Binary files a/static/icons/060029BA.png and /dev/null differ diff --git a/static/icons/060029BB.png b/static/icons/060029BB.png deleted file mode 100755 index 5ce8d976..00000000 Binary files a/static/icons/060029BB.png and /dev/null differ diff --git a/static/icons/060029BC.png b/static/icons/060029BC.png deleted file mode 100755 index ee0a31ad..00000000 Binary files a/static/icons/060029BC.png and /dev/null differ diff --git a/static/icons/060029BD.png b/static/icons/060029BD.png deleted file mode 100755 index fb2217ee..00000000 Binary files a/static/icons/060029BD.png and /dev/null differ diff --git a/static/icons/060029BE.png b/static/icons/060029BE.png deleted file mode 100755 index 7dd3f84e..00000000 Binary files a/static/icons/060029BE.png and /dev/null differ diff --git a/static/icons/060029BF.png b/static/icons/060029BF.png deleted file mode 100755 index e09c77e7..00000000 Binary files a/static/icons/060029BF.png and /dev/null differ diff --git a/static/icons/060029C0.png b/static/icons/060029C0.png deleted file mode 100755 index f14f129b..00000000 Binary files a/static/icons/060029C0.png and /dev/null differ diff --git a/static/icons/060029C1.png b/static/icons/060029C1.png deleted file mode 100755 index d778f3a5..00000000 Binary files a/static/icons/060029C1.png and /dev/null differ diff --git a/static/icons/060029C2.png b/static/icons/060029C2.png deleted file mode 100755 index 1e0c03a2..00000000 Binary files a/static/icons/060029C2.png and /dev/null differ diff --git a/static/icons/060029C3.png b/static/icons/060029C3.png deleted file mode 100755 index 164fed1b..00000000 Binary files a/static/icons/060029C3.png and /dev/null differ diff --git a/static/icons/060029C4.png b/static/icons/060029C4.png deleted file mode 100755 index 8f4960db..00000000 Binary files a/static/icons/060029C4.png and /dev/null differ diff --git a/static/icons/060029C5.png b/static/icons/060029C5.png deleted file mode 100755 index 0d13cff4..00000000 Binary files a/static/icons/060029C5.png and /dev/null differ diff --git a/static/icons/060029C6.png b/static/icons/060029C6.png deleted file mode 100755 index 864cba96..00000000 Binary files a/static/icons/060029C6.png and /dev/null differ diff --git a/static/icons/060029C7.png b/static/icons/060029C7.png deleted file mode 100755 index e6201a91..00000000 Binary files a/static/icons/060029C7.png and /dev/null differ diff --git a/static/icons/060029C8.png b/static/icons/060029C8.png deleted file mode 100755 index 9478ab79..00000000 Binary files a/static/icons/060029C8.png and /dev/null differ diff --git a/static/icons/060029CC.png b/static/icons/060029CC.png deleted file mode 100755 index 402ad6b9..00000000 Binary files a/static/icons/060029CC.png and /dev/null differ diff --git a/static/icons/060029CD.png b/static/icons/060029CD.png deleted file mode 100755 index 50a77360..00000000 Binary files a/static/icons/060029CD.png and /dev/null differ diff --git a/static/icons/060029CE.png b/static/icons/060029CE.png deleted file mode 100755 index 6bfdb5dc..00000000 Binary files a/static/icons/060029CE.png and /dev/null differ diff --git a/static/icons/060029CF.png b/static/icons/060029CF.png deleted file mode 100755 index 47ddaadc..00000000 Binary files a/static/icons/060029CF.png and /dev/null differ diff --git a/static/icons/060029D0.png b/static/icons/060029D0.png deleted file mode 100755 index 4dddc196..00000000 Binary files a/static/icons/060029D0.png and /dev/null differ diff --git a/static/icons/060029D1.png b/static/icons/060029D1.png deleted file mode 100755 index 9bfcf797..00000000 Binary files a/static/icons/060029D1.png and /dev/null differ diff --git a/static/icons/060029D2.png b/static/icons/060029D2.png deleted file mode 100755 index d90a6778..00000000 Binary files a/static/icons/060029D2.png and /dev/null differ diff --git a/static/icons/060029D3.png b/static/icons/060029D3.png deleted file mode 100755 index 5da8fa12..00000000 Binary files a/static/icons/060029D3.png and /dev/null differ diff --git a/static/icons/060029D4.png b/static/icons/060029D4.png deleted file mode 100755 index 7cf33a06..00000000 Binary files a/static/icons/060029D4.png and /dev/null differ diff --git a/static/icons/060029D5.png b/static/icons/060029D5.png deleted file mode 100755 index 8b0bc55d..00000000 Binary files a/static/icons/060029D5.png and /dev/null differ diff --git a/static/icons/060029D6.png b/static/icons/060029D6.png deleted file mode 100755 index 69c4d599..00000000 Binary files a/static/icons/060029D6.png and /dev/null differ diff --git a/static/icons/060029D7.png b/static/icons/060029D7.png deleted file mode 100755 index 04048033..00000000 Binary files a/static/icons/060029D7.png and /dev/null differ diff --git a/static/icons/060029D8.png b/static/icons/060029D8.png deleted file mode 100755 index fd558d6b..00000000 Binary files a/static/icons/060029D8.png and /dev/null differ diff --git a/static/icons/060029D9.png b/static/icons/060029D9.png deleted file mode 100755 index 6a2ec0ad..00000000 Binary files a/static/icons/060029D9.png and /dev/null differ diff --git a/static/icons/060029DA.png b/static/icons/060029DA.png deleted file mode 100755 index 2e497bde..00000000 Binary files a/static/icons/060029DA.png and /dev/null differ diff --git a/static/icons/060029DB.png b/static/icons/060029DB.png deleted file mode 100755 index c225540e..00000000 Binary files a/static/icons/060029DB.png and /dev/null differ diff --git a/static/icons/060029DC.png b/static/icons/060029DC.png deleted file mode 100755 index 8387b815..00000000 Binary files a/static/icons/060029DC.png and /dev/null differ diff --git a/static/icons/060029DD.png b/static/icons/060029DD.png deleted file mode 100755 index 6ff1a878..00000000 Binary files a/static/icons/060029DD.png and /dev/null differ diff --git a/static/icons/060029DE.png b/static/icons/060029DE.png deleted file mode 100755 index 6b55ac89..00000000 Binary files a/static/icons/060029DE.png and /dev/null differ diff --git a/static/icons/060029DF.png b/static/icons/060029DF.png deleted file mode 100755 index 472096bb..00000000 Binary files a/static/icons/060029DF.png and /dev/null differ diff --git a/static/icons/060029E0.png b/static/icons/060029E0.png deleted file mode 100755 index bf28a720..00000000 Binary files a/static/icons/060029E0.png and /dev/null differ diff --git a/static/icons/060029E1.png b/static/icons/060029E1.png deleted file mode 100755 index fd60ae87..00000000 Binary files a/static/icons/060029E1.png and /dev/null differ diff --git a/static/icons/060029E2.png b/static/icons/060029E2.png deleted file mode 100755 index d95b0947..00000000 Binary files a/static/icons/060029E2.png and /dev/null differ diff --git a/static/icons/060029E3.png b/static/icons/060029E3.png deleted file mode 100755 index e14935a6..00000000 Binary files a/static/icons/060029E3.png and /dev/null differ diff --git a/static/icons/060029E4.png b/static/icons/060029E4.png deleted file mode 100755 index 09a3d8c5..00000000 Binary files a/static/icons/060029E4.png and /dev/null differ diff --git a/static/icons/060029E5.png b/static/icons/060029E5.png deleted file mode 100755 index 9ca8914c..00000000 Binary files a/static/icons/060029E5.png and /dev/null differ diff --git a/static/icons/060029E6.png b/static/icons/060029E6.png deleted file mode 100755 index 04288c66..00000000 Binary files a/static/icons/060029E6.png and /dev/null differ diff --git a/static/icons/060029E7.png b/static/icons/060029E7.png deleted file mode 100755 index 23e20ae3..00000000 Binary files a/static/icons/060029E7.png and /dev/null differ diff --git a/static/icons/060029E8.png b/static/icons/060029E8.png deleted file mode 100755 index d3f69b1b..00000000 Binary files a/static/icons/060029E8.png and /dev/null differ diff --git a/static/icons/060029E9.png b/static/icons/060029E9.png deleted file mode 100755 index 0c9fbb23..00000000 Binary files a/static/icons/060029E9.png and /dev/null differ diff --git a/static/icons/060029EA.png b/static/icons/060029EA.png deleted file mode 100755 index d4481c24..00000000 Binary files a/static/icons/060029EA.png and /dev/null differ diff --git a/static/icons/060029EB.png b/static/icons/060029EB.png deleted file mode 100755 index b78d3107..00000000 Binary files a/static/icons/060029EB.png and /dev/null differ diff --git a/static/icons/060029EC.png b/static/icons/060029EC.png deleted file mode 100755 index 6ed87893..00000000 Binary files a/static/icons/060029EC.png and /dev/null differ diff --git a/static/icons/060029ED.png b/static/icons/060029ED.png deleted file mode 100755 index 2df9426e..00000000 Binary files a/static/icons/060029ED.png and /dev/null differ diff --git a/static/icons/060029EE.png b/static/icons/060029EE.png deleted file mode 100755 index edce3ca7..00000000 Binary files a/static/icons/060029EE.png and /dev/null differ diff --git a/static/icons/060029EF.png b/static/icons/060029EF.png deleted file mode 100755 index 90937b07..00000000 Binary files a/static/icons/060029EF.png and /dev/null differ diff --git a/static/icons/060029F0.png b/static/icons/060029F0.png deleted file mode 100755 index d3f6da69..00000000 Binary files a/static/icons/060029F0.png and /dev/null differ diff --git a/static/icons/060029F1.png b/static/icons/060029F1.png deleted file mode 100755 index 9af55e53..00000000 Binary files a/static/icons/060029F1.png and /dev/null differ diff --git a/static/icons/060029F2.png b/static/icons/060029F2.png deleted file mode 100755 index ace6c152..00000000 Binary files a/static/icons/060029F2.png and /dev/null differ diff --git a/static/icons/060029F3.png b/static/icons/060029F3.png deleted file mode 100755 index edf51fba..00000000 Binary files a/static/icons/060029F3.png and /dev/null differ diff --git a/static/icons/060029F4.png b/static/icons/060029F4.png deleted file mode 100755 index e74970fb..00000000 Binary files a/static/icons/060029F4.png and /dev/null differ diff --git a/static/icons/060029F5.png b/static/icons/060029F5.png deleted file mode 100755 index 7a55aaee..00000000 Binary files a/static/icons/060029F5.png and /dev/null differ diff --git a/static/icons/060029F6.png b/static/icons/060029F6.png deleted file mode 100755 index b667f0e3..00000000 Binary files a/static/icons/060029F6.png and /dev/null differ diff --git a/static/icons/060029F7.png b/static/icons/060029F7.png deleted file mode 100755 index 591fb945..00000000 Binary files a/static/icons/060029F7.png and /dev/null differ diff --git a/static/icons/060029F8.png b/static/icons/060029F8.png deleted file mode 100755 index 9abfb688..00000000 Binary files a/static/icons/060029F8.png and /dev/null differ diff --git a/static/icons/060029F9.png b/static/icons/060029F9.png deleted file mode 100755 index e5b3c0a4..00000000 Binary files a/static/icons/060029F9.png and /dev/null differ diff --git a/static/icons/060029FA.png b/static/icons/060029FA.png deleted file mode 100755 index cf8893ff..00000000 Binary files a/static/icons/060029FA.png and /dev/null differ diff --git a/static/icons/060029FB.png b/static/icons/060029FB.png deleted file mode 100755 index 73febf51..00000000 Binary files a/static/icons/060029FB.png and /dev/null differ diff --git a/static/icons/060029FC.png b/static/icons/060029FC.png deleted file mode 100755 index 688c6368..00000000 Binary files a/static/icons/060029FC.png and /dev/null differ diff --git a/static/icons/060029FD.png b/static/icons/060029FD.png deleted file mode 100755 index bde5d20f..00000000 Binary files a/static/icons/060029FD.png and /dev/null differ diff --git a/static/icons/060029FE.png b/static/icons/060029FE.png deleted file mode 100755 index 0d251438..00000000 Binary files a/static/icons/060029FE.png and /dev/null differ diff --git a/static/icons/060029FF.png b/static/icons/060029FF.png deleted file mode 100755 index a6eab901..00000000 Binary files a/static/icons/060029FF.png and /dev/null differ diff --git a/static/icons/06002A00.png b/static/icons/06002A00.png deleted file mode 100755 index 0f7f9933..00000000 Binary files a/static/icons/06002A00.png and /dev/null differ diff --git a/static/icons/06002A01.png b/static/icons/06002A01.png deleted file mode 100755 index 8f6374e1..00000000 Binary files a/static/icons/06002A01.png and /dev/null differ diff --git a/static/icons/06002A02.png b/static/icons/06002A02.png deleted file mode 100755 index bef8c9aa..00000000 Binary files a/static/icons/06002A02.png and /dev/null differ diff --git a/static/icons/06002A03.png b/static/icons/06002A03.png deleted file mode 100755 index 51e3b383..00000000 Binary files a/static/icons/06002A03.png and /dev/null differ diff --git a/static/icons/06002A04.png b/static/icons/06002A04.png deleted file mode 100755 index bf1b6f3f..00000000 Binary files a/static/icons/06002A04.png and /dev/null differ diff --git a/static/icons/06002A05.png b/static/icons/06002A05.png deleted file mode 100755 index fca002e9..00000000 Binary files a/static/icons/06002A05.png and /dev/null differ diff --git a/static/icons/06002A06.png b/static/icons/06002A06.png deleted file mode 100755 index 473b85cc..00000000 Binary files a/static/icons/06002A06.png and /dev/null differ diff --git a/static/icons/06002A07.png b/static/icons/06002A07.png deleted file mode 100755 index 8721f822..00000000 Binary files a/static/icons/06002A07.png and /dev/null differ diff --git a/static/icons/06002A08.png b/static/icons/06002A08.png deleted file mode 100755 index 74688a31..00000000 Binary files a/static/icons/06002A08.png and /dev/null differ diff --git a/static/icons/06002A09.png b/static/icons/06002A09.png deleted file mode 100755 index d5afe5a1..00000000 Binary files a/static/icons/06002A09.png and /dev/null differ diff --git a/static/icons/06002A0A.png b/static/icons/06002A0A.png deleted file mode 100755 index 05ac153e..00000000 Binary files a/static/icons/06002A0A.png and /dev/null differ diff --git a/static/icons/06002A0B.png b/static/icons/06002A0B.png deleted file mode 100755 index efc9e28b..00000000 Binary files a/static/icons/06002A0B.png and /dev/null differ diff --git a/static/icons/06002A0C.png b/static/icons/06002A0C.png deleted file mode 100755 index b07304d3..00000000 Binary files a/static/icons/06002A0C.png and /dev/null differ diff --git a/static/icons/06002A0D.png b/static/icons/06002A0D.png deleted file mode 100755 index d9850ffd..00000000 Binary files a/static/icons/06002A0D.png and /dev/null differ diff --git a/static/icons/06002A0E.png b/static/icons/06002A0E.png deleted file mode 100755 index c191656d..00000000 Binary files a/static/icons/06002A0E.png and /dev/null differ diff --git a/static/icons/06002A0F.png b/static/icons/06002A0F.png deleted file mode 100755 index 5516657c..00000000 Binary files a/static/icons/06002A0F.png and /dev/null differ diff --git a/static/icons/06002A10.png b/static/icons/06002A10.png deleted file mode 100755 index 7366a6b8..00000000 Binary files a/static/icons/06002A10.png and /dev/null differ diff --git a/static/icons/06002A11.png b/static/icons/06002A11.png deleted file mode 100755 index 39eb098e..00000000 Binary files a/static/icons/06002A11.png and /dev/null differ diff --git a/static/icons/06002A12.png b/static/icons/06002A12.png deleted file mode 100755 index 0d39701e..00000000 Binary files a/static/icons/06002A12.png and /dev/null differ diff --git a/static/icons/06002A13.png b/static/icons/06002A13.png deleted file mode 100755 index 664d6030..00000000 Binary files a/static/icons/06002A13.png and /dev/null differ diff --git a/static/icons/06002A14.png b/static/icons/06002A14.png deleted file mode 100755 index 3645a0c0..00000000 Binary files a/static/icons/06002A14.png and /dev/null differ diff --git a/static/icons/06002A15.png b/static/icons/06002A15.png deleted file mode 100755 index aa6c3500..00000000 Binary files a/static/icons/06002A15.png and /dev/null differ diff --git a/static/icons/06002A16.png b/static/icons/06002A16.png deleted file mode 100755 index c88cc60c..00000000 Binary files a/static/icons/06002A16.png and /dev/null differ diff --git a/static/icons/06002A17.png b/static/icons/06002A17.png deleted file mode 100755 index 5588b33b..00000000 Binary files a/static/icons/06002A17.png and /dev/null differ diff --git a/static/icons/06002A18.png b/static/icons/06002A18.png deleted file mode 100755 index b8ca6c46..00000000 Binary files a/static/icons/06002A18.png and /dev/null differ diff --git a/static/icons/06002A19.png b/static/icons/06002A19.png deleted file mode 100755 index 59e6efae..00000000 Binary files a/static/icons/06002A19.png and /dev/null differ diff --git a/static/icons/06002A1A.png b/static/icons/06002A1A.png deleted file mode 100755 index 3540ac8d..00000000 Binary files a/static/icons/06002A1A.png and /dev/null differ diff --git a/static/icons/06002A1B.png b/static/icons/06002A1B.png deleted file mode 100755 index 24492bfa..00000000 Binary files a/static/icons/06002A1B.png and /dev/null differ diff --git a/static/icons/06002A1C.png b/static/icons/06002A1C.png deleted file mode 100755 index 77ab48d5..00000000 Binary files a/static/icons/06002A1C.png and /dev/null differ diff --git a/static/icons/06002A1D.png b/static/icons/06002A1D.png deleted file mode 100755 index e980694c..00000000 Binary files a/static/icons/06002A1D.png and /dev/null differ diff --git a/static/icons/06002A1E.png b/static/icons/06002A1E.png deleted file mode 100755 index d5777788..00000000 Binary files a/static/icons/06002A1E.png and /dev/null differ diff --git a/static/icons/06002A1F.png b/static/icons/06002A1F.png deleted file mode 100755 index 01291e98..00000000 Binary files a/static/icons/06002A1F.png and /dev/null differ diff --git a/static/icons/06002A21.png b/static/icons/06002A21.png deleted file mode 100755 index 2fc4d7b0..00000000 Binary files a/static/icons/06002A21.png and /dev/null differ diff --git a/static/icons/06002A24.png b/static/icons/06002A24.png deleted file mode 100755 index a9fd3e49..00000000 Binary files a/static/icons/06002A24.png and /dev/null differ diff --git a/static/icons/06002A25.png b/static/icons/06002A25.png deleted file mode 100755 index 91d19e9b..00000000 Binary files a/static/icons/06002A25.png and /dev/null differ diff --git a/static/icons/06002A26.png b/static/icons/06002A26.png deleted file mode 100755 index e4f5c39d..00000000 Binary files a/static/icons/06002A26.png and /dev/null differ diff --git a/static/icons/06002A27.png b/static/icons/06002A27.png deleted file mode 100755 index 4ae6cb6e..00000000 Binary files a/static/icons/06002A27.png and /dev/null differ diff --git a/static/icons/06002A29.png b/static/icons/06002A29.png deleted file mode 100755 index d8c87a1f..00000000 Binary files a/static/icons/06002A29.png and /dev/null differ diff --git a/static/icons/06002A2A.png b/static/icons/06002A2A.png deleted file mode 100755 index 1d618d7c..00000000 Binary files a/static/icons/06002A2A.png and /dev/null differ diff --git a/static/icons/06002A2B.png b/static/icons/06002A2B.png deleted file mode 100755 index 86374490..00000000 Binary files a/static/icons/06002A2B.png and /dev/null differ diff --git a/static/icons/06002A2C.png b/static/icons/06002A2C.png deleted file mode 100755 index 8df5adcb..00000000 Binary files a/static/icons/06002A2C.png and /dev/null differ diff --git a/static/icons/06002A2E.png b/static/icons/06002A2E.png deleted file mode 100755 index 4c4113fe..00000000 Binary files a/static/icons/06002A2E.png and /dev/null differ diff --git a/static/icons/06002A2F.png b/static/icons/06002A2F.png deleted file mode 100755 index d78b66e4..00000000 Binary files a/static/icons/06002A2F.png and /dev/null differ diff --git a/static/icons/06002A30.png b/static/icons/06002A30.png deleted file mode 100755 index be352997..00000000 Binary files a/static/icons/06002A30.png and /dev/null differ diff --git a/static/icons/06002A31.png b/static/icons/06002A31.png deleted file mode 100755 index 675b8c38..00000000 Binary files a/static/icons/06002A31.png and /dev/null differ diff --git a/static/icons/06002A32.png b/static/icons/06002A32.png deleted file mode 100755 index ed4c8f4b..00000000 Binary files a/static/icons/06002A32.png and /dev/null differ diff --git a/static/icons/06002A33.png b/static/icons/06002A33.png deleted file mode 100755 index d4d23e6c..00000000 Binary files a/static/icons/06002A33.png and /dev/null differ diff --git a/static/icons/06002A34.png b/static/icons/06002A34.png deleted file mode 100755 index c2ccb175..00000000 Binary files a/static/icons/06002A34.png and /dev/null differ diff --git a/static/icons/06002A35.png b/static/icons/06002A35.png deleted file mode 100755 index bbf26b6c..00000000 Binary files a/static/icons/06002A35.png and /dev/null differ diff --git a/static/icons/06002A36.png b/static/icons/06002A36.png deleted file mode 100755 index b4e09989..00000000 Binary files a/static/icons/06002A36.png and /dev/null differ diff --git a/static/icons/06002A37.png b/static/icons/06002A37.png deleted file mode 100755 index be504c45..00000000 Binary files a/static/icons/06002A37.png and /dev/null differ diff --git a/static/icons/06002A38.png b/static/icons/06002A38.png deleted file mode 100755 index 63716a26..00000000 Binary files a/static/icons/06002A38.png and /dev/null differ diff --git a/static/icons/06002A39.png b/static/icons/06002A39.png deleted file mode 100755 index 8b3b0a12..00000000 Binary files a/static/icons/06002A39.png and /dev/null differ diff --git a/static/icons/06002A3B.png b/static/icons/06002A3B.png deleted file mode 100755 index 3c7b7158..00000000 Binary files a/static/icons/06002A3B.png and /dev/null differ diff --git a/static/icons/06002A3C.png b/static/icons/06002A3C.png deleted file mode 100755 index 2763c43f..00000000 Binary files a/static/icons/06002A3C.png and /dev/null differ diff --git a/static/icons/06002A3D.png b/static/icons/06002A3D.png deleted file mode 100755 index 146a1f2a..00000000 Binary files a/static/icons/06002A3D.png and /dev/null differ diff --git a/static/icons/06002A3E.png b/static/icons/06002A3E.png deleted file mode 100755 index 35655171..00000000 Binary files a/static/icons/06002A3E.png and /dev/null differ diff --git a/static/icons/06002A3F.png b/static/icons/06002A3F.png deleted file mode 100755 index 7a678d6a..00000000 Binary files a/static/icons/06002A3F.png and /dev/null differ diff --git a/static/icons/06002A40.png b/static/icons/06002A40.png deleted file mode 100755 index d69c734e..00000000 Binary files a/static/icons/06002A40.png and /dev/null differ diff --git a/static/icons/06002A41.png b/static/icons/06002A41.png deleted file mode 100755 index 4fab2f59..00000000 Binary files a/static/icons/06002A41.png and /dev/null differ diff --git a/static/icons/06002A42.png b/static/icons/06002A42.png deleted file mode 100755 index d863ef1a..00000000 Binary files a/static/icons/06002A42.png and /dev/null differ diff --git a/static/icons/06002A43.png b/static/icons/06002A43.png deleted file mode 100755 index d4269e5f..00000000 Binary files a/static/icons/06002A43.png and /dev/null differ diff --git a/static/icons/06002A44.png b/static/icons/06002A44.png deleted file mode 100755 index 7ce03c71..00000000 Binary files a/static/icons/06002A44.png and /dev/null differ diff --git a/static/icons/06002A45.png b/static/icons/06002A45.png deleted file mode 100755 index 8f9df301..00000000 Binary files a/static/icons/06002A45.png and /dev/null differ diff --git a/static/icons/06002A46.png b/static/icons/06002A46.png deleted file mode 100755 index a9df8118..00000000 Binary files a/static/icons/06002A46.png and /dev/null differ diff --git a/static/icons/06002A47.png b/static/icons/06002A47.png deleted file mode 100755 index ab2172b3..00000000 Binary files a/static/icons/06002A47.png and /dev/null differ diff --git a/static/icons/06002A48.png b/static/icons/06002A48.png deleted file mode 100755 index f7588c55..00000000 Binary files a/static/icons/06002A48.png and /dev/null differ diff --git a/static/icons/06002A49.png b/static/icons/06002A49.png deleted file mode 100755 index ae61e249..00000000 Binary files a/static/icons/06002A49.png and /dev/null differ diff --git a/static/icons/06002A4A.png b/static/icons/06002A4A.png deleted file mode 100755 index 185e92d8..00000000 Binary files a/static/icons/06002A4A.png and /dev/null differ diff --git a/static/icons/06002A4B.png b/static/icons/06002A4B.png deleted file mode 100755 index 479e2c14..00000000 Binary files a/static/icons/06002A4B.png and /dev/null differ diff --git a/static/icons/06002A4C.png b/static/icons/06002A4C.png deleted file mode 100755 index 75be9d9e..00000000 Binary files a/static/icons/06002A4C.png and /dev/null differ diff --git a/static/icons/06002A4D.png b/static/icons/06002A4D.png deleted file mode 100755 index ecef4e16..00000000 Binary files a/static/icons/06002A4D.png and /dev/null differ diff --git a/static/icons/06002A4E.png b/static/icons/06002A4E.png deleted file mode 100755 index 6949f729..00000000 Binary files a/static/icons/06002A4E.png and /dev/null differ diff --git a/static/icons/06002A4F.png b/static/icons/06002A4F.png deleted file mode 100755 index b330cbed..00000000 Binary files a/static/icons/06002A4F.png and /dev/null differ diff --git a/static/icons/06002A50.png b/static/icons/06002A50.png deleted file mode 100755 index 5c7ecceb..00000000 Binary files a/static/icons/06002A50.png and /dev/null differ diff --git a/static/icons/06002A51.png b/static/icons/06002A51.png deleted file mode 100755 index 9b685100..00000000 Binary files a/static/icons/06002A51.png and /dev/null differ diff --git a/static/icons/06002A52.png b/static/icons/06002A52.png deleted file mode 100755 index df99ead5..00000000 Binary files a/static/icons/06002A52.png and /dev/null differ diff --git a/static/icons/06002A53.png b/static/icons/06002A53.png deleted file mode 100755 index e5df8111..00000000 Binary files a/static/icons/06002A53.png and /dev/null differ diff --git a/static/icons/06002A54.png b/static/icons/06002A54.png deleted file mode 100755 index e568a7bd..00000000 Binary files a/static/icons/06002A54.png and /dev/null differ diff --git a/static/icons/06002A55.png b/static/icons/06002A55.png deleted file mode 100755 index 05f9c950..00000000 Binary files a/static/icons/06002A55.png and /dev/null differ diff --git a/static/icons/06002A56.png b/static/icons/06002A56.png deleted file mode 100755 index b10356af..00000000 Binary files a/static/icons/06002A56.png and /dev/null differ diff --git a/static/icons/06002A57.png b/static/icons/06002A57.png deleted file mode 100755 index a4f3a6fc..00000000 Binary files a/static/icons/06002A57.png and /dev/null differ diff --git a/static/icons/06002A58.png b/static/icons/06002A58.png deleted file mode 100755 index bffbea21..00000000 Binary files a/static/icons/06002A58.png and /dev/null differ diff --git a/static/icons/06002A59.png b/static/icons/06002A59.png deleted file mode 100755 index 60a8fe39..00000000 Binary files a/static/icons/06002A59.png and /dev/null differ diff --git a/static/icons/06002A5A.png b/static/icons/06002A5A.png deleted file mode 100755 index cba52377..00000000 Binary files a/static/icons/06002A5A.png and /dev/null differ diff --git a/static/icons/06002A5B.png b/static/icons/06002A5B.png deleted file mode 100755 index d57cfc72..00000000 Binary files a/static/icons/06002A5B.png and /dev/null differ diff --git a/static/icons/06002A5C.png b/static/icons/06002A5C.png deleted file mode 100755 index 1640a85d..00000000 Binary files a/static/icons/06002A5C.png and /dev/null differ diff --git a/static/icons/06002A5D.png b/static/icons/06002A5D.png deleted file mode 100755 index 9b1532e3..00000000 Binary files a/static/icons/06002A5D.png and /dev/null differ diff --git a/static/icons/06002A5E.png b/static/icons/06002A5E.png deleted file mode 100755 index 7c8462c6..00000000 Binary files a/static/icons/06002A5E.png and /dev/null differ diff --git a/static/icons/06002A5F.png b/static/icons/06002A5F.png deleted file mode 100755 index ce8914a4..00000000 Binary files a/static/icons/06002A5F.png and /dev/null differ diff --git a/static/icons/06002A60.png b/static/icons/06002A60.png deleted file mode 100755 index 5cb130c6..00000000 Binary files a/static/icons/06002A60.png and /dev/null differ diff --git a/static/icons/06002A61.png b/static/icons/06002A61.png deleted file mode 100755 index 6b1adb5f..00000000 Binary files a/static/icons/06002A61.png and /dev/null differ diff --git a/static/icons/06002A62.png b/static/icons/06002A62.png deleted file mode 100755 index f2afc2cd..00000000 Binary files a/static/icons/06002A62.png and /dev/null differ diff --git a/static/icons/06002A63.png b/static/icons/06002A63.png deleted file mode 100755 index 2e0c54a4..00000000 Binary files a/static/icons/06002A63.png and /dev/null differ diff --git a/static/icons/06002A64.png b/static/icons/06002A64.png deleted file mode 100755 index 24a6bfc9..00000000 Binary files a/static/icons/06002A64.png and /dev/null differ diff --git a/static/icons/06002A65.png b/static/icons/06002A65.png deleted file mode 100755 index 62fe3d35..00000000 Binary files a/static/icons/06002A65.png and /dev/null differ diff --git a/static/icons/06002A66.png b/static/icons/06002A66.png deleted file mode 100755 index 1667e3df..00000000 Binary files a/static/icons/06002A66.png and /dev/null differ diff --git a/static/icons/06002A67.png b/static/icons/06002A67.png deleted file mode 100755 index 894bae7d..00000000 Binary files a/static/icons/06002A67.png and /dev/null differ diff --git a/static/icons/06002A68.png b/static/icons/06002A68.png deleted file mode 100755 index 757b81c7..00000000 Binary files a/static/icons/06002A68.png and /dev/null differ diff --git a/static/icons/06002A69.png b/static/icons/06002A69.png deleted file mode 100755 index c0425366..00000000 Binary files a/static/icons/06002A69.png and /dev/null differ diff --git a/static/icons/06002A6A.png b/static/icons/06002A6A.png deleted file mode 100755 index 471152bf..00000000 Binary files a/static/icons/06002A6A.png and /dev/null differ diff --git a/static/icons/06002A6B.png b/static/icons/06002A6B.png deleted file mode 100755 index 1eba458e..00000000 Binary files a/static/icons/06002A6B.png and /dev/null differ diff --git a/static/icons/06002A6C.png b/static/icons/06002A6C.png deleted file mode 100755 index 2d5752df..00000000 Binary files a/static/icons/06002A6C.png and /dev/null differ diff --git a/static/icons/06002A6D.png b/static/icons/06002A6D.png deleted file mode 100755 index 0f054244..00000000 Binary files a/static/icons/06002A6D.png and /dev/null differ diff --git a/static/icons/06002A6E.png b/static/icons/06002A6E.png deleted file mode 100755 index 4860deec..00000000 Binary files a/static/icons/06002A6E.png and /dev/null differ diff --git a/static/icons/06002A6F.png b/static/icons/06002A6F.png deleted file mode 100755 index 97faf38a..00000000 Binary files a/static/icons/06002A6F.png and /dev/null differ diff --git a/static/icons/06002A70.png b/static/icons/06002A70.png deleted file mode 100755 index f9fb1f3e..00000000 Binary files a/static/icons/06002A70.png and /dev/null differ diff --git a/static/icons/06002A71.png b/static/icons/06002A71.png deleted file mode 100755 index 044f881d..00000000 Binary files a/static/icons/06002A71.png and /dev/null differ diff --git a/static/icons/06002A72.png b/static/icons/06002A72.png deleted file mode 100755 index 34a29c93..00000000 Binary files a/static/icons/06002A72.png and /dev/null differ diff --git a/static/icons/06002A73.png b/static/icons/06002A73.png deleted file mode 100755 index 9e4f527f..00000000 Binary files a/static/icons/06002A73.png and /dev/null differ diff --git a/static/icons/06002A74.png b/static/icons/06002A74.png deleted file mode 100755 index 10dbd1b8..00000000 Binary files a/static/icons/06002A74.png and /dev/null differ diff --git a/static/icons/06002A75.png b/static/icons/06002A75.png deleted file mode 100755 index 3e63c2ac..00000000 Binary files a/static/icons/06002A75.png and /dev/null differ diff --git a/static/icons/06002A76.png b/static/icons/06002A76.png deleted file mode 100755 index 37c51e0e..00000000 Binary files a/static/icons/06002A76.png and /dev/null differ diff --git a/static/icons/06002A77.png b/static/icons/06002A77.png deleted file mode 100755 index 1744ce36..00000000 Binary files a/static/icons/06002A77.png and /dev/null differ diff --git a/static/icons/06002A78.png b/static/icons/06002A78.png deleted file mode 100755 index 147c150a..00000000 Binary files a/static/icons/06002A78.png and /dev/null differ diff --git a/static/icons/06002A79.png b/static/icons/06002A79.png deleted file mode 100755 index b2abd0de..00000000 Binary files a/static/icons/06002A79.png and /dev/null differ diff --git a/static/icons/06002A7A.png b/static/icons/06002A7A.png deleted file mode 100755 index 03b255c4..00000000 Binary files a/static/icons/06002A7A.png and /dev/null differ diff --git a/static/icons/06002A7B.png b/static/icons/06002A7B.png deleted file mode 100755 index a0c5be96..00000000 Binary files a/static/icons/06002A7B.png and /dev/null differ diff --git a/static/icons/06002A7C.png b/static/icons/06002A7C.png deleted file mode 100755 index a0ccef05..00000000 Binary files a/static/icons/06002A7C.png and /dev/null differ diff --git a/static/icons/06002A7D.png b/static/icons/06002A7D.png deleted file mode 100755 index 97fa0de4..00000000 Binary files a/static/icons/06002A7D.png and /dev/null differ diff --git a/static/icons/06002A7E.png b/static/icons/06002A7E.png deleted file mode 100755 index 37891d64..00000000 Binary files a/static/icons/06002A7E.png and /dev/null differ diff --git a/static/icons/06002A7F.png b/static/icons/06002A7F.png deleted file mode 100755 index 734f2f54..00000000 Binary files a/static/icons/06002A7F.png and /dev/null differ diff --git a/static/icons/06002A80.png b/static/icons/06002A80.png deleted file mode 100755 index c9fadef9..00000000 Binary files a/static/icons/06002A80.png and /dev/null differ diff --git a/static/icons/06002A81.png b/static/icons/06002A81.png deleted file mode 100755 index 78004144..00000000 Binary files a/static/icons/06002A81.png and /dev/null differ diff --git a/static/icons/06002A82.png b/static/icons/06002A82.png deleted file mode 100755 index ed2636a8..00000000 Binary files a/static/icons/06002A82.png and /dev/null differ diff --git a/static/icons/06002A83.png b/static/icons/06002A83.png deleted file mode 100755 index cc7de1fa..00000000 Binary files a/static/icons/06002A83.png and /dev/null differ diff --git a/static/icons/06002A84.png b/static/icons/06002A84.png deleted file mode 100755 index a0b525e5..00000000 Binary files a/static/icons/06002A84.png and /dev/null differ diff --git a/static/icons/06002A85.png b/static/icons/06002A85.png deleted file mode 100755 index ce805197..00000000 Binary files a/static/icons/06002A85.png and /dev/null differ diff --git a/static/icons/06002A86.png b/static/icons/06002A86.png deleted file mode 100755 index 89ae5d83..00000000 Binary files a/static/icons/06002A86.png and /dev/null differ diff --git a/static/icons/06002A87.png b/static/icons/06002A87.png deleted file mode 100755 index 083199a4..00000000 Binary files a/static/icons/06002A87.png and /dev/null differ diff --git a/static/icons/06002A88.png b/static/icons/06002A88.png deleted file mode 100755 index 78fb4328..00000000 Binary files a/static/icons/06002A88.png and /dev/null differ diff --git a/static/icons/06002A89.png b/static/icons/06002A89.png deleted file mode 100755 index 61b1f573..00000000 Binary files a/static/icons/06002A89.png and /dev/null differ diff --git a/static/icons/06002A8A.png b/static/icons/06002A8A.png deleted file mode 100755 index 008d3716..00000000 Binary files a/static/icons/06002A8A.png and /dev/null differ diff --git a/static/icons/06002A8B.png b/static/icons/06002A8B.png deleted file mode 100755 index ee1220f3..00000000 Binary files a/static/icons/06002A8B.png and /dev/null differ diff --git a/static/icons/06002A8C.png b/static/icons/06002A8C.png deleted file mode 100755 index e4b31814..00000000 Binary files a/static/icons/06002A8C.png and /dev/null differ diff --git a/static/icons/06002A8D.png b/static/icons/06002A8D.png deleted file mode 100755 index 04567b96..00000000 Binary files a/static/icons/06002A8D.png and /dev/null differ diff --git a/static/icons/06002A8E.png b/static/icons/06002A8E.png deleted file mode 100755 index 5b6e4706..00000000 Binary files a/static/icons/06002A8E.png and /dev/null differ diff --git a/static/icons/06002A8F.png b/static/icons/06002A8F.png deleted file mode 100755 index 671e1d21..00000000 Binary files a/static/icons/06002A8F.png and /dev/null differ diff --git a/static/icons/06002A90.png b/static/icons/06002A90.png deleted file mode 100755 index 3d284efd..00000000 Binary files a/static/icons/06002A90.png and /dev/null differ diff --git a/static/icons/06002A91.png b/static/icons/06002A91.png deleted file mode 100755 index 05e26b81..00000000 Binary files a/static/icons/06002A91.png and /dev/null differ diff --git a/static/icons/06002A92.png b/static/icons/06002A92.png deleted file mode 100755 index 9da5ca79..00000000 Binary files a/static/icons/06002A92.png and /dev/null differ diff --git a/static/icons/06002A93.png b/static/icons/06002A93.png deleted file mode 100755 index 8ddd6946..00000000 Binary files a/static/icons/06002A93.png and /dev/null differ diff --git a/static/icons/06002A94.png b/static/icons/06002A94.png deleted file mode 100755 index 49d5ef4a..00000000 Binary files a/static/icons/06002A94.png and /dev/null differ diff --git a/static/icons/06002A95.png b/static/icons/06002A95.png deleted file mode 100755 index 3c62d3ba..00000000 Binary files a/static/icons/06002A95.png and /dev/null differ diff --git a/static/icons/06002A96.png b/static/icons/06002A96.png deleted file mode 100755 index 43ffcc89..00000000 Binary files a/static/icons/06002A96.png and /dev/null differ diff --git a/static/icons/06002A97.png b/static/icons/06002A97.png deleted file mode 100755 index fc401dcd..00000000 Binary files a/static/icons/06002A97.png and /dev/null differ diff --git a/static/icons/06002A98.png b/static/icons/06002A98.png deleted file mode 100755 index ec613a8f..00000000 Binary files a/static/icons/06002A98.png and /dev/null differ diff --git a/static/icons/06002A99.png b/static/icons/06002A99.png deleted file mode 100755 index 1308ec4c..00000000 Binary files a/static/icons/06002A99.png and /dev/null differ diff --git a/static/icons/06002A9A.png b/static/icons/06002A9A.png deleted file mode 100755 index 19e41abd..00000000 Binary files a/static/icons/06002A9A.png and /dev/null differ diff --git a/static/icons/06002A9B.png b/static/icons/06002A9B.png deleted file mode 100755 index 74b5dc5d..00000000 Binary files a/static/icons/06002A9B.png and /dev/null differ diff --git a/static/icons/06002A9C.png b/static/icons/06002A9C.png deleted file mode 100755 index 25b9b565..00000000 Binary files a/static/icons/06002A9C.png and /dev/null differ diff --git a/static/icons/06002A9D.png b/static/icons/06002A9D.png deleted file mode 100755 index cfffb77f..00000000 Binary files a/static/icons/06002A9D.png and /dev/null differ diff --git a/static/icons/06002A9E.png b/static/icons/06002A9E.png deleted file mode 100755 index a75e4bd0..00000000 Binary files a/static/icons/06002A9E.png and /dev/null differ diff --git a/static/icons/06002A9F.png b/static/icons/06002A9F.png deleted file mode 100755 index dbd0913c..00000000 Binary files a/static/icons/06002A9F.png and /dev/null differ diff --git a/static/icons/06002AA0.png b/static/icons/06002AA0.png deleted file mode 100755 index 079e0f4e..00000000 Binary files a/static/icons/06002AA0.png and /dev/null differ diff --git a/static/icons/06002AA1.png b/static/icons/06002AA1.png deleted file mode 100755 index 085346f7..00000000 Binary files a/static/icons/06002AA1.png and /dev/null differ diff --git a/static/icons/06002AA2.png b/static/icons/06002AA2.png deleted file mode 100755 index 145e1163..00000000 Binary files a/static/icons/06002AA2.png and /dev/null differ diff --git a/static/icons/06002AA3.png b/static/icons/06002AA3.png deleted file mode 100755 index 93724f5a..00000000 Binary files a/static/icons/06002AA3.png and /dev/null differ diff --git a/static/icons/06002AA4.png b/static/icons/06002AA4.png deleted file mode 100755 index 1ccec40e..00000000 Binary files a/static/icons/06002AA4.png and /dev/null differ diff --git a/static/icons/06002AA5.png b/static/icons/06002AA5.png deleted file mode 100755 index cd294ba5..00000000 Binary files a/static/icons/06002AA5.png and /dev/null differ diff --git a/static/icons/06002AA6.png b/static/icons/06002AA6.png deleted file mode 100755 index a4d84d09..00000000 Binary files a/static/icons/06002AA6.png and /dev/null differ diff --git a/static/icons/06002AA7.png b/static/icons/06002AA7.png deleted file mode 100755 index 01b90338..00000000 Binary files a/static/icons/06002AA7.png and /dev/null differ diff --git a/static/icons/06002AA8.png b/static/icons/06002AA8.png deleted file mode 100755 index 7a750101..00000000 Binary files a/static/icons/06002AA8.png and /dev/null differ diff --git a/static/icons/06002AA9.png b/static/icons/06002AA9.png deleted file mode 100755 index 4185cdd1..00000000 Binary files a/static/icons/06002AA9.png and /dev/null differ diff --git a/static/icons/06002AAA.png b/static/icons/06002AAA.png deleted file mode 100755 index 8395afa5..00000000 Binary files a/static/icons/06002AAA.png and /dev/null differ diff --git a/static/icons/06002AAB.png b/static/icons/06002AAB.png deleted file mode 100755 index b6131c3d..00000000 Binary files a/static/icons/06002AAB.png and /dev/null differ diff --git a/static/icons/06002AAC.png b/static/icons/06002AAC.png deleted file mode 100755 index 3b9eb415..00000000 Binary files a/static/icons/06002AAC.png and /dev/null differ diff --git a/static/icons/06002AAD.png b/static/icons/06002AAD.png deleted file mode 100755 index 296d6302..00000000 Binary files a/static/icons/06002AAD.png and /dev/null differ diff --git a/static/icons/06002AAE.png b/static/icons/06002AAE.png deleted file mode 100755 index 223d17cf..00000000 Binary files a/static/icons/06002AAE.png and /dev/null differ diff --git a/static/icons/06002AAF.png b/static/icons/06002AAF.png deleted file mode 100755 index 60e2e39d..00000000 Binary files a/static/icons/06002AAF.png and /dev/null differ diff --git a/static/icons/06002AB0.png b/static/icons/06002AB0.png deleted file mode 100755 index 9c3eaf80..00000000 Binary files a/static/icons/06002AB0.png and /dev/null differ diff --git a/static/icons/06002AB1.png b/static/icons/06002AB1.png deleted file mode 100755 index 59c28ba9..00000000 Binary files a/static/icons/06002AB1.png and /dev/null differ diff --git a/static/icons/06002AB2.png b/static/icons/06002AB2.png deleted file mode 100755 index 731aef08..00000000 Binary files a/static/icons/06002AB2.png and /dev/null differ diff --git a/static/icons/06002AB3.png b/static/icons/06002AB3.png deleted file mode 100755 index ffd9501f..00000000 Binary files a/static/icons/06002AB3.png and /dev/null differ diff --git a/static/icons/06002AB4.png b/static/icons/06002AB4.png deleted file mode 100755 index 0be4d8dd..00000000 Binary files a/static/icons/06002AB4.png and /dev/null differ diff --git a/static/icons/06002AB5.png b/static/icons/06002AB5.png deleted file mode 100755 index 23f3d2c2..00000000 Binary files a/static/icons/06002AB5.png and /dev/null differ diff --git a/static/icons/06002AB6.png b/static/icons/06002AB6.png deleted file mode 100755 index 55b38a21..00000000 Binary files a/static/icons/06002AB6.png and /dev/null differ diff --git a/static/icons/06002AB7.png b/static/icons/06002AB7.png deleted file mode 100755 index 747e4a60..00000000 Binary files a/static/icons/06002AB7.png and /dev/null differ diff --git a/static/icons/06002AB8.png b/static/icons/06002AB8.png deleted file mode 100755 index 226acc94..00000000 Binary files a/static/icons/06002AB8.png and /dev/null differ diff --git a/static/icons/06002AB9.png b/static/icons/06002AB9.png deleted file mode 100755 index cd77561b..00000000 Binary files a/static/icons/06002AB9.png and /dev/null differ diff --git a/static/icons/06002ABA.png b/static/icons/06002ABA.png deleted file mode 100755 index 9b32354a..00000000 Binary files a/static/icons/06002ABA.png and /dev/null differ diff --git a/static/icons/06002ABB.png b/static/icons/06002ABB.png deleted file mode 100755 index 1b871dc3..00000000 Binary files a/static/icons/06002ABB.png and /dev/null differ diff --git a/static/icons/06002ABC.png b/static/icons/06002ABC.png deleted file mode 100755 index d449b529..00000000 Binary files a/static/icons/06002ABC.png and /dev/null differ diff --git a/static/icons/06002ABE.png b/static/icons/06002ABE.png deleted file mode 100755 index b134c21d..00000000 Binary files a/static/icons/06002ABE.png and /dev/null differ diff --git a/static/icons/06002ABF.png b/static/icons/06002ABF.png deleted file mode 100755 index c275e558..00000000 Binary files a/static/icons/06002ABF.png and /dev/null differ diff --git a/static/icons/06002AC0.png b/static/icons/06002AC0.png deleted file mode 100755 index f35329cf..00000000 Binary files a/static/icons/06002AC0.png and /dev/null differ diff --git a/static/icons/06002AC1.png b/static/icons/06002AC1.png deleted file mode 100755 index ff4269c2..00000000 Binary files a/static/icons/06002AC1.png and /dev/null differ diff --git a/static/icons/06002AC2.png b/static/icons/06002AC2.png deleted file mode 100755 index 7d12f4d3..00000000 Binary files a/static/icons/06002AC2.png and /dev/null differ diff --git a/static/icons/06002AC3.png b/static/icons/06002AC3.png deleted file mode 100755 index bbce1436..00000000 Binary files a/static/icons/06002AC3.png and /dev/null differ diff --git a/static/icons/06002AC4.png b/static/icons/06002AC4.png deleted file mode 100755 index daba9129..00000000 Binary files a/static/icons/06002AC4.png and /dev/null differ diff --git a/static/icons/06002AC5.png b/static/icons/06002AC5.png deleted file mode 100755 index 4ff13b09..00000000 Binary files a/static/icons/06002AC5.png and /dev/null differ diff --git a/static/icons/06002AC6.png b/static/icons/06002AC6.png deleted file mode 100755 index a641f12f..00000000 Binary files a/static/icons/06002AC6.png and /dev/null differ diff --git a/static/icons/06002AC7.png b/static/icons/06002AC7.png deleted file mode 100755 index 05ca9fbf..00000000 Binary files a/static/icons/06002AC7.png and /dev/null differ diff --git a/static/icons/06002AC8.png b/static/icons/06002AC8.png deleted file mode 100755 index c345505f..00000000 Binary files a/static/icons/06002AC8.png and /dev/null differ diff --git a/static/icons/06002AC9.png b/static/icons/06002AC9.png deleted file mode 100755 index 06e9bc60..00000000 Binary files a/static/icons/06002AC9.png and /dev/null differ diff --git a/static/icons/06002ACA.png b/static/icons/06002ACA.png deleted file mode 100755 index 2f9d99f7..00000000 Binary files a/static/icons/06002ACA.png and /dev/null differ diff --git a/static/icons/06002ACB.png b/static/icons/06002ACB.png deleted file mode 100755 index 497f74a4..00000000 Binary files a/static/icons/06002ACB.png and /dev/null differ diff --git a/static/icons/06002ACC.png b/static/icons/06002ACC.png deleted file mode 100755 index 16738be6..00000000 Binary files a/static/icons/06002ACC.png and /dev/null differ diff --git a/static/icons/06002ACD.png b/static/icons/06002ACD.png deleted file mode 100755 index 210ac30f..00000000 Binary files a/static/icons/06002ACD.png and /dev/null differ diff --git a/static/icons/06002ACE.png b/static/icons/06002ACE.png deleted file mode 100755 index 373d6c1d..00000000 Binary files a/static/icons/06002ACE.png and /dev/null differ diff --git a/static/icons/06002ACF.png b/static/icons/06002ACF.png deleted file mode 100755 index 731bcb4a..00000000 Binary files a/static/icons/06002ACF.png and /dev/null differ diff --git a/static/icons/06002AD0.png b/static/icons/06002AD0.png deleted file mode 100755 index c1ffec89..00000000 Binary files a/static/icons/06002AD0.png and /dev/null differ diff --git a/static/icons/06002AD1.png b/static/icons/06002AD1.png deleted file mode 100755 index f75529fe..00000000 Binary files a/static/icons/06002AD1.png and /dev/null differ diff --git a/static/icons/06002AD2.png b/static/icons/06002AD2.png deleted file mode 100755 index 7d09312e..00000000 Binary files a/static/icons/06002AD2.png and /dev/null differ diff --git a/static/icons/06002AD3.png b/static/icons/06002AD3.png deleted file mode 100755 index f0dafcd5..00000000 Binary files a/static/icons/06002AD3.png and /dev/null differ diff --git a/static/icons/06002AD4.png b/static/icons/06002AD4.png deleted file mode 100755 index 288f0c9b..00000000 Binary files a/static/icons/06002AD4.png and /dev/null differ diff --git a/static/icons/06002AD5.png b/static/icons/06002AD5.png deleted file mode 100755 index 6c4b2331..00000000 Binary files a/static/icons/06002AD5.png and /dev/null differ diff --git a/static/icons/06002AD6.png b/static/icons/06002AD6.png deleted file mode 100755 index a3a35b04..00000000 Binary files a/static/icons/06002AD6.png and /dev/null differ diff --git a/static/icons/06002AD7.png b/static/icons/06002AD7.png deleted file mode 100755 index ba51b308..00000000 Binary files a/static/icons/06002AD7.png and /dev/null differ diff --git a/static/icons/06002AD8.png b/static/icons/06002AD8.png deleted file mode 100755 index 22fb13a7..00000000 Binary files a/static/icons/06002AD8.png and /dev/null differ diff --git a/static/icons/06002AD9.png b/static/icons/06002AD9.png deleted file mode 100755 index 49d62ea6..00000000 Binary files a/static/icons/06002AD9.png and /dev/null differ diff --git a/static/icons/06002ADA.png b/static/icons/06002ADA.png deleted file mode 100755 index f7c6b66d..00000000 Binary files a/static/icons/06002ADA.png and /dev/null differ diff --git a/static/icons/06002ADB.png b/static/icons/06002ADB.png deleted file mode 100755 index 568d0597..00000000 Binary files a/static/icons/06002ADB.png and /dev/null differ diff --git a/static/icons/06002ADC.png b/static/icons/06002ADC.png deleted file mode 100755 index dd862bed..00000000 Binary files a/static/icons/06002ADC.png and /dev/null differ diff --git a/static/icons/06002ADD.png b/static/icons/06002ADD.png deleted file mode 100755 index e48c41db..00000000 Binary files a/static/icons/06002ADD.png and /dev/null differ diff --git a/static/icons/06002ADE.png b/static/icons/06002ADE.png deleted file mode 100755 index f8b5251d..00000000 Binary files a/static/icons/06002ADE.png and /dev/null differ diff --git a/static/icons/06002ADF.png b/static/icons/06002ADF.png deleted file mode 100755 index 6876a51a..00000000 Binary files a/static/icons/06002ADF.png and /dev/null differ diff --git a/static/icons/06002AE0.png b/static/icons/06002AE0.png deleted file mode 100755 index 6e782d54..00000000 Binary files a/static/icons/06002AE0.png and /dev/null differ diff --git a/static/icons/06002AE1.png b/static/icons/06002AE1.png deleted file mode 100755 index d230544f..00000000 Binary files a/static/icons/06002AE1.png and /dev/null differ diff --git a/static/icons/06002AE2.png b/static/icons/06002AE2.png deleted file mode 100755 index b827673d..00000000 Binary files a/static/icons/06002AE2.png and /dev/null differ diff --git a/static/icons/06002AE3.png b/static/icons/06002AE3.png deleted file mode 100755 index 6c7852e2..00000000 Binary files a/static/icons/06002AE3.png and /dev/null differ diff --git a/static/icons/06002AE4.png b/static/icons/06002AE4.png deleted file mode 100755 index a784b1fe..00000000 Binary files a/static/icons/06002AE4.png and /dev/null differ diff --git a/static/icons/06002AE5.png b/static/icons/06002AE5.png deleted file mode 100755 index 802bfde3..00000000 Binary files a/static/icons/06002AE5.png and /dev/null differ diff --git a/static/icons/06002AE6.png b/static/icons/06002AE6.png deleted file mode 100755 index 03510577..00000000 Binary files a/static/icons/06002AE6.png and /dev/null differ diff --git a/static/icons/06002AE7.png b/static/icons/06002AE7.png deleted file mode 100755 index 298642f1..00000000 Binary files a/static/icons/06002AE7.png and /dev/null differ diff --git a/static/icons/06002AE8.png b/static/icons/06002AE8.png deleted file mode 100755 index cdb3b413..00000000 Binary files a/static/icons/06002AE8.png and /dev/null differ diff --git a/static/icons/06002AE9.png b/static/icons/06002AE9.png deleted file mode 100755 index 0933c666..00000000 Binary files a/static/icons/06002AE9.png and /dev/null differ diff --git a/static/icons/06002AEA.png b/static/icons/06002AEA.png deleted file mode 100755 index 3ffb12e3..00000000 Binary files a/static/icons/06002AEA.png and /dev/null differ diff --git a/static/icons/06002AEB.png b/static/icons/06002AEB.png deleted file mode 100755 index 4a255957..00000000 Binary files a/static/icons/06002AEB.png and /dev/null differ diff --git a/static/icons/06002AEC.png b/static/icons/06002AEC.png deleted file mode 100755 index a438b224..00000000 Binary files a/static/icons/06002AEC.png and /dev/null differ diff --git a/static/icons/06002AED.png b/static/icons/06002AED.png deleted file mode 100755 index a538d56b..00000000 Binary files a/static/icons/06002AED.png and /dev/null differ diff --git a/static/icons/06002AEE.png b/static/icons/06002AEE.png deleted file mode 100755 index 6e1977f7..00000000 Binary files a/static/icons/06002AEE.png and /dev/null differ diff --git a/static/icons/06002AEF.png b/static/icons/06002AEF.png deleted file mode 100755 index eaeb024d..00000000 Binary files a/static/icons/06002AEF.png and /dev/null differ diff --git a/static/icons/06002AF0.png b/static/icons/06002AF0.png deleted file mode 100755 index bcf0984e..00000000 Binary files a/static/icons/06002AF0.png and /dev/null differ diff --git a/static/icons/06002AF1.png b/static/icons/06002AF1.png deleted file mode 100755 index 19d95f2d..00000000 Binary files a/static/icons/06002AF1.png and /dev/null differ diff --git a/static/icons/06002AF2.png b/static/icons/06002AF2.png deleted file mode 100755 index 4cbaab10..00000000 Binary files a/static/icons/06002AF2.png and /dev/null differ diff --git a/static/icons/06002AF3.png b/static/icons/06002AF3.png deleted file mode 100755 index 1c41b86d..00000000 Binary files a/static/icons/06002AF3.png and /dev/null differ diff --git a/static/icons/06002AF4.png b/static/icons/06002AF4.png deleted file mode 100755 index b0b92414..00000000 Binary files a/static/icons/06002AF4.png and /dev/null differ diff --git a/static/icons/06002AF5.png b/static/icons/06002AF5.png deleted file mode 100755 index 110e6e44..00000000 Binary files a/static/icons/06002AF5.png and /dev/null differ diff --git a/static/icons/06002AF6.png b/static/icons/06002AF6.png deleted file mode 100755 index 7784f965..00000000 Binary files a/static/icons/06002AF6.png and /dev/null differ diff --git a/static/icons/06002AF7.png b/static/icons/06002AF7.png deleted file mode 100755 index 4b592de7..00000000 Binary files a/static/icons/06002AF7.png and /dev/null differ diff --git a/static/icons/06002AF8.png b/static/icons/06002AF8.png deleted file mode 100755 index 9f74f0c7..00000000 Binary files a/static/icons/06002AF8.png and /dev/null differ diff --git a/static/icons/06002AF9.png b/static/icons/06002AF9.png deleted file mode 100755 index 13a106ed..00000000 Binary files a/static/icons/06002AF9.png and /dev/null differ diff --git a/static/icons/06002AFA.png b/static/icons/06002AFA.png deleted file mode 100755 index 84006723..00000000 Binary files a/static/icons/06002AFA.png and /dev/null differ diff --git a/static/icons/06002AFC.png b/static/icons/06002AFC.png deleted file mode 100755 index db608963..00000000 Binary files a/static/icons/06002AFC.png and /dev/null differ diff --git a/static/icons/06002AFD.png b/static/icons/06002AFD.png deleted file mode 100755 index 82b79a0c..00000000 Binary files a/static/icons/06002AFD.png and /dev/null differ diff --git a/static/icons/06002AFE.png b/static/icons/06002AFE.png deleted file mode 100755 index 819caf1c..00000000 Binary files a/static/icons/06002AFE.png and /dev/null differ diff --git a/static/icons/06002AFF.png b/static/icons/06002AFF.png deleted file mode 100755 index ef33e7b0..00000000 Binary files a/static/icons/06002AFF.png and /dev/null differ diff --git a/static/icons/06002B00.png b/static/icons/06002B00.png deleted file mode 100755 index 74ed6bae..00000000 Binary files a/static/icons/06002B00.png and /dev/null differ diff --git a/static/icons/06002B01.png b/static/icons/06002B01.png deleted file mode 100755 index 19dcb61b..00000000 Binary files a/static/icons/06002B01.png and /dev/null differ diff --git a/static/icons/06002B02.png b/static/icons/06002B02.png deleted file mode 100755 index c644fad9..00000000 Binary files a/static/icons/06002B02.png and /dev/null differ diff --git a/static/icons/06002B03.png b/static/icons/06002B03.png deleted file mode 100755 index 56a18b87..00000000 Binary files a/static/icons/06002B03.png and /dev/null differ diff --git a/static/icons/06002B04.png b/static/icons/06002B04.png deleted file mode 100755 index f04743a9..00000000 Binary files a/static/icons/06002B04.png and /dev/null differ diff --git a/static/icons/06002B05.png b/static/icons/06002B05.png deleted file mode 100755 index 84fb8f8f..00000000 Binary files a/static/icons/06002B05.png and /dev/null differ diff --git a/static/icons/06002B06.png b/static/icons/06002B06.png deleted file mode 100755 index 95d73068..00000000 Binary files a/static/icons/06002B06.png and /dev/null differ diff --git a/static/icons/06002B07.png b/static/icons/06002B07.png deleted file mode 100755 index 5e912cfe..00000000 Binary files a/static/icons/06002B07.png and /dev/null differ diff --git a/static/icons/06002B08.png b/static/icons/06002B08.png deleted file mode 100755 index 3ce07b8a..00000000 Binary files a/static/icons/06002B08.png and /dev/null differ diff --git a/static/icons/06002B09.png b/static/icons/06002B09.png deleted file mode 100755 index a07be9b5..00000000 Binary files a/static/icons/06002B09.png and /dev/null differ diff --git a/static/icons/06002B0A.png b/static/icons/06002B0A.png deleted file mode 100755 index d249b678..00000000 Binary files a/static/icons/06002B0A.png and /dev/null differ diff --git a/static/icons/06002B0B.png b/static/icons/06002B0B.png deleted file mode 100755 index 91189cb8..00000000 Binary files a/static/icons/06002B0B.png and /dev/null differ diff --git a/static/icons/06002B0C.png b/static/icons/06002B0C.png deleted file mode 100755 index 83c2e4af..00000000 Binary files a/static/icons/06002B0C.png and /dev/null differ diff --git a/static/icons/06002B0D.png b/static/icons/06002B0D.png deleted file mode 100755 index 4c1dee09..00000000 Binary files a/static/icons/06002B0D.png and /dev/null differ diff --git a/static/icons/06002B0E.png b/static/icons/06002B0E.png deleted file mode 100755 index 06892464..00000000 Binary files a/static/icons/06002B0E.png and /dev/null differ diff --git a/static/icons/06002B0F.png b/static/icons/06002B0F.png deleted file mode 100755 index f62337d5..00000000 Binary files a/static/icons/06002B0F.png and /dev/null differ diff --git a/static/icons/06002B10.png b/static/icons/06002B10.png deleted file mode 100755 index f87cbbec..00000000 Binary files a/static/icons/06002B10.png and /dev/null differ diff --git a/static/icons/06002B11.png b/static/icons/06002B11.png deleted file mode 100755 index ce84fbf4..00000000 Binary files a/static/icons/06002B11.png and /dev/null differ diff --git a/static/icons/06002B13.png b/static/icons/06002B13.png deleted file mode 100755 index 0bc20f68..00000000 Binary files a/static/icons/06002B13.png and /dev/null differ diff --git a/static/icons/06002B14.png b/static/icons/06002B14.png deleted file mode 100755 index 456e5721..00000000 Binary files a/static/icons/06002B14.png and /dev/null differ diff --git a/static/icons/06002B15.png b/static/icons/06002B15.png deleted file mode 100755 index dae2cd97..00000000 Binary files a/static/icons/06002B15.png and /dev/null differ diff --git a/static/icons/06002B16.png b/static/icons/06002B16.png deleted file mode 100755 index 07f24daf..00000000 Binary files a/static/icons/06002B16.png and /dev/null differ diff --git a/static/icons/06002B17.png b/static/icons/06002B17.png deleted file mode 100755 index 80d02ad8..00000000 Binary files a/static/icons/06002B17.png and /dev/null differ diff --git a/static/icons/06002B18.png b/static/icons/06002B18.png deleted file mode 100755 index 5bfa77ad..00000000 Binary files a/static/icons/06002B18.png and /dev/null differ diff --git a/static/icons/06002B19.png b/static/icons/06002B19.png deleted file mode 100755 index aa0bc1a7..00000000 Binary files a/static/icons/06002B19.png and /dev/null differ diff --git a/static/icons/06002B1A.png b/static/icons/06002B1A.png deleted file mode 100755 index 4bd720bc..00000000 Binary files a/static/icons/06002B1A.png and /dev/null differ diff --git a/static/icons/06002B1B.png b/static/icons/06002B1B.png deleted file mode 100755 index 69c9e96e..00000000 Binary files a/static/icons/06002B1B.png and /dev/null differ diff --git a/static/icons/06002B1C.png b/static/icons/06002B1C.png deleted file mode 100755 index f149dfa6..00000000 Binary files a/static/icons/06002B1C.png and /dev/null differ diff --git a/static/icons/06002B1D.png b/static/icons/06002B1D.png deleted file mode 100755 index 812ef7d7..00000000 Binary files a/static/icons/06002B1D.png and /dev/null differ diff --git a/static/icons/06002B1E.png b/static/icons/06002B1E.png deleted file mode 100755 index 6163311f..00000000 Binary files a/static/icons/06002B1E.png and /dev/null differ diff --git a/static/icons/06002B1F.png b/static/icons/06002B1F.png deleted file mode 100755 index 3fec5277..00000000 Binary files a/static/icons/06002B1F.png and /dev/null differ diff --git a/static/icons/06002B20.png b/static/icons/06002B20.png deleted file mode 100755 index 6b63d04f..00000000 Binary files a/static/icons/06002B20.png and /dev/null differ diff --git a/static/icons/06002B21.png b/static/icons/06002B21.png deleted file mode 100755 index 022bdc02..00000000 Binary files a/static/icons/06002B21.png and /dev/null differ diff --git a/static/icons/06002B22.png b/static/icons/06002B22.png deleted file mode 100755 index 06ba4851..00000000 Binary files a/static/icons/06002B22.png and /dev/null differ diff --git a/static/icons/06002B23.png b/static/icons/06002B23.png deleted file mode 100755 index 6a93ebfe..00000000 Binary files a/static/icons/06002B23.png and /dev/null differ diff --git a/static/icons/06002B24.png b/static/icons/06002B24.png deleted file mode 100755 index 17528bd9..00000000 Binary files a/static/icons/06002B24.png and /dev/null differ diff --git a/static/icons/06002B25.png b/static/icons/06002B25.png deleted file mode 100755 index 4be8f697..00000000 Binary files a/static/icons/06002B25.png and /dev/null differ diff --git a/static/icons/06002B26.png b/static/icons/06002B26.png deleted file mode 100755 index 06f0c234..00000000 Binary files a/static/icons/06002B26.png and /dev/null differ diff --git a/static/icons/06002B27.png b/static/icons/06002B27.png deleted file mode 100755 index 51ddd369..00000000 Binary files a/static/icons/06002B27.png and /dev/null differ diff --git a/static/icons/06002B28.png b/static/icons/06002B28.png deleted file mode 100755 index 0cd846ce..00000000 Binary files a/static/icons/06002B28.png and /dev/null differ diff --git a/static/icons/06002B29.png b/static/icons/06002B29.png deleted file mode 100755 index d0c60592..00000000 Binary files a/static/icons/06002B29.png and /dev/null differ diff --git a/static/icons/06002B2A.png b/static/icons/06002B2A.png deleted file mode 100755 index d2a02861..00000000 Binary files a/static/icons/06002B2A.png and /dev/null differ diff --git a/static/icons/06002B2B.png b/static/icons/06002B2B.png deleted file mode 100755 index 153625ba..00000000 Binary files a/static/icons/06002B2B.png and /dev/null differ diff --git a/static/icons/06002B2C.png b/static/icons/06002B2C.png deleted file mode 100755 index 2d9b4c50..00000000 Binary files a/static/icons/06002B2C.png and /dev/null differ diff --git a/static/icons/06002B2D.png b/static/icons/06002B2D.png deleted file mode 100755 index 32dacb67..00000000 Binary files a/static/icons/06002B2D.png and /dev/null differ diff --git a/static/icons/06002B2E.png b/static/icons/06002B2E.png deleted file mode 100755 index 83448651..00000000 Binary files a/static/icons/06002B2E.png and /dev/null differ diff --git a/static/icons/06002B2F.png b/static/icons/06002B2F.png deleted file mode 100755 index 0787ed64..00000000 Binary files a/static/icons/06002B2F.png and /dev/null differ diff --git a/static/icons/06002B30.png b/static/icons/06002B30.png deleted file mode 100755 index 29a802cd..00000000 Binary files a/static/icons/06002B30.png and /dev/null differ diff --git a/static/icons/06002B31.png b/static/icons/06002B31.png deleted file mode 100755 index 60e9aa60..00000000 Binary files a/static/icons/06002B31.png and /dev/null differ diff --git a/static/icons/06002B32.png b/static/icons/06002B32.png deleted file mode 100755 index 8205ca98..00000000 Binary files a/static/icons/06002B32.png and /dev/null differ diff --git a/static/icons/06002B33.png b/static/icons/06002B33.png deleted file mode 100755 index 3d6b5c02..00000000 Binary files a/static/icons/06002B33.png and /dev/null differ diff --git a/static/icons/06002B34.png b/static/icons/06002B34.png deleted file mode 100755 index d436f976..00000000 Binary files a/static/icons/06002B34.png and /dev/null differ diff --git a/static/icons/06002B35.png b/static/icons/06002B35.png deleted file mode 100755 index d876ee04..00000000 Binary files a/static/icons/06002B35.png and /dev/null differ diff --git a/static/icons/06002B36.png b/static/icons/06002B36.png deleted file mode 100755 index df7f401f..00000000 Binary files a/static/icons/06002B36.png and /dev/null differ diff --git a/static/icons/06002B37.png b/static/icons/06002B37.png deleted file mode 100755 index df5ca8a2..00000000 Binary files a/static/icons/06002B37.png and /dev/null differ diff --git a/static/icons/06002B38.png b/static/icons/06002B38.png deleted file mode 100755 index 5ed9d89c..00000000 Binary files a/static/icons/06002B38.png and /dev/null differ diff --git a/static/icons/06002B39.png b/static/icons/06002B39.png deleted file mode 100755 index 64c32d37..00000000 Binary files a/static/icons/06002B39.png and /dev/null differ diff --git a/static/icons/06002B3A.png b/static/icons/06002B3A.png deleted file mode 100755 index f72b7c0a..00000000 Binary files a/static/icons/06002B3A.png and /dev/null differ diff --git a/static/icons/06002B3B.png b/static/icons/06002B3B.png deleted file mode 100755 index 7ce789c0..00000000 Binary files a/static/icons/06002B3B.png and /dev/null differ diff --git a/static/icons/06002B3C.png b/static/icons/06002B3C.png deleted file mode 100755 index 379f092d..00000000 Binary files a/static/icons/06002B3C.png and /dev/null differ diff --git a/static/icons/06002B3D.png b/static/icons/06002B3D.png deleted file mode 100755 index c5e76665..00000000 Binary files a/static/icons/06002B3D.png and /dev/null differ diff --git a/static/icons/06002B3E.png b/static/icons/06002B3E.png deleted file mode 100755 index d907dd2e..00000000 Binary files a/static/icons/06002B3E.png and /dev/null differ diff --git a/static/icons/06002B3F.png b/static/icons/06002B3F.png deleted file mode 100755 index 4769d1d8..00000000 Binary files a/static/icons/06002B3F.png and /dev/null differ diff --git a/static/icons/06002B40.png b/static/icons/06002B40.png deleted file mode 100755 index 05ef873a..00000000 Binary files a/static/icons/06002B40.png and /dev/null differ diff --git a/static/icons/06002B41.png b/static/icons/06002B41.png deleted file mode 100755 index c1902f81..00000000 Binary files a/static/icons/06002B41.png and /dev/null differ diff --git a/static/icons/06002B42.png b/static/icons/06002B42.png deleted file mode 100755 index 439adcef..00000000 Binary files a/static/icons/06002B42.png and /dev/null differ diff --git a/static/icons/06002B43.png b/static/icons/06002B43.png deleted file mode 100755 index 94da610e..00000000 Binary files a/static/icons/06002B43.png and /dev/null differ diff --git a/static/icons/06002B44.png b/static/icons/06002B44.png deleted file mode 100755 index b4f6fd44..00000000 Binary files a/static/icons/06002B44.png and /dev/null differ diff --git a/static/icons/06002B45.png b/static/icons/06002B45.png deleted file mode 100755 index 8b6da17e..00000000 Binary files a/static/icons/06002B45.png and /dev/null differ diff --git a/static/icons/06002B46.png b/static/icons/06002B46.png deleted file mode 100755 index a0808dcf..00000000 Binary files a/static/icons/06002B46.png and /dev/null differ diff --git a/static/icons/06002B47.png b/static/icons/06002B47.png deleted file mode 100755 index 5620b9bc..00000000 Binary files a/static/icons/06002B47.png and /dev/null differ diff --git a/static/icons/06002B48.png b/static/icons/06002B48.png deleted file mode 100755 index 39c729f3..00000000 Binary files a/static/icons/06002B48.png and /dev/null differ diff --git a/static/icons/06002B49.png b/static/icons/06002B49.png deleted file mode 100755 index e8e5aa12..00000000 Binary files a/static/icons/06002B49.png and /dev/null differ diff --git a/static/icons/06002B4A.png b/static/icons/06002B4A.png deleted file mode 100755 index afed58ba..00000000 Binary files a/static/icons/06002B4A.png and /dev/null differ diff --git a/static/icons/06002B4B.png b/static/icons/06002B4B.png deleted file mode 100755 index 39ddb927..00000000 Binary files a/static/icons/06002B4B.png and /dev/null differ diff --git a/static/icons/06002B4C.png b/static/icons/06002B4C.png deleted file mode 100755 index f2d2bfa5..00000000 Binary files a/static/icons/06002B4C.png and /dev/null differ diff --git a/static/icons/06002B4D.png b/static/icons/06002B4D.png deleted file mode 100755 index f7d2ff52..00000000 Binary files a/static/icons/06002B4D.png and /dev/null differ diff --git a/static/icons/06002B4E.png b/static/icons/06002B4E.png deleted file mode 100755 index fabe1f31..00000000 Binary files a/static/icons/06002B4E.png and /dev/null differ diff --git a/static/icons/06002B4F.png b/static/icons/06002B4F.png deleted file mode 100755 index f016e6c1..00000000 Binary files a/static/icons/06002B4F.png and /dev/null differ diff --git a/static/icons/06002B50.png b/static/icons/06002B50.png deleted file mode 100755 index 62ce7e0a..00000000 Binary files a/static/icons/06002B50.png and /dev/null differ diff --git a/static/icons/06002B52.png b/static/icons/06002B52.png deleted file mode 100755 index 9e74bf03..00000000 Binary files a/static/icons/06002B52.png and /dev/null differ diff --git a/static/icons/06002B53.png b/static/icons/06002B53.png deleted file mode 100755 index 921bc844..00000000 Binary files a/static/icons/06002B53.png and /dev/null differ diff --git a/static/icons/06002B54.png b/static/icons/06002B54.png deleted file mode 100755 index 36b9d7b2..00000000 Binary files a/static/icons/06002B54.png and /dev/null differ diff --git a/static/icons/06002B55.png b/static/icons/06002B55.png deleted file mode 100755 index 36a206c8..00000000 Binary files a/static/icons/06002B55.png and /dev/null differ diff --git a/static/icons/06002B56.png b/static/icons/06002B56.png deleted file mode 100755 index ade89366..00000000 Binary files a/static/icons/06002B56.png and /dev/null differ diff --git a/static/icons/06002B57.png b/static/icons/06002B57.png deleted file mode 100755 index ae58b515..00000000 Binary files a/static/icons/06002B57.png and /dev/null differ diff --git a/static/icons/06002B58.png b/static/icons/06002B58.png deleted file mode 100755 index 3f5fd918..00000000 Binary files a/static/icons/06002B58.png and /dev/null differ diff --git a/static/icons/06002B59.png b/static/icons/06002B59.png deleted file mode 100755 index 569d7845..00000000 Binary files a/static/icons/06002B59.png and /dev/null differ diff --git a/static/icons/06002B5A.png b/static/icons/06002B5A.png deleted file mode 100755 index fa9d317b..00000000 Binary files a/static/icons/06002B5A.png and /dev/null differ diff --git a/static/icons/06002B5B.png b/static/icons/06002B5B.png deleted file mode 100755 index 0c2e7f53..00000000 Binary files a/static/icons/06002B5B.png and /dev/null differ diff --git a/static/icons/06002B5C.png b/static/icons/06002B5C.png deleted file mode 100755 index 88e1f705..00000000 Binary files a/static/icons/06002B5C.png and /dev/null differ diff --git a/static/icons/06002B5D.png b/static/icons/06002B5D.png deleted file mode 100755 index 7f65b8ae..00000000 Binary files a/static/icons/06002B5D.png and /dev/null differ diff --git a/static/icons/06002B5E.png b/static/icons/06002B5E.png deleted file mode 100755 index fe28b366..00000000 Binary files a/static/icons/06002B5E.png and /dev/null differ diff --git a/static/icons/06002B5F.png b/static/icons/06002B5F.png deleted file mode 100755 index 160befea..00000000 Binary files a/static/icons/06002B5F.png and /dev/null differ diff --git a/static/icons/06002B60.png b/static/icons/06002B60.png deleted file mode 100755 index 3b761d7d..00000000 Binary files a/static/icons/06002B60.png and /dev/null differ diff --git a/static/icons/06002B61.png b/static/icons/06002B61.png deleted file mode 100755 index 4e74df41..00000000 Binary files a/static/icons/06002B61.png and /dev/null differ diff --git a/static/icons/06002B62.png b/static/icons/06002B62.png deleted file mode 100755 index 0783e7b2..00000000 Binary files a/static/icons/06002B62.png and /dev/null differ diff --git a/static/icons/06002B63.png b/static/icons/06002B63.png deleted file mode 100755 index 6603b063..00000000 Binary files a/static/icons/06002B63.png and /dev/null differ diff --git a/static/icons/06002B64.png b/static/icons/06002B64.png deleted file mode 100755 index 822b9cc4..00000000 Binary files a/static/icons/06002B64.png and /dev/null differ diff --git a/static/icons/06002B65.png b/static/icons/06002B65.png deleted file mode 100755 index aa8928e0..00000000 Binary files a/static/icons/06002B65.png and /dev/null differ diff --git a/static/icons/06002B66.png b/static/icons/06002B66.png deleted file mode 100755 index 9dd0cb60..00000000 Binary files a/static/icons/06002B66.png and /dev/null differ diff --git a/static/icons/06002B67.png b/static/icons/06002B67.png deleted file mode 100755 index aa60a691..00000000 Binary files a/static/icons/06002B67.png and /dev/null differ diff --git a/static/icons/06002B68.png b/static/icons/06002B68.png deleted file mode 100755 index 1fb957bd..00000000 Binary files a/static/icons/06002B68.png and /dev/null differ diff --git a/static/icons/06002B69.png b/static/icons/06002B69.png deleted file mode 100755 index 1b8a5eea..00000000 Binary files a/static/icons/06002B69.png and /dev/null differ diff --git a/static/icons/06002B6A.png b/static/icons/06002B6A.png deleted file mode 100755 index c0eb8630..00000000 Binary files a/static/icons/06002B6A.png and /dev/null differ diff --git a/static/icons/06002B6B.png b/static/icons/06002B6B.png deleted file mode 100755 index 26e7bebe..00000000 Binary files a/static/icons/06002B6B.png and /dev/null differ diff --git a/static/icons/06002B6C.png b/static/icons/06002B6C.png deleted file mode 100755 index 1dc26c66..00000000 Binary files a/static/icons/06002B6C.png and /dev/null differ diff --git a/static/icons/06002B6D.png b/static/icons/06002B6D.png deleted file mode 100755 index 69b2f605..00000000 Binary files a/static/icons/06002B6D.png and /dev/null differ diff --git a/static/icons/06002B6E.png b/static/icons/06002B6E.png deleted file mode 100755 index 3a75d074..00000000 Binary files a/static/icons/06002B6E.png and /dev/null differ diff --git a/static/icons/06002B6F.png b/static/icons/06002B6F.png deleted file mode 100755 index 09b0d7b7..00000000 Binary files a/static/icons/06002B6F.png and /dev/null differ diff --git a/static/icons/06002B70.png b/static/icons/06002B70.png deleted file mode 100755 index 140d6747..00000000 Binary files a/static/icons/06002B70.png and /dev/null differ diff --git a/static/icons/06002B71.png b/static/icons/06002B71.png deleted file mode 100755 index e9bbeaf9..00000000 Binary files a/static/icons/06002B71.png and /dev/null differ diff --git a/static/icons/06002B72.png b/static/icons/06002B72.png deleted file mode 100755 index ba427a83..00000000 Binary files a/static/icons/06002B72.png and /dev/null differ diff --git a/static/icons/06002B73.png b/static/icons/06002B73.png deleted file mode 100755 index 2dfa9ac7..00000000 Binary files a/static/icons/06002B73.png and /dev/null differ diff --git a/static/icons/06002B74.png b/static/icons/06002B74.png deleted file mode 100755 index 2c5dac89..00000000 Binary files a/static/icons/06002B74.png and /dev/null differ diff --git a/static/icons/06002B75.png b/static/icons/06002B75.png deleted file mode 100755 index 415828b3..00000000 Binary files a/static/icons/06002B75.png and /dev/null differ diff --git a/static/icons/06002B76.png b/static/icons/06002B76.png deleted file mode 100755 index 1c10b586..00000000 Binary files a/static/icons/06002B76.png and /dev/null differ diff --git a/static/icons/06002B77.png b/static/icons/06002B77.png deleted file mode 100755 index 73595d52..00000000 Binary files a/static/icons/06002B77.png and /dev/null differ diff --git a/static/icons/06002B78.png b/static/icons/06002B78.png deleted file mode 100755 index 995c5118..00000000 Binary files a/static/icons/06002B78.png and /dev/null differ diff --git a/static/icons/06002B79.png b/static/icons/06002B79.png deleted file mode 100755 index 678d1e56..00000000 Binary files a/static/icons/06002B79.png and /dev/null differ diff --git a/static/icons/06002B7A.png b/static/icons/06002B7A.png deleted file mode 100755 index 16313ed0..00000000 Binary files a/static/icons/06002B7A.png and /dev/null differ diff --git a/static/icons/06002B7B.png b/static/icons/06002B7B.png deleted file mode 100755 index f376253e..00000000 Binary files a/static/icons/06002B7B.png and /dev/null differ diff --git a/static/icons/06002B7C.png b/static/icons/06002B7C.png deleted file mode 100755 index 0fa4072c..00000000 Binary files a/static/icons/06002B7C.png and /dev/null differ diff --git a/static/icons/06002B7D.png b/static/icons/06002B7D.png deleted file mode 100755 index 01cbbca0..00000000 Binary files a/static/icons/06002B7D.png and /dev/null differ diff --git a/static/icons/06002B7E.png b/static/icons/06002B7E.png deleted file mode 100755 index 167396cf..00000000 Binary files a/static/icons/06002B7E.png and /dev/null differ diff --git a/static/icons/06002B7F.png b/static/icons/06002B7F.png deleted file mode 100755 index a51e18fc..00000000 Binary files a/static/icons/06002B7F.png and /dev/null differ diff --git a/static/icons/06002B80.png b/static/icons/06002B80.png deleted file mode 100755 index 1aea8dfe..00000000 Binary files a/static/icons/06002B80.png and /dev/null differ diff --git a/static/icons/06002B81.png b/static/icons/06002B81.png deleted file mode 100755 index c7c5e734..00000000 Binary files a/static/icons/06002B81.png and /dev/null differ diff --git a/static/icons/06002B82.png b/static/icons/06002B82.png deleted file mode 100755 index bf40a1f9..00000000 Binary files a/static/icons/06002B82.png and /dev/null differ diff --git a/static/icons/06002B83.png b/static/icons/06002B83.png deleted file mode 100755 index 91cb1d76..00000000 Binary files a/static/icons/06002B83.png and /dev/null differ diff --git a/static/icons/06002B84.png b/static/icons/06002B84.png deleted file mode 100755 index c6b33021..00000000 Binary files a/static/icons/06002B84.png and /dev/null differ diff --git a/static/icons/06002B85.png b/static/icons/06002B85.png deleted file mode 100755 index 62632663..00000000 Binary files a/static/icons/06002B85.png and /dev/null differ diff --git a/static/icons/06002B86.png b/static/icons/06002B86.png deleted file mode 100755 index 6ece33de..00000000 Binary files a/static/icons/06002B86.png and /dev/null differ diff --git a/static/icons/06002B87.png b/static/icons/06002B87.png deleted file mode 100755 index e0d18002..00000000 Binary files a/static/icons/06002B87.png and /dev/null differ diff --git a/static/icons/06002B88.png b/static/icons/06002B88.png deleted file mode 100755 index 2463da82..00000000 Binary files a/static/icons/06002B88.png and /dev/null differ diff --git a/static/icons/06002B89.png b/static/icons/06002B89.png deleted file mode 100755 index 726f1d66..00000000 Binary files a/static/icons/06002B89.png and /dev/null differ diff --git a/static/icons/06002B8A.png b/static/icons/06002B8A.png deleted file mode 100755 index 2ee901b9..00000000 Binary files a/static/icons/06002B8A.png and /dev/null differ diff --git a/static/icons/06002B8B.png b/static/icons/06002B8B.png deleted file mode 100755 index 31fa7f15..00000000 Binary files a/static/icons/06002B8B.png and /dev/null differ diff --git a/static/icons/06002B8C.png b/static/icons/06002B8C.png deleted file mode 100755 index ea1624ff..00000000 Binary files a/static/icons/06002B8C.png and /dev/null differ diff --git a/static/icons/06002B8D.png b/static/icons/06002B8D.png deleted file mode 100755 index 43618930..00000000 Binary files a/static/icons/06002B8D.png and /dev/null differ diff --git a/static/icons/06002B8E.png b/static/icons/06002B8E.png deleted file mode 100755 index 21327c26..00000000 Binary files a/static/icons/06002B8E.png and /dev/null differ diff --git a/static/icons/06002B8F.png b/static/icons/06002B8F.png deleted file mode 100755 index d0bfaa42..00000000 Binary files a/static/icons/06002B8F.png and /dev/null differ diff --git a/static/icons/06002B90.png b/static/icons/06002B90.png deleted file mode 100755 index ef72d6b0..00000000 Binary files a/static/icons/06002B90.png and /dev/null differ diff --git a/static/icons/06002B91.png b/static/icons/06002B91.png deleted file mode 100755 index 61cf433b..00000000 Binary files a/static/icons/06002B91.png and /dev/null differ diff --git a/static/icons/06002B92.png b/static/icons/06002B92.png deleted file mode 100755 index 1388833a..00000000 Binary files a/static/icons/06002B92.png and /dev/null differ diff --git a/static/icons/06002B93.png b/static/icons/06002B93.png deleted file mode 100755 index 60e76712..00000000 Binary files a/static/icons/06002B93.png and /dev/null differ diff --git a/static/icons/06002B94.png b/static/icons/06002B94.png deleted file mode 100755 index 3a15ad2f..00000000 Binary files a/static/icons/06002B94.png and /dev/null differ diff --git a/static/icons/06002B95.png b/static/icons/06002B95.png deleted file mode 100755 index 5a03097e..00000000 Binary files a/static/icons/06002B95.png and /dev/null differ diff --git a/static/icons/06002B96.png b/static/icons/06002B96.png deleted file mode 100755 index 9625f34c..00000000 Binary files a/static/icons/06002B96.png and /dev/null differ diff --git a/static/icons/06002B97.png b/static/icons/06002B97.png deleted file mode 100755 index c6b652a5..00000000 Binary files a/static/icons/06002B97.png and /dev/null differ diff --git a/static/icons/06002B98.png b/static/icons/06002B98.png deleted file mode 100755 index 94c01a80..00000000 Binary files a/static/icons/06002B98.png and /dev/null differ diff --git a/static/icons/06002B99.png b/static/icons/06002B99.png deleted file mode 100755 index 283990d3..00000000 Binary files a/static/icons/06002B99.png and /dev/null differ diff --git a/static/icons/06002B9A.png b/static/icons/06002B9A.png deleted file mode 100755 index 57dcea3b..00000000 Binary files a/static/icons/06002B9A.png and /dev/null differ diff --git a/static/icons/06002B9B.png b/static/icons/06002B9B.png deleted file mode 100755 index 83bf0526..00000000 Binary files a/static/icons/06002B9B.png and /dev/null differ diff --git a/static/icons/06002B9C.png b/static/icons/06002B9C.png deleted file mode 100755 index 1fe63082..00000000 Binary files a/static/icons/06002B9C.png and /dev/null differ diff --git a/static/icons/06002B9D.png b/static/icons/06002B9D.png deleted file mode 100755 index cfeb8c48..00000000 Binary files a/static/icons/06002B9D.png and /dev/null differ diff --git a/static/icons/06002B9E.png b/static/icons/06002B9E.png deleted file mode 100755 index feb8f173..00000000 Binary files a/static/icons/06002B9E.png and /dev/null differ diff --git a/static/icons/06002B9F.png b/static/icons/06002B9F.png deleted file mode 100755 index 9df24e9b..00000000 Binary files a/static/icons/06002B9F.png and /dev/null differ diff --git a/static/icons/06002BA0.png b/static/icons/06002BA0.png deleted file mode 100755 index ca263d61..00000000 Binary files a/static/icons/06002BA0.png and /dev/null differ diff --git a/static/icons/06002BA1.png b/static/icons/06002BA1.png deleted file mode 100755 index 942e96ce..00000000 Binary files a/static/icons/06002BA1.png and /dev/null differ diff --git a/static/icons/06002BA2.png b/static/icons/06002BA2.png deleted file mode 100755 index 3b768faf..00000000 Binary files a/static/icons/06002BA2.png and /dev/null differ diff --git a/static/icons/06002BA3.png b/static/icons/06002BA3.png deleted file mode 100755 index 5d4f520b..00000000 Binary files a/static/icons/06002BA3.png and /dev/null differ diff --git a/static/icons/06002BA4.png b/static/icons/06002BA4.png deleted file mode 100755 index bdfd4040..00000000 Binary files a/static/icons/06002BA4.png and /dev/null differ diff --git a/static/icons/06002BA5.png b/static/icons/06002BA5.png deleted file mode 100755 index 748bb304..00000000 Binary files a/static/icons/06002BA5.png and /dev/null differ diff --git a/static/icons/06002BA6.png b/static/icons/06002BA6.png deleted file mode 100755 index 43010c18..00000000 Binary files a/static/icons/06002BA6.png and /dev/null differ diff --git a/static/icons/06002BA7.png b/static/icons/06002BA7.png deleted file mode 100755 index 823ca19d..00000000 Binary files a/static/icons/06002BA7.png and /dev/null differ diff --git a/static/icons/06002BA8.png b/static/icons/06002BA8.png deleted file mode 100755 index 92272e08..00000000 Binary files a/static/icons/06002BA8.png and /dev/null differ diff --git a/static/icons/06002BA9.png b/static/icons/06002BA9.png deleted file mode 100755 index 350bb74c..00000000 Binary files a/static/icons/06002BA9.png and /dev/null differ diff --git a/static/icons/06002BAA.png b/static/icons/06002BAA.png deleted file mode 100755 index 3a5139c4..00000000 Binary files a/static/icons/06002BAA.png and /dev/null differ diff --git a/static/icons/06002BAB.png b/static/icons/06002BAB.png deleted file mode 100755 index d5bfc99e..00000000 Binary files a/static/icons/06002BAB.png and /dev/null differ diff --git a/static/icons/06002BAC.png b/static/icons/06002BAC.png deleted file mode 100755 index 428fd50a..00000000 Binary files a/static/icons/06002BAC.png and /dev/null differ diff --git a/static/icons/06002BAD.png b/static/icons/06002BAD.png deleted file mode 100755 index dd6c35b3..00000000 Binary files a/static/icons/06002BAD.png and /dev/null differ diff --git a/static/icons/06002BAE.png b/static/icons/06002BAE.png deleted file mode 100755 index ec9a1f21..00000000 Binary files a/static/icons/06002BAE.png and /dev/null differ diff --git a/static/icons/06002BAF.png b/static/icons/06002BAF.png deleted file mode 100755 index 602f89c8..00000000 Binary files a/static/icons/06002BAF.png and /dev/null differ diff --git a/static/icons/06002BB0.png b/static/icons/06002BB0.png deleted file mode 100755 index 492609ea..00000000 Binary files a/static/icons/06002BB0.png and /dev/null differ diff --git a/static/icons/06002BB1.png b/static/icons/06002BB1.png deleted file mode 100755 index d1448f5f..00000000 Binary files a/static/icons/06002BB1.png and /dev/null differ diff --git a/static/icons/06002BB2.png b/static/icons/06002BB2.png deleted file mode 100755 index 9c02ca74..00000000 Binary files a/static/icons/06002BB2.png and /dev/null differ diff --git a/static/icons/06002BB3.png b/static/icons/06002BB3.png deleted file mode 100755 index c75ec34f..00000000 Binary files a/static/icons/06002BB3.png and /dev/null differ diff --git a/static/icons/06002BB4.png b/static/icons/06002BB4.png deleted file mode 100755 index 250a0d19..00000000 Binary files a/static/icons/06002BB4.png and /dev/null differ diff --git a/static/icons/06002BB5.png b/static/icons/06002BB5.png deleted file mode 100755 index 31386ff8..00000000 Binary files a/static/icons/06002BB5.png and /dev/null differ diff --git a/static/icons/06002BB6.png b/static/icons/06002BB6.png deleted file mode 100755 index 2a0fd8a3..00000000 Binary files a/static/icons/06002BB6.png and /dev/null differ diff --git a/static/icons/06002BB7.png b/static/icons/06002BB7.png deleted file mode 100755 index a3952438..00000000 Binary files a/static/icons/06002BB7.png and /dev/null differ diff --git a/static/icons/06002BB8.png b/static/icons/06002BB8.png deleted file mode 100755 index 5a79301d..00000000 Binary files a/static/icons/06002BB8.png and /dev/null differ diff --git a/static/icons/06002BB9.png b/static/icons/06002BB9.png deleted file mode 100755 index 4098418d..00000000 Binary files a/static/icons/06002BB9.png and /dev/null differ diff --git a/static/icons/06002BBA.png b/static/icons/06002BBA.png deleted file mode 100755 index 6c303b95..00000000 Binary files a/static/icons/06002BBA.png and /dev/null differ diff --git a/static/icons/06002BBB.png b/static/icons/06002BBB.png deleted file mode 100755 index fa571f6d..00000000 Binary files a/static/icons/06002BBB.png and /dev/null differ diff --git a/static/icons/06002BBC.png b/static/icons/06002BBC.png deleted file mode 100755 index a7825d63..00000000 Binary files a/static/icons/06002BBC.png and /dev/null differ diff --git a/static/icons/06002BBD.png b/static/icons/06002BBD.png deleted file mode 100755 index 285d0118..00000000 Binary files a/static/icons/06002BBD.png and /dev/null differ diff --git a/static/icons/06002BBE.png b/static/icons/06002BBE.png deleted file mode 100755 index 76e3e760..00000000 Binary files a/static/icons/06002BBE.png and /dev/null differ diff --git a/static/icons/06002BBF.png b/static/icons/06002BBF.png deleted file mode 100755 index 2c7e1e7f..00000000 Binary files a/static/icons/06002BBF.png and /dev/null differ diff --git a/static/icons/06002BC0.png b/static/icons/06002BC0.png deleted file mode 100755 index bfd2f64c..00000000 Binary files a/static/icons/06002BC0.png and /dev/null differ diff --git a/static/icons/06002BC1.png b/static/icons/06002BC1.png deleted file mode 100755 index c6452bbb..00000000 Binary files a/static/icons/06002BC1.png and /dev/null differ diff --git a/static/icons/06002BC2.png b/static/icons/06002BC2.png deleted file mode 100755 index ccc430ac..00000000 Binary files a/static/icons/06002BC2.png and /dev/null differ diff --git a/static/icons/06002BC3.png b/static/icons/06002BC3.png deleted file mode 100755 index 5c3107ff..00000000 Binary files a/static/icons/06002BC3.png and /dev/null differ diff --git a/static/icons/06002BC4.png b/static/icons/06002BC4.png deleted file mode 100755 index 79998642..00000000 Binary files a/static/icons/06002BC4.png and /dev/null differ diff --git a/static/icons/06002BC5.png b/static/icons/06002BC5.png deleted file mode 100755 index 37840fe4..00000000 Binary files a/static/icons/06002BC5.png and /dev/null differ diff --git a/static/icons/06002BC6.png b/static/icons/06002BC6.png deleted file mode 100755 index 64366056..00000000 Binary files a/static/icons/06002BC6.png and /dev/null differ diff --git a/static/icons/06002BC7.png b/static/icons/06002BC7.png deleted file mode 100755 index eb1517ce..00000000 Binary files a/static/icons/06002BC7.png and /dev/null differ diff --git a/static/icons/06002BC8.png b/static/icons/06002BC8.png deleted file mode 100755 index f1189af8..00000000 Binary files a/static/icons/06002BC8.png and /dev/null differ diff --git a/static/icons/06002BC9.png b/static/icons/06002BC9.png deleted file mode 100755 index b5a44716..00000000 Binary files a/static/icons/06002BC9.png and /dev/null differ diff --git a/static/icons/06002BCA.png b/static/icons/06002BCA.png deleted file mode 100755 index e5340f59..00000000 Binary files a/static/icons/06002BCA.png and /dev/null differ diff --git a/static/icons/06002BCB.png b/static/icons/06002BCB.png deleted file mode 100755 index 7e154367..00000000 Binary files a/static/icons/06002BCB.png and /dev/null differ diff --git a/static/icons/06002BCC.png b/static/icons/06002BCC.png deleted file mode 100755 index 7dbc432c..00000000 Binary files a/static/icons/06002BCC.png and /dev/null differ diff --git a/static/icons/06002BCD.png b/static/icons/06002BCD.png deleted file mode 100755 index dde6b43d..00000000 Binary files a/static/icons/06002BCD.png and /dev/null differ diff --git a/static/icons/06002BCE.png b/static/icons/06002BCE.png deleted file mode 100755 index 3c8e243d..00000000 Binary files a/static/icons/06002BCE.png and /dev/null differ diff --git a/static/icons/06002BD0.png b/static/icons/06002BD0.png deleted file mode 100755 index 98719b7a..00000000 Binary files a/static/icons/06002BD0.png and /dev/null differ diff --git a/static/icons/06002BD1.png b/static/icons/06002BD1.png deleted file mode 100755 index b8baab93..00000000 Binary files a/static/icons/06002BD1.png and /dev/null differ diff --git a/static/icons/06002BD2.png b/static/icons/06002BD2.png deleted file mode 100755 index ecdcbbe8..00000000 Binary files a/static/icons/06002BD2.png and /dev/null differ diff --git a/static/icons/06002BD3.png b/static/icons/06002BD3.png deleted file mode 100755 index 03d544fb..00000000 Binary files a/static/icons/06002BD3.png and /dev/null differ diff --git a/static/icons/06002BD4.png b/static/icons/06002BD4.png deleted file mode 100755 index fc76eaac..00000000 Binary files a/static/icons/06002BD4.png and /dev/null differ diff --git a/static/icons/06002BD5.png b/static/icons/06002BD5.png deleted file mode 100755 index 014fa927..00000000 Binary files a/static/icons/06002BD5.png and /dev/null differ diff --git a/static/icons/06002BD6.png b/static/icons/06002BD6.png deleted file mode 100755 index dd783cda..00000000 Binary files a/static/icons/06002BD6.png and /dev/null differ diff --git a/static/icons/06002BD7.png b/static/icons/06002BD7.png deleted file mode 100755 index cc15c1a3..00000000 Binary files a/static/icons/06002BD7.png and /dev/null differ diff --git a/static/icons/06002BD8.png b/static/icons/06002BD8.png deleted file mode 100755 index 9a758622..00000000 Binary files a/static/icons/06002BD8.png and /dev/null differ diff --git a/static/icons/06002BD9.png b/static/icons/06002BD9.png deleted file mode 100755 index 4fb04c70..00000000 Binary files a/static/icons/06002BD9.png and /dev/null differ diff --git a/static/icons/06002BDA.png b/static/icons/06002BDA.png deleted file mode 100755 index f2de4cf3..00000000 Binary files a/static/icons/06002BDA.png and /dev/null differ diff --git a/static/icons/06002BDC.png b/static/icons/06002BDC.png deleted file mode 100755 index 86b0395c..00000000 Binary files a/static/icons/06002BDC.png and /dev/null differ diff --git a/static/icons/06002BDD.png b/static/icons/06002BDD.png deleted file mode 100755 index 121d6502..00000000 Binary files a/static/icons/06002BDD.png and /dev/null differ diff --git a/static/icons/06002BDE.png b/static/icons/06002BDE.png deleted file mode 100755 index 4c2853cc..00000000 Binary files a/static/icons/06002BDE.png and /dev/null differ diff --git a/static/icons/06002BDF.png b/static/icons/06002BDF.png deleted file mode 100755 index 9607ca8e..00000000 Binary files a/static/icons/06002BDF.png and /dev/null differ diff --git a/static/icons/06002BE0.png b/static/icons/06002BE0.png deleted file mode 100755 index 4c989185..00000000 Binary files a/static/icons/06002BE0.png and /dev/null differ diff --git a/static/icons/06002BE1.png b/static/icons/06002BE1.png deleted file mode 100755 index 495b65bb..00000000 Binary files a/static/icons/06002BE1.png and /dev/null differ diff --git a/static/icons/06002BE2.png b/static/icons/06002BE2.png deleted file mode 100755 index 37302064..00000000 Binary files a/static/icons/06002BE2.png and /dev/null differ diff --git a/static/icons/06002BE3.png b/static/icons/06002BE3.png deleted file mode 100755 index 2f847204..00000000 Binary files a/static/icons/06002BE3.png and /dev/null differ diff --git a/static/icons/06002BE4.png b/static/icons/06002BE4.png deleted file mode 100755 index e42b7113..00000000 Binary files a/static/icons/06002BE4.png and /dev/null differ diff --git a/static/icons/06002BE5.png b/static/icons/06002BE5.png deleted file mode 100755 index df38c482..00000000 Binary files a/static/icons/06002BE5.png and /dev/null differ diff --git a/static/icons/06002BE6.png b/static/icons/06002BE6.png deleted file mode 100755 index 1846335c..00000000 Binary files a/static/icons/06002BE6.png and /dev/null differ diff --git a/static/icons/06002BE7.png b/static/icons/06002BE7.png deleted file mode 100755 index f1e3b6d0..00000000 Binary files a/static/icons/06002BE7.png and /dev/null differ diff --git a/static/icons/06002BE8.png b/static/icons/06002BE8.png deleted file mode 100755 index c589ec02..00000000 Binary files a/static/icons/06002BE8.png and /dev/null differ diff --git a/static/icons/06002BE9.png b/static/icons/06002BE9.png deleted file mode 100755 index de5f7b78..00000000 Binary files a/static/icons/06002BE9.png and /dev/null differ diff --git a/static/icons/06002BEA.png b/static/icons/06002BEA.png deleted file mode 100755 index c85c6d79..00000000 Binary files a/static/icons/06002BEA.png and /dev/null differ diff --git a/static/icons/06002BEB.png b/static/icons/06002BEB.png deleted file mode 100755 index ac0a046a..00000000 Binary files a/static/icons/06002BEB.png and /dev/null differ diff --git a/static/icons/06002BEC.png b/static/icons/06002BEC.png deleted file mode 100755 index d523e01b..00000000 Binary files a/static/icons/06002BEC.png and /dev/null differ diff --git a/static/icons/06002BED.png b/static/icons/06002BED.png deleted file mode 100755 index 6d7615d5..00000000 Binary files a/static/icons/06002BED.png and /dev/null differ diff --git a/static/icons/06002BEE.png b/static/icons/06002BEE.png deleted file mode 100755 index 82ab4153..00000000 Binary files a/static/icons/06002BEE.png and /dev/null differ diff --git a/static/icons/06002BEF.png b/static/icons/06002BEF.png deleted file mode 100755 index 0fd8efa4..00000000 Binary files a/static/icons/06002BEF.png and /dev/null differ diff --git a/static/icons/06002BF0.png b/static/icons/06002BF0.png deleted file mode 100755 index 2ccb62a3..00000000 Binary files a/static/icons/06002BF0.png and /dev/null differ diff --git a/static/icons/06002BF1.png b/static/icons/06002BF1.png deleted file mode 100755 index 86fd6acf..00000000 Binary files a/static/icons/06002BF1.png and /dev/null differ diff --git a/static/icons/06002BF2.png b/static/icons/06002BF2.png deleted file mode 100755 index 98aa33f6..00000000 Binary files a/static/icons/06002BF2.png and /dev/null differ diff --git a/static/icons/06002BF3.png b/static/icons/06002BF3.png deleted file mode 100755 index 29157279..00000000 Binary files a/static/icons/06002BF3.png and /dev/null differ diff --git a/static/icons/06002BF4.png b/static/icons/06002BF4.png deleted file mode 100755 index 8a18e721..00000000 Binary files a/static/icons/06002BF4.png and /dev/null differ diff --git a/static/icons/06002BF5.png b/static/icons/06002BF5.png deleted file mode 100755 index 0fa0a912..00000000 Binary files a/static/icons/06002BF5.png and /dev/null differ diff --git a/static/icons/06002BF6.png b/static/icons/06002BF6.png deleted file mode 100755 index aae584b4..00000000 Binary files a/static/icons/06002BF6.png and /dev/null differ diff --git a/static/icons/06002BF7.png b/static/icons/06002BF7.png deleted file mode 100755 index 9aa46cbf..00000000 Binary files a/static/icons/06002BF7.png and /dev/null differ diff --git a/static/icons/06002BF8.png b/static/icons/06002BF8.png deleted file mode 100755 index ab95e2d3..00000000 Binary files a/static/icons/06002BF8.png and /dev/null differ diff --git a/static/icons/06002BF9.png b/static/icons/06002BF9.png deleted file mode 100755 index 778adecf..00000000 Binary files a/static/icons/06002BF9.png and /dev/null differ diff --git a/static/icons/06002BFA.png b/static/icons/06002BFA.png deleted file mode 100755 index 4526cd52..00000000 Binary files a/static/icons/06002BFA.png and /dev/null differ diff --git a/static/icons/06002BFB.png b/static/icons/06002BFB.png deleted file mode 100755 index 9acb9e20..00000000 Binary files a/static/icons/06002BFB.png and /dev/null differ diff --git a/static/icons/06002BFC.png b/static/icons/06002BFC.png deleted file mode 100755 index 588612d2..00000000 Binary files a/static/icons/06002BFC.png and /dev/null differ diff --git a/static/icons/06002BFD.png b/static/icons/06002BFD.png deleted file mode 100755 index b7eb16c2..00000000 Binary files a/static/icons/06002BFD.png and /dev/null differ diff --git a/static/icons/06002BFE.png b/static/icons/06002BFE.png deleted file mode 100755 index 89835771..00000000 Binary files a/static/icons/06002BFE.png and /dev/null differ diff --git a/static/icons/06002BFF.png b/static/icons/06002BFF.png deleted file mode 100755 index fe593893..00000000 Binary files a/static/icons/06002BFF.png and /dev/null differ diff --git a/static/icons/06002C00.png b/static/icons/06002C00.png deleted file mode 100755 index 1aca2017..00000000 Binary files a/static/icons/06002C00.png and /dev/null differ diff --git a/static/icons/06002C01.png b/static/icons/06002C01.png deleted file mode 100755 index 50381d6e..00000000 Binary files a/static/icons/06002C01.png and /dev/null differ diff --git a/static/icons/06002C02.png b/static/icons/06002C02.png deleted file mode 100755 index dea04665..00000000 Binary files a/static/icons/06002C02.png and /dev/null differ diff --git a/static/icons/06002C03.png b/static/icons/06002C03.png deleted file mode 100755 index 24239570..00000000 Binary files a/static/icons/06002C03.png and /dev/null differ diff --git a/static/icons/06002C04.png b/static/icons/06002C04.png deleted file mode 100755 index b43ecc86..00000000 Binary files a/static/icons/06002C04.png and /dev/null differ diff --git a/static/icons/06002C05.png b/static/icons/06002C05.png deleted file mode 100755 index 0b4f18b5..00000000 Binary files a/static/icons/06002C05.png and /dev/null differ diff --git a/static/icons/06002C06.png b/static/icons/06002C06.png deleted file mode 100755 index 3bc24aed..00000000 Binary files a/static/icons/06002C06.png and /dev/null differ diff --git a/static/icons/06002C07.png b/static/icons/06002C07.png deleted file mode 100755 index bdb49658..00000000 Binary files a/static/icons/06002C07.png and /dev/null differ diff --git a/static/icons/06002C08.png b/static/icons/06002C08.png deleted file mode 100755 index 19cc23e6..00000000 Binary files a/static/icons/06002C08.png and /dev/null differ diff --git a/static/icons/06002C09.png b/static/icons/06002C09.png deleted file mode 100755 index 7ea1135f..00000000 Binary files a/static/icons/06002C09.png and /dev/null differ diff --git a/static/icons/06002C0A.png b/static/icons/06002C0A.png deleted file mode 100755 index da12ad51..00000000 Binary files a/static/icons/06002C0A.png and /dev/null differ diff --git a/static/icons/06002C0B.png b/static/icons/06002C0B.png deleted file mode 100755 index ede12110..00000000 Binary files a/static/icons/06002C0B.png and /dev/null differ diff --git a/static/icons/06002C0C.png b/static/icons/06002C0C.png deleted file mode 100755 index bca8996e..00000000 Binary files a/static/icons/06002C0C.png and /dev/null differ diff --git a/static/icons/06002C0D.png b/static/icons/06002C0D.png deleted file mode 100755 index a1b594ad..00000000 Binary files a/static/icons/06002C0D.png and /dev/null differ diff --git a/static/icons/06002C0E.png b/static/icons/06002C0E.png deleted file mode 100755 index 09380e56..00000000 Binary files a/static/icons/06002C0E.png and /dev/null differ diff --git a/static/icons/06002C0F.png b/static/icons/06002C0F.png deleted file mode 100755 index d6e57649..00000000 Binary files a/static/icons/06002C0F.png and /dev/null differ diff --git a/static/icons/06002C10.png b/static/icons/06002C10.png deleted file mode 100755 index 1bc8340a..00000000 Binary files a/static/icons/06002C10.png and /dev/null differ diff --git a/static/icons/06002C11.png b/static/icons/06002C11.png deleted file mode 100755 index 3bee9c27..00000000 Binary files a/static/icons/06002C11.png and /dev/null differ diff --git a/static/icons/06002C12.png b/static/icons/06002C12.png deleted file mode 100755 index 56430c02..00000000 Binary files a/static/icons/06002C12.png and /dev/null differ diff --git a/static/icons/06002C13.png b/static/icons/06002C13.png deleted file mode 100755 index b8803677..00000000 Binary files a/static/icons/06002C13.png and /dev/null differ diff --git a/static/icons/06002C14.png b/static/icons/06002C14.png deleted file mode 100755 index e15c5915..00000000 Binary files a/static/icons/06002C14.png and /dev/null differ diff --git a/static/icons/06002C15.png b/static/icons/06002C15.png deleted file mode 100755 index 2e88ef83..00000000 Binary files a/static/icons/06002C15.png and /dev/null differ diff --git a/static/icons/06002C16.png b/static/icons/06002C16.png deleted file mode 100755 index 71db9ead..00000000 Binary files a/static/icons/06002C16.png and /dev/null differ diff --git a/static/icons/06002C17.png b/static/icons/06002C17.png deleted file mode 100755 index bf4982c4..00000000 Binary files a/static/icons/06002C17.png and /dev/null differ diff --git a/static/icons/06002C18.png b/static/icons/06002C18.png deleted file mode 100755 index 757f2458..00000000 Binary files a/static/icons/06002C18.png and /dev/null differ diff --git a/static/icons/06002C19.png b/static/icons/06002C19.png deleted file mode 100755 index ce66f0db..00000000 Binary files a/static/icons/06002C19.png and /dev/null differ diff --git a/static/icons/06002C1A.png b/static/icons/06002C1A.png deleted file mode 100755 index 5319da82..00000000 Binary files a/static/icons/06002C1A.png and /dev/null differ diff --git a/static/icons/06002C1B.png b/static/icons/06002C1B.png deleted file mode 100755 index 3a0ff85f..00000000 Binary files a/static/icons/06002C1B.png and /dev/null differ diff --git a/static/icons/06002C1C.png b/static/icons/06002C1C.png deleted file mode 100755 index b4048567..00000000 Binary files a/static/icons/06002C1C.png and /dev/null differ diff --git a/static/icons/06002C1D.png b/static/icons/06002C1D.png deleted file mode 100755 index 3fb20e4b..00000000 Binary files a/static/icons/06002C1D.png and /dev/null differ diff --git a/static/icons/06002C1E.png b/static/icons/06002C1E.png deleted file mode 100755 index 74881126..00000000 Binary files a/static/icons/06002C1E.png and /dev/null differ diff --git a/static/icons/06002C1F.png b/static/icons/06002C1F.png deleted file mode 100755 index e79a9324..00000000 Binary files a/static/icons/06002C1F.png and /dev/null differ diff --git a/static/icons/06002C20.png b/static/icons/06002C20.png deleted file mode 100755 index 36fa7a91..00000000 Binary files a/static/icons/06002C20.png and /dev/null differ diff --git a/static/icons/06002C21.png b/static/icons/06002C21.png deleted file mode 100755 index 3b069a8c..00000000 Binary files a/static/icons/06002C21.png and /dev/null differ diff --git a/static/icons/06002C22.png b/static/icons/06002C22.png deleted file mode 100755 index b13b84c8..00000000 Binary files a/static/icons/06002C22.png and /dev/null differ diff --git a/static/icons/06002C23.png b/static/icons/06002C23.png deleted file mode 100755 index 3e8ed61d..00000000 Binary files a/static/icons/06002C23.png and /dev/null differ diff --git a/static/icons/06002C24.png b/static/icons/06002C24.png deleted file mode 100755 index 6dfa4c59..00000000 Binary files a/static/icons/06002C24.png and /dev/null differ diff --git a/static/icons/06002C25.png b/static/icons/06002C25.png deleted file mode 100755 index 7faf2033..00000000 Binary files a/static/icons/06002C25.png and /dev/null differ diff --git a/static/icons/06002C26.png b/static/icons/06002C26.png deleted file mode 100755 index 1de33fb4..00000000 Binary files a/static/icons/06002C26.png and /dev/null differ diff --git a/static/icons/06002C27.png b/static/icons/06002C27.png deleted file mode 100755 index 9eb3c3eb..00000000 Binary files a/static/icons/06002C27.png and /dev/null differ diff --git a/static/icons/06002C28.png b/static/icons/06002C28.png deleted file mode 100755 index 61a5466e..00000000 Binary files a/static/icons/06002C28.png and /dev/null differ diff --git a/static/icons/06002C29.png b/static/icons/06002C29.png deleted file mode 100755 index b977a1bb..00000000 Binary files a/static/icons/06002C29.png and /dev/null differ diff --git a/static/icons/06002C2A.png b/static/icons/06002C2A.png deleted file mode 100755 index c3bbbcf5..00000000 Binary files a/static/icons/06002C2A.png and /dev/null differ diff --git a/static/icons/06002C2B.png b/static/icons/06002C2B.png deleted file mode 100755 index 22adbde6..00000000 Binary files a/static/icons/06002C2B.png and /dev/null differ diff --git a/static/icons/06002C2C.png b/static/icons/06002C2C.png deleted file mode 100755 index b7d131ff..00000000 Binary files a/static/icons/06002C2C.png and /dev/null differ diff --git a/static/icons/06002C2D.png b/static/icons/06002C2D.png deleted file mode 100755 index eff499e2..00000000 Binary files a/static/icons/06002C2D.png and /dev/null differ diff --git a/static/icons/06002C2E.png b/static/icons/06002C2E.png deleted file mode 100755 index 021f8daa..00000000 Binary files a/static/icons/06002C2E.png and /dev/null differ diff --git a/static/icons/06002C2F.png b/static/icons/06002C2F.png deleted file mode 100755 index 02d0b1de..00000000 Binary files a/static/icons/06002C2F.png and /dev/null differ diff --git a/static/icons/06002C30.png b/static/icons/06002C30.png deleted file mode 100755 index beec2479..00000000 Binary files a/static/icons/06002C30.png and /dev/null differ diff --git a/static/icons/06002C31.png b/static/icons/06002C31.png deleted file mode 100755 index 45898318..00000000 Binary files a/static/icons/06002C31.png and /dev/null differ diff --git a/static/icons/06002C32.png b/static/icons/06002C32.png deleted file mode 100755 index 681f85e5..00000000 Binary files a/static/icons/06002C32.png and /dev/null differ diff --git a/static/icons/06002C33.png b/static/icons/06002C33.png deleted file mode 100755 index 797f7d46..00000000 Binary files a/static/icons/06002C33.png and /dev/null differ diff --git a/static/icons/06002C34.png b/static/icons/06002C34.png deleted file mode 100755 index 53bd3c49..00000000 Binary files a/static/icons/06002C34.png and /dev/null differ diff --git a/static/icons/06002C35.png b/static/icons/06002C35.png deleted file mode 100755 index 967d8456..00000000 Binary files a/static/icons/06002C35.png and /dev/null differ diff --git a/static/icons/06002C36.png b/static/icons/06002C36.png deleted file mode 100755 index 54a8767c..00000000 Binary files a/static/icons/06002C36.png and /dev/null differ diff --git a/static/icons/06002C37.png b/static/icons/06002C37.png deleted file mode 100755 index 2870b148..00000000 Binary files a/static/icons/06002C37.png and /dev/null differ diff --git a/static/icons/06002C38.png b/static/icons/06002C38.png deleted file mode 100755 index 33e84a7d..00000000 Binary files a/static/icons/06002C38.png and /dev/null differ diff --git a/static/icons/06002C39.png b/static/icons/06002C39.png deleted file mode 100755 index 20825a23..00000000 Binary files a/static/icons/06002C39.png and /dev/null differ diff --git a/static/icons/06002C3A.png b/static/icons/06002C3A.png deleted file mode 100755 index ddd9b278..00000000 Binary files a/static/icons/06002C3A.png and /dev/null differ diff --git a/static/icons/06002C3B.png b/static/icons/06002C3B.png deleted file mode 100755 index fef6b51e..00000000 Binary files a/static/icons/06002C3B.png and /dev/null differ diff --git a/static/icons/06002C3C.png b/static/icons/06002C3C.png deleted file mode 100755 index caa956c9..00000000 Binary files a/static/icons/06002C3C.png and /dev/null differ diff --git a/static/icons/06002C3D.png b/static/icons/06002C3D.png deleted file mode 100755 index df1ad6e1..00000000 Binary files a/static/icons/06002C3D.png and /dev/null differ diff --git a/static/icons/06002C3E.png b/static/icons/06002C3E.png deleted file mode 100755 index 755fbc5a..00000000 Binary files a/static/icons/06002C3E.png and /dev/null differ diff --git a/static/icons/06002C3F.png b/static/icons/06002C3F.png deleted file mode 100755 index 9594ce45..00000000 Binary files a/static/icons/06002C3F.png and /dev/null differ diff --git a/static/icons/06002C40.png b/static/icons/06002C40.png deleted file mode 100755 index 8a2b27d9..00000000 Binary files a/static/icons/06002C40.png and /dev/null differ diff --git a/static/icons/06002C41.png b/static/icons/06002C41.png deleted file mode 100755 index 1ce47dd2..00000000 Binary files a/static/icons/06002C41.png and /dev/null differ diff --git a/static/icons/06002C42.png b/static/icons/06002C42.png deleted file mode 100755 index 2f3d00ca..00000000 Binary files a/static/icons/06002C42.png and /dev/null differ diff --git a/static/icons/06002C44.png b/static/icons/06002C44.png deleted file mode 100755 index 0d607847..00000000 Binary files a/static/icons/06002C44.png and /dev/null differ diff --git a/static/icons/06002C45.png b/static/icons/06002C45.png deleted file mode 100755 index 368d3b25..00000000 Binary files a/static/icons/06002C45.png and /dev/null differ diff --git a/static/icons/06002C46.png b/static/icons/06002C46.png deleted file mode 100755 index 33e1dbad..00000000 Binary files a/static/icons/06002C46.png and /dev/null differ diff --git a/static/icons/06002C47.png b/static/icons/06002C47.png deleted file mode 100755 index 27d55f3d..00000000 Binary files a/static/icons/06002C47.png and /dev/null differ diff --git a/static/icons/06002C48.png b/static/icons/06002C48.png deleted file mode 100755 index d3f8085e..00000000 Binary files a/static/icons/06002C48.png and /dev/null differ diff --git a/static/icons/06002C49.png b/static/icons/06002C49.png deleted file mode 100755 index 716a76a7..00000000 Binary files a/static/icons/06002C49.png and /dev/null differ diff --git a/static/icons/06002C4A.png b/static/icons/06002C4A.png deleted file mode 100755 index 679ecbdf..00000000 Binary files a/static/icons/06002C4A.png and /dev/null differ diff --git a/static/icons/06002C4B.png b/static/icons/06002C4B.png deleted file mode 100755 index 59c581c6..00000000 Binary files a/static/icons/06002C4B.png and /dev/null differ diff --git a/static/icons/06002C4C.png b/static/icons/06002C4C.png deleted file mode 100755 index c34af3f1..00000000 Binary files a/static/icons/06002C4C.png and /dev/null differ diff --git a/static/icons/06002C4D.png b/static/icons/06002C4D.png deleted file mode 100755 index 1ba52b6f..00000000 Binary files a/static/icons/06002C4D.png and /dev/null differ diff --git a/static/icons/06002C4E.png b/static/icons/06002C4E.png deleted file mode 100755 index 3dae3c33..00000000 Binary files a/static/icons/06002C4E.png and /dev/null differ diff --git a/static/icons/06002C4F.png b/static/icons/06002C4F.png deleted file mode 100755 index 47b181a3..00000000 Binary files a/static/icons/06002C4F.png and /dev/null differ diff --git a/static/icons/06002C50.png b/static/icons/06002C50.png deleted file mode 100755 index 9df69917..00000000 Binary files a/static/icons/06002C50.png and /dev/null differ diff --git a/static/icons/06002C51.png b/static/icons/06002C51.png deleted file mode 100755 index a68d89a1..00000000 Binary files a/static/icons/06002C51.png and /dev/null differ diff --git a/static/icons/06002C52.png b/static/icons/06002C52.png deleted file mode 100755 index 00b74a48..00000000 Binary files a/static/icons/06002C52.png and /dev/null differ diff --git a/static/icons/06002C53.png b/static/icons/06002C53.png deleted file mode 100755 index b4336499..00000000 Binary files a/static/icons/06002C53.png and /dev/null differ diff --git a/static/icons/06002C54.png b/static/icons/06002C54.png deleted file mode 100755 index a6554465..00000000 Binary files a/static/icons/06002C54.png and /dev/null differ diff --git a/static/icons/06002C55.png b/static/icons/06002C55.png deleted file mode 100755 index 224b1c92..00000000 Binary files a/static/icons/06002C55.png and /dev/null differ diff --git a/static/icons/06002C56.png b/static/icons/06002C56.png deleted file mode 100755 index 11c4b997..00000000 Binary files a/static/icons/06002C56.png and /dev/null differ diff --git a/static/icons/06002C57.png b/static/icons/06002C57.png deleted file mode 100755 index c5c3097a..00000000 Binary files a/static/icons/06002C57.png and /dev/null differ diff --git a/static/icons/06002C58.png b/static/icons/06002C58.png deleted file mode 100755 index fb9d4498..00000000 Binary files a/static/icons/06002C58.png and /dev/null differ diff --git a/static/icons/06002C59.png b/static/icons/06002C59.png deleted file mode 100755 index 20706776..00000000 Binary files a/static/icons/06002C59.png and /dev/null differ diff --git a/static/icons/06002C5A.png b/static/icons/06002C5A.png deleted file mode 100755 index 811037b8..00000000 Binary files a/static/icons/06002C5A.png and /dev/null differ diff --git a/static/icons/06002C5B.png b/static/icons/06002C5B.png deleted file mode 100755 index 683b64fa..00000000 Binary files a/static/icons/06002C5B.png and /dev/null differ diff --git a/static/icons/06002C5C.png b/static/icons/06002C5C.png deleted file mode 100755 index 6c59d9a5..00000000 Binary files a/static/icons/06002C5C.png and /dev/null differ diff --git a/static/icons/06002C5D.png b/static/icons/06002C5D.png deleted file mode 100755 index a657d07f..00000000 Binary files a/static/icons/06002C5D.png and /dev/null differ diff --git a/static/icons/06002C5E.png b/static/icons/06002C5E.png deleted file mode 100755 index 74c0a69d..00000000 Binary files a/static/icons/06002C5E.png and /dev/null differ diff --git a/static/icons/06002C5F.png b/static/icons/06002C5F.png deleted file mode 100755 index 78ea9028..00000000 Binary files a/static/icons/06002C5F.png and /dev/null differ diff --git a/static/icons/06002C60.png b/static/icons/06002C60.png deleted file mode 100755 index 2084048a..00000000 Binary files a/static/icons/06002C60.png and /dev/null differ diff --git a/static/icons/06002C61.png b/static/icons/06002C61.png deleted file mode 100755 index 0bd82630..00000000 Binary files a/static/icons/06002C61.png and /dev/null differ diff --git a/static/icons/06002C62.png b/static/icons/06002C62.png deleted file mode 100755 index 8fc793a2..00000000 Binary files a/static/icons/06002C62.png and /dev/null differ diff --git a/static/icons/06002C63.png b/static/icons/06002C63.png deleted file mode 100755 index c9c6d27e..00000000 Binary files a/static/icons/06002C63.png and /dev/null differ diff --git a/static/icons/06002C64.png b/static/icons/06002C64.png deleted file mode 100755 index 4098972a..00000000 Binary files a/static/icons/06002C64.png and /dev/null differ diff --git a/static/icons/06002C65.png b/static/icons/06002C65.png deleted file mode 100755 index 32e570b4..00000000 Binary files a/static/icons/06002C65.png and /dev/null differ diff --git a/static/icons/06002C66.png b/static/icons/06002C66.png deleted file mode 100755 index c21e6c62..00000000 Binary files a/static/icons/06002C66.png and /dev/null differ diff --git a/static/icons/06002C67.png b/static/icons/06002C67.png deleted file mode 100755 index bb4d24fb..00000000 Binary files a/static/icons/06002C67.png and /dev/null differ diff --git a/static/icons/06002C68.png b/static/icons/06002C68.png deleted file mode 100755 index 5288aede..00000000 Binary files a/static/icons/06002C68.png and /dev/null differ diff --git a/static/icons/06002C69.png b/static/icons/06002C69.png deleted file mode 100755 index 6da28e45..00000000 Binary files a/static/icons/06002C69.png and /dev/null differ diff --git a/static/icons/06002C6A.png b/static/icons/06002C6A.png deleted file mode 100755 index e2329706..00000000 Binary files a/static/icons/06002C6A.png and /dev/null differ diff --git a/static/icons/06002C6B.png b/static/icons/06002C6B.png deleted file mode 100755 index edfa9381..00000000 Binary files a/static/icons/06002C6B.png and /dev/null differ diff --git a/static/icons/06002C6C.png b/static/icons/06002C6C.png deleted file mode 100755 index 097b899e..00000000 Binary files a/static/icons/06002C6C.png and /dev/null differ diff --git a/static/icons/06002C6D.png b/static/icons/06002C6D.png deleted file mode 100755 index 324dba53..00000000 Binary files a/static/icons/06002C6D.png and /dev/null differ diff --git a/static/icons/06002C6E.png b/static/icons/06002C6E.png deleted file mode 100755 index b4542125..00000000 Binary files a/static/icons/06002C6E.png and /dev/null differ diff --git a/static/icons/06002C6F.png b/static/icons/06002C6F.png deleted file mode 100755 index 43b3514b..00000000 Binary files a/static/icons/06002C6F.png and /dev/null differ diff --git a/static/icons/06002C70.png b/static/icons/06002C70.png deleted file mode 100755 index 51242da5..00000000 Binary files a/static/icons/06002C70.png and /dev/null differ diff --git a/static/icons/06002C71.png b/static/icons/06002C71.png deleted file mode 100755 index 7b727634..00000000 Binary files a/static/icons/06002C71.png and /dev/null differ diff --git a/static/icons/06002C72.png b/static/icons/06002C72.png deleted file mode 100755 index 25cc4a1e..00000000 Binary files a/static/icons/06002C72.png and /dev/null differ diff --git a/static/icons/06002C73.png b/static/icons/06002C73.png deleted file mode 100755 index 70428198..00000000 Binary files a/static/icons/06002C73.png and /dev/null differ diff --git a/static/icons/06002C74.png b/static/icons/06002C74.png deleted file mode 100755 index a3aea829..00000000 Binary files a/static/icons/06002C74.png and /dev/null differ diff --git a/static/icons/06002C75.png b/static/icons/06002C75.png deleted file mode 100755 index 6eb2a709..00000000 Binary files a/static/icons/06002C75.png and /dev/null differ diff --git a/static/icons/06002C76.png b/static/icons/06002C76.png deleted file mode 100755 index 13e1a789..00000000 Binary files a/static/icons/06002C76.png and /dev/null differ diff --git a/static/icons/06002C77.png b/static/icons/06002C77.png deleted file mode 100755 index 92bd301a..00000000 Binary files a/static/icons/06002C77.png and /dev/null differ diff --git a/static/icons/06002C78.png b/static/icons/06002C78.png deleted file mode 100755 index 7288658b..00000000 Binary files a/static/icons/06002C78.png and /dev/null differ diff --git a/static/icons/06002C79.png b/static/icons/06002C79.png deleted file mode 100755 index 165a7d5f..00000000 Binary files a/static/icons/06002C79.png and /dev/null differ diff --git a/static/icons/06002C7A.png b/static/icons/06002C7A.png deleted file mode 100755 index 3574d1d8..00000000 Binary files a/static/icons/06002C7A.png and /dev/null differ diff --git a/static/icons/06002C7B.png b/static/icons/06002C7B.png deleted file mode 100755 index 4b053eac..00000000 Binary files a/static/icons/06002C7B.png and /dev/null differ diff --git a/static/icons/06002C7C.png b/static/icons/06002C7C.png deleted file mode 100755 index 9f61a7fc..00000000 Binary files a/static/icons/06002C7C.png and /dev/null differ diff --git a/static/icons/06002C7D.png b/static/icons/06002C7D.png deleted file mode 100755 index da6314d7..00000000 Binary files a/static/icons/06002C7D.png and /dev/null differ diff --git a/static/icons/06002C7E.png b/static/icons/06002C7E.png deleted file mode 100755 index 715eb4c3..00000000 Binary files a/static/icons/06002C7E.png and /dev/null differ diff --git a/static/icons/06002C7F.png b/static/icons/06002C7F.png deleted file mode 100755 index a20ca9ca..00000000 Binary files a/static/icons/06002C7F.png and /dev/null differ diff --git a/static/icons/06002C80.png b/static/icons/06002C80.png deleted file mode 100755 index 8264d87d..00000000 Binary files a/static/icons/06002C80.png and /dev/null differ diff --git a/static/icons/06002C81.png b/static/icons/06002C81.png deleted file mode 100755 index 5af16aac..00000000 Binary files a/static/icons/06002C81.png and /dev/null differ diff --git a/static/icons/06002C82.png b/static/icons/06002C82.png deleted file mode 100755 index 203f2a75..00000000 Binary files a/static/icons/06002C82.png and /dev/null differ diff --git a/static/icons/06002C83.png b/static/icons/06002C83.png deleted file mode 100755 index 63d56279..00000000 Binary files a/static/icons/06002C83.png and /dev/null differ diff --git a/static/icons/06002C84.png b/static/icons/06002C84.png deleted file mode 100755 index 444e676c..00000000 Binary files a/static/icons/06002C84.png and /dev/null differ diff --git a/static/icons/06002C85.png b/static/icons/06002C85.png deleted file mode 100755 index 6ec4e602..00000000 Binary files a/static/icons/06002C85.png and /dev/null differ diff --git a/static/icons/06002C86.png b/static/icons/06002C86.png deleted file mode 100755 index ca069ba7..00000000 Binary files a/static/icons/06002C86.png and /dev/null differ diff --git a/static/icons/06002C87.png b/static/icons/06002C87.png deleted file mode 100755 index c71f8690..00000000 Binary files a/static/icons/06002C87.png and /dev/null differ diff --git a/static/icons/06002C88.png b/static/icons/06002C88.png deleted file mode 100755 index 3e818296..00000000 Binary files a/static/icons/06002C88.png and /dev/null differ diff --git a/static/icons/06002C89.png b/static/icons/06002C89.png deleted file mode 100755 index 0f2f70b5..00000000 Binary files a/static/icons/06002C89.png and /dev/null differ diff --git a/static/icons/06002C8A.png b/static/icons/06002C8A.png deleted file mode 100755 index eb8f9b69..00000000 Binary files a/static/icons/06002C8A.png and /dev/null differ diff --git a/static/icons/06002C8B.png b/static/icons/06002C8B.png deleted file mode 100755 index 5742f835..00000000 Binary files a/static/icons/06002C8B.png and /dev/null differ diff --git a/static/icons/06002C8C.png b/static/icons/06002C8C.png deleted file mode 100755 index 21271768..00000000 Binary files a/static/icons/06002C8C.png and /dev/null differ diff --git a/static/icons/06002C8D.png b/static/icons/06002C8D.png deleted file mode 100755 index 35265179..00000000 Binary files a/static/icons/06002C8D.png and /dev/null differ diff --git a/static/icons/06002C8E.png b/static/icons/06002C8E.png deleted file mode 100755 index 213923ac..00000000 Binary files a/static/icons/06002C8E.png and /dev/null differ diff --git a/static/icons/06002C8F.png b/static/icons/06002C8F.png deleted file mode 100755 index d0900a3c..00000000 Binary files a/static/icons/06002C8F.png and /dev/null differ diff --git a/static/icons/06002C90.png b/static/icons/06002C90.png deleted file mode 100755 index b267c814..00000000 Binary files a/static/icons/06002C90.png and /dev/null differ diff --git a/static/icons/06002C91.png b/static/icons/06002C91.png deleted file mode 100755 index 9c4a8fb4..00000000 Binary files a/static/icons/06002C91.png and /dev/null differ diff --git a/static/icons/06002C92.png b/static/icons/06002C92.png deleted file mode 100755 index 9c4a983e..00000000 Binary files a/static/icons/06002C92.png and /dev/null differ diff --git a/static/icons/06002C93.png b/static/icons/06002C93.png deleted file mode 100755 index 06eb6c7f..00000000 Binary files a/static/icons/06002C93.png and /dev/null differ diff --git a/static/icons/06002C94.png b/static/icons/06002C94.png deleted file mode 100755 index 109cfbda..00000000 Binary files a/static/icons/06002C94.png and /dev/null differ diff --git a/static/icons/06002C95.png b/static/icons/06002C95.png deleted file mode 100755 index f04d2b24..00000000 Binary files a/static/icons/06002C95.png and /dev/null differ diff --git a/static/icons/06002C96.png b/static/icons/06002C96.png deleted file mode 100755 index b99eb99d..00000000 Binary files a/static/icons/06002C96.png and /dev/null differ diff --git a/static/icons/06002C97.png b/static/icons/06002C97.png deleted file mode 100755 index 754d6be4..00000000 Binary files a/static/icons/06002C97.png and /dev/null differ diff --git a/static/icons/06002C98.png b/static/icons/06002C98.png deleted file mode 100755 index ee796e4d..00000000 Binary files a/static/icons/06002C98.png and /dev/null differ diff --git a/static/icons/06002C99.png b/static/icons/06002C99.png deleted file mode 100755 index 12d3dac5..00000000 Binary files a/static/icons/06002C99.png and /dev/null differ diff --git a/static/icons/06002C9A.png b/static/icons/06002C9A.png deleted file mode 100755 index 2e534888..00000000 Binary files a/static/icons/06002C9A.png and /dev/null differ diff --git a/static/icons/06002C9B.png b/static/icons/06002C9B.png deleted file mode 100755 index 961e4e6c..00000000 Binary files a/static/icons/06002C9B.png and /dev/null differ diff --git a/static/icons/06002C9C.png b/static/icons/06002C9C.png deleted file mode 100755 index cc7e9be7..00000000 Binary files a/static/icons/06002C9C.png and /dev/null differ diff --git a/static/icons/06002C9D.png b/static/icons/06002C9D.png deleted file mode 100755 index edb19865..00000000 Binary files a/static/icons/06002C9D.png and /dev/null differ diff --git a/static/icons/06002C9E.png b/static/icons/06002C9E.png deleted file mode 100755 index bdf1c24d..00000000 Binary files a/static/icons/06002C9E.png and /dev/null differ diff --git a/static/icons/06002C9F.png b/static/icons/06002C9F.png deleted file mode 100755 index aa35f0b4..00000000 Binary files a/static/icons/06002C9F.png and /dev/null differ diff --git a/static/icons/06002CA0.png b/static/icons/06002CA0.png deleted file mode 100755 index ad6dc419..00000000 Binary files a/static/icons/06002CA0.png and /dev/null differ diff --git a/static/icons/06002CA1.png b/static/icons/06002CA1.png deleted file mode 100755 index 2d1cf0bf..00000000 Binary files a/static/icons/06002CA1.png and /dev/null differ diff --git a/static/icons/06002CA2.png b/static/icons/06002CA2.png deleted file mode 100755 index 0f2946a7..00000000 Binary files a/static/icons/06002CA2.png and /dev/null differ diff --git a/static/icons/06002CA3.png b/static/icons/06002CA3.png deleted file mode 100755 index 126815d5..00000000 Binary files a/static/icons/06002CA3.png and /dev/null differ diff --git a/static/icons/06002CA4.png b/static/icons/06002CA4.png deleted file mode 100755 index 600d02e8..00000000 Binary files a/static/icons/06002CA4.png and /dev/null differ diff --git a/static/icons/06002CA5.png b/static/icons/06002CA5.png deleted file mode 100755 index da5562b6..00000000 Binary files a/static/icons/06002CA5.png and /dev/null differ diff --git a/static/icons/06002CA6.png b/static/icons/06002CA6.png deleted file mode 100755 index 668fc8fe..00000000 Binary files a/static/icons/06002CA6.png and /dev/null differ diff --git a/static/icons/06002CA7.png b/static/icons/06002CA7.png deleted file mode 100755 index 92d30b01..00000000 Binary files a/static/icons/06002CA7.png and /dev/null differ diff --git a/static/icons/06002CA8.png b/static/icons/06002CA8.png deleted file mode 100755 index 667d59bb..00000000 Binary files a/static/icons/06002CA8.png and /dev/null differ diff --git a/static/icons/06002CA9.png b/static/icons/06002CA9.png deleted file mode 100755 index e06b421d..00000000 Binary files a/static/icons/06002CA9.png and /dev/null differ diff --git a/static/icons/06002CAA.png b/static/icons/06002CAA.png deleted file mode 100755 index be7f7e0c..00000000 Binary files a/static/icons/06002CAA.png and /dev/null differ diff --git a/static/icons/06002CAB.png b/static/icons/06002CAB.png deleted file mode 100755 index 9c830c13..00000000 Binary files a/static/icons/06002CAB.png and /dev/null differ diff --git a/static/icons/06002CAC.png b/static/icons/06002CAC.png deleted file mode 100755 index 51264a55..00000000 Binary files a/static/icons/06002CAC.png and /dev/null differ diff --git a/static/icons/06002CAD.png b/static/icons/06002CAD.png deleted file mode 100755 index 836a083c..00000000 Binary files a/static/icons/06002CAD.png and /dev/null differ diff --git a/static/icons/06002CAE.png b/static/icons/06002CAE.png deleted file mode 100755 index ebb55954..00000000 Binary files a/static/icons/06002CAE.png and /dev/null differ diff --git a/static/icons/06002CAF.png b/static/icons/06002CAF.png deleted file mode 100755 index 60bb4fb6..00000000 Binary files a/static/icons/06002CAF.png and /dev/null differ diff --git a/static/icons/06002CB0.png b/static/icons/06002CB0.png deleted file mode 100755 index ba382ef5..00000000 Binary files a/static/icons/06002CB0.png and /dev/null differ diff --git a/static/icons/06002CB1.png b/static/icons/06002CB1.png deleted file mode 100755 index 17b763f6..00000000 Binary files a/static/icons/06002CB1.png and /dev/null differ diff --git a/static/icons/06002CB2.png b/static/icons/06002CB2.png deleted file mode 100755 index 3f676906..00000000 Binary files a/static/icons/06002CB2.png and /dev/null differ diff --git a/static/icons/06002CB3.png b/static/icons/06002CB3.png deleted file mode 100755 index c94d95b1..00000000 Binary files a/static/icons/06002CB3.png and /dev/null differ diff --git a/static/icons/06002CB4.png b/static/icons/06002CB4.png deleted file mode 100755 index a532af07..00000000 Binary files a/static/icons/06002CB4.png and /dev/null differ diff --git a/static/icons/06002CB5.png b/static/icons/06002CB5.png deleted file mode 100755 index cc7156c7..00000000 Binary files a/static/icons/06002CB5.png and /dev/null differ diff --git a/static/icons/06002CB6.png b/static/icons/06002CB6.png deleted file mode 100755 index 4e909e38..00000000 Binary files a/static/icons/06002CB6.png and /dev/null differ diff --git a/static/icons/06002CB7.png b/static/icons/06002CB7.png deleted file mode 100755 index 478a6cc0..00000000 Binary files a/static/icons/06002CB7.png and /dev/null differ diff --git a/static/icons/06002CB8.png b/static/icons/06002CB8.png deleted file mode 100755 index a46fe13c..00000000 Binary files a/static/icons/06002CB8.png and /dev/null differ diff --git a/static/icons/06002CB9.png b/static/icons/06002CB9.png deleted file mode 100755 index c2c3321a..00000000 Binary files a/static/icons/06002CB9.png and /dev/null differ diff --git a/static/icons/06002CBA.png b/static/icons/06002CBA.png deleted file mode 100755 index 0af17885..00000000 Binary files a/static/icons/06002CBA.png and /dev/null differ diff --git a/static/icons/06002CBB.png b/static/icons/06002CBB.png deleted file mode 100755 index f8b01dfd..00000000 Binary files a/static/icons/06002CBB.png and /dev/null differ diff --git a/static/icons/06002CBC.png b/static/icons/06002CBC.png deleted file mode 100755 index c997940b..00000000 Binary files a/static/icons/06002CBC.png and /dev/null differ diff --git a/static/icons/06002CBD.png b/static/icons/06002CBD.png deleted file mode 100755 index a29854c6..00000000 Binary files a/static/icons/06002CBD.png and /dev/null differ diff --git a/static/icons/06002CBE.png b/static/icons/06002CBE.png deleted file mode 100755 index fae3e209..00000000 Binary files a/static/icons/06002CBE.png and /dev/null differ diff --git a/static/icons/06002CBF.png b/static/icons/06002CBF.png deleted file mode 100755 index 2c838684..00000000 Binary files a/static/icons/06002CBF.png and /dev/null differ diff --git a/static/icons/06002CC0.png b/static/icons/06002CC0.png deleted file mode 100755 index a1e94c09..00000000 Binary files a/static/icons/06002CC0.png and /dev/null differ diff --git a/static/icons/06002CC1.png b/static/icons/06002CC1.png deleted file mode 100755 index 7a6162b5..00000000 Binary files a/static/icons/06002CC1.png and /dev/null differ diff --git a/static/icons/06002CC2.png b/static/icons/06002CC2.png deleted file mode 100755 index 0fcf5b1a..00000000 Binary files a/static/icons/06002CC2.png and /dev/null differ diff --git a/static/icons/06002CC3.png b/static/icons/06002CC3.png deleted file mode 100755 index 7ec700bc..00000000 Binary files a/static/icons/06002CC3.png and /dev/null differ diff --git a/static/icons/06002CC4.png b/static/icons/06002CC4.png deleted file mode 100755 index 95615f5f..00000000 Binary files a/static/icons/06002CC4.png and /dev/null differ diff --git a/static/icons/06002CC5.png b/static/icons/06002CC5.png deleted file mode 100755 index a6bfd8bd..00000000 Binary files a/static/icons/06002CC5.png and /dev/null differ diff --git a/static/icons/06002CC6.png b/static/icons/06002CC6.png deleted file mode 100755 index 735bba10..00000000 Binary files a/static/icons/06002CC6.png and /dev/null differ diff --git a/static/icons/06002CC7.png b/static/icons/06002CC7.png deleted file mode 100755 index d528c885..00000000 Binary files a/static/icons/06002CC7.png and /dev/null differ diff --git a/static/icons/06002CC8.png b/static/icons/06002CC8.png deleted file mode 100755 index 86e55b88..00000000 Binary files a/static/icons/06002CC8.png and /dev/null differ diff --git a/static/icons/06002CC9.png b/static/icons/06002CC9.png deleted file mode 100755 index 4b002869..00000000 Binary files a/static/icons/06002CC9.png and /dev/null differ diff --git a/static/icons/06002CCA.png b/static/icons/06002CCA.png deleted file mode 100755 index 5c17c760..00000000 Binary files a/static/icons/06002CCA.png and /dev/null differ diff --git a/static/icons/06002CCB.png b/static/icons/06002CCB.png deleted file mode 100755 index 9cfc6406..00000000 Binary files a/static/icons/06002CCB.png and /dev/null differ diff --git a/static/icons/06002CCC.png b/static/icons/06002CCC.png deleted file mode 100755 index 5a5f35d5..00000000 Binary files a/static/icons/06002CCC.png and /dev/null differ diff --git a/static/icons/06002CCD.png b/static/icons/06002CCD.png deleted file mode 100755 index dbe42374..00000000 Binary files a/static/icons/06002CCD.png and /dev/null differ diff --git a/static/icons/06002CCE.png b/static/icons/06002CCE.png deleted file mode 100755 index 657075e0..00000000 Binary files a/static/icons/06002CCE.png and /dev/null differ diff --git a/static/icons/06002CCF.png b/static/icons/06002CCF.png deleted file mode 100755 index 6f928f1a..00000000 Binary files a/static/icons/06002CCF.png and /dev/null differ diff --git a/static/icons/06002CD0.png b/static/icons/06002CD0.png deleted file mode 100755 index 854829a6..00000000 Binary files a/static/icons/06002CD0.png and /dev/null differ diff --git a/static/icons/06002CD1.png b/static/icons/06002CD1.png deleted file mode 100755 index 87c226f2..00000000 Binary files a/static/icons/06002CD1.png and /dev/null differ diff --git a/static/icons/06002CD2.png b/static/icons/06002CD2.png deleted file mode 100755 index 53359b6f..00000000 Binary files a/static/icons/06002CD2.png and /dev/null differ diff --git a/static/icons/06002CD3.png b/static/icons/06002CD3.png deleted file mode 100755 index 7011ef75..00000000 Binary files a/static/icons/06002CD3.png and /dev/null differ diff --git a/static/icons/06002CD4.png b/static/icons/06002CD4.png deleted file mode 100755 index b1c2bb78..00000000 Binary files a/static/icons/06002CD4.png and /dev/null differ diff --git a/static/icons/06002CD5.png b/static/icons/06002CD5.png deleted file mode 100755 index f723d8f8..00000000 Binary files a/static/icons/06002CD5.png and /dev/null differ diff --git a/static/icons/06002CD6.png b/static/icons/06002CD6.png deleted file mode 100755 index 01285449..00000000 Binary files a/static/icons/06002CD6.png and /dev/null differ diff --git a/static/icons/06002CD7.png b/static/icons/06002CD7.png deleted file mode 100755 index aa50d3d0..00000000 Binary files a/static/icons/06002CD7.png and /dev/null differ diff --git a/static/icons/06002CD8.png b/static/icons/06002CD8.png deleted file mode 100755 index 5b485eea..00000000 Binary files a/static/icons/06002CD8.png and /dev/null differ diff --git a/static/icons/06002CD9.png b/static/icons/06002CD9.png deleted file mode 100755 index f252a859..00000000 Binary files a/static/icons/06002CD9.png and /dev/null differ diff --git a/static/icons/06002CDA.png b/static/icons/06002CDA.png deleted file mode 100755 index bfe9bc80..00000000 Binary files a/static/icons/06002CDA.png and /dev/null differ diff --git a/static/icons/06002CDB.png b/static/icons/06002CDB.png deleted file mode 100755 index bc61ce8f..00000000 Binary files a/static/icons/06002CDB.png and /dev/null differ diff --git a/static/icons/06002CDC.png b/static/icons/06002CDC.png deleted file mode 100755 index d58ea167..00000000 Binary files a/static/icons/06002CDC.png and /dev/null differ diff --git a/static/icons/06002CDD.png b/static/icons/06002CDD.png deleted file mode 100755 index 15cda949..00000000 Binary files a/static/icons/06002CDD.png and /dev/null differ diff --git a/static/icons/06002CDE.png b/static/icons/06002CDE.png deleted file mode 100755 index c4d67a40..00000000 Binary files a/static/icons/06002CDE.png and /dev/null differ diff --git a/static/icons/06002CDF.png b/static/icons/06002CDF.png deleted file mode 100755 index db1022ce..00000000 Binary files a/static/icons/06002CDF.png and /dev/null differ diff --git a/static/icons/06002CE0.png b/static/icons/06002CE0.png deleted file mode 100755 index a6450690..00000000 Binary files a/static/icons/06002CE0.png and /dev/null differ diff --git a/static/icons/06002CE1.png b/static/icons/06002CE1.png deleted file mode 100755 index bc073405..00000000 Binary files a/static/icons/06002CE1.png and /dev/null differ diff --git a/static/icons/06002CE2.png b/static/icons/06002CE2.png deleted file mode 100755 index b31fc299..00000000 Binary files a/static/icons/06002CE2.png and /dev/null differ diff --git a/static/icons/06002CE3.png b/static/icons/06002CE3.png deleted file mode 100755 index 4d9b1ed4..00000000 Binary files a/static/icons/06002CE3.png and /dev/null differ diff --git a/static/icons/06002CE4.png b/static/icons/06002CE4.png deleted file mode 100755 index d5281954..00000000 Binary files a/static/icons/06002CE4.png and /dev/null differ diff --git a/static/icons/06002CE5.png b/static/icons/06002CE5.png deleted file mode 100755 index d438f1e1..00000000 Binary files a/static/icons/06002CE5.png and /dev/null differ diff --git a/static/icons/06002CE6.png b/static/icons/06002CE6.png deleted file mode 100755 index f7900b3a..00000000 Binary files a/static/icons/06002CE6.png and /dev/null differ diff --git a/static/icons/06002CE7.png b/static/icons/06002CE7.png deleted file mode 100755 index 9aa051d9..00000000 Binary files a/static/icons/06002CE7.png and /dev/null differ diff --git a/static/icons/06002CE8.png b/static/icons/06002CE8.png deleted file mode 100755 index 8d3efe4c..00000000 Binary files a/static/icons/06002CE8.png and /dev/null differ diff --git a/static/icons/06002CEC.png b/static/icons/06002CEC.png deleted file mode 100755 index b3f1a0ef..00000000 Binary files a/static/icons/06002CEC.png and /dev/null differ diff --git a/static/icons/06002CED.png b/static/icons/06002CED.png deleted file mode 100755 index 8df377c6..00000000 Binary files a/static/icons/06002CED.png and /dev/null differ diff --git a/static/icons/06002CEE.png b/static/icons/06002CEE.png deleted file mode 100755 index 6b8eb588..00000000 Binary files a/static/icons/06002CEE.png and /dev/null differ diff --git a/static/icons/06002CEF.png b/static/icons/06002CEF.png deleted file mode 100755 index a0698dc5..00000000 Binary files a/static/icons/06002CEF.png and /dev/null differ diff --git a/static/icons/06002CF0.png b/static/icons/06002CF0.png deleted file mode 100755 index 56ec6a06..00000000 Binary files a/static/icons/06002CF0.png and /dev/null differ diff --git a/static/icons/06002CF1.png b/static/icons/06002CF1.png deleted file mode 100755 index a731292f..00000000 Binary files a/static/icons/06002CF1.png and /dev/null differ diff --git a/static/icons/06002CF2.png b/static/icons/06002CF2.png deleted file mode 100755 index 913ae76f..00000000 Binary files a/static/icons/06002CF2.png and /dev/null differ diff --git a/static/icons/06002CF3.png b/static/icons/06002CF3.png deleted file mode 100755 index 0666a783..00000000 Binary files a/static/icons/06002CF3.png and /dev/null differ diff --git a/static/icons/06002CF4.png b/static/icons/06002CF4.png deleted file mode 100755 index 90a53340..00000000 Binary files a/static/icons/06002CF4.png and /dev/null differ diff --git a/static/icons/06002CF5.png b/static/icons/06002CF5.png deleted file mode 100755 index e12af9c0..00000000 Binary files a/static/icons/06002CF5.png and /dev/null differ diff --git a/static/icons/06002CF6.png b/static/icons/06002CF6.png deleted file mode 100755 index 55e8df5b..00000000 Binary files a/static/icons/06002CF6.png and /dev/null differ diff --git a/static/icons/06002CF7.png b/static/icons/06002CF7.png deleted file mode 100755 index 61efc8e8..00000000 Binary files a/static/icons/06002CF7.png and /dev/null differ diff --git a/static/icons/06002CF8.png b/static/icons/06002CF8.png deleted file mode 100755 index 723e9793..00000000 Binary files a/static/icons/06002CF8.png and /dev/null differ diff --git a/static/icons/06002CF9.png b/static/icons/06002CF9.png deleted file mode 100755 index aeaeb6af..00000000 Binary files a/static/icons/06002CF9.png and /dev/null differ diff --git a/static/icons/06002CFA.png b/static/icons/06002CFA.png deleted file mode 100755 index 7bead307..00000000 Binary files a/static/icons/06002CFA.png and /dev/null differ diff --git a/static/icons/06002CFB.png b/static/icons/06002CFB.png deleted file mode 100755 index 9cbd0351..00000000 Binary files a/static/icons/06002CFB.png and /dev/null differ diff --git a/static/icons/06002CFC.png b/static/icons/06002CFC.png deleted file mode 100755 index e984e7c5..00000000 Binary files a/static/icons/06002CFC.png and /dev/null differ diff --git a/static/icons/06002CFD.png b/static/icons/06002CFD.png deleted file mode 100755 index 35824956..00000000 Binary files a/static/icons/06002CFD.png and /dev/null differ diff --git a/static/icons/06002CFE.png b/static/icons/06002CFE.png deleted file mode 100755 index 520d1ee1..00000000 Binary files a/static/icons/06002CFE.png and /dev/null differ diff --git a/static/icons/06002CFF.png b/static/icons/06002CFF.png deleted file mode 100755 index f96aeac3..00000000 Binary files a/static/icons/06002CFF.png and /dev/null differ diff --git a/static/icons/06002D00.png b/static/icons/06002D00.png deleted file mode 100755 index 6580024e..00000000 Binary files a/static/icons/06002D00.png and /dev/null differ diff --git a/static/icons/06002D01.png b/static/icons/06002D01.png deleted file mode 100755 index 040b7746..00000000 Binary files a/static/icons/06002D01.png and /dev/null differ diff --git a/static/icons/06002D02.png b/static/icons/06002D02.png deleted file mode 100755 index 5a2d843d..00000000 Binary files a/static/icons/06002D02.png and /dev/null differ diff --git a/static/icons/06002D03.png b/static/icons/06002D03.png deleted file mode 100755 index 750a168d..00000000 Binary files a/static/icons/06002D03.png and /dev/null differ diff --git a/static/icons/06002D04.png b/static/icons/06002D04.png deleted file mode 100755 index 0a738efd..00000000 Binary files a/static/icons/06002D04.png and /dev/null differ diff --git a/static/icons/06002D05.png b/static/icons/06002D05.png deleted file mode 100755 index f9d00bb5..00000000 Binary files a/static/icons/06002D05.png and /dev/null differ diff --git a/static/icons/06002D06.png b/static/icons/06002D06.png deleted file mode 100755 index adc06397..00000000 Binary files a/static/icons/06002D06.png and /dev/null differ diff --git a/static/icons/06002D07.png b/static/icons/06002D07.png deleted file mode 100755 index 27cac6c6..00000000 Binary files a/static/icons/06002D07.png and /dev/null differ diff --git a/static/icons/06002D08.png b/static/icons/06002D08.png deleted file mode 100755 index 4c1abce4..00000000 Binary files a/static/icons/06002D08.png and /dev/null differ diff --git a/static/icons/06002D09.png b/static/icons/06002D09.png deleted file mode 100755 index 6a5c0800..00000000 Binary files a/static/icons/06002D09.png and /dev/null differ diff --git a/static/icons/06002D0A.png b/static/icons/06002D0A.png deleted file mode 100755 index e2164cbe..00000000 Binary files a/static/icons/06002D0A.png and /dev/null differ diff --git a/static/icons/06002D0B.png b/static/icons/06002D0B.png deleted file mode 100755 index f4bb486f..00000000 Binary files a/static/icons/06002D0B.png and /dev/null differ diff --git a/static/icons/06002D0C.png b/static/icons/06002D0C.png deleted file mode 100755 index 2cbfbabb..00000000 Binary files a/static/icons/06002D0C.png and /dev/null differ diff --git a/static/icons/06002D0D.png b/static/icons/06002D0D.png deleted file mode 100755 index 5cbcdc78..00000000 Binary files a/static/icons/06002D0D.png and /dev/null differ diff --git a/static/icons/06002D0E.png b/static/icons/06002D0E.png deleted file mode 100755 index a20462e6..00000000 Binary files a/static/icons/06002D0E.png and /dev/null differ diff --git a/static/icons/06002D0F.png b/static/icons/06002D0F.png deleted file mode 100755 index 538dfc77..00000000 Binary files a/static/icons/06002D0F.png and /dev/null differ diff --git a/static/icons/06002D10.png b/static/icons/06002D10.png deleted file mode 100755 index 2933ce78..00000000 Binary files a/static/icons/06002D10.png and /dev/null differ diff --git a/static/icons/06002D11.png b/static/icons/06002D11.png deleted file mode 100755 index a42b0fb7..00000000 Binary files a/static/icons/06002D11.png and /dev/null differ diff --git a/static/icons/06002D12.png b/static/icons/06002D12.png deleted file mode 100755 index 7a2e7b54..00000000 Binary files a/static/icons/06002D12.png and /dev/null differ diff --git a/static/icons/06002D13.png b/static/icons/06002D13.png deleted file mode 100755 index a68d468d..00000000 Binary files a/static/icons/06002D13.png and /dev/null differ diff --git a/static/icons/06002D14.png b/static/icons/06002D14.png deleted file mode 100755 index f11a2ac9..00000000 Binary files a/static/icons/06002D14.png and /dev/null differ diff --git a/static/icons/06002D15.png b/static/icons/06002D15.png deleted file mode 100755 index ab2a305a..00000000 Binary files a/static/icons/06002D15.png and /dev/null differ diff --git a/static/icons/06002D16.png b/static/icons/06002D16.png deleted file mode 100755 index d0cf62a6..00000000 Binary files a/static/icons/06002D16.png and /dev/null differ diff --git a/static/icons/06002D17.png b/static/icons/06002D17.png deleted file mode 100755 index 31c064f8..00000000 Binary files a/static/icons/06002D17.png and /dev/null differ diff --git a/static/icons/06002D18.png b/static/icons/06002D18.png deleted file mode 100755 index 1b924044..00000000 Binary files a/static/icons/06002D18.png and /dev/null differ diff --git a/static/icons/06002D19.png b/static/icons/06002D19.png deleted file mode 100755 index 796880fe..00000000 Binary files a/static/icons/06002D19.png and /dev/null differ diff --git a/static/icons/06002D1A.png b/static/icons/06002D1A.png deleted file mode 100755 index 905bce8a..00000000 Binary files a/static/icons/06002D1A.png and /dev/null differ diff --git a/static/icons/06002D1B.png b/static/icons/06002D1B.png deleted file mode 100755 index 8d3e60c5..00000000 Binary files a/static/icons/06002D1B.png and /dev/null differ diff --git a/static/icons/06002D1C.png b/static/icons/06002D1C.png deleted file mode 100755 index 5af72439..00000000 Binary files a/static/icons/06002D1C.png and /dev/null differ diff --git a/static/icons/06002D1D.png b/static/icons/06002D1D.png deleted file mode 100755 index 21312467..00000000 Binary files a/static/icons/06002D1D.png and /dev/null differ diff --git a/static/icons/06002D1E.png b/static/icons/06002D1E.png deleted file mode 100755 index 5885e050..00000000 Binary files a/static/icons/06002D1E.png and /dev/null differ diff --git a/static/icons/06002D1F.png b/static/icons/06002D1F.png deleted file mode 100755 index 54e1e0af..00000000 Binary files a/static/icons/06002D1F.png and /dev/null differ diff --git a/static/icons/06002D20.png b/static/icons/06002D20.png deleted file mode 100755 index ce8eeac6..00000000 Binary files a/static/icons/06002D20.png and /dev/null differ diff --git a/static/icons/06002D21.png b/static/icons/06002D21.png deleted file mode 100755 index dc89d0e2..00000000 Binary files a/static/icons/06002D21.png and /dev/null differ diff --git a/static/icons/06002D22.png b/static/icons/06002D22.png deleted file mode 100755 index cf0edded..00000000 Binary files a/static/icons/06002D22.png and /dev/null differ diff --git a/static/icons/06002D23.png b/static/icons/06002D23.png deleted file mode 100755 index beaab1a5..00000000 Binary files a/static/icons/06002D23.png and /dev/null differ diff --git a/static/icons/06002D24.png b/static/icons/06002D24.png deleted file mode 100755 index 895d117a..00000000 Binary files a/static/icons/06002D24.png and /dev/null differ diff --git a/static/icons/06002D25.png b/static/icons/06002D25.png deleted file mode 100755 index 0168259e..00000000 Binary files a/static/icons/06002D25.png and /dev/null differ diff --git a/static/icons/06002D26.png b/static/icons/06002D26.png deleted file mode 100755 index 552052cc..00000000 Binary files a/static/icons/06002D26.png and /dev/null differ diff --git a/static/icons/06002D27.png b/static/icons/06002D27.png deleted file mode 100755 index 7154cb31..00000000 Binary files a/static/icons/06002D27.png and /dev/null differ diff --git a/static/icons/06002D28.png b/static/icons/06002D28.png deleted file mode 100755 index cccf3a97..00000000 Binary files a/static/icons/06002D28.png and /dev/null differ diff --git a/static/icons/06002D29.png b/static/icons/06002D29.png deleted file mode 100755 index 959a741b..00000000 Binary files a/static/icons/06002D29.png and /dev/null differ diff --git a/static/icons/06002D2A.png b/static/icons/06002D2A.png deleted file mode 100755 index fa49003a..00000000 Binary files a/static/icons/06002D2A.png and /dev/null differ diff --git a/static/icons/06002D2B.png b/static/icons/06002D2B.png deleted file mode 100755 index f7c3c876..00000000 Binary files a/static/icons/06002D2B.png and /dev/null differ diff --git a/static/icons/06002D2C.png b/static/icons/06002D2C.png deleted file mode 100755 index 28c1ffd3..00000000 Binary files a/static/icons/06002D2C.png and /dev/null differ diff --git a/static/icons/06002D2D.png b/static/icons/06002D2D.png deleted file mode 100755 index e1d94382..00000000 Binary files a/static/icons/06002D2D.png and /dev/null differ diff --git a/static/icons/06002D2E.png b/static/icons/06002D2E.png deleted file mode 100755 index 87f7f16d..00000000 Binary files a/static/icons/06002D2E.png and /dev/null differ diff --git a/static/icons/06002D2F.png b/static/icons/06002D2F.png deleted file mode 100755 index bcaa21c3..00000000 Binary files a/static/icons/06002D2F.png and /dev/null differ diff --git a/static/icons/06002D30.png b/static/icons/06002D30.png deleted file mode 100755 index 8fdf2510..00000000 Binary files a/static/icons/06002D30.png and /dev/null differ diff --git a/static/icons/06002D31.png b/static/icons/06002D31.png deleted file mode 100755 index 4d54c416..00000000 Binary files a/static/icons/06002D31.png and /dev/null differ diff --git a/static/icons/06002D32.png b/static/icons/06002D32.png deleted file mode 100755 index dd7ba4e8..00000000 Binary files a/static/icons/06002D32.png and /dev/null differ diff --git a/static/icons/06002D33.png b/static/icons/06002D33.png deleted file mode 100755 index 0a4ce061..00000000 Binary files a/static/icons/06002D33.png and /dev/null differ diff --git a/static/icons/06002D34.png b/static/icons/06002D34.png deleted file mode 100755 index 370f5cbb..00000000 Binary files a/static/icons/06002D34.png and /dev/null differ diff --git a/static/icons/06002D35.png b/static/icons/06002D35.png deleted file mode 100755 index dce67f90..00000000 Binary files a/static/icons/06002D35.png and /dev/null differ diff --git a/static/icons/06002D36.png b/static/icons/06002D36.png deleted file mode 100755 index 22dcd6da..00000000 Binary files a/static/icons/06002D36.png and /dev/null differ diff --git a/static/icons/06002D37.png b/static/icons/06002D37.png deleted file mode 100755 index cd1ce66f..00000000 Binary files a/static/icons/06002D37.png and /dev/null differ diff --git a/static/icons/06002D38.png b/static/icons/06002D38.png deleted file mode 100755 index 7f9d13e7..00000000 Binary files a/static/icons/06002D38.png and /dev/null differ diff --git a/static/icons/06002D39.png b/static/icons/06002D39.png deleted file mode 100755 index ae75f4dd..00000000 Binary files a/static/icons/06002D39.png and /dev/null differ diff --git a/static/icons/06002D3A.png b/static/icons/06002D3A.png deleted file mode 100755 index 0c505595..00000000 Binary files a/static/icons/06002D3A.png and /dev/null differ diff --git a/static/icons/06002D3B.png b/static/icons/06002D3B.png deleted file mode 100755 index 04b6e630..00000000 Binary files a/static/icons/06002D3B.png and /dev/null differ diff --git a/static/icons/06002D3C.png b/static/icons/06002D3C.png deleted file mode 100755 index 46d12a0c..00000000 Binary files a/static/icons/06002D3C.png and /dev/null differ diff --git a/static/icons/06002D3D.png b/static/icons/06002D3D.png deleted file mode 100755 index 0549c00b..00000000 Binary files a/static/icons/06002D3D.png and /dev/null differ diff --git a/static/icons/06002D3E.png b/static/icons/06002D3E.png deleted file mode 100755 index 6edaabc3..00000000 Binary files a/static/icons/06002D3E.png and /dev/null differ diff --git a/static/icons/06002D3F.png b/static/icons/06002D3F.png deleted file mode 100755 index 5e637d0c..00000000 Binary files a/static/icons/06002D3F.png and /dev/null differ diff --git a/static/icons/06002D40.png b/static/icons/06002D40.png deleted file mode 100755 index 6160f4ba..00000000 Binary files a/static/icons/06002D40.png and /dev/null differ diff --git a/static/icons/06002D41.png b/static/icons/06002D41.png deleted file mode 100755 index b27f5954..00000000 Binary files a/static/icons/06002D41.png and /dev/null differ diff --git a/static/icons/06002D42.png b/static/icons/06002D42.png deleted file mode 100755 index b5fa42e8..00000000 Binary files a/static/icons/06002D42.png and /dev/null differ diff --git a/static/icons/06002D43.png b/static/icons/06002D43.png deleted file mode 100755 index a1a7b750..00000000 Binary files a/static/icons/06002D43.png and /dev/null differ diff --git a/static/icons/06002D44.png b/static/icons/06002D44.png deleted file mode 100755 index 09af8d99..00000000 Binary files a/static/icons/06002D44.png and /dev/null differ diff --git a/static/icons/06002D45.png b/static/icons/06002D45.png deleted file mode 100755 index 41e807c8..00000000 Binary files a/static/icons/06002D45.png and /dev/null differ diff --git a/static/icons/06002D46.png b/static/icons/06002D46.png deleted file mode 100755 index 736b59cc..00000000 Binary files a/static/icons/06002D46.png and /dev/null differ diff --git a/static/icons/06002D47.png b/static/icons/06002D47.png deleted file mode 100755 index 7605e2ac..00000000 Binary files a/static/icons/06002D47.png and /dev/null differ diff --git a/static/icons/06002D48.png b/static/icons/06002D48.png deleted file mode 100755 index 32b921af..00000000 Binary files a/static/icons/06002D48.png and /dev/null differ diff --git a/static/icons/06002D49.png b/static/icons/06002D49.png deleted file mode 100755 index f7f5a19a..00000000 Binary files a/static/icons/06002D49.png and /dev/null differ diff --git a/static/icons/06002D4A.png b/static/icons/06002D4A.png deleted file mode 100755 index 77dc3f53..00000000 Binary files a/static/icons/06002D4A.png and /dev/null differ diff --git a/static/icons/06002D4B.png b/static/icons/06002D4B.png deleted file mode 100755 index 7affc021..00000000 Binary files a/static/icons/06002D4B.png and /dev/null differ diff --git a/static/icons/06002D4C.png b/static/icons/06002D4C.png deleted file mode 100755 index 6461868d..00000000 Binary files a/static/icons/06002D4C.png and /dev/null differ diff --git a/static/icons/06002D4D.png b/static/icons/06002D4D.png deleted file mode 100755 index 62293623..00000000 Binary files a/static/icons/06002D4D.png and /dev/null differ diff --git a/static/icons/06002D4E.png b/static/icons/06002D4E.png deleted file mode 100755 index 40c06e09..00000000 Binary files a/static/icons/06002D4E.png and /dev/null differ diff --git a/static/icons/06002D4F.png b/static/icons/06002D4F.png deleted file mode 100755 index c5e43e65..00000000 Binary files a/static/icons/06002D4F.png and /dev/null differ diff --git a/static/icons/06002D50.png b/static/icons/06002D50.png deleted file mode 100755 index 55e4b31d..00000000 Binary files a/static/icons/06002D50.png and /dev/null differ diff --git a/static/icons/06002D51.png b/static/icons/06002D51.png deleted file mode 100755 index 4dc4c390..00000000 Binary files a/static/icons/06002D51.png and /dev/null differ diff --git a/static/icons/06002D52.png b/static/icons/06002D52.png deleted file mode 100755 index d9432af4..00000000 Binary files a/static/icons/06002D52.png and /dev/null differ diff --git a/static/icons/06002D53.png b/static/icons/06002D53.png deleted file mode 100755 index 50412c0e..00000000 Binary files a/static/icons/06002D53.png and /dev/null differ diff --git a/static/icons/06002D54.png b/static/icons/06002D54.png deleted file mode 100755 index 11680bf3..00000000 Binary files a/static/icons/06002D54.png and /dev/null differ diff --git a/static/icons/06002D55.png b/static/icons/06002D55.png deleted file mode 100755 index b956f8af..00000000 Binary files a/static/icons/06002D55.png and /dev/null differ diff --git a/static/icons/06002D56.png b/static/icons/06002D56.png deleted file mode 100755 index 1f1f9dea..00000000 Binary files a/static/icons/06002D56.png and /dev/null differ diff --git a/static/icons/06002D57.png b/static/icons/06002D57.png deleted file mode 100755 index a2d2fd1d..00000000 Binary files a/static/icons/06002D57.png and /dev/null differ diff --git a/static/icons/06002D58.png b/static/icons/06002D58.png deleted file mode 100755 index 36782e8e..00000000 Binary files a/static/icons/06002D58.png and /dev/null differ diff --git a/static/icons/06002D59.png b/static/icons/06002D59.png deleted file mode 100755 index 0780df32..00000000 Binary files a/static/icons/06002D59.png and /dev/null differ diff --git a/static/icons/06002D5A.png b/static/icons/06002D5A.png deleted file mode 100755 index e858782f..00000000 Binary files a/static/icons/06002D5A.png and /dev/null differ diff --git a/static/icons/06002D5B.png b/static/icons/06002D5B.png deleted file mode 100755 index db610621..00000000 Binary files a/static/icons/06002D5B.png and /dev/null differ diff --git a/static/icons/06002D5C.png b/static/icons/06002D5C.png deleted file mode 100755 index 941f948b..00000000 Binary files a/static/icons/06002D5C.png and /dev/null differ diff --git a/static/icons/06002D5D.png b/static/icons/06002D5D.png deleted file mode 100755 index 63fa2b0c..00000000 Binary files a/static/icons/06002D5D.png and /dev/null differ diff --git a/static/icons/06002D5E.png b/static/icons/06002D5E.png deleted file mode 100755 index 1ad78776..00000000 Binary files a/static/icons/06002D5E.png and /dev/null differ diff --git a/static/icons/06002D5F.png b/static/icons/06002D5F.png deleted file mode 100755 index 492a3e52..00000000 Binary files a/static/icons/06002D5F.png and /dev/null differ diff --git a/static/icons/06002D60.png b/static/icons/06002D60.png deleted file mode 100755 index b30f48bc..00000000 Binary files a/static/icons/06002D60.png and /dev/null differ diff --git a/static/icons/06002D61.png b/static/icons/06002D61.png deleted file mode 100755 index d98f2684..00000000 Binary files a/static/icons/06002D61.png and /dev/null differ diff --git a/static/icons/06002D62.png b/static/icons/06002D62.png deleted file mode 100755 index 87071c13..00000000 Binary files a/static/icons/06002D62.png and /dev/null differ diff --git a/static/icons/06002D63.png b/static/icons/06002D63.png deleted file mode 100755 index b5cf7312..00000000 Binary files a/static/icons/06002D63.png and /dev/null differ diff --git a/static/icons/06002D64.png b/static/icons/06002D64.png deleted file mode 100755 index 6358be42..00000000 Binary files a/static/icons/06002D64.png and /dev/null differ diff --git a/static/icons/06002D65.png b/static/icons/06002D65.png deleted file mode 100755 index 566b0bed..00000000 Binary files a/static/icons/06002D65.png and /dev/null differ diff --git a/static/icons/06002D66.png b/static/icons/06002D66.png deleted file mode 100755 index a350f4fe..00000000 Binary files a/static/icons/06002D66.png and /dev/null differ diff --git a/static/icons/06002D67.png b/static/icons/06002D67.png deleted file mode 100755 index 53fcf29e..00000000 Binary files a/static/icons/06002D67.png and /dev/null differ diff --git a/static/icons/06002D68.png b/static/icons/06002D68.png deleted file mode 100755 index 248f3e29..00000000 Binary files a/static/icons/06002D68.png and /dev/null differ diff --git a/static/icons/06002D69.png b/static/icons/06002D69.png deleted file mode 100755 index d0d5e349..00000000 Binary files a/static/icons/06002D69.png and /dev/null differ diff --git a/static/icons/06002D6A.png b/static/icons/06002D6A.png deleted file mode 100755 index 54ee9637..00000000 Binary files a/static/icons/06002D6A.png and /dev/null differ diff --git a/static/icons/06002D6B.png b/static/icons/06002D6B.png deleted file mode 100755 index 11deacab..00000000 Binary files a/static/icons/06002D6B.png and /dev/null differ diff --git a/static/icons/06002D6C.png b/static/icons/06002D6C.png deleted file mode 100755 index 71c675d0..00000000 Binary files a/static/icons/06002D6C.png and /dev/null differ diff --git a/static/icons/06002D6D.png b/static/icons/06002D6D.png deleted file mode 100755 index ac0ba61d..00000000 Binary files a/static/icons/06002D6D.png and /dev/null differ diff --git a/static/icons/06002D6E.png b/static/icons/06002D6E.png deleted file mode 100755 index 9a93e049..00000000 Binary files a/static/icons/06002D6E.png and /dev/null differ diff --git a/static/icons/06002D6F.png b/static/icons/06002D6F.png deleted file mode 100755 index 858e9053..00000000 Binary files a/static/icons/06002D6F.png and /dev/null differ diff --git a/static/icons/06002D70.png b/static/icons/06002D70.png deleted file mode 100755 index c22db267..00000000 Binary files a/static/icons/06002D70.png and /dev/null differ diff --git a/static/icons/06002D71.png b/static/icons/06002D71.png deleted file mode 100755 index 01d75c95..00000000 Binary files a/static/icons/06002D71.png and /dev/null differ diff --git a/static/icons/06002D72.png b/static/icons/06002D72.png deleted file mode 100755 index e18ecb8e..00000000 Binary files a/static/icons/06002D72.png and /dev/null differ diff --git a/static/icons/06002D73.png b/static/icons/06002D73.png deleted file mode 100755 index 59cd8a5c..00000000 Binary files a/static/icons/06002D73.png and /dev/null differ diff --git a/static/icons/06002D74.png b/static/icons/06002D74.png deleted file mode 100755 index 2fcdd5ca..00000000 Binary files a/static/icons/06002D74.png and /dev/null differ diff --git a/static/icons/06002D75.png b/static/icons/06002D75.png deleted file mode 100755 index 30af070e..00000000 Binary files a/static/icons/06002D75.png and /dev/null differ diff --git a/static/icons/06002D76.png b/static/icons/06002D76.png deleted file mode 100755 index 08e02be9..00000000 Binary files a/static/icons/06002D76.png and /dev/null differ diff --git a/static/icons/06002D77.png b/static/icons/06002D77.png deleted file mode 100755 index 9f82c94a..00000000 Binary files a/static/icons/06002D77.png and /dev/null differ diff --git a/static/icons/06002D78.png b/static/icons/06002D78.png deleted file mode 100755 index d6c1eb27..00000000 Binary files a/static/icons/06002D78.png and /dev/null differ diff --git a/static/icons/06002D79.png b/static/icons/06002D79.png deleted file mode 100755 index 9d6af033..00000000 Binary files a/static/icons/06002D79.png and /dev/null differ diff --git a/static/icons/06002D7A.png b/static/icons/06002D7A.png deleted file mode 100755 index 1a8a8f60..00000000 Binary files a/static/icons/06002D7A.png and /dev/null differ diff --git a/static/icons/06002D7B.png b/static/icons/06002D7B.png deleted file mode 100755 index 171e29b5..00000000 Binary files a/static/icons/06002D7B.png and /dev/null differ diff --git a/static/icons/06002D7C.png b/static/icons/06002D7C.png deleted file mode 100755 index fd65044f..00000000 Binary files a/static/icons/06002D7C.png and /dev/null differ diff --git a/static/icons/06002D7D.png b/static/icons/06002D7D.png deleted file mode 100755 index 364eebde..00000000 Binary files a/static/icons/06002D7D.png and /dev/null differ diff --git a/static/icons/06002D7E.png b/static/icons/06002D7E.png deleted file mode 100755 index 7225dec9..00000000 Binary files a/static/icons/06002D7E.png and /dev/null differ diff --git a/static/icons/06002D7F.png b/static/icons/06002D7F.png deleted file mode 100755 index 2db8d08a..00000000 Binary files a/static/icons/06002D7F.png and /dev/null differ diff --git a/static/icons/06002D80.png b/static/icons/06002D80.png deleted file mode 100755 index ed9676b0..00000000 Binary files a/static/icons/06002D80.png and /dev/null differ diff --git a/static/icons/06002D81.png b/static/icons/06002D81.png deleted file mode 100755 index 9cbaad50..00000000 Binary files a/static/icons/06002D81.png and /dev/null differ diff --git a/static/icons/06002D82.png b/static/icons/06002D82.png deleted file mode 100755 index e4fafc38..00000000 Binary files a/static/icons/06002D82.png and /dev/null differ diff --git a/static/icons/06002D83.png b/static/icons/06002D83.png deleted file mode 100755 index 35425cde..00000000 Binary files a/static/icons/06002D83.png and /dev/null differ diff --git a/static/icons/06002D84.png b/static/icons/06002D84.png deleted file mode 100755 index bf3653a5..00000000 Binary files a/static/icons/06002D84.png and /dev/null differ diff --git a/static/icons/06002D85.png b/static/icons/06002D85.png deleted file mode 100755 index 55de4c3a..00000000 Binary files a/static/icons/06002D85.png and /dev/null differ diff --git a/static/icons/06002D86.png b/static/icons/06002D86.png deleted file mode 100755 index f79538ab..00000000 Binary files a/static/icons/06002D86.png and /dev/null differ diff --git a/static/icons/06002D87.png b/static/icons/06002D87.png deleted file mode 100755 index c084c2d2..00000000 Binary files a/static/icons/06002D87.png and /dev/null differ diff --git a/static/icons/06002D88.png b/static/icons/06002D88.png deleted file mode 100755 index 3393d238..00000000 Binary files a/static/icons/06002D88.png and /dev/null differ diff --git a/static/icons/06002D89.png b/static/icons/06002D89.png deleted file mode 100755 index 0c106cb8..00000000 Binary files a/static/icons/06002D89.png and /dev/null differ diff --git a/static/icons/06002D8A.png b/static/icons/06002D8A.png deleted file mode 100755 index 3dc177ee..00000000 Binary files a/static/icons/06002D8A.png and /dev/null differ diff --git a/static/icons/06002D8B.png b/static/icons/06002D8B.png deleted file mode 100755 index 39ca84aa..00000000 Binary files a/static/icons/06002D8B.png and /dev/null differ diff --git a/static/icons/06002D8C.png b/static/icons/06002D8C.png deleted file mode 100755 index 2d8984a0..00000000 Binary files a/static/icons/06002D8C.png and /dev/null differ diff --git a/static/icons/06002D8D.png b/static/icons/06002D8D.png deleted file mode 100755 index 4f895be4..00000000 Binary files a/static/icons/06002D8D.png and /dev/null differ diff --git a/static/icons/06002D8E.png b/static/icons/06002D8E.png deleted file mode 100755 index 647ac8f6..00000000 Binary files a/static/icons/06002D8E.png and /dev/null differ diff --git a/static/icons/06002D8F.png b/static/icons/06002D8F.png deleted file mode 100755 index 2568f50d..00000000 Binary files a/static/icons/06002D8F.png and /dev/null differ diff --git a/static/icons/06002D90.png b/static/icons/06002D90.png deleted file mode 100755 index 4ade9ddb..00000000 Binary files a/static/icons/06002D90.png and /dev/null differ diff --git a/static/icons/06002D91.png b/static/icons/06002D91.png deleted file mode 100755 index 6ad6411d..00000000 Binary files a/static/icons/06002D91.png and /dev/null differ diff --git a/static/icons/06002D92.png b/static/icons/06002D92.png deleted file mode 100755 index 666f66d3..00000000 Binary files a/static/icons/06002D92.png and /dev/null differ diff --git a/static/icons/06002D93.png b/static/icons/06002D93.png deleted file mode 100755 index ecbc2160..00000000 Binary files a/static/icons/06002D93.png and /dev/null differ diff --git a/static/icons/06002D94.png b/static/icons/06002D94.png deleted file mode 100755 index 55f4f8b7..00000000 Binary files a/static/icons/06002D94.png and /dev/null differ diff --git a/static/icons/06002D95.png b/static/icons/06002D95.png deleted file mode 100755 index d01172bf..00000000 Binary files a/static/icons/06002D95.png and /dev/null differ diff --git a/static/icons/06002D96.png b/static/icons/06002D96.png deleted file mode 100755 index 6fcb1ed7..00000000 Binary files a/static/icons/06002D96.png and /dev/null differ diff --git a/static/icons/06002D97.png b/static/icons/06002D97.png deleted file mode 100755 index 49d57c6b..00000000 Binary files a/static/icons/06002D97.png and /dev/null differ diff --git a/static/icons/06002D98.png b/static/icons/06002D98.png deleted file mode 100755 index 8ae79086..00000000 Binary files a/static/icons/06002D98.png and /dev/null differ diff --git a/static/icons/06002D99.png b/static/icons/06002D99.png deleted file mode 100755 index 5328db33..00000000 Binary files a/static/icons/06002D99.png and /dev/null differ diff --git a/static/icons/06002D9A.png b/static/icons/06002D9A.png deleted file mode 100755 index 70ceadc4..00000000 Binary files a/static/icons/06002D9A.png and /dev/null differ diff --git a/static/icons/06002D9B.png b/static/icons/06002D9B.png deleted file mode 100755 index 2cc9006c..00000000 Binary files a/static/icons/06002D9B.png and /dev/null differ diff --git a/static/icons/06002D9C.png b/static/icons/06002D9C.png deleted file mode 100755 index 6295ba10..00000000 Binary files a/static/icons/06002D9C.png and /dev/null differ diff --git a/static/icons/06002D9D.png b/static/icons/06002D9D.png deleted file mode 100755 index 60030c72..00000000 Binary files a/static/icons/06002D9D.png and /dev/null differ diff --git a/static/icons/06002D9E.png b/static/icons/06002D9E.png deleted file mode 100755 index f4cf110d..00000000 Binary files a/static/icons/06002D9E.png and /dev/null differ diff --git a/static/icons/06002D9F.png b/static/icons/06002D9F.png deleted file mode 100755 index 3e64a9b9..00000000 Binary files a/static/icons/06002D9F.png and /dev/null differ diff --git a/static/icons/06002DA0.png b/static/icons/06002DA0.png deleted file mode 100755 index d61ba481..00000000 Binary files a/static/icons/06002DA0.png and /dev/null differ diff --git a/static/icons/06002DA1.png b/static/icons/06002DA1.png deleted file mode 100755 index cc0ac74a..00000000 Binary files a/static/icons/06002DA1.png and /dev/null differ diff --git a/static/icons/06002DA2.png b/static/icons/06002DA2.png deleted file mode 100755 index 9bc46c07..00000000 Binary files a/static/icons/06002DA2.png and /dev/null differ diff --git a/static/icons/06002DA3.png b/static/icons/06002DA3.png deleted file mode 100755 index 7e625e42..00000000 Binary files a/static/icons/06002DA3.png and /dev/null differ diff --git a/static/icons/06002DA4.png b/static/icons/06002DA4.png deleted file mode 100755 index b9b09400..00000000 Binary files a/static/icons/06002DA4.png and /dev/null differ diff --git a/static/icons/06002DA5.png b/static/icons/06002DA5.png deleted file mode 100755 index be7aa020..00000000 Binary files a/static/icons/06002DA5.png and /dev/null differ diff --git a/static/icons/06002DA6.png b/static/icons/06002DA6.png deleted file mode 100755 index 3f08b428..00000000 Binary files a/static/icons/06002DA6.png and /dev/null differ diff --git a/static/icons/06002DA7.png b/static/icons/06002DA7.png deleted file mode 100755 index 81a2585a..00000000 Binary files a/static/icons/06002DA7.png and /dev/null differ diff --git a/static/icons/06002DA8.png b/static/icons/06002DA8.png deleted file mode 100755 index e5e04315..00000000 Binary files a/static/icons/06002DA8.png and /dev/null differ diff --git a/static/icons/06002DA9.png b/static/icons/06002DA9.png deleted file mode 100755 index 13c7975e..00000000 Binary files a/static/icons/06002DA9.png and /dev/null differ diff --git a/static/icons/06002DAA.png b/static/icons/06002DAA.png deleted file mode 100755 index 8dfc7898..00000000 Binary files a/static/icons/06002DAA.png and /dev/null differ diff --git a/static/icons/06002DAB.png b/static/icons/06002DAB.png deleted file mode 100755 index 14c0bc06..00000000 Binary files a/static/icons/06002DAB.png and /dev/null differ diff --git a/static/icons/06002DAC.png b/static/icons/06002DAC.png deleted file mode 100755 index 3aab6bee..00000000 Binary files a/static/icons/06002DAC.png and /dev/null differ diff --git a/static/icons/06002DAD.png b/static/icons/06002DAD.png deleted file mode 100755 index d076667b..00000000 Binary files a/static/icons/06002DAD.png and /dev/null differ diff --git a/static/icons/06002DAE.png b/static/icons/06002DAE.png deleted file mode 100755 index d3823262..00000000 Binary files a/static/icons/06002DAE.png and /dev/null differ diff --git a/static/icons/06002DAF.png b/static/icons/06002DAF.png deleted file mode 100755 index e08140ab..00000000 Binary files a/static/icons/06002DAF.png and /dev/null differ diff --git a/static/icons/06002DB0.png b/static/icons/06002DB0.png deleted file mode 100755 index 471df2de..00000000 Binary files a/static/icons/06002DB0.png and /dev/null differ diff --git a/static/icons/06002DB1.png b/static/icons/06002DB1.png deleted file mode 100755 index fc71f1f4..00000000 Binary files a/static/icons/06002DB1.png and /dev/null differ diff --git a/static/icons/06002DB2.png b/static/icons/06002DB2.png deleted file mode 100755 index 5ac6c49f..00000000 Binary files a/static/icons/06002DB2.png and /dev/null differ diff --git a/static/icons/06002DB3.png b/static/icons/06002DB3.png deleted file mode 100755 index 9ffaa266..00000000 Binary files a/static/icons/06002DB3.png and /dev/null differ diff --git a/static/icons/06002DB4.png b/static/icons/06002DB4.png deleted file mode 100755 index 55e893d0..00000000 Binary files a/static/icons/06002DB4.png and /dev/null differ diff --git a/static/icons/06002DB5.png b/static/icons/06002DB5.png deleted file mode 100755 index 5ec9eede..00000000 Binary files a/static/icons/06002DB5.png and /dev/null differ diff --git a/static/icons/06002DB6.png b/static/icons/06002DB6.png deleted file mode 100755 index f9cfd7a9..00000000 Binary files a/static/icons/06002DB6.png and /dev/null differ diff --git a/static/icons/06002DB7.png b/static/icons/06002DB7.png deleted file mode 100755 index 12068adc..00000000 Binary files a/static/icons/06002DB7.png and /dev/null differ diff --git a/static/icons/06002DB8.png b/static/icons/06002DB8.png deleted file mode 100755 index 0c4e986d..00000000 Binary files a/static/icons/06002DB8.png and /dev/null differ diff --git a/static/icons/06002DB9.png b/static/icons/06002DB9.png deleted file mode 100755 index 4ee69c53..00000000 Binary files a/static/icons/06002DB9.png and /dev/null differ diff --git a/static/icons/06002DBA.png b/static/icons/06002DBA.png deleted file mode 100755 index 4d7d8a10..00000000 Binary files a/static/icons/06002DBA.png and /dev/null differ diff --git a/static/icons/06002DBB.png b/static/icons/06002DBB.png deleted file mode 100755 index f021db8c..00000000 Binary files a/static/icons/06002DBB.png and /dev/null differ diff --git a/static/icons/06002DBC.png b/static/icons/06002DBC.png deleted file mode 100755 index e72ef667..00000000 Binary files a/static/icons/06002DBC.png and /dev/null differ diff --git a/static/icons/06002DBD.png b/static/icons/06002DBD.png deleted file mode 100755 index d94ceb95..00000000 Binary files a/static/icons/06002DBD.png and /dev/null differ diff --git a/static/icons/06002DBE.png b/static/icons/06002DBE.png deleted file mode 100755 index 20463cdd..00000000 Binary files a/static/icons/06002DBE.png and /dev/null differ diff --git a/static/icons/06002DBF.png b/static/icons/06002DBF.png deleted file mode 100755 index e5f6b40f..00000000 Binary files a/static/icons/06002DBF.png and /dev/null differ diff --git a/static/icons/06002DC0.png b/static/icons/06002DC0.png deleted file mode 100755 index ff5cea37..00000000 Binary files a/static/icons/06002DC0.png and /dev/null differ diff --git a/static/icons/06002DC1.png b/static/icons/06002DC1.png deleted file mode 100755 index 26e88934..00000000 Binary files a/static/icons/06002DC1.png and /dev/null differ diff --git a/static/icons/06002DC2.png b/static/icons/06002DC2.png deleted file mode 100755 index 8cae4572..00000000 Binary files a/static/icons/06002DC2.png and /dev/null differ diff --git a/static/icons/06002DC3.png b/static/icons/06002DC3.png deleted file mode 100755 index 4438c1f6..00000000 Binary files a/static/icons/06002DC3.png and /dev/null differ diff --git a/static/icons/06002DC4.png b/static/icons/06002DC4.png deleted file mode 100755 index 123a4fd9..00000000 Binary files a/static/icons/06002DC4.png and /dev/null differ diff --git a/static/icons/06002DC5.png b/static/icons/06002DC5.png deleted file mode 100755 index 4407e50e..00000000 Binary files a/static/icons/06002DC5.png and /dev/null differ diff --git a/static/icons/06002DC6.png b/static/icons/06002DC6.png deleted file mode 100755 index c029c487..00000000 Binary files a/static/icons/06002DC6.png and /dev/null differ diff --git a/static/icons/06002DC7.png b/static/icons/06002DC7.png deleted file mode 100755 index c8b39318..00000000 Binary files a/static/icons/06002DC7.png and /dev/null differ diff --git a/static/icons/06002DC8.png b/static/icons/06002DC8.png deleted file mode 100755 index b2564492..00000000 Binary files a/static/icons/06002DC8.png and /dev/null differ diff --git a/static/icons/06002DC9.png b/static/icons/06002DC9.png deleted file mode 100755 index e02b3382..00000000 Binary files a/static/icons/06002DC9.png and /dev/null differ diff --git a/static/icons/06002DCA.png b/static/icons/06002DCA.png deleted file mode 100755 index 90dfb86e..00000000 Binary files a/static/icons/06002DCA.png and /dev/null differ diff --git a/static/icons/06002DCB.png b/static/icons/06002DCB.png deleted file mode 100755 index 6f531c41..00000000 Binary files a/static/icons/06002DCB.png and /dev/null differ diff --git a/static/icons/06002DCC.png b/static/icons/06002DCC.png deleted file mode 100755 index d20e3e7d..00000000 Binary files a/static/icons/06002DCC.png and /dev/null differ diff --git a/static/icons/06002DCD.png b/static/icons/06002DCD.png deleted file mode 100755 index b77c19b0..00000000 Binary files a/static/icons/06002DCD.png and /dev/null differ diff --git a/static/icons/06002DCE.png b/static/icons/06002DCE.png deleted file mode 100755 index 059e7822..00000000 Binary files a/static/icons/06002DCE.png and /dev/null differ diff --git a/static/icons/06002DCF.png b/static/icons/06002DCF.png deleted file mode 100755 index e1431c3d..00000000 Binary files a/static/icons/06002DCF.png and /dev/null differ diff --git a/static/icons/06002DD0.png b/static/icons/06002DD0.png deleted file mode 100755 index 4082c77f..00000000 Binary files a/static/icons/06002DD0.png and /dev/null differ diff --git a/static/icons/06002DD1.png b/static/icons/06002DD1.png deleted file mode 100755 index 2127acb0..00000000 Binary files a/static/icons/06002DD1.png and /dev/null differ diff --git a/static/icons/06002DD2.png b/static/icons/06002DD2.png deleted file mode 100755 index 569f510e..00000000 Binary files a/static/icons/06002DD2.png and /dev/null differ diff --git a/static/icons/06002DD3.png b/static/icons/06002DD3.png deleted file mode 100755 index dc795738..00000000 Binary files a/static/icons/06002DD3.png and /dev/null differ diff --git a/static/icons/06002DD4.png b/static/icons/06002DD4.png deleted file mode 100755 index ffee01ad..00000000 Binary files a/static/icons/06002DD4.png and /dev/null differ diff --git a/static/icons/06002DD5.png b/static/icons/06002DD5.png deleted file mode 100755 index 000174c0..00000000 Binary files a/static/icons/06002DD5.png and /dev/null differ diff --git a/static/icons/06002DD6.png b/static/icons/06002DD6.png deleted file mode 100755 index 59a78444..00000000 Binary files a/static/icons/06002DD6.png and /dev/null differ diff --git a/static/icons/06002DD7.png b/static/icons/06002DD7.png deleted file mode 100755 index ab5e9452..00000000 Binary files a/static/icons/06002DD7.png and /dev/null differ diff --git a/static/icons/06002DD8.png b/static/icons/06002DD8.png deleted file mode 100755 index e772c8b1..00000000 Binary files a/static/icons/06002DD8.png and /dev/null differ diff --git a/static/icons/06002DD9.png b/static/icons/06002DD9.png deleted file mode 100755 index 9d6dffbb..00000000 Binary files a/static/icons/06002DD9.png and /dev/null differ diff --git a/static/icons/06002DDA.png b/static/icons/06002DDA.png deleted file mode 100755 index 4691729b..00000000 Binary files a/static/icons/06002DDA.png and /dev/null differ diff --git a/static/icons/06002DDB.png b/static/icons/06002DDB.png deleted file mode 100755 index 70bc5220..00000000 Binary files a/static/icons/06002DDB.png and /dev/null differ diff --git a/static/icons/06002DDC.png b/static/icons/06002DDC.png deleted file mode 100755 index 7a3a385d..00000000 Binary files a/static/icons/06002DDC.png and /dev/null differ diff --git a/static/icons/06002DDD.png b/static/icons/06002DDD.png deleted file mode 100755 index 63c8f0a0..00000000 Binary files a/static/icons/06002DDD.png and /dev/null differ diff --git a/static/icons/06002DDE.png b/static/icons/06002DDE.png deleted file mode 100755 index c276deea..00000000 Binary files a/static/icons/06002DDE.png and /dev/null differ diff --git a/static/icons/06002DDF.png b/static/icons/06002DDF.png deleted file mode 100755 index 7fbbb3c4..00000000 Binary files a/static/icons/06002DDF.png and /dev/null differ diff --git a/static/icons/06002DE0.png b/static/icons/06002DE0.png deleted file mode 100755 index c3862a9b..00000000 Binary files a/static/icons/06002DE0.png and /dev/null differ diff --git a/static/icons/06002DE1.png b/static/icons/06002DE1.png deleted file mode 100755 index da1fd92a..00000000 Binary files a/static/icons/06002DE1.png and /dev/null differ diff --git a/static/icons/06002DE2.png b/static/icons/06002DE2.png deleted file mode 100755 index ff6c84d3..00000000 Binary files a/static/icons/06002DE2.png and /dev/null differ diff --git a/static/icons/06002DE3.png b/static/icons/06002DE3.png deleted file mode 100755 index 609b853d..00000000 Binary files a/static/icons/06002DE3.png and /dev/null differ diff --git a/static/icons/06002DE4.png b/static/icons/06002DE4.png deleted file mode 100755 index b3c85aaf..00000000 Binary files a/static/icons/06002DE4.png and /dev/null differ diff --git a/static/icons/06002DE5.png b/static/icons/06002DE5.png deleted file mode 100755 index f3b2f149..00000000 Binary files a/static/icons/06002DE5.png and /dev/null differ diff --git a/static/icons/06002DE6.png b/static/icons/06002DE6.png deleted file mode 100755 index 9d4ef5ff..00000000 Binary files a/static/icons/06002DE6.png and /dev/null differ diff --git a/static/icons/06002DE7.png b/static/icons/06002DE7.png deleted file mode 100755 index b37ee82b..00000000 Binary files a/static/icons/06002DE7.png and /dev/null differ diff --git a/static/icons/06002DE8.png b/static/icons/06002DE8.png deleted file mode 100755 index 9094bf6a..00000000 Binary files a/static/icons/06002DE8.png and /dev/null differ diff --git a/static/icons/06002DE9.png b/static/icons/06002DE9.png deleted file mode 100755 index 787e09b3..00000000 Binary files a/static/icons/06002DE9.png and /dev/null differ diff --git a/static/icons/06002DEA.png b/static/icons/06002DEA.png deleted file mode 100755 index 18f69e9c..00000000 Binary files a/static/icons/06002DEA.png and /dev/null differ diff --git a/static/icons/06002DEB.png b/static/icons/06002DEB.png deleted file mode 100755 index 6ea09528..00000000 Binary files a/static/icons/06002DEB.png and /dev/null differ diff --git a/static/icons/06002DEC.png b/static/icons/06002DEC.png deleted file mode 100755 index 03c5f4e9..00000000 Binary files a/static/icons/06002DEC.png and /dev/null differ diff --git a/static/icons/06002DED.png b/static/icons/06002DED.png deleted file mode 100755 index 278f277c..00000000 Binary files a/static/icons/06002DED.png and /dev/null differ diff --git a/static/icons/06002DEE.png b/static/icons/06002DEE.png deleted file mode 100755 index 7a87e7e5..00000000 Binary files a/static/icons/06002DEE.png and /dev/null differ diff --git a/static/icons/06002DEF.png b/static/icons/06002DEF.png deleted file mode 100755 index b1bbd0fd..00000000 Binary files a/static/icons/06002DEF.png and /dev/null differ diff --git a/static/icons/06002DF0.png b/static/icons/06002DF0.png deleted file mode 100755 index efedf87b..00000000 Binary files a/static/icons/06002DF0.png and /dev/null differ diff --git a/static/icons/06002DF1.png b/static/icons/06002DF1.png deleted file mode 100755 index 4809cc7c..00000000 Binary files a/static/icons/06002DF1.png and /dev/null differ diff --git a/static/icons/06002DF2.png b/static/icons/06002DF2.png deleted file mode 100755 index 2e136aab..00000000 Binary files a/static/icons/06002DF2.png and /dev/null differ diff --git a/static/icons/06002DF3.png b/static/icons/06002DF3.png deleted file mode 100755 index d7787275..00000000 Binary files a/static/icons/06002DF3.png and /dev/null differ diff --git a/static/icons/06002DF4.png b/static/icons/06002DF4.png deleted file mode 100755 index 82f4f527..00000000 Binary files a/static/icons/06002DF4.png and /dev/null differ diff --git a/static/icons/06002DF5.png b/static/icons/06002DF5.png deleted file mode 100755 index ae30368a..00000000 Binary files a/static/icons/06002DF5.png and /dev/null differ diff --git a/static/icons/06002DF6.png b/static/icons/06002DF6.png deleted file mode 100755 index 1b22bbaa..00000000 Binary files a/static/icons/06002DF6.png and /dev/null differ diff --git a/static/icons/06002DF7.png b/static/icons/06002DF7.png deleted file mode 100755 index 5ea77c4c..00000000 Binary files a/static/icons/06002DF7.png and /dev/null differ diff --git a/static/icons/06002DF8.png b/static/icons/06002DF8.png deleted file mode 100755 index 354d34f4..00000000 Binary files a/static/icons/06002DF8.png and /dev/null differ diff --git a/static/icons/06002DF9.png b/static/icons/06002DF9.png deleted file mode 100755 index bcf83615..00000000 Binary files a/static/icons/06002DF9.png and /dev/null differ diff --git a/static/icons/06002DFA.png b/static/icons/06002DFA.png deleted file mode 100755 index d77b5dea..00000000 Binary files a/static/icons/06002DFA.png and /dev/null differ diff --git a/static/icons/06002DFB.png b/static/icons/06002DFB.png deleted file mode 100755 index 63bcb928..00000000 Binary files a/static/icons/06002DFB.png and /dev/null differ diff --git a/static/icons/06002DFC.png b/static/icons/06002DFC.png deleted file mode 100755 index fd21b821..00000000 Binary files a/static/icons/06002DFC.png and /dev/null differ diff --git a/static/icons/06002DFD.png b/static/icons/06002DFD.png deleted file mode 100755 index a5914b75..00000000 Binary files a/static/icons/06002DFD.png and /dev/null differ diff --git a/static/icons/06002DFE.png b/static/icons/06002DFE.png deleted file mode 100755 index 02753b42..00000000 Binary files a/static/icons/06002DFE.png and /dev/null differ diff --git a/static/icons/06002DFF.png b/static/icons/06002DFF.png deleted file mode 100755 index d970432d..00000000 Binary files a/static/icons/06002DFF.png and /dev/null differ diff --git a/static/icons/06002E00.png b/static/icons/06002E00.png deleted file mode 100755 index b70f2ed3..00000000 Binary files a/static/icons/06002E00.png and /dev/null differ diff --git a/static/icons/06002E01.png b/static/icons/06002E01.png deleted file mode 100755 index 388f8a0c..00000000 Binary files a/static/icons/06002E01.png and /dev/null differ diff --git a/static/icons/06002E02.png b/static/icons/06002E02.png deleted file mode 100755 index 7ad9284e..00000000 Binary files a/static/icons/06002E02.png and /dev/null differ diff --git a/static/icons/06002E03.png b/static/icons/06002E03.png deleted file mode 100755 index 2a9731ae..00000000 Binary files a/static/icons/06002E03.png and /dev/null differ diff --git a/static/icons/06002E04.png b/static/icons/06002E04.png deleted file mode 100755 index 913bb1cb..00000000 Binary files a/static/icons/06002E04.png and /dev/null differ diff --git a/static/icons/06002E05.png b/static/icons/06002E05.png deleted file mode 100755 index 51150036..00000000 Binary files a/static/icons/06002E05.png and /dev/null differ diff --git a/static/icons/06002E06.png b/static/icons/06002E06.png deleted file mode 100755 index 68ef8f19..00000000 Binary files a/static/icons/06002E06.png and /dev/null differ diff --git a/static/icons/06002E07.png b/static/icons/06002E07.png deleted file mode 100755 index 24e940ce..00000000 Binary files a/static/icons/06002E07.png and /dev/null differ diff --git a/static/icons/06002E08.png b/static/icons/06002E08.png deleted file mode 100755 index fa9f1626..00000000 Binary files a/static/icons/06002E08.png and /dev/null differ diff --git a/static/icons/06002E09.png b/static/icons/06002E09.png deleted file mode 100755 index 85201486..00000000 Binary files a/static/icons/06002E09.png and /dev/null differ diff --git a/static/icons/06002E0A.png b/static/icons/06002E0A.png deleted file mode 100755 index 886af924..00000000 Binary files a/static/icons/06002E0A.png and /dev/null differ diff --git a/static/icons/06002E0B.png b/static/icons/06002E0B.png deleted file mode 100755 index 54a426f6..00000000 Binary files a/static/icons/06002E0B.png and /dev/null differ diff --git a/static/icons/06002E0C.png b/static/icons/06002E0C.png deleted file mode 100755 index 698cfbf1..00000000 Binary files a/static/icons/06002E0C.png and /dev/null differ diff --git a/static/icons/06002E0D.png b/static/icons/06002E0D.png deleted file mode 100755 index de15494d..00000000 Binary files a/static/icons/06002E0D.png and /dev/null differ diff --git a/static/icons/06002E0E.png b/static/icons/06002E0E.png deleted file mode 100755 index ab6c1986..00000000 Binary files a/static/icons/06002E0E.png and /dev/null differ diff --git a/static/icons/06002E0F.png b/static/icons/06002E0F.png deleted file mode 100755 index d62f8ca6..00000000 Binary files a/static/icons/06002E0F.png and /dev/null differ diff --git a/static/icons/06002E10.png b/static/icons/06002E10.png deleted file mode 100755 index a58ec2c4..00000000 Binary files a/static/icons/06002E10.png and /dev/null differ diff --git a/static/icons/06002E11.png b/static/icons/06002E11.png deleted file mode 100755 index 3aa02343..00000000 Binary files a/static/icons/06002E11.png and /dev/null differ diff --git a/static/icons/06002E12.png b/static/icons/06002E12.png deleted file mode 100755 index 9624bcf7..00000000 Binary files a/static/icons/06002E12.png and /dev/null differ diff --git a/static/icons/06002E13.png b/static/icons/06002E13.png deleted file mode 100755 index 06358345..00000000 Binary files a/static/icons/06002E13.png and /dev/null differ diff --git a/static/icons/06002E14.png b/static/icons/06002E14.png deleted file mode 100755 index b3cf1fe8..00000000 Binary files a/static/icons/06002E14.png and /dev/null differ diff --git a/static/icons/06002E15.png b/static/icons/06002E15.png deleted file mode 100755 index d39a4697..00000000 Binary files a/static/icons/06002E15.png and /dev/null differ diff --git a/static/icons/06002E16.png b/static/icons/06002E16.png deleted file mode 100755 index b7773af9..00000000 Binary files a/static/icons/06002E16.png and /dev/null differ diff --git a/static/icons/06002E17.png b/static/icons/06002E17.png deleted file mode 100755 index d8c091a8..00000000 Binary files a/static/icons/06002E17.png and /dev/null differ diff --git a/static/icons/06002E18.png b/static/icons/06002E18.png deleted file mode 100755 index 943efb29..00000000 Binary files a/static/icons/06002E18.png and /dev/null differ diff --git a/static/icons/06002E19.png b/static/icons/06002E19.png deleted file mode 100755 index 84bb1f1e..00000000 Binary files a/static/icons/06002E19.png and /dev/null differ diff --git a/static/icons/06002E1A.png b/static/icons/06002E1A.png deleted file mode 100755 index 31825c4c..00000000 Binary files a/static/icons/06002E1A.png and /dev/null differ diff --git a/static/icons/06002E1B.png b/static/icons/06002E1B.png deleted file mode 100755 index d22a4888..00000000 Binary files a/static/icons/06002E1B.png and /dev/null differ diff --git a/static/icons/06002E1C.png b/static/icons/06002E1C.png deleted file mode 100755 index 009534ef..00000000 Binary files a/static/icons/06002E1C.png and /dev/null differ diff --git a/static/icons/06002E1D.png b/static/icons/06002E1D.png deleted file mode 100755 index fa107943..00000000 Binary files a/static/icons/06002E1D.png and /dev/null differ diff --git a/static/icons/06002E1E.png b/static/icons/06002E1E.png deleted file mode 100755 index 3fa08e36..00000000 Binary files a/static/icons/06002E1E.png and /dev/null differ diff --git a/static/icons/06002E1F.png b/static/icons/06002E1F.png deleted file mode 100755 index 33eda556..00000000 Binary files a/static/icons/06002E1F.png and /dev/null differ diff --git a/static/icons/06002E20.png b/static/icons/06002E20.png deleted file mode 100755 index 2d36b5f0..00000000 Binary files a/static/icons/06002E20.png and /dev/null differ diff --git a/static/icons/06002E21.png b/static/icons/06002E21.png deleted file mode 100755 index 4ba38054..00000000 Binary files a/static/icons/06002E21.png and /dev/null differ diff --git a/static/icons/06002E22.png b/static/icons/06002E22.png deleted file mode 100755 index 8624ebf9..00000000 Binary files a/static/icons/06002E22.png and /dev/null differ diff --git a/static/icons/06002E23.png b/static/icons/06002E23.png deleted file mode 100755 index 4fbab14a..00000000 Binary files a/static/icons/06002E23.png and /dev/null differ diff --git a/static/icons/06002E24.png b/static/icons/06002E24.png deleted file mode 100755 index a4797982..00000000 Binary files a/static/icons/06002E24.png and /dev/null differ diff --git a/static/icons/06002E25.png b/static/icons/06002E25.png deleted file mode 100755 index 763c6590..00000000 Binary files a/static/icons/06002E25.png and /dev/null differ diff --git a/static/icons/06002E26.png b/static/icons/06002E26.png deleted file mode 100755 index f298e27c..00000000 Binary files a/static/icons/06002E26.png and /dev/null differ diff --git a/static/icons/06002E27.png b/static/icons/06002E27.png deleted file mode 100755 index 9da5062c..00000000 Binary files a/static/icons/06002E27.png and /dev/null differ diff --git a/static/icons/06002E28.png b/static/icons/06002E28.png deleted file mode 100755 index 07dcecef..00000000 Binary files a/static/icons/06002E28.png and /dev/null differ diff --git a/static/icons/06002E29.png b/static/icons/06002E29.png deleted file mode 100755 index 0fa83e57..00000000 Binary files a/static/icons/06002E29.png and /dev/null differ diff --git a/static/icons/06002E2A.png b/static/icons/06002E2A.png deleted file mode 100755 index e5cea868..00000000 Binary files a/static/icons/06002E2A.png and /dev/null differ diff --git a/static/icons/06002E2B.png b/static/icons/06002E2B.png deleted file mode 100755 index 2bfdf7d9..00000000 Binary files a/static/icons/06002E2B.png and /dev/null differ diff --git a/static/icons/06002E2C.png b/static/icons/06002E2C.png deleted file mode 100755 index 403510c3..00000000 Binary files a/static/icons/06002E2C.png and /dev/null differ diff --git a/static/icons/06002E2D.png b/static/icons/06002E2D.png deleted file mode 100755 index 45ccb8d3..00000000 Binary files a/static/icons/06002E2D.png and /dev/null differ diff --git a/static/icons/06002E2E.png b/static/icons/06002E2E.png deleted file mode 100755 index 205fe9a4..00000000 Binary files a/static/icons/06002E2E.png and /dev/null differ diff --git a/static/icons/06002E2F.png b/static/icons/06002E2F.png deleted file mode 100755 index 1d7ef3dd..00000000 Binary files a/static/icons/06002E2F.png and /dev/null differ diff --git a/static/icons/06002E30.png b/static/icons/06002E30.png deleted file mode 100755 index 5d36b3a7..00000000 Binary files a/static/icons/06002E30.png and /dev/null differ diff --git a/static/icons/06002E31.png b/static/icons/06002E31.png deleted file mode 100755 index 7b03c015..00000000 Binary files a/static/icons/06002E31.png and /dev/null differ diff --git a/static/icons/06002E32.png b/static/icons/06002E32.png deleted file mode 100755 index 7ac17ca6..00000000 Binary files a/static/icons/06002E32.png and /dev/null differ diff --git a/static/icons/06002E33.png b/static/icons/06002E33.png deleted file mode 100755 index 0b406882..00000000 Binary files a/static/icons/06002E33.png and /dev/null differ diff --git a/static/icons/06002E34.png b/static/icons/06002E34.png deleted file mode 100755 index 6fcd1079..00000000 Binary files a/static/icons/06002E34.png and /dev/null differ diff --git a/static/icons/06002E35.png b/static/icons/06002E35.png deleted file mode 100755 index 58cdb6ed..00000000 Binary files a/static/icons/06002E35.png and /dev/null differ diff --git a/static/icons/06002E36.png b/static/icons/06002E36.png deleted file mode 100755 index a2f93078..00000000 Binary files a/static/icons/06002E36.png and /dev/null differ diff --git a/static/icons/06002E37.png b/static/icons/06002E37.png deleted file mode 100755 index 5d93b168..00000000 Binary files a/static/icons/06002E37.png and /dev/null differ diff --git a/static/icons/06002E38.png b/static/icons/06002E38.png deleted file mode 100755 index aac9d404..00000000 Binary files a/static/icons/06002E38.png and /dev/null differ diff --git a/static/icons/06002E39.png b/static/icons/06002E39.png deleted file mode 100755 index cabd0eed..00000000 Binary files a/static/icons/06002E39.png and /dev/null differ diff --git a/static/icons/06002E3A.png b/static/icons/06002E3A.png deleted file mode 100755 index aca5aefa..00000000 Binary files a/static/icons/06002E3A.png and /dev/null differ diff --git a/static/icons/06002E3B.png b/static/icons/06002E3B.png deleted file mode 100755 index d4491a08..00000000 Binary files a/static/icons/06002E3B.png and /dev/null differ diff --git a/static/icons/06002E3C.png b/static/icons/06002E3C.png deleted file mode 100755 index 9f71f378..00000000 Binary files a/static/icons/06002E3C.png and /dev/null differ diff --git a/static/icons/06002E3D.png b/static/icons/06002E3D.png deleted file mode 100755 index 61d1b10b..00000000 Binary files a/static/icons/06002E3D.png and /dev/null differ diff --git a/static/icons/06002E3E.png b/static/icons/06002E3E.png deleted file mode 100755 index 0f8fe620..00000000 Binary files a/static/icons/06002E3E.png and /dev/null differ diff --git a/static/icons/06002E3F.png b/static/icons/06002E3F.png deleted file mode 100755 index d298f869..00000000 Binary files a/static/icons/06002E3F.png and /dev/null differ diff --git a/static/icons/06002E40.png b/static/icons/06002E40.png deleted file mode 100755 index 564f5c45..00000000 Binary files a/static/icons/06002E40.png and /dev/null differ diff --git a/static/icons/06002E41.png b/static/icons/06002E41.png deleted file mode 100755 index 675772b4..00000000 Binary files a/static/icons/06002E41.png and /dev/null differ diff --git a/static/icons/06002E42.png b/static/icons/06002E42.png deleted file mode 100755 index 1c28cb92..00000000 Binary files a/static/icons/06002E42.png and /dev/null differ diff --git a/static/icons/06002E43.png b/static/icons/06002E43.png deleted file mode 100755 index 0b97df88..00000000 Binary files a/static/icons/06002E43.png and /dev/null differ diff --git a/static/icons/06002E44.png b/static/icons/06002E44.png deleted file mode 100755 index 54e0482b..00000000 Binary files a/static/icons/06002E44.png and /dev/null differ diff --git a/static/icons/06002E45.png b/static/icons/06002E45.png deleted file mode 100755 index 3574067e..00000000 Binary files a/static/icons/06002E45.png and /dev/null differ diff --git a/static/icons/06002E46.png b/static/icons/06002E46.png deleted file mode 100755 index a4225142..00000000 Binary files a/static/icons/06002E46.png and /dev/null differ diff --git a/static/icons/06002E47.png b/static/icons/06002E47.png deleted file mode 100755 index 157c93c2..00000000 Binary files a/static/icons/06002E47.png and /dev/null differ diff --git a/static/icons/06002E48.png b/static/icons/06002E48.png deleted file mode 100755 index a2084d65..00000000 Binary files a/static/icons/06002E48.png and /dev/null differ diff --git a/static/icons/06002E49.png b/static/icons/06002E49.png deleted file mode 100755 index 7946c39a..00000000 Binary files a/static/icons/06002E49.png and /dev/null differ diff --git a/static/icons/06002E4A.png b/static/icons/06002E4A.png deleted file mode 100755 index 6df6ed9b..00000000 Binary files a/static/icons/06002E4A.png and /dev/null differ diff --git a/static/icons/06002E4B.png b/static/icons/06002E4B.png deleted file mode 100755 index 7ede68ca..00000000 Binary files a/static/icons/06002E4B.png and /dev/null differ diff --git a/static/icons/06002E4C.png b/static/icons/06002E4C.png deleted file mode 100755 index 92f8590a..00000000 Binary files a/static/icons/06002E4C.png and /dev/null differ diff --git a/static/icons/06002E4D.png b/static/icons/06002E4D.png deleted file mode 100755 index eab461a0..00000000 Binary files a/static/icons/06002E4D.png and /dev/null differ diff --git a/static/icons/06002E4E.png b/static/icons/06002E4E.png deleted file mode 100755 index 78deaadb..00000000 Binary files a/static/icons/06002E4E.png and /dev/null differ diff --git a/static/icons/06002E4F.png b/static/icons/06002E4F.png deleted file mode 100755 index 75c380e9..00000000 Binary files a/static/icons/06002E4F.png and /dev/null differ diff --git a/static/icons/06002E50.png b/static/icons/06002E50.png deleted file mode 100755 index 55b4cf0d..00000000 Binary files a/static/icons/06002E50.png and /dev/null differ diff --git a/static/icons/06002E51.png b/static/icons/06002E51.png deleted file mode 100755 index ba1f4c2d..00000000 Binary files a/static/icons/06002E51.png and /dev/null differ diff --git a/static/icons/06002E52.png b/static/icons/06002E52.png deleted file mode 100755 index 00564b06..00000000 Binary files a/static/icons/06002E52.png and /dev/null differ diff --git a/static/icons/06002E53.png b/static/icons/06002E53.png deleted file mode 100755 index 146f2be8..00000000 Binary files a/static/icons/06002E53.png and /dev/null differ diff --git a/static/icons/06002E54.png b/static/icons/06002E54.png deleted file mode 100755 index 11456e6d..00000000 Binary files a/static/icons/06002E54.png and /dev/null differ diff --git a/static/icons/06002E55.png b/static/icons/06002E55.png deleted file mode 100755 index 5c51afac..00000000 Binary files a/static/icons/06002E55.png and /dev/null differ diff --git a/static/icons/06002E56.png b/static/icons/06002E56.png deleted file mode 100755 index 7c7fe184..00000000 Binary files a/static/icons/06002E56.png and /dev/null differ diff --git a/static/icons/06002E57.png b/static/icons/06002E57.png deleted file mode 100755 index e12655ec..00000000 Binary files a/static/icons/06002E57.png and /dev/null differ diff --git a/static/icons/06002E58.png b/static/icons/06002E58.png deleted file mode 100755 index a70bba13..00000000 Binary files a/static/icons/06002E58.png and /dev/null differ diff --git a/static/icons/06002E59.png b/static/icons/06002E59.png deleted file mode 100755 index 37fed700..00000000 Binary files a/static/icons/06002E59.png and /dev/null differ diff --git a/static/icons/06002E5A.png b/static/icons/06002E5A.png deleted file mode 100755 index 2a38c626..00000000 Binary files a/static/icons/06002E5A.png and /dev/null differ diff --git a/static/icons/06002E5B.png b/static/icons/06002E5B.png deleted file mode 100755 index f88552b9..00000000 Binary files a/static/icons/06002E5B.png and /dev/null differ diff --git a/static/icons/06002E5C.png b/static/icons/06002E5C.png deleted file mode 100755 index 01d936b3..00000000 Binary files a/static/icons/06002E5C.png and /dev/null differ diff --git a/static/icons/06002E5D.png b/static/icons/06002E5D.png deleted file mode 100755 index 8ae4b62e..00000000 Binary files a/static/icons/06002E5D.png and /dev/null differ diff --git a/static/icons/06002E5E.png b/static/icons/06002E5E.png deleted file mode 100755 index 46d6c64d..00000000 Binary files a/static/icons/06002E5E.png and /dev/null differ diff --git a/static/icons/06002E5F.png b/static/icons/06002E5F.png deleted file mode 100755 index b0916790..00000000 Binary files a/static/icons/06002E5F.png and /dev/null differ diff --git a/static/icons/06002E60.png b/static/icons/06002E60.png deleted file mode 100755 index a1ef3ccd..00000000 Binary files a/static/icons/06002E60.png and /dev/null differ diff --git a/static/icons/06002E61.png b/static/icons/06002E61.png deleted file mode 100755 index 812dbd93..00000000 Binary files a/static/icons/06002E61.png and /dev/null differ diff --git a/static/icons/06002E62.png b/static/icons/06002E62.png deleted file mode 100755 index 52eee261..00000000 Binary files a/static/icons/06002E62.png and /dev/null differ diff --git a/static/icons/06002E63.png b/static/icons/06002E63.png deleted file mode 100755 index 83f26d33..00000000 Binary files a/static/icons/06002E63.png and /dev/null differ diff --git a/static/icons/06002E64.png b/static/icons/06002E64.png deleted file mode 100755 index 1a8bd75b..00000000 Binary files a/static/icons/06002E64.png and /dev/null differ diff --git a/static/icons/06002E65.png b/static/icons/06002E65.png deleted file mode 100755 index 19f6a180..00000000 Binary files a/static/icons/06002E65.png and /dev/null differ diff --git a/static/icons/06002E66.png b/static/icons/06002E66.png deleted file mode 100755 index 6a2583f9..00000000 Binary files a/static/icons/06002E66.png and /dev/null differ diff --git a/static/icons/06002E67.png b/static/icons/06002E67.png deleted file mode 100755 index 231817bd..00000000 Binary files a/static/icons/06002E67.png and /dev/null differ diff --git a/static/icons/06002E68.png b/static/icons/06002E68.png deleted file mode 100755 index 7239292c..00000000 Binary files a/static/icons/06002E68.png and /dev/null differ diff --git a/static/icons/06002E69.png b/static/icons/06002E69.png deleted file mode 100755 index 59469c48..00000000 Binary files a/static/icons/06002E69.png and /dev/null differ diff --git a/static/icons/06002E6A.png b/static/icons/06002E6A.png deleted file mode 100755 index cf28915f..00000000 Binary files a/static/icons/06002E6A.png and /dev/null differ diff --git a/static/icons/06002E6B.png b/static/icons/06002E6B.png deleted file mode 100755 index 65d2e4a0..00000000 Binary files a/static/icons/06002E6B.png and /dev/null differ diff --git a/static/icons/06002E6C.png b/static/icons/06002E6C.png deleted file mode 100755 index 231964bd..00000000 Binary files a/static/icons/06002E6C.png and /dev/null differ diff --git a/static/icons/06002E6D.png b/static/icons/06002E6D.png deleted file mode 100755 index 195cbc27..00000000 Binary files a/static/icons/06002E6D.png and /dev/null differ diff --git a/static/icons/06002E6E.png b/static/icons/06002E6E.png deleted file mode 100755 index 8d03b8e8..00000000 Binary files a/static/icons/06002E6E.png and /dev/null differ diff --git a/static/icons/06002E6F.png b/static/icons/06002E6F.png deleted file mode 100755 index 80501069..00000000 Binary files a/static/icons/06002E6F.png and /dev/null differ diff --git a/static/icons/06002E70.png b/static/icons/06002E70.png deleted file mode 100755 index ec8eacb3..00000000 Binary files a/static/icons/06002E70.png and /dev/null differ diff --git a/static/icons/06002E71.png b/static/icons/06002E71.png deleted file mode 100755 index 4561dbdd..00000000 Binary files a/static/icons/06002E71.png and /dev/null differ diff --git a/static/icons/06002E72.png b/static/icons/06002E72.png deleted file mode 100755 index 65a34cb7..00000000 Binary files a/static/icons/06002E72.png and /dev/null differ diff --git a/static/icons/06002E73.png b/static/icons/06002E73.png deleted file mode 100755 index e8fa6345..00000000 Binary files a/static/icons/06002E73.png and /dev/null differ diff --git a/static/icons/06002E74.png b/static/icons/06002E74.png deleted file mode 100755 index 1a3a940f..00000000 Binary files a/static/icons/06002E74.png and /dev/null differ diff --git a/static/icons/06002E75.png b/static/icons/06002E75.png deleted file mode 100755 index ca1a29ce..00000000 Binary files a/static/icons/06002E75.png and /dev/null differ diff --git a/static/icons/06002E76.png b/static/icons/06002E76.png deleted file mode 100755 index d1e70821..00000000 Binary files a/static/icons/06002E76.png and /dev/null differ diff --git a/static/icons/06002E77.png b/static/icons/06002E77.png deleted file mode 100755 index 8a29a76c..00000000 Binary files a/static/icons/06002E77.png and /dev/null differ diff --git a/static/icons/06002E78.png b/static/icons/06002E78.png deleted file mode 100755 index 8364cf4c..00000000 Binary files a/static/icons/06002E78.png and /dev/null differ diff --git a/static/icons/06002E79.png b/static/icons/06002E79.png deleted file mode 100755 index 40467069..00000000 Binary files a/static/icons/06002E79.png and /dev/null differ diff --git a/static/icons/06002E7A.png b/static/icons/06002E7A.png deleted file mode 100755 index 936b1ced..00000000 Binary files a/static/icons/06002E7A.png and /dev/null differ diff --git a/static/icons/06002E7B.png b/static/icons/06002E7B.png deleted file mode 100755 index b62268d2..00000000 Binary files a/static/icons/06002E7B.png and /dev/null differ diff --git a/static/icons/06002E7C.png b/static/icons/06002E7C.png deleted file mode 100755 index 2f351f59..00000000 Binary files a/static/icons/06002E7C.png and /dev/null differ diff --git a/static/icons/06002E7D.png b/static/icons/06002E7D.png deleted file mode 100755 index 2d726c3a..00000000 Binary files a/static/icons/06002E7D.png and /dev/null differ diff --git a/static/icons/06002E7E.png b/static/icons/06002E7E.png deleted file mode 100755 index 1ea07295..00000000 Binary files a/static/icons/06002E7E.png and /dev/null differ diff --git a/static/icons/06002E7F.png b/static/icons/06002E7F.png deleted file mode 100755 index 1bc3bc6a..00000000 Binary files a/static/icons/06002E7F.png and /dev/null differ diff --git a/static/icons/06002E80.png b/static/icons/06002E80.png deleted file mode 100755 index 2ad7a7f9..00000000 Binary files a/static/icons/06002E80.png and /dev/null differ diff --git a/static/icons/06002E81.png b/static/icons/06002E81.png deleted file mode 100755 index db4a092a..00000000 Binary files a/static/icons/06002E81.png and /dev/null differ diff --git a/static/icons/06002E82.png b/static/icons/06002E82.png deleted file mode 100755 index d02c0729..00000000 Binary files a/static/icons/06002E82.png and /dev/null differ diff --git a/static/icons/06002E83.png b/static/icons/06002E83.png deleted file mode 100755 index 9e0d3a8a..00000000 Binary files a/static/icons/06002E83.png and /dev/null differ diff --git a/static/icons/06002E84.png b/static/icons/06002E84.png deleted file mode 100755 index ad1c8f3e..00000000 Binary files a/static/icons/06002E84.png and /dev/null differ diff --git a/static/icons/06002E85.png b/static/icons/06002E85.png deleted file mode 100755 index 2d624853..00000000 Binary files a/static/icons/06002E85.png and /dev/null differ diff --git a/static/icons/06002E86.png b/static/icons/06002E86.png deleted file mode 100755 index b058946d..00000000 Binary files a/static/icons/06002E86.png and /dev/null differ diff --git a/static/icons/06002E87.png b/static/icons/06002E87.png deleted file mode 100755 index dccc7875..00000000 Binary files a/static/icons/06002E87.png and /dev/null differ diff --git a/static/icons/06002E88.png b/static/icons/06002E88.png deleted file mode 100755 index a0a73465..00000000 Binary files a/static/icons/06002E88.png and /dev/null differ diff --git a/static/icons/06002E89.png b/static/icons/06002E89.png deleted file mode 100755 index 4cd0e6b5..00000000 Binary files a/static/icons/06002E89.png and /dev/null differ diff --git a/static/icons/06002E8A.png b/static/icons/06002E8A.png deleted file mode 100755 index 5dbafe7d..00000000 Binary files a/static/icons/06002E8A.png and /dev/null differ diff --git a/static/icons/06002E8B.png b/static/icons/06002E8B.png deleted file mode 100755 index 5ab70c14..00000000 Binary files a/static/icons/06002E8B.png and /dev/null differ diff --git a/static/icons/06002E8C.png b/static/icons/06002E8C.png deleted file mode 100755 index c7a0f9fc..00000000 Binary files a/static/icons/06002E8C.png and /dev/null differ diff --git a/static/icons/06002E8D.png b/static/icons/06002E8D.png deleted file mode 100755 index 331d98a9..00000000 Binary files a/static/icons/06002E8D.png and /dev/null differ diff --git a/static/icons/06002E8E.png b/static/icons/06002E8E.png deleted file mode 100755 index 57e3a139..00000000 Binary files a/static/icons/06002E8E.png and /dev/null differ diff --git a/static/icons/06002E8F.png b/static/icons/06002E8F.png deleted file mode 100755 index c3521c54..00000000 Binary files a/static/icons/06002E8F.png and /dev/null differ diff --git a/static/icons/06002E90.png b/static/icons/06002E90.png deleted file mode 100755 index b1f2c3ad..00000000 Binary files a/static/icons/06002E90.png and /dev/null differ diff --git a/static/icons/06002E91.png b/static/icons/06002E91.png deleted file mode 100755 index 27a8ae6b..00000000 Binary files a/static/icons/06002E91.png and /dev/null differ diff --git a/static/icons/06002E92.png b/static/icons/06002E92.png deleted file mode 100755 index cfdfeef7..00000000 Binary files a/static/icons/06002E92.png and /dev/null differ diff --git a/static/icons/06002E93.png b/static/icons/06002E93.png deleted file mode 100755 index dd28ee8b..00000000 Binary files a/static/icons/06002E93.png and /dev/null differ diff --git a/static/icons/06002E94.png b/static/icons/06002E94.png deleted file mode 100755 index 43d77523..00000000 Binary files a/static/icons/06002E94.png and /dev/null differ diff --git a/static/icons/06002E95.png b/static/icons/06002E95.png deleted file mode 100755 index 169712fe..00000000 Binary files a/static/icons/06002E95.png and /dev/null differ diff --git a/static/icons/06002E96.png b/static/icons/06002E96.png deleted file mode 100755 index a055876e..00000000 Binary files a/static/icons/06002E96.png and /dev/null differ diff --git a/static/icons/06002E97.png b/static/icons/06002E97.png deleted file mode 100755 index 826fa4d2..00000000 Binary files a/static/icons/06002E97.png and /dev/null differ diff --git a/static/icons/06002E98.png b/static/icons/06002E98.png deleted file mode 100755 index 26792e42..00000000 Binary files a/static/icons/06002E98.png and /dev/null differ diff --git a/static/icons/06002E99.png b/static/icons/06002E99.png deleted file mode 100755 index 67af217b..00000000 Binary files a/static/icons/06002E99.png and /dev/null differ diff --git a/static/icons/06002E9A.png b/static/icons/06002E9A.png deleted file mode 100755 index 8d173a81..00000000 Binary files a/static/icons/06002E9A.png and /dev/null differ diff --git a/static/icons/06002E9B.png b/static/icons/06002E9B.png deleted file mode 100755 index b6c66b37..00000000 Binary files a/static/icons/06002E9B.png and /dev/null differ diff --git a/static/icons/06002E9C.png b/static/icons/06002E9C.png deleted file mode 100755 index a1c18737..00000000 Binary files a/static/icons/06002E9C.png and /dev/null differ diff --git a/static/icons/06002E9D.png b/static/icons/06002E9D.png deleted file mode 100755 index 30a8220f..00000000 Binary files a/static/icons/06002E9D.png and /dev/null differ diff --git a/static/icons/06002E9E.png b/static/icons/06002E9E.png deleted file mode 100755 index 344c4f70..00000000 Binary files a/static/icons/06002E9E.png and /dev/null differ diff --git a/static/icons/06002E9F.png b/static/icons/06002E9F.png deleted file mode 100755 index c2fd3bd3..00000000 Binary files a/static/icons/06002E9F.png and /dev/null differ diff --git a/static/icons/06002EA0.png b/static/icons/06002EA0.png deleted file mode 100755 index a424c17c..00000000 Binary files a/static/icons/06002EA0.png and /dev/null differ diff --git a/static/icons/06002EA1.png b/static/icons/06002EA1.png deleted file mode 100755 index 560d5c2e..00000000 Binary files a/static/icons/06002EA1.png and /dev/null differ diff --git a/static/icons/06002EA2.png b/static/icons/06002EA2.png deleted file mode 100755 index 591c0e5f..00000000 Binary files a/static/icons/06002EA2.png and /dev/null differ diff --git a/static/icons/06002EA3.png b/static/icons/06002EA3.png deleted file mode 100755 index ced064c0..00000000 Binary files a/static/icons/06002EA3.png and /dev/null differ diff --git a/static/icons/06002EA4.png b/static/icons/06002EA4.png deleted file mode 100755 index c9e57b18..00000000 Binary files a/static/icons/06002EA4.png and /dev/null differ diff --git a/static/icons/06002EA5.png b/static/icons/06002EA5.png deleted file mode 100755 index 5b608d25..00000000 Binary files a/static/icons/06002EA5.png and /dev/null differ diff --git a/static/icons/06002EA6.png b/static/icons/06002EA6.png deleted file mode 100755 index 7273fbd0..00000000 Binary files a/static/icons/06002EA6.png and /dev/null differ diff --git a/static/icons/06002EA7.png b/static/icons/06002EA7.png deleted file mode 100755 index 7bd0239a..00000000 Binary files a/static/icons/06002EA7.png and /dev/null differ diff --git a/static/icons/06002EA8.png b/static/icons/06002EA8.png deleted file mode 100755 index 44cd3af3..00000000 Binary files a/static/icons/06002EA8.png and /dev/null differ diff --git a/static/icons/06002EA9.png b/static/icons/06002EA9.png deleted file mode 100755 index 2b5ba945..00000000 Binary files a/static/icons/06002EA9.png and /dev/null differ diff --git a/static/icons/06002EAA.png b/static/icons/06002EAA.png deleted file mode 100755 index 0eab9bac..00000000 Binary files a/static/icons/06002EAA.png and /dev/null differ diff --git a/static/icons/06002EAB.png b/static/icons/06002EAB.png deleted file mode 100755 index 902c0048..00000000 Binary files a/static/icons/06002EAB.png and /dev/null differ diff --git a/static/icons/06002EAC.png b/static/icons/06002EAC.png deleted file mode 100755 index 2de6a4ae..00000000 Binary files a/static/icons/06002EAC.png and /dev/null differ diff --git a/static/icons/06002EAD.png b/static/icons/06002EAD.png deleted file mode 100755 index 7fe5a18b..00000000 Binary files a/static/icons/06002EAD.png and /dev/null differ diff --git a/static/icons/06002EAE.png b/static/icons/06002EAE.png deleted file mode 100755 index 85a932ec..00000000 Binary files a/static/icons/06002EAE.png and /dev/null differ diff --git a/static/icons/06002EAF.png b/static/icons/06002EAF.png deleted file mode 100755 index 91c1245b..00000000 Binary files a/static/icons/06002EAF.png and /dev/null differ diff --git a/static/icons/06002EB0.png b/static/icons/06002EB0.png deleted file mode 100755 index 64d2070a..00000000 Binary files a/static/icons/06002EB0.png and /dev/null differ diff --git a/static/icons/06002EB1.png b/static/icons/06002EB1.png deleted file mode 100755 index d67cd8b4..00000000 Binary files a/static/icons/06002EB1.png and /dev/null differ diff --git a/static/icons/06002EB2.png b/static/icons/06002EB2.png deleted file mode 100755 index 2a181b85..00000000 Binary files a/static/icons/06002EB2.png and /dev/null differ diff --git a/static/icons/06002EB3.png b/static/icons/06002EB3.png deleted file mode 100755 index 3b058a11..00000000 Binary files a/static/icons/06002EB3.png and /dev/null differ diff --git a/static/icons/06002EB4.png b/static/icons/06002EB4.png deleted file mode 100755 index b1d6e2d5..00000000 Binary files a/static/icons/06002EB4.png and /dev/null differ diff --git a/static/icons/06002EB5.png b/static/icons/06002EB5.png deleted file mode 100755 index b63bd94c..00000000 Binary files a/static/icons/06002EB5.png and /dev/null differ diff --git a/static/icons/06002EB6.png b/static/icons/06002EB6.png deleted file mode 100755 index f7cc7343..00000000 Binary files a/static/icons/06002EB6.png and /dev/null differ diff --git a/static/icons/06002EB7.png b/static/icons/06002EB7.png deleted file mode 100755 index ff7a6d95..00000000 Binary files a/static/icons/06002EB7.png and /dev/null differ diff --git a/static/icons/06002EB8.png b/static/icons/06002EB8.png deleted file mode 100755 index 741fef0d..00000000 Binary files a/static/icons/06002EB8.png and /dev/null differ diff --git a/static/icons/06002EB9.png b/static/icons/06002EB9.png deleted file mode 100755 index a145a250..00000000 Binary files a/static/icons/06002EB9.png and /dev/null differ diff --git a/static/icons/06002EBA.png b/static/icons/06002EBA.png deleted file mode 100755 index 523e9fc9..00000000 Binary files a/static/icons/06002EBA.png and /dev/null differ diff --git a/static/icons/06002EBB.png b/static/icons/06002EBB.png deleted file mode 100755 index 9e52ab2a..00000000 Binary files a/static/icons/06002EBB.png and /dev/null differ diff --git a/static/icons/06002EBC.png b/static/icons/06002EBC.png deleted file mode 100755 index f09508b0..00000000 Binary files a/static/icons/06002EBC.png and /dev/null differ diff --git a/static/icons/06002EBD.png b/static/icons/06002EBD.png deleted file mode 100755 index e1f15b42..00000000 Binary files a/static/icons/06002EBD.png and /dev/null differ diff --git a/static/icons/06002EBE.png b/static/icons/06002EBE.png deleted file mode 100755 index aea01350..00000000 Binary files a/static/icons/06002EBE.png and /dev/null differ diff --git a/static/icons/06002EBF.png b/static/icons/06002EBF.png deleted file mode 100755 index 12af0c3b..00000000 Binary files a/static/icons/06002EBF.png and /dev/null differ diff --git a/static/icons/06002EC0.png b/static/icons/06002EC0.png deleted file mode 100755 index b3c877f4..00000000 Binary files a/static/icons/06002EC0.png and /dev/null differ diff --git a/static/icons/06002EC1.png b/static/icons/06002EC1.png deleted file mode 100755 index c41bc4aa..00000000 Binary files a/static/icons/06002EC1.png and /dev/null differ diff --git a/static/icons/06002EC2.png b/static/icons/06002EC2.png deleted file mode 100755 index e7b79735..00000000 Binary files a/static/icons/06002EC2.png and /dev/null differ diff --git a/static/icons/06002EC3.png b/static/icons/06002EC3.png deleted file mode 100755 index af15b02a..00000000 Binary files a/static/icons/06002EC3.png and /dev/null differ diff --git a/static/icons/06002EC4.png b/static/icons/06002EC4.png deleted file mode 100755 index 4db45a41..00000000 Binary files a/static/icons/06002EC4.png and /dev/null differ diff --git a/static/icons/06002EC5.png b/static/icons/06002EC5.png deleted file mode 100755 index 9c8ae96c..00000000 Binary files a/static/icons/06002EC5.png and /dev/null differ diff --git a/static/icons/06002EC6.png b/static/icons/06002EC6.png deleted file mode 100755 index c5b7de8c..00000000 Binary files a/static/icons/06002EC6.png and /dev/null differ diff --git a/static/icons/06002EC7.png b/static/icons/06002EC7.png deleted file mode 100755 index 5edc3de7..00000000 Binary files a/static/icons/06002EC7.png and /dev/null differ diff --git a/static/icons/06002EC8.png b/static/icons/06002EC8.png deleted file mode 100755 index 7a267861..00000000 Binary files a/static/icons/06002EC8.png and /dev/null differ diff --git a/static/icons/06002EC9.png b/static/icons/06002EC9.png deleted file mode 100755 index 981ef7a3..00000000 Binary files a/static/icons/06002EC9.png and /dev/null differ diff --git a/static/icons/06002ECA.png b/static/icons/06002ECA.png deleted file mode 100755 index fb8236b8..00000000 Binary files a/static/icons/06002ECA.png and /dev/null differ diff --git a/static/icons/06002ECB.png b/static/icons/06002ECB.png deleted file mode 100755 index ffb165c0..00000000 Binary files a/static/icons/06002ECB.png and /dev/null differ diff --git a/static/icons/06002ECC.png b/static/icons/06002ECC.png deleted file mode 100755 index a02af7aa..00000000 Binary files a/static/icons/06002ECC.png and /dev/null differ diff --git a/static/icons/06002ECD.png b/static/icons/06002ECD.png deleted file mode 100755 index 3dbc1e85..00000000 Binary files a/static/icons/06002ECD.png and /dev/null differ diff --git a/static/icons/06002ECE.png b/static/icons/06002ECE.png deleted file mode 100755 index 27061ef9..00000000 Binary files a/static/icons/06002ECE.png and /dev/null differ diff --git a/static/icons/06002ECF.png b/static/icons/06002ECF.png deleted file mode 100755 index a447f2a8..00000000 Binary files a/static/icons/06002ECF.png and /dev/null differ diff --git a/static/icons/06002ED0.png b/static/icons/06002ED0.png deleted file mode 100755 index d18a388f..00000000 Binary files a/static/icons/06002ED0.png and /dev/null differ diff --git a/static/icons/06002ED1.png b/static/icons/06002ED1.png deleted file mode 100755 index 8af1fb4a..00000000 Binary files a/static/icons/06002ED1.png and /dev/null differ diff --git a/static/icons/06002ED2.png b/static/icons/06002ED2.png deleted file mode 100755 index 3471f0cb..00000000 Binary files a/static/icons/06002ED2.png and /dev/null differ diff --git a/static/icons/06002ED3.png b/static/icons/06002ED3.png deleted file mode 100755 index cf5c8b16..00000000 Binary files a/static/icons/06002ED3.png and /dev/null differ diff --git a/static/icons/06002ED4.png b/static/icons/06002ED4.png deleted file mode 100755 index 36cccfaf..00000000 Binary files a/static/icons/06002ED4.png and /dev/null differ diff --git a/static/icons/06002ED5.png b/static/icons/06002ED5.png deleted file mode 100755 index 1b319434..00000000 Binary files a/static/icons/06002ED5.png and /dev/null differ diff --git a/static/icons/06002ED6.png b/static/icons/06002ED6.png deleted file mode 100755 index ff8d427f..00000000 Binary files a/static/icons/06002ED6.png and /dev/null differ diff --git a/static/icons/06002ED7.png b/static/icons/06002ED7.png deleted file mode 100755 index 41912abc..00000000 Binary files a/static/icons/06002ED7.png and /dev/null differ diff --git a/static/icons/06002ED8.png b/static/icons/06002ED8.png deleted file mode 100755 index 347f1b3f..00000000 Binary files a/static/icons/06002ED8.png and /dev/null differ diff --git a/static/icons/06002ED9.png b/static/icons/06002ED9.png deleted file mode 100755 index 57ecfe89..00000000 Binary files a/static/icons/06002ED9.png and /dev/null differ diff --git a/static/icons/06002EDA.png b/static/icons/06002EDA.png deleted file mode 100755 index f377c17f..00000000 Binary files a/static/icons/06002EDA.png and /dev/null differ diff --git a/static/icons/06002EDB.png b/static/icons/06002EDB.png deleted file mode 100755 index b903b89d..00000000 Binary files a/static/icons/06002EDB.png and /dev/null differ diff --git a/static/icons/06002EDC.png b/static/icons/06002EDC.png deleted file mode 100755 index 4ba6a780..00000000 Binary files a/static/icons/06002EDC.png and /dev/null differ diff --git a/static/icons/06002EDD.png b/static/icons/06002EDD.png deleted file mode 100755 index 12ca3ad1..00000000 Binary files a/static/icons/06002EDD.png and /dev/null differ diff --git a/static/icons/06002EDE.png b/static/icons/06002EDE.png deleted file mode 100755 index 9d3353eb..00000000 Binary files a/static/icons/06002EDE.png and /dev/null differ diff --git a/static/icons/06002EDF.png b/static/icons/06002EDF.png deleted file mode 100755 index c4d3b890..00000000 Binary files a/static/icons/06002EDF.png and /dev/null differ diff --git a/static/icons/06002EE0.png b/static/icons/06002EE0.png deleted file mode 100755 index c9954cfe..00000000 Binary files a/static/icons/06002EE0.png and /dev/null differ diff --git a/static/icons/06002EE1.png b/static/icons/06002EE1.png deleted file mode 100755 index 48ea803a..00000000 Binary files a/static/icons/06002EE1.png and /dev/null differ diff --git a/static/icons/06002EE2.png b/static/icons/06002EE2.png deleted file mode 100755 index f6d0d285..00000000 Binary files a/static/icons/06002EE2.png and /dev/null differ diff --git a/static/icons/06002EE3.png b/static/icons/06002EE3.png deleted file mode 100755 index 1a5aa384..00000000 Binary files a/static/icons/06002EE3.png and /dev/null differ diff --git a/static/icons/06002EE4.png b/static/icons/06002EE4.png deleted file mode 100755 index ffda7aaa..00000000 Binary files a/static/icons/06002EE4.png and /dev/null differ diff --git a/static/icons/06002EE5.png b/static/icons/06002EE5.png deleted file mode 100755 index f808a141..00000000 Binary files a/static/icons/06002EE5.png and /dev/null differ diff --git a/static/icons/06002EE6.png b/static/icons/06002EE6.png deleted file mode 100755 index acf63c4e..00000000 Binary files a/static/icons/06002EE6.png and /dev/null differ diff --git a/static/icons/06002EE7.png b/static/icons/06002EE7.png deleted file mode 100755 index ab82c48e..00000000 Binary files a/static/icons/06002EE7.png and /dev/null differ diff --git a/static/icons/06002EE8.png b/static/icons/06002EE8.png deleted file mode 100755 index e5890738..00000000 Binary files a/static/icons/06002EE8.png and /dev/null differ diff --git a/static/icons/06002EE9.png b/static/icons/06002EE9.png deleted file mode 100755 index 1c98cf9f..00000000 Binary files a/static/icons/06002EE9.png and /dev/null differ diff --git a/static/icons/06002EEA.png b/static/icons/06002EEA.png deleted file mode 100755 index 03842f1c..00000000 Binary files a/static/icons/06002EEA.png and /dev/null differ diff --git a/static/icons/06002EEB.png b/static/icons/06002EEB.png deleted file mode 100755 index 23073c4e..00000000 Binary files a/static/icons/06002EEB.png and /dev/null differ diff --git a/static/icons/06002EEC.png b/static/icons/06002EEC.png deleted file mode 100755 index 2b3f9dab..00000000 Binary files a/static/icons/06002EEC.png and /dev/null differ diff --git a/static/icons/06002EED.png b/static/icons/06002EED.png deleted file mode 100755 index 866a2eb0..00000000 Binary files a/static/icons/06002EED.png and /dev/null differ diff --git a/static/icons/06002EEE.png b/static/icons/06002EEE.png deleted file mode 100755 index bceb1a96..00000000 Binary files a/static/icons/06002EEE.png and /dev/null differ diff --git a/static/icons/06002EEF.png b/static/icons/06002EEF.png deleted file mode 100755 index ad4a9ddf..00000000 Binary files a/static/icons/06002EEF.png and /dev/null differ diff --git a/static/icons/06002EF0.png b/static/icons/06002EF0.png deleted file mode 100755 index 67fbed0e..00000000 Binary files a/static/icons/06002EF0.png and /dev/null differ diff --git a/static/icons/06002EF1.png b/static/icons/06002EF1.png deleted file mode 100755 index daedf5d9..00000000 Binary files a/static/icons/06002EF1.png and /dev/null differ diff --git a/static/icons/06002EF2.png b/static/icons/06002EF2.png deleted file mode 100755 index aae05903..00000000 Binary files a/static/icons/06002EF2.png and /dev/null differ diff --git a/static/icons/06002EF3.png b/static/icons/06002EF3.png deleted file mode 100755 index a72a451a..00000000 Binary files a/static/icons/06002EF3.png and /dev/null differ diff --git a/static/icons/06002EF4.png b/static/icons/06002EF4.png deleted file mode 100755 index e06b3c6d..00000000 Binary files a/static/icons/06002EF4.png and /dev/null differ diff --git a/static/icons/06002EF5.png b/static/icons/06002EF5.png deleted file mode 100755 index c8f063e1..00000000 Binary files a/static/icons/06002EF5.png and /dev/null differ diff --git a/static/icons/06002EF6.png b/static/icons/06002EF6.png deleted file mode 100755 index 170ae15b..00000000 Binary files a/static/icons/06002EF6.png and /dev/null differ diff --git a/static/icons/06002EF7.png b/static/icons/06002EF7.png deleted file mode 100755 index 9be7de65..00000000 Binary files a/static/icons/06002EF7.png and /dev/null differ diff --git a/static/icons/06002EF8.png b/static/icons/06002EF8.png deleted file mode 100755 index 88ebda06..00000000 Binary files a/static/icons/06002EF8.png and /dev/null differ diff --git a/static/icons/06002EF9.png b/static/icons/06002EF9.png deleted file mode 100755 index 25be3626..00000000 Binary files a/static/icons/06002EF9.png and /dev/null differ diff --git a/static/icons/06002EFA.png b/static/icons/06002EFA.png deleted file mode 100755 index 04eccea4..00000000 Binary files a/static/icons/06002EFA.png and /dev/null differ diff --git a/static/icons/06002EFB.png b/static/icons/06002EFB.png deleted file mode 100755 index 72dd939b..00000000 Binary files a/static/icons/06002EFB.png and /dev/null differ diff --git a/static/icons/06002EFC.png b/static/icons/06002EFC.png deleted file mode 100755 index 81742e96..00000000 Binary files a/static/icons/06002EFC.png and /dev/null differ diff --git a/static/icons/06002EFD.png b/static/icons/06002EFD.png deleted file mode 100755 index 24e01abf..00000000 Binary files a/static/icons/06002EFD.png and /dev/null differ diff --git a/static/icons/06002EFE.png b/static/icons/06002EFE.png deleted file mode 100755 index 1d82aee3..00000000 Binary files a/static/icons/06002EFE.png and /dev/null differ diff --git a/static/icons/06002EFF.png b/static/icons/06002EFF.png deleted file mode 100755 index d54f5e48..00000000 Binary files a/static/icons/06002EFF.png and /dev/null differ diff --git a/static/icons/06002F00.png b/static/icons/06002F00.png deleted file mode 100755 index db0df949..00000000 Binary files a/static/icons/06002F00.png and /dev/null differ diff --git a/static/icons/06002F01.png b/static/icons/06002F01.png deleted file mode 100755 index bb887707..00000000 Binary files a/static/icons/06002F01.png and /dev/null differ diff --git a/static/icons/06002F02.png b/static/icons/06002F02.png deleted file mode 100755 index 0e78eb7b..00000000 Binary files a/static/icons/06002F02.png and /dev/null differ diff --git a/static/icons/06002F03.png b/static/icons/06002F03.png deleted file mode 100755 index 832b78ca..00000000 Binary files a/static/icons/06002F03.png and /dev/null differ diff --git a/static/icons/06002F04.png b/static/icons/06002F04.png deleted file mode 100755 index 294928a5..00000000 Binary files a/static/icons/06002F04.png and /dev/null differ diff --git a/static/icons/06002F05.png b/static/icons/06002F05.png deleted file mode 100755 index 43d2b2d9..00000000 Binary files a/static/icons/06002F05.png and /dev/null differ diff --git a/static/icons/06002F06.png b/static/icons/06002F06.png deleted file mode 100755 index bcd7f795..00000000 Binary files a/static/icons/06002F06.png and /dev/null differ diff --git a/static/icons/06002F07.png b/static/icons/06002F07.png deleted file mode 100755 index 0cda0db6..00000000 Binary files a/static/icons/06002F07.png and /dev/null differ diff --git a/static/icons/06002F08.png b/static/icons/06002F08.png deleted file mode 100755 index 7740ea9f..00000000 Binary files a/static/icons/06002F08.png and /dev/null differ diff --git a/static/icons/06002F09.png b/static/icons/06002F09.png deleted file mode 100755 index 14c8fcf4..00000000 Binary files a/static/icons/06002F09.png and /dev/null differ diff --git a/static/icons/06002F0A.png b/static/icons/06002F0A.png deleted file mode 100755 index bbab39cd..00000000 Binary files a/static/icons/06002F0A.png and /dev/null differ diff --git a/static/icons/06002F0B.png b/static/icons/06002F0B.png deleted file mode 100755 index 389bbca0..00000000 Binary files a/static/icons/06002F0B.png and /dev/null differ diff --git a/static/icons/06002F0C.png b/static/icons/06002F0C.png deleted file mode 100755 index 3b55d5dc..00000000 Binary files a/static/icons/06002F0C.png and /dev/null differ diff --git a/static/icons/06002F0D.png b/static/icons/06002F0D.png deleted file mode 100755 index 308c5c80..00000000 Binary files a/static/icons/06002F0D.png and /dev/null differ diff --git a/static/icons/06002F0E.png b/static/icons/06002F0E.png deleted file mode 100755 index a83ba7ee..00000000 Binary files a/static/icons/06002F0E.png and /dev/null differ diff --git a/static/icons/06002F0F.png b/static/icons/06002F0F.png deleted file mode 100755 index 253f46cb..00000000 Binary files a/static/icons/06002F0F.png and /dev/null differ diff --git a/static/icons/06002F10.png b/static/icons/06002F10.png deleted file mode 100755 index 49ff0748..00000000 Binary files a/static/icons/06002F10.png and /dev/null differ diff --git a/static/icons/06002F11.png b/static/icons/06002F11.png deleted file mode 100755 index f2bd4227..00000000 Binary files a/static/icons/06002F11.png and /dev/null differ diff --git a/static/icons/06002F12.png b/static/icons/06002F12.png deleted file mode 100755 index ca2c92e3..00000000 Binary files a/static/icons/06002F12.png and /dev/null differ diff --git a/static/icons/06002F13.png b/static/icons/06002F13.png deleted file mode 100755 index 9f932a8b..00000000 Binary files a/static/icons/06002F13.png and /dev/null differ diff --git a/static/icons/06002F14.png b/static/icons/06002F14.png deleted file mode 100755 index 261a3a3f..00000000 Binary files a/static/icons/06002F14.png and /dev/null differ diff --git a/static/icons/06002F15.png b/static/icons/06002F15.png deleted file mode 100755 index 152cda8e..00000000 Binary files a/static/icons/06002F15.png and /dev/null differ diff --git a/static/icons/06002F16.png b/static/icons/06002F16.png deleted file mode 100755 index a878e571..00000000 Binary files a/static/icons/06002F16.png and /dev/null differ diff --git a/static/icons/06002F17.png b/static/icons/06002F17.png deleted file mode 100755 index c343092c..00000000 Binary files a/static/icons/06002F17.png and /dev/null differ diff --git a/static/icons/06002F18.png b/static/icons/06002F18.png deleted file mode 100755 index bb2cc44b..00000000 Binary files a/static/icons/06002F18.png and /dev/null differ diff --git a/static/icons/06002F19.png b/static/icons/06002F19.png deleted file mode 100755 index 92333640..00000000 Binary files a/static/icons/06002F19.png and /dev/null differ diff --git a/static/icons/06002F1A.png b/static/icons/06002F1A.png deleted file mode 100755 index 3e36840e..00000000 Binary files a/static/icons/06002F1A.png and /dev/null differ diff --git a/static/icons/06002F1B.png b/static/icons/06002F1B.png deleted file mode 100755 index 02edb531..00000000 Binary files a/static/icons/06002F1B.png and /dev/null differ diff --git a/static/icons/06002F1C.png b/static/icons/06002F1C.png deleted file mode 100755 index 93582a6f..00000000 Binary files a/static/icons/06002F1C.png and /dev/null differ diff --git a/static/icons/06002F1D.png b/static/icons/06002F1D.png deleted file mode 100755 index 58a134ae..00000000 Binary files a/static/icons/06002F1D.png and /dev/null differ diff --git a/static/icons/06002F1E.png b/static/icons/06002F1E.png deleted file mode 100755 index 5e0c9415..00000000 Binary files a/static/icons/06002F1E.png and /dev/null differ diff --git a/static/icons/06002F1F.png b/static/icons/06002F1F.png deleted file mode 100755 index 6ed8279f..00000000 Binary files a/static/icons/06002F1F.png and /dev/null differ diff --git a/static/icons/06002F20.png b/static/icons/06002F20.png deleted file mode 100755 index 4e09c411..00000000 Binary files a/static/icons/06002F20.png and /dev/null differ diff --git a/static/icons/06002F21.png b/static/icons/06002F21.png deleted file mode 100755 index da2e6804..00000000 Binary files a/static/icons/06002F21.png and /dev/null differ diff --git a/static/icons/06002F22.png b/static/icons/06002F22.png deleted file mode 100755 index 9c8cef66..00000000 Binary files a/static/icons/06002F22.png and /dev/null differ diff --git a/static/icons/06002F23.png b/static/icons/06002F23.png deleted file mode 100755 index 656270b9..00000000 Binary files a/static/icons/06002F23.png and /dev/null differ diff --git a/static/icons/06002F24.png b/static/icons/06002F24.png deleted file mode 100755 index 7208a5e1..00000000 Binary files a/static/icons/06002F24.png and /dev/null differ diff --git a/static/icons/06002F25.png b/static/icons/06002F25.png deleted file mode 100755 index 4fa234f0..00000000 Binary files a/static/icons/06002F25.png and /dev/null differ diff --git a/static/icons/06002F26.png b/static/icons/06002F26.png deleted file mode 100755 index d4150477..00000000 Binary files a/static/icons/06002F26.png and /dev/null differ diff --git a/static/icons/06002F27.png b/static/icons/06002F27.png deleted file mode 100755 index 4f84f67d..00000000 Binary files a/static/icons/06002F27.png and /dev/null differ diff --git a/static/icons/06002F28.png b/static/icons/06002F28.png deleted file mode 100755 index 357a8b77..00000000 Binary files a/static/icons/06002F28.png and /dev/null differ diff --git a/static/icons/06002F29.png b/static/icons/06002F29.png deleted file mode 100755 index f621ad90..00000000 Binary files a/static/icons/06002F29.png and /dev/null differ diff --git a/static/icons/06002F2A.png b/static/icons/06002F2A.png deleted file mode 100755 index 19c2afc7..00000000 Binary files a/static/icons/06002F2A.png and /dev/null differ diff --git a/static/icons/06002F2B.png b/static/icons/06002F2B.png deleted file mode 100755 index a26d11e8..00000000 Binary files a/static/icons/06002F2B.png and /dev/null differ diff --git a/static/icons/06002F2C.png b/static/icons/06002F2C.png deleted file mode 100755 index df7b09f5..00000000 Binary files a/static/icons/06002F2C.png and /dev/null differ diff --git a/static/icons/06002F2D.png b/static/icons/06002F2D.png deleted file mode 100755 index 188bac41..00000000 Binary files a/static/icons/06002F2D.png and /dev/null differ diff --git a/static/icons/06002F2E.png b/static/icons/06002F2E.png deleted file mode 100755 index 998b6976..00000000 Binary files a/static/icons/06002F2E.png and /dev/null differ diff --git a/static/icons/06002F2F.png b/static/icons/06002F2F.png deleted file mode 100755 index f9b33e8b..00000000 Binary files a/static/icons/06002F2F.png and /dev/null differ diff --git a/static/icons/06002F30.png b/static/icons/06002F30.png deleted file mode 100755 index 2804e4e2..00000000 Binary files a/static/icons/06002F30.png and /dev/null differ diff --git a/static/icons/06002F31.png b/static/icons/06002F31.png deleted file mode 100755 index dc3d784f..00000000 Binary files a/static/icons/06002F31.png and /dev/null differ diff --git a/static/icons/06002F32.png b/static/icons/06002F32.png deleted file mode 100755 index b2d3b097..00000000 Binary files a/static/icons/06002F32.png and /dev/null differ diff --git a/static/icons/06002F33.png b/static/icons/06002F33.png deleted file mode 100755 index 2c49d901..00000000 Binary files a/static/icons/06002F33.png and /dev/null differ diff --git a/static/icons/06002F34.png b/static/icons/06002F34.png deleted file mode 100755 index 3d9e582f..00000000 Binary files a/static/icons/06002F34.png and /dev/null differ diff --git a/static/icons/06002F35.png b/static/icons/06002F35.png deleted file mode 100755 index 124069d0..00000000 Binary files a/static/icons/06002F35.png and /dev/null differ diff --git a/static/icons/06002F36.png b/static/icons/06002F36.png deleted file mode 100755 index 0d880969..00000000 Binary files a/static/icons/06002F36.png and /dev/null differ diff --git a/static/icons/06002F37.png b/static/icons/06002F37.png deleted file mode 100755 index 51bae347..00000000 Binary files a/static/icons/06002F37.png and /dev/null differ diff --git a/static/icons/06002F38.png b/static/icons/06002F38.png deleted file mode 100755 index 3f21e72a..00000000 Binary files a/static/icons/06002F38.png and /dev/null differ diff --git a/static/icons/06002F39.png b/static/icons/06002F39.png deleted file mode 100755 index d21eb3bc..00000000 Binary files a/static/icons/06002F39.png and /dev/null differ diff --git a/static/icons/06002F3A.png b/static/icons/06002F3A.png deleted file mode 100755 index b0ae6b2e..00000000 Binary files a/static/icons/06002F3A.png and /dev/null differ diff --git a/static/icons/06002F3B.png b/static/icons/06002F3B.png deleted file mode 100755 index 85a0e1f7..00000000 Binary files a/static/icons/06002F3B.png and /dev/null differ diff --git a/static/icons/06002F3C.png b/static/icons/06002F3C.png deleted file mode 100755 index d906089b..00000000 Binary files a/static/icons/06002F3C.png and /dev/null differ diff --git a/static/icons/06002F3D.png b/static/icons/06002F3D.png deleted file mode 100755 index ea7fff59..00000000 Binary files a/static/icons/06002F3D.png and /dev/null differ diff --git a/static/icons/06002F3E.png b/static/icons/06002F3E.png deleted file mode 100755 index ef0282f4..00000000 Binary files a/static/icons/06002F3E.png and /dev/null differ diff --git a/static/icons/06002F3F.png b/static/icons/06002F3F.png deleted file mode 100755 index 55b86eab..00000000 Binary files a/static/icons/06002F3F.png and /dev/null differ diff --git a/static/icons/06002F40.png b/static/icons/06002F40.png deleted file mode 100755 index 40b17b44..00000000 Binary files a/static/icons/06002F40.png and /dev/null differ diff --git a/static/icons/06002F41.png b/static/icons/06002F41.png deleted file mode 100755 index c38d0735..00000000 Binary files a/static/icons/06002F41.png and /dev/null differ diff --git a/static/icons/06002F42.png b/static/icons/06002F42.png deleted file mode 100755 index 0886ca5a..00000000 Binary files a/static/icons/06002F42.png and /dev/null differ diff --git a/static/icons/06002F43.png b/static/icons/06002F43.png deleted file mode 100755 index 1cdcb224..00000000 Binary files a/static/icons/06002F43.png and /dev/null differ diff --git a/static/icons/06002F44.png b/static/icons/06002F44.png deleted file mode 100755 index f8380386..00000000 Binary files a/static/icons/06002F44.png and /dev/null differ diff --git a/static/icons/06002F45.png b/static/icons/06002F45.png deleted file mode 100755 index f0965f3c..00000000 Binary files a/static/icons/06002F45.png and /dev/null differ diff --git a/static/icons/06002F46.png b/static/icons/06002F46.png deleted file mode 100755 index 0555fff8..00000000 Binary files a/static/icons/06002F46.png and /dev/null differ diff --git a/static/icons/06002F47.png b/static/icons/06002F47.png deleted file mode 100755 index 8d0bf576..00000000 Binary files a/static/icons/06002F47.png and /dev/null differ diff --git a/static/icons/06002F48.png b/static/icons/06002F48.png deleted file mode 100755 index 3d8a51a7..00000000 Binary files a/static/icons/06002F48.png and /dev/null differ diff --git a/static/icons/06002F49.png b/static/icons/06002F49.png deleted file mode 100755 index c46b19ac..00000000 Binary files a/static/icons/06002F49.png and /dev/null differ diff --git a/static/icons/06002F4A.png b/static/icons/06002F4A.png deleted file mode 100755 index 93e688fc..00000000 Binary files a/static/icons/06002F4A.png and /dev/null differ diff --git a/static/icons/06002F4B.png b/static/icons/06002F4B.png deleted file mode 100755 index 83a5ce7f..00000000 Binary files a/static/icons/06002F4B.png and /dev/null differ diff --git a/static/icons/06002F4C.png b/static/icons/06002F4C.png deleted file mode 100755 index e0af7f1c..00000000 Binary files a/static/icons/06002F4C.png and /dev/null differ diff --git a/static/icons/06002F4D.png b/static/icons/06002F4D.png deleted file mode 100755 index c2d86418..00000000 Binary files a/static/icons/06002F4D.png and /dev/null differ diff --git a/static/icons/06002F4E.png b/static/icons/06002F4E.png deleted file mode 100755 index 2a88f567..00000000 Binary files a/static/icons/06002F4E.png and /dev/null differ diff --git a/static/icons/06002F4F.png b/static/icons/06002F4F.png deleted file mode 100755 index 30840bc5..00000000 Binary files a/static/icons/06002F4F.png and /dev/null differ diff --git a/static/icons/06002F50.png b/static/icons/06002F50.png deleted file mode 100755 index c03b5d0f..00000000 Binary files a/static/icons/06002F50.png and /dev/null differ diff --git a/static/icons/06002F51.png b/static/icons/06002F51.png deleted file mode 100755 index b7b5d1c6..00000000 Binary files a/static/icons/06002F51.png and /dev/null differ diff --git a/static/icons/06002F52.png b/static/icons/06002F52.png deleted file mode 100755 index 5d1e9543..00000000 Binary files a/static/icons/06002F52.png and /dev/null differ diff --git a/static/icons/06002F53.png b/static/icons/06002F53.png deleted file mode 100755 index 4b8b0478..00000000 Binary files a/static/icons/06002F53.png and /dev/null differ diff --git a/static/icons/06002F54.png b/static/icons/06002F54.png deleted file mode 100755 index 60e18dbd..00000000 Binary files a/static/icons/06002F54.png and /dev/null differ diff --git a/static/icons/06002F55.png b/static/icons/06002F55.png deleted file mode 100755 index 81b00001..00000000 Binary files a/static/icons/06002F55.png and /dev/null differ diff --git a/static/icons/06002F56.png b/static/icons/06002F56.png deleted file mode 100755 index befb15a3..00000000 Binary files a/static/icons/06002F56.png and /dev/null differ diff --git a/static/icons/06002F57.png b/static/icons/06002F57.png deleted file mode 100755 index 6f10aa09..00000000 Binary files a/static/icons/06002F57.png and /dev/null differ diff --git a/static/icons/06002F58.png b/static/icons/06002F58.png deleted file mode 100755 index bb6a3693..00000000 Binary files a/static/icons/06002F58.png and /dev/null differ diff --git a/static/icons/06002F59.png b/static/icons/06002F59.png deleted file mode 100755 index a487ff9c..00000000 Binary files a/static/icons/06002F59.png and /dev/null differ diff --git a/static/icons/06002F5A.png b/static/icons/06002F5A.png deleted file mode 100755 index 17009244..00000000 Binary files a/static/icons/06002F5A.png and /dev/null differ diff --git a/static/icons/06002F5B.png b/static/icons/06002F5B.png deleted file mode 100755 index 764b4ce8..00000000 Binary files a/static/icons/06002F5B.png and /dev/null differ diff --git a/static/icons/06002F5C.png b/static/icons/06002F5C.png deleted file mode 100755 index 5d918cf6..00000000 Binary files a/static/icons/06002F5C.png and /dev/null differ diff --git a/static/icons/06002F5D.png b/static/icons/06002F5D.png deleted file mode 100755 index 0572eff5..00000000 Binary files a/static/icons/06002F5D.png and /dev/null differ diff --git a/static/icons/06002F5E.png b/static/icons/06002F5E.png deleted file mode 100755 index e900dd85..00000000 Binary files a/static/icons/06002F5E.png and /dev/null differ diff --git a/static/icons/06002F5F.png b/static/icons/06002F5F.png deleted file mode 100755 index 264ca912..00000000 Binary files a/static/icons/06002F5F.png and /dev/null differ diff --git a/static/icons/06002F60.png b/static/icons/06002F60.png deleted file mode 100755 index 70333037..00000000 Binary files a/static/icons/06002F60.png and /dev/null differ diff --git a/static/icons/06002F61.png b/static/icons/06002F61.png deleted file mode 100755 index a473172e..00000000 Binary files a/static/icons/06002F61.png and /dev/null differ diff --git a/static/icons/06002F62.png b/static/icons/06002F62.png deleted file mode 100755 index 8f8d5de9..00000000 Binary files a/static/icons/06002F62.png and /dev/null differ diff --git a/static/icons/06002F63.png b/static/icons/06002F63.png deleted file mode 100755 index 7829f769..00000000 Binary files a/static/icons/06002F63.png and /dev/null differ diff --git a/static/icons/06002F64.png b/static/icons/06002F64.png deleted file mode 100755 index 7ee4de9c..00000000 Binary files a/static/icons/06002F64.png and /dev/null differ diff --git a/static/icons/06002F65.png b/static/icons/06002F65.png deleted file mode 100755 index 2cb45d1c..00000000 Binary files a/static/icons/06002F65.png and /dev/null differ diff --git a/static/icons/06002F66.png b/static/icons/06002F66.png deleted file mode 100755 index 85a265d4..00000000 Binary files a/static/icons/06002F66.png and /dev/null differ diff --git a/static/icons/06002F67.png b/static/icons/06002F67.png deleted file mode 100755 index d902dec1..00000000 Binary files a/static/icons/06002F67.png and /dev/null differ diff --git a/static/icons/06002F68.png b/static/icons/06002F68.png deleted file mode 100755 index bc688238..00000000 Binary files a/static/icons/06002F68.png and /dev/null differ diff --git a/static/icons/06002F69.png b/static/icons/06002F69.png deleted file mode 100755 index b1f30648..00000000 Binary files a/static/icons/06002F69.png and /dev/null differ diff --git a/static/icons/06002F6A.png b/static/icons/06002F6A.png deleted file mode 100755 index 78e37a2d..00000000 Binary files a/static/icons/06002F6A.png and /dev/null differ diff --git a/static/icons/06002F6B.png b/static/icons/06002F6B.png deleted file mode 100755 index ab3ba68c..00000000 Binary files a/static/icons/06002F6B.png and /dev/null differ diff --git a/static/icons/06002F6C.png b/static/icons/06002F6C.png deleted file mode 100755 index 65c1b9ea..00000000 Binary files a/static/icons/06002F6C.png and /dev/null differ diff --git a/static/icons/06002F6D.png b/static/icons/06002F6D.png deleted file mode 100755 index ba8fe6f4..00000000 Binary files a/static/icons/06002F6D.png and /dev/null differ diff --git a/static/icons/06002F6E.png b/static/icons/06002F6E.png deleted file mode 100755 index 50e1ee7c..00000000 Binary files a/static/icons/06002F6E.png and /dev/null differ diff --git a/static/icons/06002F6F.png b/static/icons/06002F6F.png deleted file mode 100755 index f35d48a3..00000000 Binary files a/static/icons/06002F6F.png and /dev/null differ diff --git a/static/icons/06002F70.png b/static/icons/06002F70.png deleted file mode 100755 index 70e87313..00000000 Binary files a/static/icons/06002F70.png and /dev/null differ diff --git a/static/icons/06002F71.png b/static/icons/06002F71.png deleted file mode 100755 index 5a86bcc1..00000000 Binary files a/static/icons/06002F71.png and /dev/null differ diff --git a/static/icons/06002F72.png b/static/icons/06002F72.png deleted file mode 100755 index 2e505152..00000000 Binary files a/static/icons/06002F72.png and /dev/null differ diff --git a/static/icons/06002F73.png b/static/icons/06002F73.png deleted file mode 100755 index 4df6111f..00000000 Binary files a/static/icons/06002F73.png and /dev/null differ diff --git a/static/icons/06002F74.png b/static/icons/06002F74.png deleted file mode 100755 index a64a0b78..00000000 Binary files a/static/icons/06002F74.png and /dev/null differ diff --git a/static/icons/06002F75.png b/static/icons/06002F75.png deleted file mode 100755 index 7ecaf292..00000000 Binary files a/static/icons/06002F75.png and /dev/null differ diff --git a/static/icons/06002F76.png b/static/icons/06002F76.png deleted file mode 100755 index 9501f83d..00000000 Binary files a/static/icons/06002F76.png and /dev/null differ diff --git a/static/icons/06002F77.png b/static/icons/06002F77.png deleted file mode 100755 index 8a16dde1..00000000 Binary files a/static/icons/06002F77.png and /dev/null differ diff --git a/static/icons/06002F78.png b/static/icons/06002F78.png deleted file mode 100755 index f8aa57ff..00000000 Binary files a/static/icons/06002F78.png and /dev/null differ diff --git a/static/icons/06002F79.png b/static/icons/06002F79.png deleted file mode 100755 index 66fcce19..00000000 Binary files a/static/icons/06002F79.png and /dev/null differ diff --git a/static/icons/06002F7A.png b/static/icons/06002F7A.png deleted file mode 100755 index 88e329f9..00000000 Binary files a/static/icons/06002F7A.png and /dev/null differ diff --git a/static/icons/06002F7B.png b/static/icons/06002F7B.png deleted file mode 100755 index 525cd01e..00000000 Binary files a/static/icons/06002F7B.png and /dev/null differ diff --git a/static/icons/06002F7C.png b/static/icons/06002F7C.png deleted file mode 100755 index b63a25a8..00000000 Binary files a/static/icons/06002F7C.png and /dev/null differ diff --git a/static/icons/06002F7D.png b/static/icons/06002F7D.png deleted file mode 100755 index fb3bf8e0..00000000 Binary files a/static/icons/06002F7D.png and /dev/null differ diff --git a/static/icons/06002F7E.png b/static/icons/06002F7E.png deleted file mode 100755 index e7d4102b..00000000 Binary files a/static/icons/06002F7E.png and /dev/null differ diff --git a/static/icons/06002F7F.png b/static/icons/06002F7F.png deleted file mode 100755 index 08b2f955..00000000 Binary files a/static/icons/06002F7F.png and /dev/null differ diff --git a/static/icons/06002F80.png b/static/icons/06002F80.png deleted file mode 100755 index 506dcdf5..00000000 Binary files a/static/icons/06002F80.png and /dev/null differ diff --git a/static/icons/06002F81.png b/static/icons/06002F81.png deleted file mode 100755 index b61786b1..00000000 Binary files a/static/icons/06002F81.png and /dev/null differ diff --git a/static/icons/06002F82.png b/static/icons/06002F82.png deleted file mode 100755 index 96e9277d..00000000 Binary files a/static/icons/06002F82.png and /dev/null differ diff --git a/static/icons/06002F83.png b/static/icons/06002F83.png deleted file mode 100755 index e5a2f99c..00000000 Binary files a/static/icons/06002F83.png and /dev/null differ diff --git a/static/icons/06002F84.png b/static/icons/06002F84.png deleted file mode 100755 index fbffad15..00000000 Binary files a/static/icons/06002F84.png and /dev/null differ diff --git a/static/icons/06002F85.png b/static/icons/06002F85.png deleted file mode 100755 index 0d15130e..00000000 Binary files a/static/icons/06002F85.png and /dev/null differ diff --git a/static/icons/06002F86.png b/static/icons/06002F86.png deleted file mode 100755 index 3a044cbc..00000000 Binary files a/static/icons/06002F86.png and /dev/null differ diff --git a/static/icons/06002F87.png b/static/icons/06002F87.png deleted file mode 100755 index cba0d268..00000000 Binary files a/static/icons/06002F87.png and /dev/null differ diff --git a/static/icons/06002F88.png b/static/icons/06002F88.png deleted file mode 100755 index 7316c23a..00000000 Binary files a/static/icons/06002F88.png and /dev/null differ diff --git a/static/icons/06002F89.png b/static/icons/06002F89.png deleted file mode 100755 index bd04d8c0..00000000 Binary files a/static/icons/06002F89.png and /dev/null differ diff --git a/static/icons/06002F8A.png b/static/icons/06002F8A.png deleted file mode 100755 index 77e094bf..00000000 Binary files a/static/icons/06002F8A.png and /dev/null differ diff --git a/static/icons/06002F8B.png b/static/icons/06002F8B.png deleted file mode 100755 index 3673454a..00000000 Binary files a/static/icons/06002F8B.png and /dev/null differ diff --git a/static/icons/06002F8C.png b/static/icons/06002F8C.png deleted file mode 100755 index ba8980e2..00000000 Binary files a/static/icons/06002F8C.png and /dev/null differ diff --git a/static/icons/06002F8D.png b/static/icons/06002F8D.png deleted file mode 100755 index 36577e1f..00000000 Binary files a/static/icons/06002F8D.png and /dev/null differ diff --git a/static/icons/06002F8E.png b/static/icons/06002F8E.png deleted file mode 100755 index 8ed45ccc..00000000 Binary files a/static/icons/06002F8E.png and /dev/null differ diff --git a/static/icons/06002F8F.png b/static/icons/06002F8F.png deleted file mode 100755 index 9773774f..00000000 Binary files a/static/icons/06002F8F.png and /dev/null differ diff --git a/static/icons/06002F90.png b/static/icons/06002F90.png deleted file mode 100755 index e105de07..00000000 Binary files a/static/icons/06002F90.png and /dev/null differ diff --git a/static/icons/06002F91.png b/static/icons/06002F91.png deleted file mode 100755 index 7becfe84..00000000 Binary files a/static/icons/06002F91.png and /dev/null differ diff --git a/static/icons/06002F92.png b/static/icons/06002F92.png deleted file mode 100755 index b57cdd64..00000000 Binary files a/static/icons/06002F92.png and /dev/null differ diff --git a/static/icons/06002F93.png b/static/icons/06002F93.png deleted file mode 100755 index d0407705..00000000 Binary files a/static/icons/06002F93.png and /dev/null differ diff --git a/static/icons/06002F94.png b/static/icons/06002F94.png deleted file mode 100755 index c030c67c..00000000 Binary files a/static/icons/06002F94.png and /dev/null differ diff --git a/static/icons/06002F95.png b/static/icons/06002F95.png deleted file mode 100755 index ec805d3d..00000000 Binary files a/static/icons/06002F95.png and /dev/null differ diff --git a/static/icons/06002F96.png b/static/icons/06002F96.png deleted file mode 100755 index 3483603f..00000000 Binary files a/static/icons/06002F96.png and /dev/null differ diff --git a/static/icons/06002F97.png b/static/icons/06002F97.png deleted file mode 100755 index 68f6d19c..00000000 Binary files a/static/icons/06002F97.png and /dev/null differ diff --git a/static/icons/06002F98.png b/static/icons/06002F98.png deleted file mode 100755 index 2bd5c18c..00000000 Binary files a/static/icons/06002F98.png and /dev/null differ diff --git a/static/icons/06002F99.png b/static/icons/06002F99.png deleted file mode 100755 index 4f5b2b69..00000000 Binary files a/static/icons/06002F99.png and /dev/null differ diff --git a/static/icons/06002F9A.png b/static/icons/06002F9A.png deleted file mode 100755 index adc10b0e..00000000 Binary files a/static/icons/06002F9A.png and /dev/null differ diff --git a/static/icons/06002F9B.png b/static/icons/06002F9B.png deleted file mode 100755 index de9f241a..00000000 Binary files a/static/icons/06002F9B.png and /dev/null differ diff --git a/static/icons/06002F9C.png b/static/icons/06002F9C.png deleted file mode 100755 index 01743cc8..00000000 Binary files a/static/icons/06002F9C.png and /dev/null differ diff --git a/static/icons/06002F9D.png b/static/icons/06002F9D.png deleted file mode 100755 index 9285f441..00000000 Binary files a/static/icons/06002F9D.png and /dev/null differ diff --git a/static/icons/06002F9E.png b/static/icons/06002F9E.png deleted file mode 100755 index 2aba01e7..00000000 Binary files a/static/icons/06002F9E.png and /dev/null differ diff --git a/static/icons/06002F9F.png b/static/icons/06002F9F.png deleted file mode 100755 index e964ed7a..00000000 Binary files a/static/icons/06002F9F.png and /dev/null differ diff --git a/static/icons/06002FA0.png b/static/icons/06002FA0.png deleted file mode 100755 index ddcaad7f..00000000 Binary files a/static/icons/06002FA0.png and /dev/null differ diff --git a/static/icons/06002FA1.png b/static/icons/06002FA1.png deleted file mode 100755 index 27eb4200..00000000 Binary files a/static/icons/06002FA1.png and /dev/null differ diff --git a/static/icons/06002FA2.png b/static/icons/06002FA2.png deleted file mode 100755 index ad97d2e4..00000000 Binary files a/static/icons/06002FA2.png and /dev/null differ diff --git a/static/icons/06002FA3.png b/static/icons/06002FA3.png deleted file mode 100755 index 6d54f4c8..00000000 Binary files a/static/icons/06002FA3.png and /dev/null differ diff --git a/static/icons/06002FA4.png b/static/icons/06002FA4.png deleted file mode 100755 index accc4eb6..00000000 Binary files a/static/icons/06002FA4.png and /dev/null differ diff --git a/static/icons/06002FA5.png b/static/icons/06002FA5.png deleted file mode 100755 index 111615e4..00000000 Binary files a/static/icons/06002FA5.png and /dev/null differ diff --git a/static/icons/06002FA6.png b/static/icons/06002FA6.png deleted file mode 100755 index 250fccee..00000000 Binary files a/static/icons/06002FA6.png and /dev/null differ diff --git a/static/icons/06002FA7.png b/static/icons/06002FA7.png deleted file mode 100755 index e441c52d..00000000 Binary files a/static/icons/06002FA7.png and /dev/null differ diff --git a/static/icons/06002FA8.png b/static/icons/06002FA8.png deleted file mode 100755 index 582aa26f..00000000 Binary files a/static/icons/06002FA8.png and /dev/null differ diff --git a/static/icons/06002FA9.png b/static/icons/06002FA9.png deleted file mode 100755 index 63422261..00000000 Binary files a/static/icons/06002FA9.png and /dev/null differ diff --git a/static/icons/06002FAA.png b/static/icons/06002FAA.png deleted file mode 100755 index a3ba73f5..00000000 Binary files a/static/icons/06002FAA.png and /dev/null differ diff --git a/static/icons/06002FAB.png b/static/icons/06002FAB.png deleted file mode 100755 index 092708c8..00000000 Binary files a/static/icons/06002FAB.png and /dev/null differ diff --git a/static/icons/06002FAC.png b/static/icons/06002FAC.png deleted file mode 100755 index 4a92f2cd..00000000 Binary files a/static/icons/06002FAC.png and /dev/null differ diff --git a/static/icons/06002FAD.png b/static/icons/06002FAD.png deleted file mode 100755 index 97dd0362..00000000 Binary files a/static/icons/06002FAD.png and /dev/null differ diff --git a/static/icons/06002FAE.png b/static/icons/06002FAE.png deleted file mode 100755 index f03fb6df..00000000 Binary files a/static/icons/06002FAE.png and /dev/null differ diff --git a/static/icons/06002FAF.png b/static/icons/06002FAF.png deleted file mode 100755 index 262a0652..00000000 Binary files a/static/icons/06002FAF.png and /dev/null differ diff --git a/static/icons/06002FB0.png b/static/icons/06002FB0.png deleted file mode 100755 index 844da901..00000000 Binary files a/static/icons/06002FB0.png and /dev/null differ diff --git a/static/icons/06002FB1.png b/static/icons/06002FB1.png deleted file mode 100755 index ec377155..00000000 Binary files a/static/icons/06002FB1.png and /dev/null differ diff --git a/static/icons/06002FB2.png b/static/icons/06002FB2.png deleted file mode 100755 index 6d513fab..00000000 Binary files a/static/icons/06002FB2.png and /dev/null differ diff --git a/static/icons/06002FB3.png b/static/icons/06002FB3.png deleted file mode 100755 index 4048f5e7..00000000 Binary files a/static/icons/06002FB3.png and /dev/null differ diff --git a/static/icons/06002FB4.png b/static/icons/06002FB4.png deleted file mode 100755 index 70073f1a..00000000 Binary files a/static/icons/06002FB4.png and /dev/null differ diff --git a/static/icons/06002FB5.png b/static/icons/06002FB5.png deleted file mode 100755 index da1e443f..00000000 Binary files a/static/icons/06002FB5.png and /dev/null differ diff --git a/static/icons/06002FB6.png b/static/icons/06002FB6.png deleted file mode 100755 index e6b2bb39..00000000 Binary files a/static/icons/06002FB6.png and /dev/null differ diff --git a/static/icons/06002FB7.png b/static/icons/06002FB7.png deleted file mode 100755 index 3c572fd6..00000000 Binary files a/static/icons/06002FB7.png and /dev/null differ diff --git a/static/icons/06002FB8.png b/static/icons/06002FB8.png deleted file mode 100755 index e81688b7..00000000 Binary files a/static/icons/06002FB8.png and /dev/null differ diff --git a/static/icons/06002FB9.png b/static/icons/06002FB9.png deleted file mode 100755 index 860fb3f0..00000000 Binary files a/static/icons/06002FB9.png and /dev/null differ diff --git a/static/icons/06002FBA.png b/static/icons/06002FBA.png deleted file mode 100755 index b4f1e74c..00000000 Binary files a/static/icons/06002FBA.png and /dev/null differ diff --git a/static/icons/06002FBB.png b/static/icons/06002FBB.png deleted file mode 100755 index cd4002b5..00000000 Binary files a/static/icons/06002FBB.png and /dev/null differ diff --git a/static/icons/06002FBC.png b/static/icons/06002FBC.png deleted file mode 100755 index 6e1ffb1d..00000000 Binary files a/static/icons/06002FBC.png and /dev/null differ diff --git a/static/icons/06002FBD.png b/static/icons/06002FBD.png deleted file mode 100755 index e0814690..00000000 Binary files a/static/icons/06002FBD.png and /dev/null differ diff --git a/static/icons/06002FBE.png b/static/icons/06002FBE.png deleted file mode 100755 index f91b5ee9..00000000 Binary files a/static/icons/06002FBE.png and /dev/null differ diff --git a/static/icons/06002FBF.png b/static/icons/06002FBF.png deleted file mode 100755 index db3f1906..00000000 Binary files a/static/icons/06002FBF.png and /dev/null differ diff --git a/static/icons/06002FC0.png b/static/icons/06002FC0.png deleted file mode 100755 index 633f6606..00000000 Binary files a/static/icons/06002FC0.png and /dev/null differ diff --git a/static/icons/06002FC1.png b/static/icons/06002FC1.png deleted file mode 100755 index e209538a..00000000 Binary files a/static/icons/06002FC1.png and /dev/null differ diff --git a/static/icons/06002FC2.png b/static/icons/06002FC2.png deleted file mode 100755 index 37206204..00000000 Binary files a/static/icons/06002FC2.png and /dev/null differ diff --git a/static/icons/06002FC4.png b/static/icons/06002FC4.png deleted file mode 100755 index c890b830..00000000 Binary files a/static/icons/06002FC4.png and /dev/null differ diff --git a/static/icons/06002FC5.png b/static/icons/06002FC5.png deleted file mode 100755 index d77bcbfb..00000000 Binary files a/static/icons/06002FC5.png and /dev/null differ diff --git a/static/icons/06002FC6.png b/static/icons/06002FC6.png deleted file mode 100755 index 8f6dc827..00000000 Binary files a/static/icons/06002FC6.png and /dev/null differ diff --git a/static/icons/06002FC7.png b/static/icons/06002FC7.png deleted file mode 100755 index 8203c164..00000000 Binary files a/static/icons/06002FC7.png and /dev/null differ diff --git a/static/icons/06002FC8.png b/static/icons/06002FC8.png deleted file mode 100755 index 569b5055..00000000 Binary files a/static/icons/06002FC8.png and /dev/null differ diff --git a/static/icons/06002FC9.png b/static/icons/06002FC9.png deleted file mode 100755 index c4f84cac..00000000 Binary files a/static/icons/06002FC9.png and /dev/null differ diff --git a/static/icons/06002FCA.png b/static/icons/06002FCA.png deleted file mode 100755 index b9e662f3..00000000 Binary files a/static/icons/06002FCA.png and /dev/null differ diff --git a/static/icons/06002FCB.png b/static/icons/06002FCB.png deleted file mode 100755 index 524e9482..00000000 Binary files a/static/icons/06002FCB.png and /dev/null differ diff --git a/static/icons/06002FCC.png b/static/icons/06002FCC.png deleted file mode 100755 index b7526b2f..00000000 Binary files a/static/icons/06002FCC.png and /dev/null differ diff --git a/static/icons/06002FCD.png b/static/icons/06002FCD.png deleted file mode 100755 index b1564992..00000000 Binary files a/static/icons/06002FCD.png and /dev/null differ diff --git a/static/icons/06002FCE.png b/static/icons/06002FCE.png deleted file mode 100755 index 14ce1629..00000000 Binary files a/static/icons/06002FCE.png and /dev/null differ diff --git a/static/icons/06002FCF.png b/static/icons/06002FCF.png deleted file mode 100755 index 448187f2..00000000 Binary files a/static/icons/06002FCF.png and /dev/null differ diff --git a/static/icons/06002FD0.png b/static/icons/06002FD0.png deleted file mode 100755 index 534767e0..00000000 Binary files a/static/icons/06002FD0.png and /dev/null differ diff --git a/static/icons/06002FD1.png b/static/icons/06002FD1.png deleted file mode 100755 index 199f9a21..00000000 Binary files a/static/icons/06002FD1.png and /dev/null differ diff --git a/static/icons/06002FD2.png b/static/icons/06002FD2.png deleted file mode 100755 index c2d99a0c..00000000 Binary files a/static/icons/06002FD2.png and /dev/null differ diff --git a/static/icons/06002FD3.png b/static/icons/06002FD3.png deleted file mode 100755 index 3575df1a..00000000 Binary files a/static/icons/06002FD3.png and /dev/null differ diff --git a/static/icons/06002FD4.png b/static/icons/06002FD4.png deleted file mode 100755 index 020ccffc..00000000 Binary files a/static/icons/06002FD4.png and /dev/null differ diff --git a/static/icons/06002FD5.png b/static/icons/06002FD5.png deleted file mode 100755 index 060e22b0..00000000 Binary files a/static/icons/06002FD5.png and /dev/null differ diff --git a/static/icons/06002FD6.png b/static/icons/06002FD6.png deleted file mode 100755 index ceb814e7..00000000 Binary files a/static/icons/06002FD6.png and /dev/null differ diff --git a/static/icons/06002FD7.png b/static/icons/06002FD7.png deleted file mode 100755 index 96adb161..00000000 Binary files a/static/icons/06002FD7.png and /dev/null differ diff --git a/static/icons/06002FD8.png b/static/icons/06002FD8.png deleted file mode 100755 index d6fc14fa..00000000 Binary files a/static/icons/06002FD8.png and /dev/null differ diff --git a/static/icons/06002FD9.png b/static/icons/06002FD9.png deleted file mode 100755 index 38040118..00000000 Binary files a/static/icons/06002FD9.png and /dev/null differ diff --git a/static/icons/06002FDA.png b/static/icons/06002FDA.png deleted file mode 100755 index fb7f7a38..00000000 Binary files a/static/icons/06002FDA.png and /dev/null differ diff --git a/static/icons/06002FDB.png b/static/icons/06002FDB.png deleted file mode 100755 index 21af7f42..00000000 Binary files a/static/icons/06002FDB.png and /dev/null differ diff --git a/static/icons/06002FDC.png b/static/icons/06002FDC.png deleted file mode 100755 index 990bb49e..00000000 Binary files a/static/icons/06002FDC.png and /dev/null differ diff --git a/static/icons/06002FDD.png b/static/icons/06002FDD.png deleted file mode 100755 index c29f68fa..00000000 Binary files a/static/icons/06002FDD.png and /dev/null differ diff --git a/static/icons/06002FDE.png b/static/icons/06002FDE.png deleted file mode 100755 index 9c2850aa..00000000 Binary files a/static/icons/06002FDE.png and /dev/null differ diff --git a/static/icons/06002FDF.png b/static/icons/06002FDF.png deleted file mode 100755 index 322ac27f..00000000 Binary files a/static/icons/06002FDF.png and /dev/null differ diff --git a/static/icons/06002FE0.png b/static/icons/06002FE0.png deleted file mode 100755 index 672d208c..00000000 Binary files a/static/icons/06002FE0.png and /dev/null differ diff --git a/static/icons/06002FE1.png b/static/icons/06002FE1.png deleted file mode 100755 index 5934aeb5..00000000 Binary files a/static/icons/06002FE1.png and /dev/null differ diff --git a/static/icons/06002FE2.png b/static/icons/06002FE2.png deleted file mode 100755 index b94898d2..00000000 Binary files a/static/icons/06002FE2.png and /dev/null differ diff --git a/static/icons/06002FE3.png b/static/icons/06002FE3.png deleted file mode 100755 index fe168055..00000000 Binary files a/static/icons/06002FE3.png and /dev/null differ diff --git a/static/icons/06002FE4.png b/static/icons/06002FE4.png deleted file mode 100755 index 92134168..00000000 Binary files a/static/icons/06002FE4.png and /dev/null differ diff --git a/static/icons/06002FE5.png b/static/icons/06002FE5.png deleted file mode 100755 index 4cc1272e..00000000 Binary files a/static/icons/06002FE5.png and /dev/null differ diff --git a/static/icons/06002FE6.png b/static/icons/06002FE6.png deleted file mode 100755 index 674f6388..00000000 Binary files a/static/icons/06002FE6.png and /dev/null differ diff --git a/static/icons/06002FE7.png b/static/icons/06002FE7.png deleted file mode 100755 index ced31fc0..00000000 Binary files a/static/icons/06002FE7.png and /dev/null differ diff --git a/static/icons/06002FE8.png b/static/icons/06002FE8.png deleted file mode 100755 index 5a09b847..00000000 Binary files a/static/icons/06002FE8.png and /dev/null differ diff --git a/static/icons/06002FE9.png b/static/icons/06002FE9.png deleted file mode 100755 index bbf2fae4..00000000 Binary files a/static/icons/06002FE9.png and /dev/null differ diff --git a/static/icons/06002FEA.png b/static/icons/06002FEA.png deleted file mode 100755 index 06c859a8..00000000 Binary files a/static/icons/06002FEA.png and /dev/null differ diff --git a/static/icons/06002FEB.png b/static/icons/06002FEB.png deleted file mode 100755 index dcc0155f..00000000 Binary files a/static/icons/06002FEB.png and /dev/null differ diff --git a/static/icons/06002FEC.png b/static/icons/06002FEC.png deleted file mode 100755 index 0e328d8f..00000000 Binary files a/static/icons/06002FEC.png and /dev/null differ diff --git a/static/icons/06002FED.png b/static/icons/06002FED.png deleted file mode 100755 index b445306a..00000000 Binary files a/static/icons/06002FED.png and /dev/null differ diff --git a/static/icons/06002FEE.png b/static/icons/06002FEE.png deleted file mode 100755 index 474c9124..00000000 Binary files a/static/icons/06002FEE.png and /dev/null differ diff --git a/static/icons/06002FEF.png b/static/icons/06002FEF.png deleted file mode 100755 index aaa47a62..00000000 Binary files a/static/icons/06002FEF.png and /dev/null differ diff --git a/static/icons/06002FF0.png b/static/icons/06002FF0.png deleted file mode 100755 index 30669864..00000000 Binary files a/static/icons/06002FF0.png and /dev/null differ diff --git a/static/icons/06002FF1.png b/static/icons/06002FF1.png deleted file mode 100755 index aa5ba0ba..00000000 Binary files a/static/icons/06002FF1.png and /dev/null differ diff --git a/static/icons/06002FF2.png b/static/icons/06002FF2.png deleted file mode 100755 index 59d1dda0..00000000 Binary files a/static/icons/06002FF2.png and /dev/null differ diff --git a/static/icons/06002FF3.png b/static/icons/06002FF3.png deleted file mode 100755 index b18438b8..00000000 Binary files a/static/icons/06002FF3.png and /dev/null differ diff --git a/static/icons/06002FF4.png b/static/icons/06002FF4.png deleted file mode 100755 index 88ca25df..00000000 Binary files a/static/icons/06002FF4.png and /dev/null differ diff --git a/static/icons/06002FF5.png b/static/icons/06002FF5.png deleted file mode 100755 index eca29e14..00000000 Binary files a/static/icons/06002FF5.png and /dev/null differ diff --git a/static/icons/06003006.png b/static/icons/06003006.png deleted file mode 100755 index 220e41d6..00000000 Binary files a/static/icons/06003006.png and /dev/null differ diff --git a/static/icons/06003007.png b/static/icons/06003007.png deleted file mode 100755 index fe97d05c..00000000 Binary files a/static/icons/06003007.png and /dev/null differ diff --git a/static/icons/06003008.png b/static/icons/06003008.png deleted file mode 100755 index 6ba45b11..00000000 Binary files a/static/icons/06003008.png and /dev/null differ diff --git a/static/icons/06003009.png b/static/icons/06003009.png deleted file mode 100755 index 626ad380..00000000 Binary files a/static/icons/06003009.png and /dev/null differ diff --git a/static/icons/0600300A.png b/static/icons/0600300A.png deleted file mode 100755 index 14a93bd2..00000000 Binary files a/static/icons/0600300A.png and /dev/null differ diff --git a/static/icons/0600300B.png b/static/icons/0600300B.png deleted file mode 100755 index a58ad77e..00000000 Binary files a/static/icons/0600300B.png and /dev/null differ diff --git a/static/icons/0600300C.png b/static/icons/0600300C.png deleted file mode 100755 index 325a9cb4..00000000 Binary files a/static/icons/0600300C.png and /dev/null differ diff --git a/static/icons/0600300D.png b/static/icons/0600300D.png deleted file mode 100755 index 27663f74..00000000 Binary files a/static/icons/0600300D.png and /dev/null differ diff --git a/static/icons/0600300E.png b/static/icons/0600300E.png deleted file mode 100755 index 59383f0e..00000000 Binary files a/static/icons/0600300E.png and /dev/null differ diff --git a/static/icons/0600300F.png b/static/icons/0600300F.png deleted file mode 100755 index 02c99c5c..00000000 Binary files a/static/icons/0600300F.png and /dev/null differ diff --git a/static/icons/06003010.png b/static/icons/06003010.png deleted file mode 100755 index 700deff1..00000000 Binary files a/static/icons/06003010.png and /dev/null differ diff --git a/static/icons/06003011.png b/static/icons/06003011.png deleted file mode 100755 index fe97d05c..00000000 Binary files a/static/icons/06003011.png and /dev/null differ diff --git a/static/icons/06003012.png b/static/icons/06003012.png deleted file mode 100755 index 5629c5ac..00000000 Binary files a/static/icons/06003012.png and /dev/null differ diff --git a/static/icons/06003013.png b/static/icons/06003013.png deleted file mode 100755 index c2c16e9c..00000000 Binary files a/static/icons/06003013.png and /dev/null differ diff --git a/static/icons/06003014.png b/static/icons/06003014.png deleted file mode 100755 index 1a527d92..00000000 Binary files a/static/icons/06003014.png and /dev/null differ diff --git a/static/icons/06003015.png b/static/icons/06003015.png deleted file mode 100755 index f42f30bd..00000000 Binary files a/static/icons/06003015.png and /dev/null differ diff --git a/static/icons/06003016.png b/static/icons/06003016.png deleted file mode 100755 index a4f0f2ad..00000000 Binary files a/static/icons/06003016.png and /dev/null differ diff --git a/static/icons/06003017.png b/static/icons/06003017.png deleted file mode 100755 index cb43488f..00000000 Binary files a/static/icons/06003017.png and /dev/null differ diff --git a/static/icons/06003018.png b/static/icons/06003018.png deleted file mode 100755 index e66d6aeb..00000000 Binary files a/static/icons/06003018.png and /dev/null differ diff --git a/static/icons/06003019.png b/static/icons/06003019.png deleted file mode 100755 index 79e3ef0f..00000000 Binary files a/static/icons/06003019.png and /dev/null differ diff --git a/static/icons/0600301A.png b/static/icons/0600301A.png deleted file mode 100755 index e9d66147..00000000 Binary files a/static/icons/0600301A.png and /dev/null differ diff --git a/static/icons/0600301B.png b/static/icons/0600301B.png deleted file mode 100755 index ec552eea..00000000 Binary files a/static/icons/0600301B.png and /dev/null differ diff --git a/static/icons/0600301C.png b/static/icons/0600301C.png deleted file mode 100755 index bb8fbbda..00000000 Binary files a/static/icons/0600301C.png and /dev/null differ diff --git a/static/icons/0600301D.png b/static/icons/0600301D.png deleted file mode 100755 index 38a2a881..00000000 Binary files a/static/icons/0600301D.png and /dev/null differ diff --git a/static/icons/0600301E.png b/static/icons/0600301E.png deleted file mode 100755 index 9729685d..00000000 Binary files a/static/icons/0600301E.png and /dev/null differ diff --git a/static/icons/0600301F.png b/static/icons/0600301F.png deleted file mode 100755 index 4d2a84ac..00000000 Binary files a/static/icons/0600301F.png and /dev/null differ diff --git a/static/icons/06003020.png b/static/icons/06003020.png deleted file mode 100755 index a51f9de0..00000000 Binary files a/static/icons/06003020.png and /dev/null differ diff --git a/static/icons/06003021.png b/static/icons/06003021.png deleted file mode 100755 index 0f982a17..00000000 Binary files a/static/icons/06003021.png and /dev/null differ diff --git a/static/icons/06003022.png b/static/icons/06003022.png deleted file mode 100755 index 3d867509..00000000 Binary files a/static/icons/06003022.png and /dev/null differ diff --git a/static/icons/06003023.png b/static/icons/06003023.png deleted file mode 100755 index e8860bad..00000000 Binary files a/static/icons/06003023.png and /dev/null differ diff --git a/static/icons/06003024.png b/static/icons/06003024.png deleted file mode 100755 index 5689e206..00000000 Binary files a/static/icons/06003024.png and /dev/null differ diff --git a/static/icons/06003025.png b/static/icons/06003025.png deleted file mode 100755 index 36115ee2..00000000 Binary files a/static/icons/06003025.png and /dev/null differ diff --git a/static/icons/06003026.png b/static/icons/06003026.png deleted file mode 100755 index c9bdc436..00000000 Binary files a/static/icons/06003026.png and /dev/null differ diff --git a/static/icons/06003027.png b/static/icons/06003027.png deleted file mode 100755 index 77f7ed47..00000000 Binary files a/static/icons/06003027.png and /dev/null differ diff --git a/static/icons/06003028.png b/static/icons/06003028.png deleted file mode 100755 index 44663e29..00000000 Binary files a/static/icons/06003028.png and /dev/null differ diff --git a/static/icons/06003029.png b/static/icons/06003029.png deleted file mode 100755 index 363b6b0c..00000000 Binary files a/static/icons/06003029.png and /dev/null differ diff --git a/static/icons/0600302A.png b/static/icons/0600302A.png deleted file mode 100755 index e493fe0c..00000000 Binary files a/static/icons/0600302A.png and /dev/null differ diff --git a/static/icons/0600302B.png b/static/icons/0600302B.png deleted file mode 100755 index b1680a80..00000000 Binary files a/static/icons/0600302B.png and /dev/null differ diff --git a/static/icons/0600302C.png b/static/icons/0600302C.png deleted file mode 100755 index dc85d9a9..00000000 Binary files a/static/icons/0600302C.png and /dev/null differ diff --git a/static/icons/0600302D.png b/static/icons/0600302D.png deleted file mode 100755 index 4b534404..00000000 Binary files a/static/icons/0600302D.png and /dev/null differ diff --git a/static/icons/0600302E.png b/static/icons/0600302E.png deleted file mode 100755 index eea0fd51..00000000 Binary files a/static/icons/0600302E.png and /dev/null differ diff --git a/static/icons/0600302F.png b/static/icons/0600302F.png deleted file mode 100755 index 35961cff..00000000 Binary files a/static/icons/0600302F.png and /dev/null differ diff --git a/static/icons/06003030.png b/static/icons/06003030.png deleted file mode 100755 index ccd74972..00000000 Binary files a/static/icons/06003030.png and /dev/null differ diff --git a/static/icons/06003031.png b/static/icons/06003031.png deleted file mode 100755 index 4a93cf42..00000000 Binary files a/static/icons/06003031.png and /dev/null differ diff --git a/static/icons/06003032.png b/static/icons/06003032.png deleted file mode 100755 index f488a053..00000000 Binary files a/static/icons/06003032.png and /dev/null differ diff --git a/static/icons/06003033.png b/static/icons/06003033.png deleted file mode 100755 index 61b58e7f..00000000 Binary files a/static/icons/06003033.png and /dev/null differ diff --git a/static/icons/06003034.png b/static/icons/06003034.png deleted file mode 100755 index 9f787ba1..00000000 Binary files a/static/icons/06003034.png and /dev/null differ diff --git a/static/icons/06003035.png b/static/icons/06003035.png deleted file mode 100755 index 947512c5..00000000 Binary files a/static/icons/06003035.png and /dev/null differ diff --git a/static/icons/06003036.png b/static/icons/06003036.png deleted file mode 100755 index 2e2abe32..00000000 Binary files a/static/icons/06003036.png and /dev/null differ diff --git a/static/icons/06003037.png b/static/icons/06003037.png deleted file mode 100755 index fc3909bf..00000000 Binary files a/static/icons/06003037.png and /dev/null differ diff --git a/static/icons/06003038.png b/static/icons/06003038.png deleted file mode 100755 index 096d0259..00000000 Binary files a/static/icons/06003038.png and /dev/null differ diff --git a/static/icons/06003039.png b/static/icons/06003039.png deleted file mode 100755 index f895d99e..00000000 Binary files a/static/icons/06003039.png and /dev/null differ diff --git a/static/icons/0600303A.png b/static/icons/0600303A.png deleted file mode 100755 index 4ffed744..00000000 Binary files a/static/icons/0600303A.png and /dev/null differ diff --git a/static/icons/0600303B.png b/static/icons/0600303B.png deleted file mode 100755 index 7208f189..00000000 Binary files a/static/icons/0600303B.png and /dev/null differ diff --git a/static/icons/0600303C.png b/static/icons/0600303C.png deleted file mode 100755 index 83d512bf..00000000 Binary files a/static/icons/0600303C.png and /dev/null differ diff --git a/static/icons/0600303D.png b/static/icons/0600303D.png deleted file mode 100755 index 57fea175..00000000 Binary files a/static/icons/0600303D.png and /dev/null differ diff --git a/static/icons/0600303E.png b/static/icons/0600303E.png deleted file mode 100755 index 3ed8dcb9..00000000 Binary files a/static/icons/0600303E.png and /dev/null differ diff --git a/static/icons/0600303F.png b/static/icons/0600303F.png deleted file mode 100755 index 95719659..00000000 Binary files a/static/icons/0600303F.png and /dev/null differ diff --git a/static/icons/06003040.png b/static/icons/06003040.png deleted file mode 100755 index d85c7868..00000000 Binary files a/static/icons/06003040.png and /dev/null differ diff --git a/static/icons/06003041.png b/static/icons/06003041.png deleted file mode 100755 index 6e931b5e..00000000 Binary files a/static/icons/06003041.png and /dev/null differ diff --git a/static/icons/06003042.png b/static/icons/06003042.png deleted file mode 100755 index 797e3f56..00000000 Binary files a/static/icons/06003042.png and /dev/null differ diff --git a/static/icons/06003043.png b/static/icons/06003043.png deleted file mode 100755 index f93cc035..00000000 Binary files a/static/icons/06003043.png and /dev/null differ diff --git a/static/icons/06003044.png b/static/icons/06003044.png deleted file mode 100755 index 84c435ce..00000000 Binary files a/static/icons/06003044.png and /dev/null differ diff --git a/static/icons/06003045.png b/static/icons/06003045.png deleted file mode 100755 index e2360d91..00000000 Binary files a/static/icons/06003045.png and /dev/null differ diff --git a/static/icons/06003046.png b/static/icons/06003046.png deleted file mode 100755 index 2dcebd40..00000000 Binary files a/static/icons/06003046.png and /dev/null differ diff --git a/static/icons/06003047.png b/static/icons/06003047.png deleted file mode 100755 index 67542c45..00000000 Binary files a/static/icons/06003047.png and /dev/null differ diff --git a/static/icons/06003048.png b/static/icons/06003048.png deleted file mode 100755 index bf8cfc8a..00000000 Binary files a/static/icons/06003048.png and /dev/null differ diff --git a/static/icons/06003049.png b/static/icons/06003049.png deleted file mode 100755 index 4f868fb3..00000000 Binary files a/static/icons/06003049.png and /dev/null differ diff --git a/static/icons/0600304A.png b/static/icons/0600304A.png deleted file mode 100755 index 7a6167ec..00000000 Binary files a/static/icons/0600304A.png and /dev/null differ diff --git a/static/icons/0600304B.png b/static/icons/0600304B.png deleted file mode 100755 index 38997310..00000000 Binary files a/static/icons/0600304B.png and /dev/null differ diff --git a/static/icons/0600304C.png b/static/icons/0600304C.png deleted file mode 100755 index 7fcbc617..00000000 Binary files a/static/icons/0600304C.png and /dev/null differ diff --git a/static/icons/0600304D.png b/static/icons/0600304D.png deleted file mode 100755 index c234f382..00000000 Binary files a/static/icons/0600304D.png and /dev/null differ diff --git a/static/icons/0600304E.png b/static/icons/0600304E.png deleted file mode 100755 index 43eb9d1e..00000000 Binary files a/static/icons/0600304E.png and /dev/null differ diff --git a/static/icons/0600304F.png b/static/icons/0600304F.png deleted file mode 100755 index fb72764a..00000000 Binary files a/static/icons/0600304F.png and /dev/null differ diff --git a/static/icons/0600305A.png b/static/icons/0600305A.png deleted file mode 100755 index 96bf652b..00000000 Binary files a/static/icons/0600305A.png and /dev/null differ diff --git a/static/icons/0600305B.png b/static/icons/0600305B.png deleted file mode 100755 index 91b1152e..00000000 Binary files a/static/icons/0600305B.png and /dev/null differ diff --git a/static/icons/0600305C.png b/static/icons/0600305C.png deleted file mode 100755 index e1aea3d7..00000000 Binary files a/static/icons/0600305C.png and /dev/null differ diff --git a/static/icons/0600305D.png b/static/icons/0600305D.png deleted file mode 100755 index 9829c4b2..00000000 Binary files a/static/icons/0600305D.png and /dev/null differ diff --git a/static/icons/0600305E.png b/static/icons/0600305E.png deleted file mode 100755 index d9c80fa7..00000000 Binary files a/static/icons/0600305E.png and /dev/null differ diff --git a/static/icons/0600305F.png b/static/icons/0600305F.png deleted file mode 100755 index a649a79d..00000000 Binary files a/static/icons/0600305F.png and /dev/null differ diff --git a/static/icons/06003060.png b/static/icons/06003060.png deleted file mode 100755 index 76079c5e..00000000 Binary files a/static/icons/06003060.png and /dev/null differ diff --git a/static/icons/06003061.png b/static/icons/06003061.png deleted file mode 100755 index a51e0a17..00000000 Binary files a/static/icons/06003061.png and /dev/null differ diff --git a/static/icons/06003062.png b/static/icons/06003062.png deleted file mode 100755 index ec16472b..00000000 Binary files a/static/icons/06003062.png and /dev/null differ diff --git a/static/icons/06003063.png b/static/icons/06003063.png deleted file mode 100755 index 0eebc39e..00000000 Binary files a/static/icons/06003063.png and /dev/null differ diff --git a/static/icons/06003064.png b/static/icons/06003064.png deleted file mode 100755 index b29b665f..00000000 Binary files a/static/icons/06003064.png and /dev/null differ diff --git a/static/icons/06003065.png b/static/icons/06003065.png deleted file mode 100755 index 1f3ba16b..00000000 Binary files a/static/icons/06003065.png and /dev/null differ diff --git a/static/icons/06003066.png b/static/icons/06003066.png deleted file mode 100755 index 149626e2..00000000 Binary files a/static/icons/06003066.png and /dev/null differ diff --git a/static/icons/06003067.png b/static/icons/06003067.png deleted file mode 100755 index f4162343..00000000 Binary files a/static/icons/06003067.png and /dev/null differ diff --git a/static/icons/06003068.png b/static/icons/06003068.png deleted file mode 100755 index 52f7dca5..00000000 Binary files a/static/icons/06003068.png and /dev/null differ diff --git a/static/icons/06003069.png b/static/icons/06003069.png deleted file mode 100755 index 1ff2e4d9..00000000 Binary files a/static/icons/06003069.png and /dev/null differ diff --git a/static/icons/0600306A.png b/static/icons/0600306A.png deleted file mode 100755 index ffbdb8f9..00000000 Binary files a/static/icons/0600306A.png and /dev/null differ diff --git a/static/icons/0600306B.png b/static/icons/0600306B.png deleted file mode 100755 index b11bc906..00000000 Binary files a/static/icons/0600306B.png and /dev/null differ diff --git a/static/icons/0600306C.png b/static/icons/0600306C.png deleted file mode 100755 index 205b50ef..00000000 Binary files a/static/icons/0600306C.png and /dev/null differ diff --git a/static/icons/0600306D.png b/static/icons/0600306D.png deleted file mode 100755 index 063af337..00000000 Binary files a/static/icons/0600306D.png and /dev/null differ diff --git a/static/icons/0600306E.png b/static/icons/0600306E.png deleted file mode 100755 index f18ceaf9..00000000 Binary files a/static/icons/0600306E.png and /dev/null differ diff --git a/static/icons/0600306F.png b/static/icons/0600306F.png deleted file mode 100755 index ca30cfe2..00000000 Binary files a/static/icons/0600306F.png and /dev/null differ diff --git a/static/icons/06003070.png b/static/icons/06003070.png deleted file mode 100755 index 389d0b87..00000000 Binary files a/static/icons/06003070.png and /dev/null differ diff --git a/static/icons/06003071.png b/static/icons/06003071.png deleted file mode 100755 index 153073b8..00000000 Binary files a/static/icons/06003071.png and /dev/null differ diff --git a/static/icons/06003072.png b/static/icons/06003072.png deleted file mode 100755 index 1c03f762..00000000 Binary files a/static/icons/06003072.png and /dev/null differ diff --git a/static/icons/06003073.png b/static/icons/06003073.png deleted file mode 100755 index 0b3d4fb3..00000000 Binary files a/static/icons/06003073.png and /dev/null differ diff --git a/static/icons/06003074.png b/static/icons/06003074.png deleted file mode 100755 index c8dcc616..00000000 Binary files a/static/icons/06003074.png and /dev/null differ diff --git a/static/icons/06003075.png b/static/icons/06003075.png deleted file mode 100755 index 37c3650e..00000000 Binary files a/static/icons/06003075.png and /dev/null differ diff --git a/static/icons/06003076.png b/static/icons/06003076.png deleted file mode 100755 index c29db44e..00000000 Binary files a/static/icons/06003076.png and /dev/null differ diff --git a/static/icons/06003077.png b/static/icons/06003077.png deleted file mode 100755 index bccfd857..00000000 Binary files a/static/icons/06003077.png and /dev/null differ diff --git a/static/icons/06003078.png b/static/icons/06003078.png deleted file mode 100755 index ad2f2d31..00000000 Binary files a/static/icons/06003078.png and /dev/null differ diff --git a/static/icons/06003079.png b/static/icons/06003079.png deleted file mode 100755 index b48e1c14..00000000 Binary files a/static/icons/06003079.png and /dev/null differ diff --git a/static/icons/0600307A.png b/static/icons/0600307A.png deleted file mode 100755 index 1cd6c862..00000000 Binary files a/static/icons/0600307A.png and /dev/null differ diff --git a/static/icons/0600307B.png b/static/icons/0600307B.png deleted file mode 100755 index 5c61036e..00000000 Binary files a/static/icons/0600307B.png and /dev/null differ diff --git a/static/icons/0600307C.png b/static/icons/0600307C.png deleted file mode 100755 index 94d832cf..00000000 Binary files a/static/icons/0600307C.png and /dev/null differ diff --git a/static/icons/0600307D.png b/static/icons/0600307D.png deleted file mode 100755 index 944f2220..00000000 Binary files a/static/icons/0600307D.png and /dev/null differ diff --git a/static/icons/0600307E.png b/static/icons/0600307E.png deleted file mode 100755 index 91f12772..00000000 Binary files a/static/icons/0600307E.png and /dev/null differ diff --git a/static/icons/0600307F.png b/static/icons/0600307F.png deleted file mode 100755 index 685770ca..00000000 Binary files a/static/icons/0600307F.png and /dev/null differ diff --git a/static/icons/06003080.png b/static/icons/06003080.png deleted file mode 100755 index d410dfce..00000000 Binary files a/static/icons/06003080.png and /dev/null differ diff --git a/static/icons/06003081.png b/static/icons/06003081.png deleted file mode 100755 index 60eee050..00000000 Binary files a/static/icons/06003081.png and /dev/null differ diff --git a/static/icons/06003082.png b/static/icons/06003082.png deleted file mode 100755 index 8988d6e0..00000000 Binary files a/static/icons/06003082.png and /dev/null differ diff --git a/static/icons/06003083.png b/static/icons/06003083.png deleted file mode 100755 index 705a346e..00000000 Binary files a/static/icons/06003083.png and /dev/null differ diff --git a/static/icons/06003084.png b/static/icons/06003084.png deleted file mode 100755 index 9e0e4b2f..00000000 Binary files a/static/icons/06003084.png and /dev/null differ diff --git a/static/icons/06003085.png b/static/icons/06003085.png deleted file mode 100755 index 627f8af3..00000000 Binary files a/static/icons/06003085.png and /dev/null differ diff --git a/static/icons/06003086.png b/static/icons/06003086.png deleted file mode 100755 index b9b55a60..00000000 Binary files a/static/icons/06003086.png and /dev/null differ diff --git a/static/icons/06003087.png b/static/icons/06003087.png deleted file mode 100755 index 3f472ebf..00000000 Binary files a/static/icons/06003087.png and /dev/null differ diff --git a/static/icons/06003088.png b/static/icons/06003088.png deleted file mode 100755 index 51cf944a..00000000 Binary files a/static/icons/06003088.png and /dev/null differ diff --git a/static/icons/06003089.png b/static/icons/06003089.png deleted file mode 100755 index f8e6f71c..00000000 Binary files a/static/icons/06003089.png and /dev/null differ diff --git a/static/icons/0600308A.png b/static/icons/0600308A.png deleted file mode 100755 index b7f62b47..00000000 Binary files a/static/icons/0600308A.png and /dev/null differ diff --git a/static/icons/0600308B.png b/static/icons/0600308B.png deleted file mode 100755 index 0bcb3eb5..00000000 Binary files a/static/icons/0600308B.png and /dev/null differ diff --git a/static/icons/0600308C.png b/static/icons/0600308C.png deleted file mode 100755 index a81fb46d..00000000 Binary files a/static/icons/0600308C.png and /dev/null differ diff --git a/static/icons/0600308D.png b/static/icons/0600308D.png deleted file mode 100755 index 4733faea..00000000 Binary files a/static/icons/0600308D.png and /dev/null differ diff --git a/static/icons/0600308E.png b/static/icons/0600308E.png deleted file mode 100755 index b4495a10..00000000 Binary files a/static/icons/0600308E.png and /dev/null differ diff --git a/static/icons/0600308F.png b/static/icons/0600308F.png deleted file mode 100755 index 8f9a4761..00000000 Binary files a/static/icons/0600308F.png and /dev/null differ diff --git a/static/icons/06003090.png b/static/icons/06003090.png deleted file mode 100755 index 6cbbd411..00000000 Binary files a/static/icons/06003090.png and /dev/null differ diff --git a/static/icons/06003091.png b/static/icons/06003091.png deleted file mode 100755 index f5ca88ba..00000000 Binary files a/static/icons/06003091.png and /dev/null differ diff --git a/static/icons/06003092.png b/static/icons/06003092.png deleted file mode 100755 index ca415201..00000000 Binary files a/static/icons/06003092.png and /dev/null differ diff --git a/static/icons/06003093.png b/static/icons/06003093.png deleted file mode 100755 index 17dc144a..00000000 Binary files a/static/icons/06003093.png and /dev/null differ diff --git a/static/icons/06003094.png b/static/icons/06003094.png deleted file mode 100755 index ab19f59d..00000000 Binary files a/static/icons/06003094.png and /dev/null differ diff --git a/static/icons/06003095.png b/static/icons/06003095.png deleted file mode 100755 index 33e61c25..00000000 Binary files a/static/icons/06003095.png and /dev/null differ diff --git a/static/icons/06003096.png b/static/icons/06003096.png deleted file mode 100755 index bb0e4cbb..00000000 Binary files a/static/icons/06003096.png and /dev/null differ diff --git a/static/icons/06003097.png b/static/icons/06003097.png deleted file mode 100755 index 2e103cb3..00000000 Binary files a/static/icons/06003097.png and /dev/null differ diff --git a/static/icons/06003098.png b/static/icons/06003098.png deleted file mode 100755 index 1b68c449..00000000 Binary files a/static/icons/06003098.png and /dev/null differ diff --git a/static/icons/06003099.png b/static/icons/06003099.png deleted file mode 100755 index ac7d0f7d..00000000 Binary files a/static/icons/06003099.png and /dev/null differ diff --git a/static/icons/0600309A.png b/static/icons/0600309A.png deleted file mode 100755 index da664339..00000000 Binary files a/static/icons/0600309A.png and /dev/null differ diff --git a/static/icons/0600309B.png b/static/icons/0600309B.png deleted file mode 100755 index 088bc69d..00000000 Binary files a/static/icons/0600309B.png and /dev/null differ diff --git a/static/icons/0600309C.png b/static/icons/0600309C.png deleted file mode 100755 index 075e5b62..00000000 Binary files a/static/icons/0600309C.png and /dev/null differ diff --git a/static/icons/0600309D.png b/static/icons/0600309D.png deleted file mode 100755 index ee0789a7..00000000 Binary files a/static/icons/0600309D.png and /dev/null differ diff --git a/static/icons/0600309E.png b/static/icons/0600309E.png deleted file mode 100755 index d1b2c150..00000000 Binary files a/static/icons/0600309E.png and /dev/null differ diff --git a/static/icons/0600309F.png b/static/icons/0600309F.png deleted file mode 100755 index f76dd570..00000000 Binary files a/static/icons/0600309F.png and /dev/null differ diff --git a/static/icons/060030A0.png b/static/icons/060030A0.png deleted file mode 100755 index ae88e132..00000000 Binary files a/static/icons/060030A0.png and /dev/null differ diff --git a/static/icons/060030A1.png b/static/icons/060030A1.png deleted file mode 100755 index 93c6829e..00000000 Binary files a/static/icons/060030A1.png and /dev/null differ diff --git a/static/icons/060030A2.png b/static/icons/060030A2.png deleted file mode 100755 index 0258f58b..00000000 Binary files a/static/icons/060030A2.png and /dev/null differ diff --git a/static/icons/060030A3.png b/static/icons/060030A3.png deleted file mode 100755 index a6219489..00000000 Binary files a/static/icons/060030A3.png and /dev/null differ diff --git a/static/icons/060030A4.png b/static/icons/060030A4.png deleted file mode 100755 index d1829c8c..00000000 Binary files a/static/icons/060030A4.png and /dev/null differ diff --git a/static/icons/060030A5.png b/static/icons/060030A5.png deleted file mode 100755 index 51cd6616..00000000 Binary files a/static/icons/060030A5.png and /dev/null differ diff --git a/static/icons/060030A7.png b/static/icons/060030A7.png deleted file mode 100755 index 6661b19e..00000000 Binary files a/static/icons/060030A7.png and /dev/null differ diff --git a/static/icons/060030A8.png b/static/icons/060030A8.png deleted file mode 100755 index 986d4732..00000000 Binary files a/static/icons/060030A8.png and /dev/null differ diff --git a/static/icons/060030A9.png b/static/icons/060030A9.png deleted file mode 100755 index 7e405711..00000000 Binary files a/static/icons/060030A9.png and /dev/null differ diff --git a/static/icons/060030AB.png b/static/icons/060030AB.png deleted file mode 100755 index 87f66aa7..00000000 Binary files a/static/icons/060030AB.png and /dev/null differ diff --git a/static/icons/060030AD.png b/static/icons/060030AD.png deleted file mode 100755 index 16737f7d..00000000 Binary files a/static/icons/060030AD.png and /dev/null differ diff --git a/static/icons/060030AF.png b/static/icons/060030AF.png deleted file mode 100755 index 96dadd01..00000000 Binary files a/static/icons/060030AF.png and /dev/null differ diff --git a/static/icons/060030B0.png b/static/icons/060030B0.png deleted file mode 100755 index 766264c8..00000000 Binary files a/static/icons/060030B0.png and /dev/null differ diff --git a/static/icons/060030B1.png b/static/icons/060030B1.png deleted file mode 100755 index 8e07d8f1..00000000 Binary files a/static/icons/060030B1.png and /dev/null differ diff --git a/static/icons/060030B2.png b/static/icons/060030B2.png deleted file mode 100755 index 06b0d1d1..00000000 Binary files a/static/icons/060030B2.png and /dev/null differ diff --git a/static/icons/060030B3.png b/static/icons/060030B3.png deleted file mode 100755 index d8c35497..00000000 Binary files a/static/icons/060030B3.png and /dev/null differ diff --git a/static/icons/060030B4.png b/static/icons/060030B4.png deleted file mode 100755 index 0747aa1c..00000000 Binary files a/static/icons/060030B4.png and /dev/null differ diff --git a/static/icons/060030B5.png b/static/icons/060030B5.png deleted file mode 100755 index cd69347d..00000000 Binary files a/static/icons/060030B5.png and /dev/null differ diff --git a/static/icons/060030B6.png b/static/icons/060030B6.png deleted file mode 100755 index 4aff091b..00000000 Binary files a/static/icons/060030B6.png and /dev/null differ diff --git a/static/icons/060030B7.png b/static/icons/060030B7.png deleted file mode 100755 index 40c0af80..00000000 Binary files a/static/icons/060030B7.png and /dev/null differ diff --git a/static/icons/060030B8.png b/static/icons/060030B8.png deleted file mode 100755 index d1acc1cd..00000000 Binary files a/static/icons/060030B8.png and /dev/null differ diff --git a/static/icons/060030B9.png b/static/icons/060030B9.png deleted file mode 100755 index afb487b3..00000000 Binary files a/static/icons/060030B9.png and /dev/null differ diff --git a/static/icons/060030BA.png b/static/icons/060030BA.png deleted file mode 100755 index a4959964..00000000 Binary files a/static/icons/060030BA.png and /dev/null differ diff --git a/static/icons/060030BB.png b/static/icons/060030BB.png deleted file mode 100755 index 6b62d14a..00000000 Binary files a/static/icons/060030BB.png and /dev/null differ diff --git a/static/icons/060030BC.png b/static/icons/060030BC.png deleted file mode 100755 index 537fa749..00000000 Binary files a/static/icons/060030BC.png and /dev/null differ diff --git a/static/icons/060030BD.png b/static/icons/060030BD.png deleted file mode 100755 index c7812174..00000000 Binary files a/static/icons/060030BD.png and /dev/null differ diff --git a/static/icons/060030BE.png b/static/icons/060030BE.png deleted file mode 100755 index c8346aa0..00000000 Binary files a/static/icons/060030BE.png and /dev/null differ diff --git a/static/icons/060030BF.png b/static/icons/060030BF.png deleted file mode 100755 index b3d62ddc..00000000 Binary files a/static/icons/060030BF.png and /dev/null differ diff --git a/static/icons/060030C0.png b/static/icons/060030C0.png deleted file mode 100755 index 707ed627..00000000 Binary files a/static/icons/060030C0.png and /dev/null differ diff --git a/static/icons/060030C1.png b/static/icons/060030C1.png deleted file mode 100755 index 049b0a32..00000000 Binary files a/static/icons/060030C1.png and /dev/null differ diff --git a/static/icons/060030C2.png b/static/icons/060030C2.png deleted file mode 100755 index 6ce4f448..00000000 Binary files a/static/icons/060030C2.png and /dev/null differ diff --git a/static/icons/060030C3.png b/static/icons/060030C3.png deleted file mode 100755 index 43b36647..00000000 Binary files a/static/icons/060030C3.png and /dev/null differ diff --git a/static/icons/060030C4.png b/static/icons/060030C4.png deleted file mode 100755 index 2881ec5d..00000000 Binary files a/static/icons/060030C4.png and /dev/null differ diff --git a/static/icons/060030C5.png b/static/icons/060030C5.png deleted file mode 100755 index 82f920fd..00000000 Binary files a/static/icons/060030C5.png and /dev/null differ diff --git a/static/icons/060030C6.png b/static/icons/060030C6.png deleted file mode 100755 index 12cbede4..00000000 Binary files a/static/icons/060030C6.png and /dev/null differ diff --git a/static/icons/060030C7.png b/static/icons/060030C7.png deleted file mode 100755 index 1a5e0232..00000000 Binary files a/static/icons/060030C7.png and /dev/null differ diff --git a/static/icons/060030C8.png b/static/icons/060030C8.png deleted file mode 100755 index 8a45a219..00000000 Binary files a/static/icons/060030C8.png and /dev/null differ diff --git a/static/icons/060030C9.png b/static/icons/060030C9.png deleted file mode 100755 index 7c1d7a91..00000000 Binary files a/static/icons/060030C9.png and /dev/null differ diff --git a/static/icons/060030CA.png b/static/icons/060030CA.png deleted file mode 100755 index 25bb12ee..00000000 Binary files a/static/icons/060030CA.png and /dev/null differ diff --git a/static/icons/060030CB.png b/static/icons/060030CB.png deleted file mode 100755 index 500edbb6..00000000 Binary files a/static/icons/060030CB.png and /dev/null differ diff --git a/static/icons/060030CC.png b/static/icons/060030CC.png deleted file mode 100755 index 994ca019..00000000 Binary files a/static/icons/060030CC.png and /dev/null differ diff --git a/static/icons/060030CD.png b/static/icons/060030CD.png deleted file mode 100755 index dc71a65a..00000000 Binary files a/static/icons/060030CD.png and /dev/null differ diff --git a/static/icons/060030CE.png b/static/icons/060030CE.png deleted file mode 100755 index 5d69b09d..00000000 Binary files a/static/icons/060030CE.png and /dev/null differ diff --git a/static/icons/060030CF.png b/static/icons/060030CF.png deleted file mode 100755 index b918b923..00000000 Binary files a/static/icons/060030CF.png and /dev/null differ diff --git a/static/icons/060030D0.png b/static/icons/060030D0.png deleted file mode 100755 index 836f17d3..00000000 Binary files a/static/icons/060030D0.png and /dev/null differ diff --git a/static/icons/060030D1.png b/static/icons/060030D1.png deleted file mode 100755 index 11b1d469..00000000 Binary files a/static/icons/060030D1.png and /dev/null differ diff --git a/static/icons/060030D3.png b/static/icons/060030D3.png deleted file mode 100755 index d4048bac..00000000 Binary files a/static/icons/060030D3.png and /dev/null differ diff --git a/static/icons/060030D4.png b/static/icons/060030D4.png deleted file mode 100755 index b9e13570..00000000 Binary files a/static/icons/060030D4.png and /dev/null differ diff --git a/static/icons/060030D5.png b/static/icons/060030D5.png deleted file mode 100755 index 998bf96f..00000000 Binary files a/static/icons/060030D5.png and /dev/null differ diff --git a/static/icons/060030D6.png b/static/icons/060030D6.png deleted file mode 100755 index 91d7c91f..00000000 Binary files a/static/icons/060030D6.png and /dev/null differ diff --git a/static/icons/060030D7.png b/static/icons/060030D7.png deleted file mode 100755 index 1198f1b6..00000000 Binary files a/static/icons/060030D7.png and /dev/null differ diff --git a/static/icons/060030D8.png b/static/icons/060030D8.png deleted file mode 100755 index c79fb9ac..00000000 Binary files a/static/icons/060030D8.png and /dev/null differ diff --git a/static/icons/060030D9.png b/static/icons/060030D9.png deleted file mode 100755 index 8e9b2118..00000000 Binary files a/static/icons/060030D9.png and /dev/null differ diff --git a/static/icons/060030DA.png b/static/icons/060030DA.png deleted file mode 100755 index 8b2319cf..00000000 Binary files a/static/icons/060030DA.png and /dev/null differ diff --git a/static/icons/060030DB.png b/static/icons/060030DB.png deleted file mode 100755 index db65a46f..00000000 Binary files a/static/icons/060030DB.png and /dev/null differ diff --git a/static/icons/060030DC.png b/static/icons/060030DC.png deleted file mode 100755 index 8e46628f..00000000 Binary files a/static/icons/060030DC.png and /dev/null differ diff --git a/static/icons/060030DD.png b/static/icons/060030DD.png deleted file mode 100755 index 37fabb0a..00000000 Binary files a/static/icons/060030DD.png and /dev/null differ diff --git a/static/icons/060030DE.png b/static/icons/060030DE.png deleted file mode 100755 index 832c5ae5..00000000 Binary files a/static/icons/060030DE.png and /dev/null differ diff --git a/static/icons/060030DF.png b/static/icons/060030DF.png deleted file mode 100755 index 1aa3db96..00000000 Binary files a/static/icons/060030DF.png and /dev/null differ diff --git a/static/icons/060030E0.png b/static/icons/060030E0.png deleted file mode 100755 index 8bd3f7a0..00000000 Binary files a/static/icons/060030E0.png and /dev/null differ diff --git a/static/icons/060030E1.png b/static/icons/060030E1.png deleted file mode 100755 index bd2fd3c3..00000000 Binary files a/static/icons/060030E1.png and /dev/null differ diff --git a/static/icons/060030E2.png b/static/icons/060030E2.png deleted file mode 100755 index f0846b51..00000000 Binary files a/static/icons/060030E2.png and /dev/null differ diff --git a/static/icons/060030E3.png b/static/icons/060030E3.png deleted file mode 100755 index e23c073f..00000000 Binary files a/static/icons/060030E3.png and /dev/null differ diff --git a/static/icons/060030E4.png b/static/icons/060030E4.png deleted file mode 100755 index ea9024b0..00000000 Binary files a/static/icons/060030E4.png and /dev/null differ diff --git a/static/icons/06003120.png b/static/icons/06003120.png deleted file mode 100755 index cdc0014f..00000000 Binary files a/static/icons/06003120.png and /dev/null differ diff --git a/static/icons/0600314E.png b/static/icons/0600314E.png deleted file mode 100755 index 47b9ad9a..00000000 Binary files a/static/icons/0600314E.png and /dev/null differ diff --git a/static/icons/0600314F.png b/static/icons/0600314F.png deleted file mode 100755 index 63b7798b..00000000 Binary files a/static/icons/0600314F.png and /dev/null differ diff --git a/static/icons/06003150.png b/static/icons/06003150.png deleted file mode 100755 index e713fe6f..00000000 Binary files a/static/icons/06003150.png and /dev/null differ diff --git a/static/icons/06003151.png b/static/icons/06003151.png deleted file mode 100755 index d8d656a2..00000000 Binary files a/static/icons/06003151.png and /dev/null differ diff --git a/static/icons/06003152.png b/static/icons/06003152.png deleted file mode 100755 index 4b4637f8..00000000 Binary files a/static/icons/06003152.png and /dev/null differ diff --git a/static/icons/06003153.png b/static/icons/06003153.png deleted file mode 100755 index 3ef77eed..00000000 Binary files a/static/icons/06003153.png and /dev/null differ diff --git a/static/icons/06003154.png b/static/icons/06003154.png deleted file mode 100755 index e88d064d..00000000 Binary files a/static/icons/06003154.png and /dev/null differ diff --git a/static/icons/06003155.png b/static/icons/06003155.png deleted file mode 100755 index 8817d630..00000000 Binary files a/static/icons/06003155.png and /dev/null differ diff --git a/static/icons/06003156.png b/static/icons/06003156.png deleted file mode 100755 index bac3aa8a..00000000 Binary files a/static/icons/06003156.png and /dev/null differ diff --git a/static/icons/06003157.png b/static/icons/06003157.png deleted file mode 100755 index c1d1f66c..00000000 Binary files a/static/icons/06003157.png and /dev/null differ diff --git a/static/icons/06003158.png b/static/icons/06003158.png deleted file mode 100755 index fb3c62b0..00000000 Binary files a/static/icons/06003158.png and /dev/null differ diff --git a/static/icons/06003159.png b/static/icons/06003159.png deleted file mode 100755 index dfca604b..00000000 Binary files a/static/icons/06003159.png and /dev/null differ diff --git a/static/icons/0600315A.png b/static/icons/0600315A.png deleted file mode 100755 index 1d975571..00000000 Binary files a/static/icons/0600315A.png and /dev/null differ diff --git a/static/icons/0600315B.png b/static/icons/0600315B.png deleted file mode 100755 index 3cf17547..00000000 Binary files a/static/icons/0600315B.png and /dev/null differ diff --git a/static/icons/0600315C.png b/static/icons/0600315C.png deleted file mode 100755 index ea281a28..00000000 Binary files a/static/icons/0600315C.png and /dev/null differ diff --git a/static/icons/0600315D.png b/static/icons/0600315D.png deleted file mode 100755 index d02d8c5e..00000000 Binary files a/static/icons/0600315D.png and /dev/null differ diff --git a/static/icons/0600315E.png b/static/icons/0600315E.png deleted file mode 100755 index ccdf1db2..00000000 Binary files a/static/icons/0600315E.png and /dev/null differ diff --git a/static/icons/0600315F.png b/static/icons/0600315F.png deleted file mode 100755 index 7309daa6..00000000 Binary files a/static/icons/0600315F.png and /dev/null differ diff --git a/static/icons/06003160.png b/static/icons/06003160.png deleted file mode 100755 index d8902264..00000000 Binary files a/static/icons/06003160.png and /dev/null differ diff --git a/static/icons/06003161.png b/static/icons/06003161.png deleted file mode 100755 index 45a2bb6c..00000000 Binary files a/static/icons/06003161.png and /dev/null differ diff --git a/static/icons/06003162.png b/static/icons/06003162.png deleted file mode 100755 index e54b4e47..00000000 Binary files a/static/icons/06003162.png and /dev/null differ diff --git a/static/icons/06003163.png b/static/icons/06003163.png deleted file mode 100755 index 32e27ffa..00000000 Binary files a/static/icons/06003163.png and /dev/null differ diff --git a/static/icons/06003164.png b/static/icons/06003164.png deleted file mode 100755 index cd7c349d..00000000 Binary files a/static/icons/06003164.png and /dev/null differ diff --git a/static/icons/06003165.png b/static/icons/06003165.png deleted file mode 100755 index 4ca14cbb..00000000 Binary files a/static/icons/06003165.png and /dev/null differ diff --git a/static/icons/06003166.png b/static/icons/06003166.png deleted file mode 100755 index c543639f..00000000 Binary files a/static/icons/06003166.png and /dev/null differ diff --git a/static/icons/06003167.png b/static/icons/06003167.png deleted file mode 100755 index 644f0622..00000000 Binary files a/static/icons/06003167.png and /dev/null differ diff --git a/static/icons/06003168.png b/static/icons/06003168.png deleted file mode 100755 index 25bf5f6f..00000000 Binary files a/static/icons/06003168.png and /dev/null differ diff --git a/static/icons/06003169.png b/static/icons/06003169.png deleted file mode 100755 index f9e850aa..00000000 Binary files a/static/icons/06003169.png and /dev/null differ diff --git a/static/icons/0600316A.png b/static/icons/0600316A.png deleted file mode 100755 index 44a35b7c..00000000 Binary files a/static/icons/0600316A.png and /dev/null differ diff --git a/static/icons/0600316B.png b/static/icons/0600316B.png deleted file mode 100755 index 6a6fbb57..00000000 Binary files a/static/icons/0600316B.png and /dev/null differ diff --git a/static/icons/0600316C.png b/static/icons/0600316C.png deleted file mode 100755 index 131b0e7f..00000000 Binary files a/static/icons/0600316C.png and /dev/null differ diff --git a/static/icons/0600316D.png b/static/icons/0600316D.png deleted file mode 100755 index d8bd33ad..00000000 Binary files a/static/icons/0600316D.png and /dev/null differ diff --git a/static/icons/0600316E.png b/static/icons/0600316E.png deleted file mode 100755 index 67edd69c..00000000 Binary files a/static/icons/0600316E.png and /dev/null differ diff --git a/static/icons/0600316F.png b/static/icons/0600316F.png deleted file mode 100755 index 8f86a846..00000000 Binary files a/static/icons/0600316F.png and /dev/null differ diff --git a/static/icons/06003170.png b/static/icons/06003170.png deleted file mode 100755 index eb766a1a..00000000 Binary files a/static/icons/06003170.png and /dev/null differ diff --git a/static/icons/06003171.png b/static/icons/06003171.png deleted file mode 100755 index 5d37cdc0..00000000 Binary files a/static/icons/06003171.png and /dev/null differ diff --git a/static/icons/06003172.png b/static/icons/06003172.png deleted file mode 100755 index 9d93b97c..00000000 Binary files a/static/icons/06003172.png and /dev/null differ diff --git a/static/icons/06003173.png b/static/icons/06003173.png deleted file mode 100755 index d59849f4..00000000 Binary files a/static/icons/06003173.png and /dev/null differ diff --git a/static/icons/06003174.png b/static/icons/06003174.png deleted file mode 100755 index 52dcec9d..00000000 Binary files a/static/icons/06003174.png and /dev/null differ diff --git a/static/icons/06003175.png b/static/icons/06003175.png deleted file mode 100755 index c1832efa..00000000 Binary files a/static/icons/06003175.png and /dev/null differ diff --git a/static/icons/06003176.png b/static/icons/06003176.png deleted file mode 100755 index 73aadc03..00000000 Binary files a/static/icons/06003176.png and /dev/null differ diff --git a/static/icons/06003177.png b/static/icons/06003177.png deleted file mode 100755 index b7af9c94..00000000 Binary files a/static/icons/06003177.png and /dev/null differ diff --git a/static/icons/06003178.png b/static/icons/06003178.png deleted file mode 100755 index 4601e83e..00000000 Binary files a/static/icons/06003178.png and /dev/null differ diff --git a/static/icons/06003179.png b/static/icons/06003179.png deleted file mode 100755 index 90858ad3..00000000 Binary files a/static/icons/06003179.png and /dev/null differ diff --git a/static/icons/0600317A.png b/static/icons/0600317A.png deleted file mode 100755 index 4e33a0f4..00000000 Binary files a/static/icons/0600317A.png and /dev/null differ diff --git a/static/icons/0600317B.png b/static/icons/0600317B.png deleted file mode 100755 index a41a6eb0..00000000 Binary files a/static/icons/0600317B.png and /dev/null differ diff --git a/static/icons/0600317D.png b/static/icons/0600317D.png deleted file mode 100755 index 1c0fbd0b..00000000 Binary files a/static/icons/0600317D.png and /dev/null differ diff --git a/static/icons/0600317E.png b/static/icons/0600317E.png deleted file mode 100755 index a205a6c2..00000000 Binary files a/static/icons/0600317E.png and /dev/null differ diff --git a/static/icons/0600317F.png b/static/icons/0600317F.png deleted file mode 100755 index bab0d5b3..00000000 Binary files a/static/icons/0600317F.png and /dev/null differ diff --git a/static/icons/06003180.png b/static/icons/06003180.png deleted file mode 100755 index 7985e907..00000000 Binary files a/static/icons/06003180.png and /dev/null differ diff --git a/static/icons/06003181.png b/static/icons/06003181.png deleted file mode 100755 index 66cd6cfe..00000000 Binary files a/static/icons/06003181.png and /dev/null differ diff --git a/static/icons/06003182.png b/static/icons/06003182.png deleted file mode 100755 index 8a798f03..00000000 Binary files a/static/icons/06003182.png and /dev/null differ diff --git a/static/icons/06003183.png b/static/icons/06003183.png deleted file mode 100755 index 5190a701..00000000 Binary files a/static/icons/06003183.png and /dev/null differ diff --git a/static/icons/06003184.png b/static/icons/06003184.png deleted file mode 100755 index f6f53b42..00000000 Binary files a/static/icons/06003184.png and /dev/null differ diff --git a/static/icons/06003185.png b/static/icons/06003185.png deleted file mode 100755 index a7e6b285..00000000 Binary files a/static/icons/06003185.png and /dev/null differ diff --git a/static/icons/06003186.png b/static/icons/06003186.png deleted file mode 100755 index 486d549a..00000000 Binary files a/static/icons/06003186.png and /dev/null differ diff --git a/static/icons/06003187.png b/static/icons/06003187.png deleted file mode 100755 index d3364eab..00000000 Binary files a/static/icons/06003187.png and /dev/null differ diff --git a/static/icons/06003188.png b/static/icons/06003188.png deleted file mode 100755 index 51dc16e2..00000000 Binary files a/static/icons/06003188.png and /dev/null differ diff --git a/static/icons/06003189.png b/static/icons/06003189.png deleted file mode 100755 index d8c71c58..00000000 Binary files a/static/icons/06003189.png and /dev/null differ diff --git a/static/icons/0600318A.png b/static/icons/0600318A.png deleted file mode 100755 index cffe24f6..00000000 Binary files a/static/icons/0600318A.png and /dev/null differ diff --git a/static/icons/0600318B.png b/static/icons/0600318B.png deleted file mode 100755 index 3ad13e1e..00000000 Binary files a/static/icons/0600318B.png and /dev/null differ diff --git a/static/icons/0600318C.png b/static/icons/0600318C.png deleted file mode 100755 index f2565f64..00000000 Binary files a/static/icons/0600318C.png and /dev/null differ diff --git a/static/icons/0600318D.png b/static/icons/0600318D.png deleted file mode 100755 index be416182..00000000 Binary files a/static/icons/0600318D.png and /dev/null differ diff --git a/static/icons/0600318E.png b/static/icons/0600318E.png deleted file mode 100755 index d3a83bca..00000000 Binary files a/static/icons/0600318E.png and /dev/null differ diff --git a/static/icons/0600318F.png b/static/icons/0600318F.png deleted file mode 100755 index 298867e4..00000000 Binary files a/static/icons/0600318F.png and /dev/null differ diff --git a/static/icons/06003190.png b/static/icons/06003190.png deleted file mode 100755 index 8cdfc445..00000000 Binary files a/static/icons/06003190.png and /dev/null differ diff --git a/static/icons/06003191.png b/static/icons/06003191.png deleted file mode 100755 index 30af2b9a..00000000 Binary files a/static/icons/06003191.png and /dev/null differ diff --git a/static/icons/06003192.png b/static/icons/06003192.png deleted file mode 100755 index 4820d97f..00000000 Binary files a/static/icons/06003192.png and /dev/null differ diff --git a/static/icons/06003193.png b/static/icons/06003193.png deleted file mode 100755 index bb3757ca..00000000 Binary files a/static/icons/06003193.png and /dev/null differ diff --git a/static/icons/06003194.png b/static/icons/06003194.png deleted file mode 100755 index 3e289413..00000000 Binary files a/static/icons/06003194.png and /dev/null differ diff --git a/static/icons/06003195.png b/static/icons/06003195.png deleted file mode 100755 index 51291fec..00000000 Binary files a/static/icons/06003195.png and /dev/null differ diff --git a/static/icons/06003196.png b/static/icons/06003196.png deleted file mode 100755 index 304c04f4..00000000 Binary files a/static/icons/06003196.png and /dev/null differ diff --git a/static/icons/06003197.png b/static/icons/06003197.png deleted file mode 100755 index 415d7e2d..00000000 Binary files a/static/icons/06003197.png and /dev/null differ diff --git a/static/icons/06003198.png b/static/icons/06003198.png deleted file mode 100755 index d6210ad3..00000000 Binary files a/static/icons/06003198.png and /dev/null differ diff --git a/static/icons/06003199.png b/static/icons/06003199.png deleted file mode 100755 index 8326b797..00000000 Binary files a/static/icons/06003199.png and /dev/null differ diff --git a/static/icons/0600319A.png b/static/icons/0600319A.png deleted file mode 100755 index 59b8f55c..00000000 Binary files a/static/icons/0600319A.png and /dev/null differ diff --git a/static/icons/0600319B.png b/static/icons/0600319B.png deleted file mode 100755 index 4222c49f..00000000 Binary files a/static/icons/0600319B.png and /dev/null differ diff --git a/static/icons/0600319C.png b/static/icons/0600319C.png deleted file mode 100755 index aa196dae..00000000 Binary files a/static/icons/0600319C.png and /dev/null differ diff --git a/static/icons/0600319D.png b/static/icons/0600319D.png deleted file mode 100755 index 29a6247e..00000000 Binary files a/static/icons/0600319D.png and /dev/null differ diff --git a/static/icons/0600319E.png b/static/icons/0600319E.png deleted file mode 100755 index 03028950..00000000 Binary files a/static/icons/0600319E.png and /dev/null differ diff --git a/static/icons/0600319F.png b/static/icons/0600319F.png deleted file mode 100755 index 4519bd4c..00000000 Binary files a/static/icons/0600319F.png and /dev/null differ diff --git a/static/icons/060031A0.png b/static/icons/060031A0.png deleted file mode 100755 index e280692b..00000000 Binary files a/static/icons/060031A0.png and /dev/null differ diff --git a/static/icons/060031A1.png b/static/icons/060031A1.png deleted file mode 100755 index 9d9b2976..00000000 Binary files a/static/icons/060031A1.png and /dev/null differ diff --git a/static/icons/060031A3.png b/static/icons/060031A3.png deleted file mode 100755 index cabc8167..00000000 Binary files a/static/icons/060031A3.png and /dev/null differ diff --git a/static/icons/060031A4.png b/static/icons/060031A4.png deleted file mode 100755 index afbd2859..00000000 Binary files a/static/icons/060031A4.png and /dev/null differ diff --git a/static/icons/060031A5.png b/static/icons/060031A5.png deleted file mode 100755 index 521e8d06..00000000 Binary files a/static/icons/060031A5.png and /dev/null differ diff --git a/static/icons/060031A6.png b/static/icons/060031A6.png deleted file mode 100755 index cf9cd8c7..00000000 Binary files a/static/icons/060031A6.png and /dev/null differ diff --git a/static/icons/060031A7.png b/static/icons/060031A7.png deleted file mode 100755 index a9882579..00000000 Binary files a/static/icons/060031A7.png and /dev/null differ diff --git a/static/icons/060031A8.png b/static/icons/060031A8.png deleted file mode 100755 index d32f9310..00000000 Binary files a/static/icons/060031A8.png and /dev/null differ diff --git a/static/icons/060031A9.png b/static/icons/060031A9.png deleted file mode 100755 index 84a77701..00000000 Binary files a/static/icons/060031A9.png and /dev/null differ diff --git a/static/icons/060031AA.png b/static/icons/060031AA.png deleted file mode 100755 index 4e557759..00000000 Binary files a/static/icons/060031AA.png and /dev/null differ diff --git a/static/icons/060031AB.png b/static/icons/060031AB.png deleted file mode 100755 index 46fb0ef6..00000000 Binary files a/static/icons/060031AB.png and /dev/null differ diff --git a/static/icons/060031AC.png b/static/icons/060031AC.png deleted file mode 100755 index 00291070..00000000 Binary files a/static/icons/060031AC.png and /dev/null differ diff --git a/static/icons/060031AD.png b/static/icons/060031AD.png deleted file mode 100755 index 082fd284..00000000 Binary files a/static/icons/060031AD.png and /dev/null differ diff --git a/static/icons/060031AE.png b/static/icons/060031AE.png deleted file mode 100755 index 98baa4a6..00000000 Binary files a/static/icons/060031AE.png and /dev/null differ diff --git a/static/icons/060031AF.png b/static/icons/060031AF.png deleted file mode 100755 index f0b90929..00000000 Binary files a/static/icons/060031AF.png and /dev/null differ diff --git a/static/icons/060031B0.png b/static/icons/060031B0.png deleted file mode 100755 index 3419d5be..00000000 Binary files a/static/icons/060031B0.png and /dev/null differ diff --git a/static/icons/060031B1.png b/static/icons/060031B1.png deleted file mode 100755 index 78c4eddc..00000000 Binary files a/static/icons/060031B1.png and /dev/null differ diff --git a/static/icons/060031B2.png b/static/icons/060031B2.png deleted file mode 100755 index c02b9c4e..00000000 Binary files a/static/icons/060031B2.png and /dev/null differ diff --git a/static/icons/060031B3.png b/static/icons/060031B3.png deleted file mode 100755 index 7698655d..00000000 Binary files a/static/icons/060031B3.png and /dev/null differ diff --git a/static/icons/060031B4.png b/static/icons/060031B4.png deleted file mode 100755 index 6eb2888f..00000000 Binary files a/static/icons/060031B4.png and /dev/null differ diff --git a/static/icons/060031B6.png b/static/icons/060031B6.png deleted file mode 100755 index 7e961799..00000000 Binary files a/static/icons/060031B6.png and /dev/null differ diff --git a/static/icons/060031B7.png b/static/icons/060031B7.png deleted file mode 100755 index f55a9c5a..00000000 Binary files a/static/icons/060031B7.png and /dev/null differ diff --git a/static/icons/060031B8.png b/static/icons/060031B8.png deleted file mode 100755 index 30d35f22..00000000 Binary files a/static/icons/060031B8.png and /dev/null differ diff --git a/static/icons/060031B9.png b/static/icons/060031B9.png deleted file mode 100755 index 2b41efbd..00000000 Binary files a/static/icons/060031B9.png and /dev/null differ diff --git a/static/icons/060031BA.png b/static/icons/060031BA.png deleted file mode 100755 index 098ecf63..00000000 Binary files a/static/icons/060031BA.png and /dev/null differ diff --git a/static/icons/060031BB.png b/static/icons/060031BB.png deleted file mode 100755 index 5fce944e..00000000 Binary files a/static/icons/060031BB.png and /dev/null differ diff --git a/static/icons/060031BC.png b/static/icons/060031BC.png deleted file mode 100755 index ba53e40c..00000000 Binary files a/static/icons/060031BC.png and /dev/null differ diff --git a/static/icons/060031BD.png b/static/icons/060031BD.png deleted file mode 100755 index 7935415c..00000000 Binary files a/static/icons/060031BD.png and /dev/null differ diff --git a/static/icons/060031BE.png b/static/icons/060031BE.png deleted file mode 100755 index b5506f1b..00000000 Binary files a/static/icons/060031BE.png and /dev/null differ diff --git a/static/icons/060031BF.png b/static/icons/060031BF.png deleted file mode 100755 index afb2b9d1..00000000 Binary files a/static/icons/060031BF.png and /dev/null differ diff --git a/static/icons/060031C0.png b/static/icons/060031C0.png deleted file mode 100755 index b34c71c5..00000000 Binary files a/static/icons/060031C0.png and /dev/null differ diff --git a/static/icons/060031C1.png b/static/icons/060031C1.png deleted file mode 100755 index 27342b10..00000000 Binary files a/static/icons/060031C1.png and /dev/null differ diff --git a/static/icons/060031C2.png b/static/icons/060031C2.png deleted file mode 100755 index 42de6b11..00000000 Binary files a/static/icons/060031C2.png and /dev/null differ diff --git a/static/icons/060031C3.png b/static/icons/060031C3.png deleted file mode 100755 index 9b57c595..00000000 Binary files a/static/icons/060031C3.png and /dev/null differ diff --git a/static/icons/060031C4.png b/static/icons/060031C4.png deleted file mode 100755 index e297883b..00000000 Binary files a/static/icons/060031C4.png and /dev/null differ diff --git a/static/icons/060031C5.png b/static/icons/060031C5.png deleted file mode 100755 index 352b3117..00000000 Binary files a/static/icons/060031C5.png and /dev/null differ diff --git a/static/icons/060031C6.png b/static/icons/060031C6.png deleted file mode 100755 index 50e5a22f..00000000 Binary files a/static/icons/060031C6.png and /dev/null differ diff --git a/static/icons/060031C8.png b/static/icons/060031C8.png deleted file mode 100755 index 62d53e48..00000000 Binary files a/static/icons/060031C8.png and /dev/null differ diff --git a/static/icons/060031C9.png b/static/icons/060031C9.png deleted file mode 100755 index 8138d0f4..00000000 Binary files a/static/icons/060031C9.png and /dev/null differ diff --git a/static/icons/060031CA.png b/static/icons/060031CA.png deleted file mode 100755 index d000451c..00000000 Binary files a/static/icons/060031CA.png and /dev/null differ diff --git a/static/icons/060031CB.png b/static/icons/060031CB.png deleted file mode 100755 index 21707c55..00000000 Binary files a/static/icons/060031CB.png and /dev/null differ diff --git a/static/icons/060031CC.png b/static/icons/060031CC.png deleted file mode 100755 index eb00eb36..00000000 Binary files a/static/icons/060031CC.png and /dev/null differ diff --git a/static/icons/060031CD.png b/static/icons/060031CD.png deleted file mode 100755 index fa48780f..00000000 Binary files a/static/icons/060031CD.png and /dev/null differ diff --git a/static/icons/060031CE.png b/static/icons/060031CE.png deleted file mode 100755 index 0c32e1ce..00000000 Binary files a/static/icons/060031CE.png and /dev/null differ diff --git a/static/icons/060031CF.png b/static/icons/060031CF.png deleted file mode 100755 index ce900175..00000000 Binary files a/static/icons/060031CF.png and /dev/null differ diff --git a/static/icons/060031D0.png b/static/icons/060031D0.png deleted file mode 100755 index bee7e4f3..00000000 Binary files a/static/icons/060031D0.png and /dev/null differ diff --git a/static/icons/060031D1.png b/static/icons/060031D1.png deleted file mode 100755 index 383e5ecc..00000000 Binary files a/static/icons/060031D1.png and /dev/null differ diff --git a/static/icons/060031D2.png b/static/icons/060031D2.png deleted file mode 100755 index 6573d5a3..00000000 Binary files a/static/icons/060031D2.png and /dev/null differ diff --git a/static/icons/060031D3.png b/static/icons/060031D3.png deleted file mode 100755 index 8bd458d2..00000000 Binary files a/static/icons/060031D3.png and /dev/null differ diff --git a/static/icons/060031D4.png b/static/icons/060031D4.png deleted file mode 100755 index 21310608..00000000 Binary files a/static/icons/060031D4.png and /dev/null differ diff --git a/static/icons/060031D5.png b/static/icons/060031D5.png deleted file mode 100755 index 2edad5eb..00000000 Binary files a/static/icons/060031D5.png and /dev/null differ diff --git a/static/icons/060031D6.png b/static/icons/060031D6.png deleted file mode 100755 index ac47e2e7..00000000 Binary files a/static/icons/060031D6.png and /dev/null differ diff --git a/static/icons/060031D7.png b/static/icons/060031D7.png deleted file mode 100755 index 8b60599d..00000000 Binary files a/static/icons/060031D7.png and /dev/null differ diff --git a/static/icons/060031D8.png b/static/icons/060031D8.png deleted file mode 100755 index 231053b4..00000000 Binary files a/static/icons/060031D8.png and /dev/null differ diff --git a/static/icons/060031D9.png b/static/icons/060031D9.png deleted file mode 100755 index 30fbb07c..00000000 Binary files a/static/icons/060031D9.png and /dev/null differ diff --git a/static/icons/060031DA.png b/static/icons/060031DA.png deleted file mode 100755 index f3d33ae4..00000000 Binary files a/static/icons/060031DA.png and /dev/null differ diff --git a/static/icons/060031DC.png b/static/icons/060031DC.png deleted file mode 100755 index e931879f..00000000 Binary files a/static/icons/060031DC.png and /dev/null differ diff --git a/static/icons/060031DD.png b/static/icons/060031DD.png deleted file mode 100755 index a8792005..00000000 Binary files a/static/icons/060031DD.png and /dev/null differ diff --git a/static/icons/060031DE.png b/static/icons/060031DE.png deleted file mode 100755 index 4f92ec43..00000000 Binary files a/static/icons/060031DE.png and /dev/null differ diff --git a/static/icons/060031DF.png b/static/icons/060031DF.png deleted file mode 100755 index 79734e80..00000000 Binary files a/static/icons/060031DF.png and /dev/null differ diff --git a/static/icons/060031E0.png b/static/icons/060031E0.png deleted file mode 100755 index c30b472e..00000000 Binary files a/static/icons/060031E0.png and /dev/null differ diff --git a/static/icons/060031E1.png b/static/icons/060031E1.png deleted file mode 100755 index 9b80219b..00000000 Binary files a/static/icons/060031E1.png and /dev/null differ diff --git a/static/icons/060031E2.png b/static/icons/060031E2.png deleted file mode 100755 index e0c78ef0..00000000 Binary files a/static/icons/060031E2.png and /dev/null differ diff --git a/static/icons/060031E3.png b/static/icons/060031E3.png deleted file mode 100755 index 1ae46cf9..00000000 Binary files a/static/icons/060031E3.png and /dev/null differ diff --git a/static/icons/060031E4.png b/static/icons/060031E4.png deleted file mode 100755 index df40b4b7..00000000 Binary files a/static/icons/060031E4.png and /dev/null differ diff --git a/static/icons/060031E5.png b/static/icons/060031E5.png deleted file mode 100755 index 056f2daa..00000000 Binary files a/static/icons/060031E5.png and /dev/null differ diff --git a/static/icons/060031E6.png b/static/icons/060031E6.png deleted file mode 100755 index 353075c8..00000000 Binary files a/static/icons/060031E6.png and /dev/null differ diff --git a/static/icons/060031E7.png b/static/icons/060031E7.png deleted file mode 100755 index 1a00c30f..00000000 Binary files a/static/icons/060031E7.png and /dev/null differ diff --git a/static/icons/060031E8.png b/static/icons/060031E8.png deleted file mode 100755 index a7fb4029..00000000 Binary files a/static/icons/060031E8.png and /dev/null differ diff --git a/static/icons/060031E9.png b/static/icons/060031E9.png deleted file mode 100755 index 69b15245..00000000 Binary files a/static/icons/060031E9.png and /dev/null differ diff --git a/static/icons/060031EA.png b/static/icons/060031EA.png deleted file mode 100755 index e729114e..00000000 Binary files a/static/icons/060031EA.png and /dev/null differ diff --git a/static/icons/060031EB.png b/static/icons/060031EB.png deleted file mode 100755 index 54433012..00000000 Binary files a/static/icons/060031EB.png and /dev/null differ diff --git a/static/icons/060031EC.png b/static/icons/060031EC.png deleted file mode 100755 index f3877c08..00000000 Binary files a/static/icons/060031EC.png and /dev/null differ diff --git a/static/icons/060031ED.png b/static/icons/060031ED.png deleted file mode 100755 index fbd61d92..00000000 Binary files a/static/icons/060031ED.png and /dev/null differ diff --git a/static/icons/060031EF.png b/static/icons/060031EF.png deleted file mode 100755 index efff41b8..00000000 Binary files a/static/icons/060031EF.png and /dev/null differ diff --git a/static/icons/060031F0.png b/static/icons/060031F0.png deleted file mode 100755 index 6d3eb608..00000000 Binary files a/static/icons/060031F0.png and /dev/null differ diff --git a/static/icons/060031F1.png b/static/icons/060031F1.png deleted file mode 100755 index 96117c11..00000000 Binary files a/static/icons/060031F1.png and /dev/null differ diff --git a/static/icons/060031F2.png b/static/icons/060031F2.png deleted file mode 100755 index a45b930d..00000000 Binary files a/static/icons/060031F2.png and /dev/null differ diff --git a/static/icons/060031F3.png b/static/icons/060031F3.png deleted file mode 100755 index 41ccfe03..00000000 Binary files a/static/icons/060031F3.png and /dev/null differ diff --git a/static/icons/060031F4.png b/static/icons/060031F4.png deleted file mode 100755 index aac1b69f..00000000 Binary files a/static/icons/060031F4.png and /dev/null differ diff --git a/static/icons/060031F5.png b/static/icons/060031F5.png deleted file mode 100755 index 72c2dd1d..00000000 Binary files a/static/icons/060031F5.png and /dev/null differ diff --git a/static/icons/060031F6.png b/static/icons/060031F6.png deleted file mode 100755 index f6379a5e..00000000 Binary files a/static/icons/060031F6.png and /dev/null differ diff --git a/static/icons/060031F7.png b/static/icons/060031F7.png deleted file mode 100755 index 95c9ac61..00000000 Binary files a/static/icons/060031F7.png and /dev/null differ diff --git a/static/icons/060031F8.png b/static/icons/060031F8.png deleted file mode 100755 index cef78da4..00000000 Binary files a/static/icons/060031F8.png and /dev/null differ diff --git a/static/icons/060031F9.png b/static/icons/060031F9.png deleted file mode 100755 index 96b77b2c..00000000 Binary files a/static/icons/060031F9.png and /dev/null differ diff --git a/static/icons/060031FA.png b/static/icons/060031FA.png deleted file mode 100755 index c1eee226..00000000 Binary files a/static/icons/060031FA.png and /dev/null differ diff --git a/static/icons/060031FB.png b/static/icons/060031FB.png deleted file mode 100755 index d3a09167..00000000 Binary files a/static/icons/060031FB.png and /dev/null differ diff --git a/static/icons/060031FC.png b/static/icons/060031FC.png deleted file mode 100755 index 3771a0f7..00000000 Binary files a/static/icons/060031FC.png and /dev/null differ diff --git a/static/icons/060031FD.png b/static/icons/060031FD.png deleted file mode 100755 index c24b0d67..00000000 Binary files a/static/icons/060031FD.png and /dev/null differ diff --git a/static/icons/060031FE.png b/static/icons/060031FE.png deleted file mode 100755 index f6727009..00000000 Binary files a/static/icons/060031FE.png and /dev/null differ diff --git a/static/icons/060031FF.png b/static/icons/060031FF.png deleted file mode 100755 index ce273b54..00000000 Binary files a/static/icons/060031FF.png and /dev/null differ diff --git a/static/icons/06003200.png b/static/icons/06003200.png deleted file mode 100755 index 593fc75e..00000000 Binary files a/static/icons/06003200.png and /dev/null differ diff --git a/static/icons/06003201.png b/static/icons/06003201.png deleted file mode 100755 index 706b4347..00000000 Binary files a/static/icons/06003201.png and /dev/null differ diff --git a/static/icons/06003202.png b/static/icons/06003202.png deleted file mode 100755 index 15def3d8..00000000 Binary files a/static/icons/06003202.png and /dev/null differ diff --git a/static/icons/06003203.png b/static/icons/06003203.png deleted file mode 100755 index d87e858d..00000000 Binary files a/static/icons/06003203.png and /dev/null differ diff --git a/static/icons/06003204.png b/static/icons/06003204.png deleted file mode 100755 index 1948dd65..00000000 Binary files a/static/icons/06003204.png and /dev/null differ diff --git a/static/icons/06003205.png b/static/icons/06003205.png deleted file mode 100755 index 28c04484..00000000 Binary files a/static/icons/06003205.png and /dev/null differ diff --git a/static/icons/06003206.png b/static/icons/06003206.png deleted file mode 100755 index 8304b46b..00000000 Binary files a/static/icons/06003206.png and /dev/null differ diff --git a/static/icons/06003207.png b/static/icons/06003207.png deleted file mode 100755 index fcc1f443..00000000 Binary files a/static/icons/06003207.png and /dev/null differ diff --git a/static/icons/06003208.png b/static/icons/06003208.png deleted file mode 100755 index 194af779..00000000 Binary files a/static/icons/06003208.png and /dev/null differ diff --git a/static/icons/06003209.png b/static/icons/06003209.png deleted file mode 100755 index 9a661606..00000000 Binary files a/static/icons/06003209.png and /dev/null differ diff --git a/static/icons/0600320A.png b/static/icons/0600320A.png deleted file mode 100755 index 202edfdc..00000000 Binary files a/static/icons/0600320A.png and /dev/null differ diff --git a/static/icons/0600320B.png b/static/icons/0600320B.png deleted file mode 100755 index d0ca28a8..00000000 Binary files a/static/icons/0600320B.png and /dev/null differ diff --git a/static/icons/0600320C.png b/static/icons/0600320C.png deleted file mode 100755 index 443eb85f..00000000 Binary files a/static/icons/0600320C.png and /dev/null differ diff --git a/static/icons/0600320D.png b/static/icons/0600320D.png deleted file mode 100755 index 47e3aa64..00000000 Binary files a/static/icons/0600320D.png and /dev/null differ diff --git a/static/icons/0600320E.png b/static/icons/0600320E.png deleted file mode 100755 index f56a3537..00000000 Binary files a/static/icons/0600320E.png and /dev/null differ diff --git a/static/icons/0600320F.png b/static/icons/0600320F.png deleted file mode 100755 index 714631ab..00000000 Binary files a/static/icons/0600320F.png and /dev/null differ diff --git a/static/icons/06003210.png b/static/icons/06003210.png deleted file mode 100755 index e761185b..00000000 Binary files a/static/icons/06003210.png and /dev/null differ diff --git a/static/icons/06003211.png b/static/icons/06003211.png deleted file mode 100755 index 9e235b9b..00000000 Binary files a/static/icons/06003211.png and /dev/null differ diff --git a/static/icons/06003212.png b/static/icons/06003212.png deleted file mode 100755 index e8027fce..00000000 Binary files a/static/icons/06003212.png and /dev/null differ diff --git a/static/icons/06003213.png b/static/icons/06003213.png deleted file mode 100755 index 3f664bad..00000000 Binary files a/static/icons/06003213.png and /dev/null differ diff --git a/static/icons/06003215.png b/static/icons/06003215.png deleted file mode 100755 index 02c5b728..00000000 Binary files a/static/icons/06003215.png and /dev/null differ diff --git a/static/icons/06003216.png b/static/icons/06003216.png deleted file mode 100755 index 7c506001..00000000 Binary files a/static/icons/06003216.png and /dev/null differ diff --git a/static/icons/06003217.png b/static/icons/06003217.png deleted file mode 100755 index d66d626d..00000000 Binary files a/static/icons/06003217.png and /dev/null differ diff --git a/static/icons/06003218.png b/static/icons/06003218.png deleted file mode 100755 index 047abec9..00000000 Binary files a/static/icons/06003218.png and /dev/null differ diff --git a/static/icons/06003219.png b/static/icons/06003219.png deleted file mode 100755 index 709c4b8a..00000000 Binary files a/static/icons/06003219.png and /dev/null differ diff --git a/static/icons/0600321A.png b/static/icons/0600321A.png deleted file mode 100755 index ed248de4..00000000 Binary files a/static/icons/0600321A.png and /dev/null differ diff --git a/static/icons/0600321B.png b/static/icons/0600321B.png deleted file mode 100755 index 50e73396..00000000 Binary files a/static/icons/0600321B.png and /dev/null differ diff --git a/static/icons/0600321C.png b/static/icons/0600321C.png deleted file mode 100755 index 5e293b9b..00000000 Binary files a/static/icons/0600321C.png and /dev/null differ diff --git a/static/icons/0600321D.png b/static/icons/0600321D.png deleted file mode 100755 index 7743557f..00000000 Binary files a/static/icons/0600321D.png and /dev/null differ diff --git a/static/icons/0600321E.png b/static/icons/0600321E.png deleted file mode 100755 index 4d6fe7f5..00000000 Binary files a/static/icons/0600321E.png and /dev/null differ diff --git a/static/icons/0600321F.png b/static/icons/0600321F.png deleted file mode 100755 index 8c449ba4..00000000 Binary files a/static/icons/0600321F.png and /dev/null differ diff --git a/static/icons/06003220.png b/static/icons/06003220.png deleted file mode 100755 index 24f20846..00000000 Binary files a/static/icons/06003220.png and /dev/null differ diff --git a/static/icons/06003221.png b/static/icons/06003221.png deleted file mode 100755 index a44124ae..00000000 Binary files a/static/icons/06003221.png and /dev/null differ diff --git a/static/icons/06003222.png b/static/icons/06003222.png deleted file mode 100755 index 765c5586..00000000 Binary files a/static/icons/06003222.png and /dev/null differ diff --git a/static/icons/06003223.png b/static/icons/06003223.png deleted file mode 100755 index 2ff9c671..00000000 Binary files a/static/icons/06003223.png and /dev/null differ diff --git a/static/icons/06003224.png b/static/icons/06003224.png deleted file mode 100755 index a6e0dda9..00000000 Binary files a/static/icons/06003224.png and /dev/null differ diff --git a/static/icons/06003225.png b/static/icons/06003225.png deleted file mode 100755 index 83b7eab3..00000000 Binary files a/static/icons/06003225.png and /dev/null differ diff --git a/static/icons/06003226.png b/static/icons/06003226.png deleted file mode 100755 index 54484029..00000000 Binary files a/static/icons/06003226.png and /dev/null differ diff --git a/static/icons/06003228.png b/static/icons/06003228.png deleted file mode 100755 index a85e3d7a..00000000 Binary files a/static/icons/06003228.png and /dev/null differ diff --git a/static/icons/06003229.png b/static/icons/06003229.png deleted file mode 100755 index 159ee59f..00000000 Binary files a/static/icons/06003229.png and /dev/null differ diff --git a/static/icons/0600322A.png b/static/icons/0600322A.png deleted file mode 100755 index 83918c70..00000000 Binary files a/static/icons/0600322A.png and /dev/null differ diff --git a/static/icons/0600322B.png b/static/icons/0600322B.png deleted file mode 100755 index cdb086dd..00000000 Binary files a/static/icons/0600322B.png and /dev/null differ diff --git a/static/icons/0600322C.png b/static/icons/0600322C.png deleted file mode 100755 index 8b386c35..00000000 Binary files a/static/icons/0600322C.png and /dev/null differ diff --git a/static/icons/0600322D.png b/static/icons/0600322D.png deleted file mode 100755 index abd00176..00000000 Binary files a/static/icons/0600322D.png and /dev/null differ diff --git a/static/icons/0600322E.png b/static/icons/0600322E.png deleted file mode 100755 index c6627b96..00000000 Binary files a/static/icons/0600322E.png and /dev/null differ diff --git a/static/icons/0600322F.png b/static/icons/0600322F.png deleted file mode 100755 index 25c8cfc0..00000000 Binary files a/static/icons/0600322F.png and /dev/null differ diff --git a/static/icons/06003230.png b/static/icons/06003230.png deleted file mode 100755 index 18071ad9..00000000 Binary files a/static/icons/06003230.png and /dev/null differ diff --git a/static/icons/06003231.png b/static/icons/06003231.png deleted file mode 100755 index e1447926..00000000 Binary files a/static/icons/06003231.png and /dev/null differ diff --git a/static/icons/06003232.png b/static/icons/06003232.png deleted file mode 100755 index c01599e9..00000000 Binary files a/static/icons/06003232.png and /dev/null differ diff --git a/static/icons/06003233.png b/static/icons/06003233.png deleted file mode 100755 index 75981705..00000000 Binary files a/static/icons/06003233.png and /dev/null differ diff --git a/static/icons/06003234.png b/static/icons/06003234.png deleted file mode 100755 index f15bf4f8..00000000 Binary files a/static/icons/06003234.png and /dev/null differ diff --git a/static/icons/06003235.png b/static/icons/06003235.png deleted file mode 100755 index 8e655ff7..00000000 Binary files a/static/icons/06003235.png and /dev/null differ diff --git a/static/icons/06003236.png b/static/icons/06003236.png deleted file mode 100755 index 04497679..00000000 Binary files a/static/icons/06003236.png and /dev/null differ diff --git a/static/icons/06003237.png b/static/icons/06003237.png deleted file mode 100755 index 253cf21d..00000000 Binary files a/static/icons/06003237.png and /dev/null differ diff --git a/static/icons/06003239.png b/static/icons/06003239.png deleted file mode 100755 index 67cd04c1..00000000 Binary files a/static/icons/06003239.png and /dev/null differ diff --git a/static/icons/0600323A.png b/static/icons/0600323A.png deleted file mode 100755 index 7e2d4aaf..00000000 Binary files a/static/icons/0600323A.png and /dev/null differ diff --git a/static/icons/0600323B.png b/static/icons/0600323B.png deleted file mode 100755 index 9e2a8eed..00000000 Binary files a/static/icons/0600323B.png and /dev/null differ diff --git a/static/icons/0600323C.png b/static/icons/0600323C.png deleted file mode 100755 index d8800051..00000000 Binary files a/static/icons/0600323C.png and /dev/null differ diff --git a/static/icons/0600323D.png b/static/icons/0600323D.png deleted file mode 100755 index 98304859..00000000 Binary files a/static/icons/0600323D.png and /dev/null differ diff --git a/static/icons/0600323E.png b/static/icons/0600323E.png deleted file mode 100755 index ad546235..00000000 Binary files a/static/icons/0600323E.png and /dev/null differ diff --git a/static/icons/0600323F.png b/static/icons/0600323F.png deleted file mode 100755 index bab83582..00000000 Binary files a/static/icons/0600323F.png and /dev/null differ diff --git a/static/icons/06003240.png b/static/icons/06003240.png deleted file mode 100755 index 5b1307e5..00000000 Binary files a/static/icons/06003240.png and /dev/null differ diff --git a/static/icons/06003241.png b/static/icons/06003241.png deleted file mode 100755 index 28303ffc..00000000 Binary files a/static/icons/06003241.png and /dev/null differ diff --git a/static/icons/06003242.png b/static/icons/06003242.png deleted file mode 100755 index d7475789..00000000 Binary files a/static/icons/06003242.png and /dev/null differ diff --git a/static/icons/06003243.png b/static/icons/06003243.png deleted file mode 100755 index 285315a5..00000000 Binary files a/static/icons/06003243.png and /dev/null differ diff --git a/static/icons/06003244.png b/static/icons/06003244.png deleted file mode 100755 index 77fc8f3a..00000000 Binary files a/static/icons/06003244.png and /dev/null differ diff --git a/static/icons/06003245.png b/static/icons/06003245.png deleted file mode 100755 index 6d61f592..00000000 Binary files a/static/icons/06003245.png and /dev/null differ diff --git a/static/icons/06003246.png b/static/icons/06003246.png deleted file mode 100755 index b13ac7b5..00000000 Binary files a/static/icons/06003246.png and /dev/null differ diff --git a/static/icons/06003247.png b/static/icons/06003247.png deleted file mode 100755 index d7690486..00000000 Binary files a/static/icons/06003247.png and /dev/null differ diff --git a/static/icons/06003248.png b/static/icons/06003248.png deleted file mode 100755 index c5e51874..00000000 Binary files a/static/icons/06003248.png and /dev/null differ diff --git a/static/icons/06003249.png b/static/icons/06003249.png deleted file mode 100755 index c208440a..00000000 Binary files a/static/icons/06003249.png and /dev/null differ diff --git a/static/icons/0600324A.png b/static/icons/0600324A.png deleted file mode 100755 index 3b24e2e5..00000000 Binary files a/static/icons/0600324A.png and /dev/null differ diff --git a/static/icons/0600324B.png b/static/icons/0600324B.png deleted file mode 100755 index 07698ddb..00000000 Binary files a/static/icons/0600324B.png and /dev/null differ diff --git a/static/icons/0600324D.png b/static/icons/0600324D.png deleted file mode 100755 index 7da4a6a4..00000000 Binary files a/static/icons/0600324D.png and /dev/null differ diff --git a/static/icons/0600324E.png b/static/icons/0600324E.png deleted file mode 100755 index 962744dc..00000000 Binary files a/static/icons/0600324E.png and /dev/null differ diff --git a/static/icons/0600324F.png b/static/icons/0600324F.png deleted file mode 100755 index cf91a0cc..00000000 Binary files a/static/icons/0600324F.png and /dev/null differ diff --git a/static/icons/06003250.png b/static/icons/06003250.png deleted file mode 100755 index 05daa10c..00000000 Binary files a/static/icons/06003250.png and /dev/null differ diff --git a/static/icons/06003251.png b/static/icons/06003251.png deleted file mode 100755 index 262658e7..00000000 Binary files a/static/icons/06003251.png and /dev/null differ diff --git a/static/icons/06003252.png b/static/icons/06003252.png deleted file mode 100755 index 8e338125..00000000 Binary files a/static/icons/06003252.png and /dev/null differ diff --git a/static/icons/06003253.png b/static/icons/06003253.png deleted file mode 100755 index 1f18728f..00000000 Binary files a/static/icons/06003253.png and /dev/null differ diff --git a/static/icons/06003254.png b/static/icons/06003254.png deleted file mode 100755 index afc9eac9..00000000 Binary files a/static/icons/06003254.png and /dev/null differ diff --git a/static/icons/06003255.png b/static/icons/06003255.png deleted file mode 100755 index d204cbd1..00000000 Binary files a/static/icons/06003255.png and /dev/null differ diff --git a/static/icons/06003256.png b/static/icons/06003256.png deleted file mode 100755 index 98a0463e..00000000 Binary files a/static/icons/06003256.png and /dev/null differ diff --git a/static/icons/06003257.png b/static/icons/06003257.png deleted file mode 100755 index 2d3b8a18..00000000 Binary files a/static/icons/06003257.png and /dev/null differ diff --git a/static/icons/06003258.png b/static/icons/06003258.png deleted file mode 100755 index cd29c58d..00000000 Binary files a/static/icons/06003258.png and /dev/null differ diff --git a/static/icons/06003259.png b/static/icons/06003259.png deleted file mode 100755 index 68cfe4ce..00000000 Binary files a/static/icons/06003259.png and /dev/null differ diff --git a/static/icons/0600325A.png b/static/icons/0600325A.png deleted file mode 100755 index 1453d547..00000000 Binary files a/static/icons/0600325A.png and /dev/null differ diff --git a/static/icons/0600325B.png b/static/icons/0600325B.png deleted file mode 100755 index be52a515..00000000 Binary files a/static/icons/0600325B.png and /dev/null differ diff --git a/static/icons/0600325C.png b/static/icons/0600325C.png deleted file mode 100755 index 0deac075..00000000 Binary files a/static/icons/0600325C.png and /dev/null differ diff --git a/static/icons/0600325D.png b/static/icons/0600325D.png deleted file mode 100755 index 0ad08695..00000000 Binary files a/static/icons/0600325D.png and /dev/null differ diff --git a/static/icons/0600325E.png b/static/icons/0600325E.png deleted file mode 100755 index 48f0fa08..00000000 Binary files a/static/icons/0600325E.png and /dev/null differ diff --git a/static/icons/06003260.png b/static/icons/06003260.png deleted file mode 100755 index f6c3e110..00000000 Binary files a/static/icons/06003260.png and /dev/null differ diff --git a/static/icons/06003261.png b/static/icons/06003261.png deleted file mode 100755 index 349ce5c9..00000000 Binary files a/static/icons/06003261.png and /dev/null differ diff --git a/static/icons/06003262.png b/static/icons/06003262.png deleted file mode 100755 index 0a59b191..00000000 Binary files a/static/icons/06003262.png and /dev/null differ diff --git a/static/icons/06003263.png b/static/icons/06003263.png deleted file mode 100755 index 9853f447..00000000 Binary files a/static/icons/06003263.png and /dev/null differ diff --git a/static/icons/06003264.png b/static/icons/06003264.png deleted file mode 100755 index 6c1cd950..00000000 Binary files a/static/icons/06003264.png and /dev/null differ diff --git a/static/icons/06003265.png b/static/icons/06003265.png deleted file mode 100755 index 392d157a..00000000 Binary files a/static/icons/06003265.png and /dev/null differ diff --git a/static/icons/06003266.png b/static/icons/06003266.png deleted file mode 100755 index c1f24fef..00000000 Binary files a/static/icons/06003266.png and /dev/null differ diff --git a/static/icons/06003267.png b/static/icons/06003267.png deleted file mode 100755 index 6f7de49c..00000000 Binary files a/static/icons/06003267.png and /dev/null differ diff --git a/static/icons/06003268.png b/static/icons/06003268.png deleted file mode 100755 index 6006d31e..00000000 Binary files a/static/icons/06003268.png and /dev/null differ diff --git a/static/icons/06003269.png b/static/icons/06003269.png deleted file mode 100755 index 459272cd..00000000 Binary files a/static/icons/06003269.png and /dev/null differ diff --git a/static/icons/0600326A.png b/static/icons/0600326A.png deleted file mode 100755 index 9571c341..00000000 Binary files a/static/icons/0600326A.png and /dev/null differ diff --git a/static/icons/0600326B.png b/static/icons/0600326B.png deleted file mode 100755 index 3c84b146..00000000 Binary files a/static/icons/0600326B.png and /dev/null differ diff --git a/static/icons/0600326C.png b/static/icons/0600326C.png deleted file mode 100755 index da8df1b4..00000000 Binary files a/static/icons/0600326C.png and /dev/null differ diff --git a/static/icons/0600326D.png b/static/icons/0600326D.png deleted file mode 100755 index 4334c51c..00000000 Binary files a/static/icons/0600326D.png and /dev/null differ diff --git a/static/icons/0600326E.png b/static/icons/0600326E.png deleted file mode 100755 index b81e6f57..00000000 Binary files a/static/icons/0600326E.png and /dev/null differ diff --git a/static/icons/0600326F.png b/static/icons/0600326F.png deleted file mode 100755 index 84f8d09b..00000000 Binary files a/static/icons/0600326F.png and /dev/null differ diff --git a/static/icons/06003270.png b/static/icons/06003270.png deleted file mode 100755 index 8bcbf081..00000000 Binary files a/static/icons/06003270.png and /dev/null differ diff --git a/static/icons/06003271.png b/static/icons/06003271.png deleted file mode 100755 index b74d8aa5..00000000 Binary files a/static/icons/06003271.png and /dev/null differ diff --git a/static/icons/06003272.png b/static/icons/06003272.png deleted file mode 100755 index d02ee91f..00000000 Binary files a/static/icons/06003272.png and /dev/null differ diff --git a/static/icons/06003273.png b/static/icons/06003273.png deleted file mode 100755 index 3e8441c3..00000000 Binary files a/static/icons/06003273.png and /dev/null differ diff --git a/static/icons/06003274.png b/static/icons/06003274.png deleted file mode 100755 index 7e42cfc6..00000000 Binary files a/static/icons/06003274.png and /dev/null differ diff --git a/static/icons/06003275.png b/static/icons/06003275.png deleted file mode 100755 index 70941543..00000000 Binary files a/static/icons/06003275.png and /dev/null differ diff --git a/static/icons/06003276.png b/static/icons/06003276.png deleted file mode 100755 index ce5bb7b2..00000000 Binary files a/static/icons/06003276.png and /dev/null differ diff --git a/static/icons/06003277.png b/static/icons/06003277.png deleted file mode 100755 index 0a1390a2..00000000 Binary files a/static/icons/06003277.png and /dev/null differ diff --git a/static/icons/06003278.png b/static/icons/06003278.png deleted file mode 100755 index e8c1e142..00000000 Binary files a/static/icons/06003278.png and /dev/null differ diff --git a/static/icons/06003279.png b/static/icons/06003279.png deleted file mode 100755 index 19371bd5..00000000 Binary files a/static/icons/06003279.png and /dev/null differ diff --git a/static/icons/0600327A.png b/static/icons/0600327A.png deleted file mode 100755 index 62f11614..00000000 Binary files a/static/icons/0600327A.png and /dev/null differ diff --git a/static/icons/0600327B.png b/static/icons/0600327B.png deleted file mode 100755 index 365eab4a..00000000 Binary files a/static/icons/0600327B.png and /dev/null differ diff --git a/static/icons/0600327C.png b/static/icons/0600327C.png deleted file mode 100755 index d2ff9214..00000000 Binary files a/static/icons/0600327C.png and /dev/null differ diff --git a/static/icons/0600327D.png b/static/icons/0600327D.png deleted file mode 100755 index 557f5527..00000000 Binary files a/static/icons/0600327D.png and /dev/null differ diff --git a/static/icons/0600327E.png b/static/icons/0600327E.png deleted file mode 100755 index 5af03674..00000000 Binary files a/static/icons/0600327E.png and /dev/null differ diff --git a/static/icons/0600327F.png b/static/icons/0600327F.png deleted file mode 100755 index 5ed95803..00000000 Binary files a/static/icons/0600327F.png and /dev/null differ diff --git a/static/icons/06003280.png b/static/icons/06003280.png deleted file mode 100755 index 94388e27..00000000 Binary files a/static/icons/06003280.png and /dev/null differ diff --git a/static/icons/06003281.png b/static/icons/06003281.png deleted file mode 100755 index 711435b5..00000000 Binary files a/static/icons/06003281.png and /dev/null differ diff --git a/static/icons/06003282.png b/static/icons/06003282.png deleted file mode 100755 index 135dc6c4..00000000 Binary files a/static/icons/06003282.png and /dev/null differ diff --git a/static/icons/06003283.png b/static/icons/06003283.png deleted file mode 100755 index 9a6b3488..00000000 Binary files a/static/icons/06003283.png and /dev/null differ diff --git a/static/icons/06003284.png b/static/icons/06003284.png deleted file mode 100755 index b4b1e3ec..00000000 Binary files a/static/icons/06003284.png and /dev/null differ diff --git a/static/icons/06003286.png b/static/icons/06003286.png deleted file mode 100755 index f02bc484..00000000 Binary files a/static/icons/06003286.png and /dev/null differ diff --git a/static/icons/06003287.png b/static/icons/06003287.png deleted file mode 100755 index ba46dd2d..00000000 Binary files a/static/icons/06003287.png and /dev/null differ diff --git a/static/icons/06003288.png b/static/icons/06003288.png deleted file mode 100755 index 66cf90c6..00000000 Binary files a/static/icons/06003288.png and /dev/null differ diff --git a/static/icons/06003289.png b/static/icons/06003289.png deleted file mode 100755 index 7711721a..00000000 Binary files a/static/icons/06003289.png and /dev/null differ diff --git a/static/icons/0600328A.png b/static/icons/0600328A.png deleted file mode 100755 index 4925feb1..00000000 Binary files a/static/icons/0600328A.png and /dev/null differ diff --git a/static/icons/0600328B.png b/static/icons/0600328B.png deleted file mode 100755 index 99090948..00000000 Binary files a/static/icons/0600328B.png and /dev/null differ diff --git a/static/icons/0600328C.png b/static/icons/0600328C.png deleted file mode 100755 index 6d9809c8..00000000 Binary files a/static/icons/0600328C.png and /dev/null differ diff --git a/static/icons/0600328D.png b/static/icons/0600328D.png deleted file mode 100755 index 0829b4ec..00000000 Binary files a/static/icons/0600328D.png and /dev/null differ diff --git a/static/icons/0600328E.png b/static/icons/0600328E.png deleted file mode 100755 index 46d3a8c8..00000000 Binary files a/static/icons/0600328E.png and /dev/null differ diff --git a/static/icons/0600328F.png b/static/icons/0600328F.png deleted file mode 100755 index 9815e4a6..00000000 Binary files a/static/icons/0600328F.png and /dev/null differ diff --git a/static/icons/06003290.png b/static/icons/06003290.png deleted file mode 100755 index 88984b93..00000000 Binary files a/static/icons/06003290.png and /dev/null differ diff --git a/static/icons/06003291.png b/static/icons/06003291.png deleted file mode 100755 index 9bfd28f4..00000000 Binary files a/static/icons/06003291.png and /dev/null differ diff --git a/static/icons/06003292.png b/static/icons/06003292.png deleted file mode 100755 index 2cc3a268..00000000 Binary files a/static/icons/06003292.png and /dev/null differ diff --git a/static/icons/06003293.png b/static/icons/06003293.png deleted file mode 100755 index e81c1503..00000000 Binary files a/static/icons/06003293.png and /dev/null differ diff --git a/static/icons/06003294.png b/static/icons/06003294.png deleted file mode 100755 index 24909545..00000000 Binary files a/static/icons/06003294.png and /dev/null differ diff --git a/static/icons/06003295.png b/static/icons/06003295.png deleted file mode 100755 index e94eece0..00000000 Binary files a/static/icons/06003295.png and /dev/null differ diff --git a/static/icons/06003296.png b/static/icons/06003296.png deleted file mode 100755 index 72333f57..00000000 Binary files a/static/icons/06003296.png and /dev/null differ diff --git a/static/icons/06003297.png b/static/icons/06003297.png deleted file mode 100755 index 3e74ef70..00000000 Binary files a/static/icons/06003297.png and /dev/null differ diff --git a/static/icons/06003299.png b/static/icons/06003299.png deleted file mode 100755 index d192ef3b..00000000 Binary files a/static/icons/06003299.png and /dev/null differ diff --git a/static/icons/0600329A.png b/static/icons/0600329A.png deleted file mode 100755 index bb6154c3..00000000 Binary files a/static/icons/0600329A.png and /dev/null differ diff --git a/static/icons/0600329B.png b/static/icons/0600329B.png deleted file mode 100755 index a03df805..00000000 Binary files a/static/icons/0600329B.png and /dev/null differ diff --git a/static/icons/0600329C.png b/static/icons/0600329C.png deleted file mode 100755 index 2e214293..00000000 Binary files a/static/icons/0600329C.png and /dev/null differ diff --git a/static/icons/0600329D.png b/static/icons/0600329D.png deleted file mode 100755 index 48ca8880..00000000 Binary files a/static/icons/0600329D.png and /dev/null differ diff --git a/static/icons/0600329E.png b/static/icons/0600329E.png deleted file mode 100755 index 744428ef..00000000 Binary files a/static/icons/0600329E.png and /dev/null differ diff --git a/static/icons/0600329F.png b/static/icons/0600329F.png deleted file mode 100755 index d4a37824..00000000 Binary files a/static/icons/0600329F.png and /dev/null differ diff --git a/static/icons/060032A0.png b/static/icons/060032A0.png deleted file mode 100755 index b2a73034..00000000 Binary files a/static/icons/060032A0.png and /dev/null differ diff --git a/static/icons/060032A1.png b/static/icons/060032A1.png deleted file mode 100755 index 3524a61e..00000000 Binary files a/static/icons/060032A1.png and /dev/null differ diff --git a/static/icons/060032A2.png b/static/icons/060032A2.png deleted file mode 100755 index 2a1cffef..00000000 Binary files a/static/icons/060032A2.png and /dev/null differ diff --git a/static/icons/060032A3.png b/static/icons/060032A3.png deleted file mode 100755 index e50a0768..00000000 Binary files a/static/icons/060032A3.png and /dev/null differ diff --git a/static/icons/060032A4.png b/static/icons/060032A4.png deleted file mode 100755 index 9bc4650c..00000000 Binary files a/static/icons/060032A4.png and /dev/null differ diff --git a/static/icons/060032A5.png b/static/icons/060032A5.png deleted file mode 100755 index 4c3ed1d5..00000000 Binary files a/static/icons/060032A5.png and /dev/null differ diff --git a/static/icons/060032A6.png b/static/icons/060032A6.png deleted file mode 100755 index 5e74d90b..00000000 Binary files a/static/icons/060032A6.png and /dev/null differ diff --git a/static/icons/060032A7.png b/static/icons/060032A7.png deleted file mode 100755 index 626aa50d..00000000 Binary files a/static/icons/060032A7.png and /dev/null differ diff --git a/static/icons/060032A8.png b/static/icons/060032A8.png deleted file mode 100755 index 364ae32f..00000000 Binary files a/static/icons/060032A8.png and /dev/null differ diff --git a/static/icons/060032A9.png b/static/icons/060032A9.png deleted file mode 100755 index 1de64cc7..00000000 Binary files a/static/icons/060032A9.png and /dev/null differ diff --git a/static/icons/060032AA.png b/static/icons/060032AA.png deleted file mode 100755 index a0abc584..00000000 Binary files a/static/icons/060032AA.png and /dev/null differ diff --git a/static/icons/060032AC.png b/static/icons/060032AC.png deleted file mode 100755 index 1cb786c8..00000000 Binary files a/static/icons/060032AC.png and /dev/null differ diff --git a/static/icons/060032AD.png b/static/icons/060032AD.png deleted file mode 100755 index da7ed526..00000000 Binary files a/static/icons/060032AD.png and /dev/null differ diff --git a/static/icons/060032AE.png b/static/icons/060032AE.png deleted file mode 100755 index a44b9775..00000000 Binary files a/static/icons/060032AE.png and /dev/null differ diff --git a/static/icons/060032AF.png b/static/icons/060032AF.png deleted file mode 100755 index 9e2317ba..00000000 Binary files a/static/icons/060032AF.png and /dev/null differ diff --git a/static/icons/060032B0.png b/static/icons/060032B0.png deleted file mode 100755 index 885e7367..00000000 Binary files a/static/icons/060032B0.png and /dev/null differ diff --git a/static/icons/060032B1.png b/static/icons/060032B1.png deleted file mode 100755 index aa3e666d..00000000 Binary files a/static/icons/060032B1.png and /dev/null differ diff --git a/static/icons/060032B2.png b/static/icons/060032B2.png deleted file mode 100755 index 4a0dae77..00000000 Binary files a/static/icons/060032B2.png and /dev/null differ diff --git a/static/icons/060032B3.png b/static/icons/060032B3.png deleted file mode 100755 index 95b52e40..00000000 Binary files a/static/icons/060032B3.png and /dev/null differ diff --git a/static/icons/060032B4.png b/static/icons/060032B4.png deleted file mode 100755 index 1daeb08c..00000000 Binary files a/static/icons/060032B4.png and /dev/null differ diff --git a/static/icons/060032B5.png b/static/icons/060032B5.png deleted file mode 100755 index 95f1ae4a..00000000 Binary files a/static/icons/060032B5.png and /dev/null differ diff --git a/static/icons/060032B6.png b/static/icons/060032B6.png deleted file mode 100755 index fec29fd0..00000000 Binary files a/static/icons/060032B6.png and /dev/null differ diff --git a/static/icons/060032B7.png b/static/icons/060032B7.png deleted file mode 100755 index e8f4f9a4..00000000 Binary files a/static/icons/060032B7.png and /dev/null differ diff --git a/static/icons/060032B8.png b/static/icons/060032B8.png deleted file mode 100755 index aeaeae90..00000000 Binary files a/static/icons/060032B8.png and /dev/null differ diff --git a/static/icons/060032B9.png b/static/icons/060032B9.png deleted file mode 100755 index dc1e6167..00000000 Binary files a/static/icons/060032B9.png and /dev/null differ diff --git a/static/icons/060032BA.png b/static/icons/060032BA.png deleted file mode 100755 index 967637d3..00000000 Binary files a/static/icons/060032BA.png and /dev/null differ diff --git a/static/icons/060032BB.png b/static/icons/060032BB.png deleted file mode 100755 index c3e0a317..00000000 Binary files a/static/icons/060032BB.png and /dev/null differ diff --git a/static/icons/060032BC.png b/static/icons/060032BC.png deleted file mode 100755 index da4b37bc..00000000 Binary files a/static/icons/060032BC.png and /dev/null differ diff --git a/static/icons/060032BD.png b/static/icons/060032BD.png deleted file mode 100755 index c94acf23..00000000 Binary files a/static/icons/060032BD.png and /dev/null differ diff --git a/static/icons/060032BE.png b/static/icons/060032BE.png deleted file mode 100755 index 9c5cfec9..00000000 Binary files a/static/icons/060032BE.png and /dev/null differ diff --git a/static/icons/060032BF.png b/static/icons/060032BF.png deleted file mode 100755 index 730b6745..00000000 Binary files a/static/icons/060032BF.png and /dev/null differ diff --git a/static/icons/060032C0.png b/static/icons/060032C0.png deleted file mode 100755 index c55eefbb..00000000 Binary files a/static/icons/060032C0.png and /dev/null differ diff --git a/static/icons/060032C1.png b/static/icons/060032C1.png deleted file mode 100755 index 1c206753..00000000 Binary files a/static/icons/060032C1.png and /dev/null differ diff --git a/static/icons/060032C2.png b/static/icons/060032C2.png deleted file mode 100755 index 73d00a4f..00000000 Binary files a/static/icons/060032C2.png and /dev/null differ diff --git a/static/icons/060032C3.png b/static/icons/060032C3.png deleted file mode 100755 index 007319e8..00000000 Binary files a/static/icons/060032C3.png and /dev/null differ diff --git a/static/icons/060032C4.png b/static/icons/060032C4.png deleted file mode 100755 index 82cfb254..00000000 Binary files a/static/icons/060032C4.png and /dev/null differ diff --git a/static/icons/060032C5.png b/static/icons/060032C5.png deleted file mode 100755 index 6bc0f932..00000000 Binary files a/static/icons/060032C5.png and /dev/null differ diff --git a/static/icons/060032C8.png b/static/icons/060032C8.png deleted file mode 100755 index d1d9055b..00000000 Binary files a/static/icons/060032C8.png and /dev/null differ diff --git a/static/icons/060032C9.png b/static/icons/060032C9.png deleted file mode 100755 index b35f96ee..00000000 Binary files a/static/icons/060032C9.png and /dev/null differ diff --git a/static/icons/060032CA.png b/static/icons/060032CA.png deleted file mode 100755 index 5210c039..00000000 Binary files a/static/icons/060032CA.png and /dev/null differ diff --git a/static/icons/060032CB.png b/static/icons/060032CB.png deleted file mode 100755 index 069d4f59..00000000 Binary files a/static/icons/060032CB.png and /dev/null differ diff --git a/static/icons/060032CC.png b/static/icons/060032CC.png deleted file mode 100755 index 10185dfc..00000000 Binary files a/static/icons/060032CC.png and /dev/null differ diff --git a/static/icons/060032CD.png b/static/icons/060032CD.png deleted file mode 100755 index 69f23c23..00000000 Binary files a/static/icons/060032CD.png and /dev/null differ diff --git a/static/icons/060032CE.png b/static/icons/060032CE.png deleted file mode 100755 index 235d149b..00000000 Binary files a/static/icons/060032CE.png and /dev/null differ diff --git a/static/icons/060032CF.png b/static/icons/060032CF.png deleted file mode 100755 index 77c15e58..00000000 Binary files a/static/icons/060032CF.png and /dev/null differ diff --git a/static/icons/060032D0.png b/static/icons/060032D0.png deleted file mode 100755 index 6d479ef3..00000000 Binary files a/static/icons/060032D0.png and /dev/null differ diff --git a/static/icons/060032D1.png b/static/icons/060032D1.png deleted file mode 100755 index 89e002f7..00000000 Binary files a/static/icons/060032D1.png and /dev/null differ diff --git a/static/icons/060032D2.png b/static/icons/060032D2.png deleted file mode 100755 index 00c2060f..00000000 Binary files a/static/icons/060032D2.png and /dev/null differ diff --git a/static/icons/060032D3.png b/static/icons/060032D3.png deleted file mode 100755 index 50317320..00000000 Binary files a/static/icons/060032D3.png and /dev/null differ diff --git a/static/icons/060032D4.png b/static/icons/060032D4.png deleted file mode 100755 index 6a008c32..00000000 Binary files a/static/icons/060032D4.png and /dev/null differ diff --git a/static/icons/060032D5.png b/static/icons/060032D5.png deleted file mode 100755 index a1cf517b..00000000 Binary files a/static/icons/060032D5.png and /dev/null differ diff --git a/static/icons/060032D6.png b/static/icons/060032D6.png deleted file mode 100755 index e18533d5..00000000 Binary files a/static/icons/060032D6.png and /dev/null differ diff --git a/static/icons/060032D7.png b/static/icons/060032D7.png deleted file mode 100755 index 9be22df6..00000000 Binary files a/static/icons/060032D7.png and /dev/null differ diff --git a/static/icons/060032D8.png b/static/icons/060032D8.png deleted file mode 100755 index 86c87698..00000000 Binary files a/static/icons/060032D8.png and /dev/null differ diff --git a/static/icons/060032D9.png b/static/icons/060032D9.png deleted file mode 100755 index be87249c..00000000 Binary files a/static/icons/060032D9.png and /dev/null differ diff --git a/static/icons/060032DA.png b/static/icons/060032DA.png deleted file mode 100755 index 805dea47..00000000 Binary files a/static/icons/060032DA.png and /dev/null differ diff --git a/static/icons/060032DB.png b/static/icons/060032DB.png deleted file mode 100755 index e6aedfb8..00000000 Binary files a/static/icons/060032DB.png and /dev/null differ diff --git a/static/icons/060032DC.png b/static/icons/060032DC.png deleted file mode 100755 index ef4ed922..00000000 Binary files a/static/icons/060032DC.png and /dev/null differ diff --git a/static/icons/060032DD.png b/static/icons/060032DD.png deleted file mode 100755 index 257e5c56..00000000 Binary files a/static/icons/060032DD.png and /dev/null differ diff --git a/static/icons/060032DE.png b/static/icons/060032DE.png deleted file mode 100755 index b39e364e..00000000 Binary files a/static/icons/060032DE.png and /dev/null differ diff --git a/static/icons/060032DF.png b/static/icons/060032DF.png deleted file mode 100755 index 2a4076e4..00000000 Binary files a/static/icons/060032DF.png and /dev/null differ diff --git a/static/icons/060032E0.png b/static/icons/060032E0.png deleted file mode 100755 index 58bd3a2a..00000000 Binary files a/static/icons/060032E0.png and /dev/null differ diff --git a/static/icons/060032E1.png b/static/icons/060032E1.png deleted file mode 100755 index d95d8355..00000000 Binary files a/static/icons/060032E1.png and /dev/null differ diff --git a/static/icons/060032E2.png b/static/icons/060032E2.png deleted file mode 100755 index e4229777..00000000 Binary files a/static/icons/060032E2.png and /dev/null differ diff --git a/static/icons/060032E3.png b/static/icons/060032E3.png deleted file mode 100755 index bd115c0c..00000000 Binary files a/static/icons/060032E3.png and /dev/null differ diff --git a/static/icons/060032E4.png b/static/icons/060032E4.png deleted file mode 100755 index 831b7ec7..00000000 Binary files a/static/icons/060032E4.png and /dev/null differ diff --git a/static/icons/060032E5.png b/static/icons/060032E5.png deleted file mode 100755 index b54a81b2..00000000 Binary files a/static/icons/060032E5.png and /dev/null differ diff --git a/static/icons/060032E6.png b/static/icons/060032E6.png deleted file mode 100755 index c9ebcc5b..00000000 Binary files a/static/icons/060032E6.png and /dev/null differ diff --git a/static/icons/060032EF.png b/static/icons/060032EF.png deleted file mode 100755 index 174a7f75..00000000 Binary files a/static/icons/060032EF.png and /dev/null differ diff --git a/static/icons/060032F0.png b/static/icons/060032F0.png deleted file mode 100755 index a37e9165..00000000 Binary files a/static/icons/060032F0.png and /dev/null differ diff --git a/static/icons/060032F1.png b/static/icons/060032F1.png deleted file mode 100755 index 8f3193ff..00000000 Binary files a/static/icons/060032F1.png and /dev/null differ diff --git a/static/icons/060032F2.png b/static/icons/060032F2.png deleted file mode 100755 index b9c56ed9..00000000 Binary files a/static/icons/060032F2.png and /dev/null differ diff --git a/static/icons/060032F3.png b/static/icons/060032F3.png deleted file mode 100755 index 2f52ba51..00000000 Binary files a/static/icons/060032F3.png and /dev/null differ diff --git a/static/icons/060032F4.png b/static/icons/060032F4.png deleted file mode 100755 index 9ab73ce2..00000000 Binary files a/static/icons/060032F4.png and /dev/null differ diff --git a/static/icons/060032F5.png b/static/icons/060032F5.png deleted file mode 100755 index eebfeeca..00000000 Binary files a/static/icons/060032F5.png and /dev/null differ diff --git a/static/icons/060032F6.png b/static/icons/060032F6.png deleted file mode 100755 index 079ff258..00000000 Binary files a/static/icons/060032F6.png and /dev/null differ diff --git a/static/icons/060032F7.png b/static/icons/060032F7.png deleted file mode 100755 index 388c9192..00000000 Binary files a/static/icons/060032F7.png and /dev/null differ diff --git a/static/icons/060032F8.png b/static/icons/060032F8.png deleted file mode 100755 index 5808e90a..00000000 Binary files a/static/icons/060032F8.png and /dev/null differ diff --git a/static/icons/060032FA.png b/static/icons/060032FA.png deleted file mode 100755 index a9f4da8e..00000000 Binary files a/static/icons/060032FA.png and /dev/null differ diff --git a/static/icons/060032FB.png b/static/icons/060032FB.png deleted file mode 100755 index 510dfb39..00000000 Binary files a/static/icons/060032FB.png and /dev/null differ diff --git a/static/icons/060032FD.png b/static/icons/060032FD.png deleted file mode 100755 index 56c2494f..00000000 Binary files a/static/icons/060032FD.png and /dev/null differ diff --git a/static/icons/060032FF.png b/static/icons/060032FF.png deleted file mode 100755 index 9088b4bd..00000000 Binary files a/static/icons/060032FF.png and /dev/null differ diff --git a/static/icons/06003300.png b/static/icons/06003300.png deleted file mode 100755 index 963fd0f1..00000000 Binary files a/static/icons/06003300.png and /dev/null differ diff --git a/static/icons/06003301.png b/static/icons/06003301.png deleted file mode 100755 index 889f3a76..00000000 Binary files a/static/icons/06003301.png and /dev/null differ diff --git a/static/icons/06003302.png b/static/icons/06003302.png deleted file mode 100755 index b5c2f217..00000000 Binary files a/static/icons/06003302.png and /dev/null differ diff --git a/static/icons/06003303.png b/static/icons/06003303.png deleted file mode 100755 index 4ccbaf80..00000000 Binary files a/static/icons/06003303.png and /dev/null differ diff --git a/static/icons/06003304.png b/static/icons/06003304.png deleted file mode 100755 index 4a0e4616..00000000 Binary files a/static/icons/06003304.png and /dev/null differ diff --git a/static/icons/06003306.png b/static/icons/06003306.png deleted file mode 100755 index 8cff8cea..00000000 Binary files a/static/icons/06003306.png and /dev/null differ diff --git a/static/icons/06003307.png b/static/icons/06003307.png deleted file mode 100755 index 11ed0760..00000000 Binary files a/static/icons/06003307.png and /dev/null differ diff --git a/static/icons/06003308.png b/static/icons/06003308.png deleted file mode 100755 index 8fe5532c..00000000 Binary files a/static/icons/06003308.png and /dev/null differ diff --git a/static/icons/06003309.png b/static/icons/06003309.png deleted file mode 100755 index 553b1c32..00000000 Binary files a/static/icons/06003309.png and /dev/null differ diff --git a/static/icons/0600330A.png b/static/icons/0600330A.png deleted file mode 100755 index ea246487..00000000 Binary files a/static/icons/0600330A.png and /dev/null differ diff --git a/static/icons/0600330B.png b/static/icons/0600330B.png deleted file mode 100755 index 7eeddbec..00000000 Binary files a/static/icons/0600330B.png and /dev/null differ diff --git a/static/icons/0600330C.png b/static/icons/0600330C.png deleted file mode 100755 index a8db872c..00000000 Binary files a/static/icons/0600330C.png and /dev/null differ diff --git a/static/icons/0600330E.png b/static/icons/0600330E.png deleted file mode 100755 index 5777cabd..00000000 Binary files a/static/icons/0600330E.png and /dev/null differ diff --git a/static/icons/0600330F.png b/static/icons/0600330F.png deleted file mode 100755 index 3b1ac0ec..00000000 Binary files a/static/icons/0600330F.png and /dev/null differ diff --git a/static/icons/06003310.png b/static/icons/06003310.png deleted file mode 100755 index 50e5d36e..00000000 Binary files a/static/icons/06003310.png and /dev/null differ diff --git a/static/icons/06003311.png b/static/icons/06003311.png deleted file mode 100755 index 7765f416..00000000 Binary files a/static/icons/06003311.png and /dev/null differ diff --git a/static/icons/06003312.png b/static/icons/06003312.png deleted file mode 100755 index c9b2107e..00000000 Binary files a/static/icons/06003312.png and /dev/null differ diff --git a/static/icons/06003313.png b/static/icons/06003313.png deleted file mode 100755 index cf7e591e..00000000 Binary files a/static/icons/06003313.png and /dev/null differ diff --git a/static/icons/06003314.png b/static/icons/06003314.png deleted file mode 100755 index 018f0fe6..00000000 Binary files a/static/icons/06003314.png and /dev/null differ diff --git a/static/icons/06003316.png b/static/icons/06003316.png deleted file mode 100755 index e198a6e0..00000000 Binary files a/static/icons/06003316.png and /dev/null differ diff --git a/static/icons/06003317.png b/static/icons/06003317.png deleted file mode 100755 index 1be18e66..00000000 Binary files a/static/icons/06003317.png and /dev/null differ diff --git a/static/icons/06003318.png b/static/icons/06003318.png deleted file mode 100755 index d384fc90..00000000 Binary files a/static/icons/06003318.png and /dev/null differ diff --git a/static/icons/06003319.png b/static/icons/06003319.png deleted file mode 100755 index 056477ec..00000000 Binary files a/static/icons/06003319.png and /dev/null differ diff --git a/static/icons/0600331A.png b/static/icons/0600331A.png deleted file mode 100755 index cba50188..00000000 Binary files a/static/icons/0600331A.png and /dev/null differ diff --git a/static/icons/0600331B.png b/static/icons/0600331B.png deleted file mode 100755 index 02a9a810..00000000 Binary files a/static/icons/0600331B.png and /dev/null differ diff --git a/static/icons/0600331C.png b/static/icons/0600331C.png deleted file mode 100755 index 38b80817..00000000 Binary files a/static/icons/0600331C.png and /dev/null differ diff --git a/static/icons/0600331E.png b/static/icons/0600331E.png deleted file mode 100755 index 2aca1254..00000000 Binary files a/static/icons/0600331E.png and /dev/null differ diff --git a/static/icons/0600331F.png b/static/icons/0600331F.png deleted file mode 100755 index a318f357..00000000 Binary files a/static/icons/0600331F.png and /dev/null differ diff --git a/static/icons/06003320.png b/static/icons/06003320.png deleted file mode 100755 index 92ea118d..00000000 Binary files a/static/icons/06003320.png and /dev/null differ diff --git a/static/icons/06003321.png b/static/icons/06003321.png deleted file mode 100755 index 31af8ada..00000000 Binary files a/static/icons/06003321.png and /dev/null differ diff --git a/static/icons/06003322.png b/static/icons/06003322.png deleted file mode 100755 index 9b832051..00000000 Binary files a/static/icons/06003322.png and /dev/null differ diff --git a/static/icons/06003323.png b/static/icons/06003323.png deleted file mode 100755 index 4fa74040..00000000 Binary files a/static/icons/06003323.png and /dev/null differ diff --git a/static/icons/06003324.png b/static/icons/06003324.png deleted file mode 100755 index 91c530df..00000000 Binary files a/static/icons/06003324.png and /dev/null differ diff --git a/static/icons/06003325.png b/static/icons/06003325.png deleted file mode 100755 index 66d80b4f..00000000 Binary files a/static/icons/06003325.png and /dev/null differ diff --git a/static/icons/06003326.png b/static/icons/06003326.png deleted file mode 100755 index 8bfe668e..00000000 Binary files a/static/icons/06003326.png and /dev/null differ diff --git a/static/icons/06003327.png b/static/icons/06003327.png deleted file mode 100755 index 4f87fcb4..00000000 Binary files a/static/icons/06003327.png and /dev/null differ diff --git a/static/icons/06003328.png b/static/icons/06003328.png deleted file mode 100755 index 1e010c26..00000000 Binary files a/static/icons/06003328.png and /dev/null differ diff --git a/static/icons/06003329.png b/static/icons/06003329.png deleted file mode 100755 index 9fc23da9..00000000 Binary files a/static/icons/06003329.png and /dev/null differ diff --git a/static/icons/0600332A.png b/static/icons/0600332A.png deleted file mode 100755 index 306bfcc5..00000000 Binary files a/static/icons/0600332A.png and /dev/null differ diff --git a/static/icons/0600332B.png b/static/icons/0600332B.png deleted file mode 100755 index 95ce1225..00000000 Binary files a/static/icons/0600332B.png and /dev/null differ diff --git a/static/icons/0600332C.png b/static/icons/0600332C.png deleted file mode 100755 index 0d695c22..00000000 Binary files a/static/icons/0600332C.png and /dev/null differ diff --git a/static/icons/0600332D.png b/static/icons/0600332D.png deleted file mode 100755 index 83e1c144..00000000 Binary files a/static/icons/0600332D.png and /dev/null differ diff --git a/static/icons/0600332E.png b/static/icons/0600332E.png deleted file mode 100755 index 641ee4ca..00000000 Binary files a/static/icons/0600332E.png and /dev/null differ diff --git a/static/icons/0600332F.png b/static/icons/0600332F.png deleted file mode 100755 index 23e3f8ca..00000000 Binary files a/static/icons/0600332F.png and /dev/null differ diff --git a/static/icons/06003330.png b/static/icons/06003330.png deleted file mode 100755 index 8096e510..00000000 Binary files a/static/icons/06003330.png and /dev/null differ diff --git a/static/icons/06003331.png b/static/icons/06003331.png deleted file mode 100755 index 482eb23c..00000000 Binary files a/static/icons/06003331.png and /dev/null differ diff --git a/static/icons/06003332.png b/static/icons/06003332.png deleted file mode 100755 index 0813a9fd..00000000 Binary files a/static/icons/06003332.png and /dev/null differ diff --git a/static/icons/06003333.png b/static/icons/06003333.png deleted file mode 100755 index fa03a1f5..00000000 Binary files a/static/icons/06003333.png and /dev/null differ diff --git a/static/icons/06003334.png b/static/icons/06003334.png deleted file mode 100755 index 3d23f414..00000000 Binary files a/static/icons/06003334.png and /dev/null differ diff --git a/static/icons/06003335.png b/static/icons/06003335.png deleted file mode 100755 index 0d422e10..00000000 Binary files a/static/icons/06003335.png and /dev/null differ diff --git a/static/icons/06003336.png b/static/icons/06003336.png deleted file mode 100755 index 94366f50..00000000 Binary files a/static/icons/06003336.png and /dev/null differ diff --git a/static/icons/06003337.png b/static/icons/06003337.png deleted file mode 100755 index fa9d849d..00000000 Binary files a/static/icons/06003337.png and /dev/null differ diff --git a/static/icons/06003338.png b/static/icons/06003338.png deleted file mode 100755 index 1de63e84..00000000 Binary files a/static/icons/06003338.png and /dev/null differ diff --git a/static/icons/06003339.png b/static/icons/06003339.png deleted file mode 100755 index 84033248..00000000 Binary files a/static/icons/06003339.png and /dev/null differ diff --git a/static/icons/0600333A.png b/static/icons/0600333A.png deleted file mode 100755 index c9c08bc3..00000000 Binary files a/static/icons/0600333A.png and /dev/null differ diff --git a/static/icons/0600333B.png b/static/icons/0600333B.png deleted file mode 100755 index 5f93a170..00000000 Binary files a/static/icons/0600333B.png and /dev/null differ diff --git a/static/icons/0600333C.png b/static/icons/0600333C.png deleted file mode 100755 index e7216f3a..00000000 Binary files a/static/icons/0600333C.png and /dev/null differ diff --git a/static/icons/0600333D.png b/static/icons/0600333D.png deleted file mode 100755 index 8bac3b1c..00000000 Binary files a/static/icons/0600333D.png and /dev/null differ diff --git a/static/icons/0600333E.png b/static/icons/0600333E.png deleted file mode 100755 index cbb98418..00000000 Binary files a/static/icons/0600333E.png and /dev/null differ diff --git a/static/icons/0600333F.png b/static/icons/0600333F.png deleted file mode 100755 index 9a38acec..00000000 Binary files a/static/icons/0600333F.png and /dev/null differ diff --git a/static/icons/06003340.png b/static/icons/06003340.png deleted file mode 100755 index 56ffa6a1..00000000 Binary files a/static/icons/06003340.png and /dev/null differ diff --git a/static/icons/06003341.png b/static/icons/06003341.png deleted file mode 100755 index faf02981..00000000 Binary files a/static/icons/06003341.png and /dev/null differ diff --git a/static/icons/06003342.png b/static/icons/06003342.png deleted file mode 100755 index ae19e41c..00000000 Binary files a/static/icons/06003342.png and /dev/null differ diff --git a/static/icons/06003343.png b/static/icons/06003343.png deleted file mode 100755 index a8c0a9ee..00000000 Binary files a/static/icons/06003343.png and /dev/null differ diff --git a/static/icons/06003344.png b/static/icons/06003344.png deleted file mode 100755 index 24e45b83..00000000 Binary files a/static/icons/06003344.png and /dev/null differ diff --git a/static/icons/06003345.png b/static/icons/06003345.png deleted file mode 100755 index 64ce35c9..00000000 Binary files a/static/icons/06003345.png and /dev/null differ diff --git a/static/icons/06003346.png b/static/icons/06003346.png deleted file mode 100755 index c8987db9..00000000 Binary files a/static/icons/06003346.png and /dev/null differ diff --git a/static/icons/06003347.png b/static/icons/06003347.png deleted file mode 100755 index 7e4fada6..00000000 Binary files a/static/icons/06003347.png and /dev/null differ diff --git a/static/icons/06003348.png b/static/icons/06003348.png deleted file mode 100755 index aa5dc37e..00000000 Binary files a/static/icons/06003348.png and /dev/null differ diff --git a/static/icons/06003349.png b/static/icons/06003349.png deleted file mode 100755 index 1ae5a55e..00000000 Binary files a/static/icons/06003349.png and /dev/null differ diff --git a/static/icons/0600334A.png b/static/icons/0600334A.png deleted file mode 100755 index a1c6b1e5..00000000 Binary files a/static/icons/0600334A.png and /dev/null differ diff --git a/static/icons/0600334B.png b/static/icons/0600334B.png deleted file mode 100755 index bdafc9b2..00000000 Binary files a/static/icons/0600334B.png and /dev/null differ diff --git a/static/icons/0600334C.png b/static/icons/0600334C.png deleted file mode 100755 index c4926a85..00000000 Binary files a/static/icons/0600334C.png and /dev/null differ diff --git a/static/icons/0600334D.png b/static/icons/0600334D.png deleted file mode 100755 index e7fce286..00000000 Binary files a/static/icons/0600334D.png and /dev/null differ diff --git a/static/icons/0600334E.png b/static/icons/0600334E.png deleted file mode 100755 index bf9a779a..00000000 Binary files a/static/icons/0600334E.png and /dev/null differ diff --git a/static/icons/0600334F.png b/static/icons/0600334F.png deleted file mode 100755 index 1052293c..00000000 Binary files a/static/icons/0600334F.png and /dev/null differ diff --git a/static/icons/06003350.png b/static/icons/06003350.png deleted file mode 100755 index a931db74..00000000 Binary files a/static/icons/06003350.png and /dev/null differ diff --git a/static/icons/06003351.png b/static/icons/06003351.png deleted file mode 100755 index 2d4d72d6..00000000 Binary files a/static/icons/06003351.png and /dev/null differ diff --git a/static/icons/06003352.png b/static/icons/06003352.png deleted file mode 100755 index c59fc407..00000000 Binary files a/static/icons/06003352.png and /dev/null differ diff --git a/static/icons/06003353.png b/static/icons/06003353.png deleted file mode 100755 index c4f390e1..00000000 Binary files a/static/icons/06003353.png and /dev/null differ diff --git a/static/icons/06003354.png b/static/icons/06003354.png deleted file mode 100755 index 7b0c0d2f..00000000 Binary files a/static/icons/06003354.png and /dev/null differ diff --git a/static/icons/06003355.png b/static/icons/06003355.png deleted file mode 100755 index da97a2d6..00000000 Binary files a/static/icons/06003355.png and /dev/null differ diff --git a/static/icons/06003356.png b/static/icons/06003356.png deleted file mode 100755 index 1ecdd1e1..00000000 Binary files a/static/icons/06003356.png and /dev/null differ diff --git a/static/icons/06003357.png b/static/icons/06003357.png deleted file mode 100755 index 0b2899dd..00000000 Binary files a/static/icons/06003357.png and /dev/null differ diff --git a/static/icons/06003358.png b/static/icons/06003358.png deleted file mode 100755 index 61a0a07c..00000000 Binary files a/static/icons/06003358.png and /dev/null differ diff --git a/static/icons/06003359.png b/static/icons/06003359.png deleted file mode 100755 index 565f859f..00000000 Binary files a/static/icons/06003359.png and /dev/null differ diff --git a/static/icons/0600335A.png b/static/icons/0600335A.png deleted file mode 100755 index b48b27ef..00000000 Binary files a/static/icons/0600335A.png and /dev/null differ diff --git a/static/icons/0600335B.png b/static/icons/0600335B.png deleted file mode 100755 index 13f6e82f..00000000 Binary files a/static/icons/0600335B.png and /dev/null differ diff --git a/static/icons/0600335C.png b/static/icons/0600335C.png deleted file mode 100755 index bb24b47a..00000000 Binary files a/static/icons/0600335C.png and /dev/null differ diff --git a/static/icons/0600335D.png b/static/icons/0600335D.png deleted file mode 100755 index 9ac48f7f..00000000 Binary files a/static/icons/0600335D.png and /dev/null differ diff --git a/static/icons/0600335E.png b/static/icons/0600335E.png deleted file mode 100755 index 5653f970..00000000 Binary files a/static/icons/0600335E.png and /dev/null differ diff --git a/static/icons/0600335F.png b/static/icons/0600335F.png deleted file mode 100755 index bbfb274d..00000000 Binary files a/static/icons/0600335F.png and /dev/null differ diff --git a/static/icons/06003360.png b/static/icons/06003360.png deleted file mode 100755 index 402ae1d5..00000000 Binary files a/static/icons/06003360.png and /dev/null differ diff --git a/static/icons/06003361.png b/static/icons/06003361.png deleted file mode 100755 index 40da3b28..00000000 Binary files a/static/icons/06003361.png and /dev/null differ diff --git a/static/icons/06003362.png b/static/icons/06003362.png deleted file mode 100755 index 72258996..00000000 Binary files a/static/icons/06003362.png and /dev/null differ diff --git a/static/icons/06003363.png b/static/icons/06003363.png deleted file mode 100755 index c69d7cad..00000000 Binary files a/static/icons/06003363.png and /dev/null differ diff --git a/static/icons/06003364.png b/static/icons/06003364.png deleted file mode 100755 index 61ba42da..00000000 Binary files a/static/icons/06003364.png and /dev/null differ diff --git a/static/icons/06003365.png b/static/icons/06003365.png deleted file mode 100755 index bd670212..00000000 Binary files a/static/icons/06003365.png and /dev/null differ diff --git a/static/icons/06003366.png b/static/icons/06003366.png deleted file mode 100755 index 848c5a0d..00000000 Binary files a/static/icons/06003366.png and /dev/null differ diff --git a/static/icons/06003367.png b/static/icons/06003367.png deleted file mode 100755 index a1774be4..00000000 Binary files a/static/icons/06003367.png and /dev/null differ diff --git a/static/icons/06003368.png b/static/icons/06003368.png deleted file mode 100755 index c697974c..00000000 Binary files a/static/icons/06003368.png and /dev/null differ diff --git a/static/icons/06003369.png b/static/icons/06003369.png deleted file mode 100755 index 268bd3fd..00000000 Binary files a/static/icons/06003369.png and /dev/null differ diff --git a/static/icons/0600336A.png b/static/icons/0600336A.png deleted file mode 100755 index 27ca1a59..00000000 Binary files a/static/icons/0600336A.png and /dev/null differ diff --git a/static/icons/0600336B.png b/static/icons/0600336B.png deleted file mode 100755 index 0698e902..00000000 Binary files a/static/icons/0600336B.png and /dev/null differ diff --git a/static/icons/0600336C.png b/static/icons/0600336C.png deleted file mode 100755 index 2990132b..00000000 Binary files a/static/icons/0600336C.png and /dev/null differ diff --git a/static/icons/0600336D.png b/static/icons/0600336D.png deleted file mode 100755 index 17b7eb3b..00000000 Binary files a/static/icons/0600336D.png and /dev/null differ diff --git a/static/icons/0600336E.png b/static/icons/0600336E.png deleted file mode 100755 index a07b3d8b..00000000 Binary files a/static/icons/0600336E.png and /dev/null differ diff --git a/static/icons/0600336F.png b/static/icons/0600336F.png deleted file mode 100755 index e278166f..00000000 Binary files a/static/icons/0600336F.png and /dev/null differ diff --git a/static/icons/06003370.png b/static/icons/06003370.png deleted file mode 100755 index e4ceb876..00000000 Binary files a/static/icons/06003370.png and /dev/null differ diff --git a/static/icons/06003371.png b/static/icons/06003371.png deleted file mode 100755 index fd86c481..00000000 Binary files a/static/icons/06003371.png and /dev/null differ diff --git a/static/icons/06003372.png b/static/icons/06003372.png deleted file mode 100755 index fa231abe..00000000 Binary files a/static/icons/06003372.png and /dev/null differ diff --git a/static/icons/06003373.png b/static/icons/06003373.png deleted file mode 100755 index 749d0f36..00000000 Binary files a/static/icons/06003373.png and /dev/null differ diff --git a/static/icons/06003374.png b/static/icons/06003374.png deleted file mode 100755 index 86c977f1..00000000 Binary files a/static/icons/06003374.png and /dev/null differ diff --git a/static/icons/06003375.png b/static/icons/06003375.png deleted file mode 100755 index 9e552b75..00000000 Binary files a/static/icons/06003375.png and /dev/null differ diff --git a/static/icons/06003376.png b/static/icons/06003376.png deleted file mode 100755 index 28d62d21..00000000 Binary files a/static/icons/06003376.png and /dev/null differ diff --git a/static/icons/06003377.png b/static/icons/06003377.png deleted file mode 100755 index 983376ee..00000000 Binary files a/static/icons/06003377.png and /dev/null differ diff --git a/static/icons/06003378.png b/static/icons/06003378.png deleted file mode 100755 index 4a666e01..00000000 Binary files a/static/icons/06003378.png and /dev/null differ diff --git a/static/icons/06003379.png b/static/icons/06003379.png deleted file mode 100755 index 796b4eac..00000000 Binary files a/static/icons/06003379.png and /dev/null differ diff --git a/static/icons/0600337A.png b/static/icons/0600337A.png deleted file mode 100755 index f6ae9c49..00000000 Binary files a/static/icons/0600337A.png and /dev/null differ diff --git a/static/icons/0600337B.png b/static/icons/0600337B.png deleted file mode 100755 index 9052ebbe..00000000 Binary files a/static/icons/0600337B.png and /dev/null differ diff --git a/static/icons/0600337C.png b/static/icons/0600337C.png deleted file mode 100755 index 6b04b3fb..00000000 Binary files a/static/icons/0600337C.png and /dev/null differ diff --git a/static/icons/0600337D.png b/static/icons/0600337D.png deleted file mode 100755 index 78d3c243..00000000 Binary files a/static/icons/0600337D.png and /dev/null differ diff --git a/static/icons/0600337E.png b/static/icons/0600337E.png deleted file mode 100755 index 30209c9d..00000000 Binary files a/static/icons/0600337E.png and /dev/null differ diff --git a/static/icons/0600337F.png b/static/icons/0600337F.png deleted file mode 100755 index 6ecacef2..00000000 Binary files a/static/icons/0600337F.png and /dev/null differ diff --git a/static/icons/06003380.png b/static/icons/06003380.png deleted file mode 100755 index 387d29be..00000000 Binary files a/static/icons/06003380.png and /dev/null differ diff --git a/static/icons/06003383.png b/static/icons/06003383.png deleted file mode 100755 index ee83ce95..00000000 Binary files a/static/icons/06003383.png and /dev/null differ diff --git a/static/icons/06003384.png b/static/icons/06003384.png deleted file mode 100755 index 7ab5e486..00000000 Binary files a/static/icons/06003384.png and /dev/null differ diff --git a/static/icons/06003385.png b/static/icons/06003385.png deleted file mode 100755 index 6ace98e2..00000000 Binary files a/static/icons/06003385.png and /dev/null differ diff --git a/static/icons/06003386.png b/static/icons/06003386.png deleted file mode 100755 index 6de52b52..00000000 Binary files a/static/icons/06003386.png and /dev/null differ diff --git a/static/icons/06003387.png b/static/icons/06003387.png deleted file mode 100755 index 07cc081a..00000000 Binary files a/static/icons/06003387.png and /dev/null differ diff --git a/static/icons/06003388.png b/static/icons/06003388.png deleted file mode 100755 index 8a0842a2..00000000 Binary files a/static/icons/06003388.png and /dev/null differ diff --git a/static/icons/06003389.png b/static/icons/06003389.png deleted file mode 100755 index 6aa4f44e..00000000 Binary files a/static/icons/06003389.png and /dev/null differ diff --git a/static/icons/0600338A.png b/static/icons/0600338A.png deleted file mode 100755 index b1c222f4..00000000 Binary files a/static/icons/0600338A.png and /dev/null differ diff --git a/static/icons/0600338B.png b/static/icons/0600338B.png deleted file mode 100755 index 86066a24..00000000 Binary files a/static/icons/0600338B.png and /dev/null differ diff --git a/static/icons/0600338C.png b/static/icons/0600338C.png deleted file mode 100755 index 8ab3a7b1..00000000 Binary files a/static/icons/0600338C.png and /dev/null differ diff --git a/static/icons/0600338D.png b/static/icons/0600338D.png deleted file mode 100755 index 254c2744..00000000 Binary files a/static/icons/0600338D.png and /dev/null differ diff --git a/static/icons/0600338E.png b/static/icons/0600338E.png deleted file mode 100755 index ff64e837..00000000 Binary files a/static/icons/0600338E.png and /dev/null differ diff --git a/static/icons/0600338F.png b/static/icons/0600338F.png deleted file mode 100755 index d661cdea..00000000 Binary files a/static/icons/0600338F.png and /dev/null differ diff --git a/static/icons/06003390.png b/static/icons/06003390.png deleted file mode 100755 index e46f3a2e..00000000 Binary files a/static/icons/06003390.png and /dev/null differ diff --git a/static/icons/06003391.png b/static/icons/06003391.png deleted file mode 100755 index f294dfd5..00000000 Binary files a/static/icons/06003391.png and /dev/null differ diff --git a/static/icons/06003392.png b/static/icons/06003392.png deleted file mode 100755 index 6debaf05..00000000 Binary files a/static/icons/06003392.png and /dev/null differ diff --git a/static/icons/06003393.png b/static/icons/06003393.png deleted file mode 100755 index ac94dbe2..00000000 Binary files a/static/icons/06003393.png and /dev/null differ diff --git a/static/icons/06003394.png b/static/icons/06003394.png deleted file mode 100755 index ead7e63b..00000000 Binary files a/static/icons/06003394.png and /dev/null differ diff --git a/static/icons/0600339F.png b/static/icons/0600339F.png deleted file mode 100755 index 2ee7f14e..00000000 Binary files a/static/icons/0600339F.png and /dev/null differ diff --git a/static/icons/060033A0.png b/static/icons/060033A0.png deleted file mode 100755 index 9a4e2ee1..00000000 Binary files a/static/icons/060033A0.png and /dev/null differ diff --git a/static/icons/060033A1.png b/static/icons/060033A1.png deleted file mode 100755 index 7949cd1b..00000000 Binary files a/static/icons/060033A1.png and /dev/null differ diff --git a/static/icons/060033A2.png b/static/icons/060033A2.png deleted file mode 100755 index 5453ebab..00000000 Binary files a/static/icons/060033A2.png and /dev/null differ diff --git a/static/icons/060033A3.png b/static/icons/060033A3.png deleted file mode 100755 index 1845ca21..00000000 Binary files a/static/icons/060033A3.png and /dev/null differ diff --git a/static/icons/060033A4.png b/static/icons/060033A4.png deleted file mode 100755 index 5f6bc92f..00000000 Binary files a/static/icons/060033A4.png and /dev/null differ diff --git a/static/icons/060033A5.png b/static/icons/060033A5.png deleted file mode 100755 index 60dc2e88..00000000 Binary files a/static/icons/060033A5.png and /dev/null differ diff --git a/static/icons/060033A6.png b/static/icons/060033A6.png deleted file mode 100755 index 3df1963a..00000000 Binary files a/static/icons/060033A6.png and /dev/null differ diff --git a/static/icons/060033A7.png b/static/icons/060033A7.png deleted file mode 100755 index a28e1298..00000000 Binary files a/static/icons/060033A7.png and /dev/null differ diff --git a/static/icons/060033A8.png b/static/icons/060033A8.png deleted file mode 100755 index f030c46c..00000000 Binary files a/static/icons/060033A8.png and /dev/null differ diff --git a/static/icons/060033A9.png b/static/icons/060033A9.png deleted file mode 100755 index f08ec78b..00000000 Binary files a/static/icons/060033A9.png and /dev/null differ diff --git a/static/icons/060033AA.png b/static/icons/060033AA.png deleted file mode 100755 index ed257323..00000000 Binary files a/static/icons/060033AA.png and /dev/null differ diff --git a/static/icons/060033AB.png b/static/icons/060033AB.png deleted file mode 100755 index a92bc086..00000000 Binary files a/static/icons/060033AB.png and /dev/null differ diff --git a/static/icons/060033AC.png b/static/icons/060033AC.png deleted file mode 100755 index 30ddaefb..00000000 Binary files a/static/icons/060033AC.png and /dev/null differ diff --git a/static/icons/060033AD.png b/static/icons/060033AD.png deleted file mode 100755 index f94054a4..00000000 Binary files a/static/icons/060033AD.png and /dev/null differ diff --git a/static/icons/060033AE.png b/static/icons/060033AE.png deleted file mode 100755 index 92290ea5..00000000 Binary files a/static/icons/060033AE.png and /dev/null differ diff --git a/static/icons/060033AF.png b/static/icons/060033AF.png deleted file mode 100755 index 44f48827..00000000 Binary files a/static/icons/060033AF.png and /dev/null differ diff --git a/static/icons/060033B0.png b/static/icons/060033B0.png deleted file mode 100755 index 7c0ccbb1..00000000 Binary files a/static/icons/060033B0.png and /dev/null differ diff --git a/static/icons/060033B1.png b/static/icons/060033B1.png deleted file mode 100755 index 1f56cce4..00000000 Binary files a/static/icons/060033B1.png and /dev/null differ diff --git a/static/icons/060033B2.png b/static/icons/060033B2.png deleted file mode 100755 index 4d880663..00000000 Binary files a/static/icons/060033B2.png and /dev/null differ diff --git a/static/icons/060033B3.png b/static/icons/060033B3.png deleted file mode 100755 index a423a64d..00000000 Binary files a/static/icons/060033B3.png and /dev/null differ diff --git a/static/icons/060033B4.png b/static/icons/060033B4.png deleted file mode 100755 index a3942139..00000000 Binary files a/static/icons/060033B4.png and /dev/null differ diff --git a/static/icons/060033B5.png b/static/icons/060033B5.png deleted file mode 100755 index b8f54018..00000000 Binary files a/static/icons/060033B5.png and /dev/null differ diff --git a/static/icons/060033B6.png b/static/icons/060033B6.png deleted file mode 100755 index e4be1260..00000000 Binary files a/static/icons/060033B6.png and /dev/null differ diff --git a/static/icons/060033B7.png b/static/icons/060033B7.png deleted file mode 100755 index 03eefe86..00000000 Binary files a/static/icons/060033B7.png and /dev/null differ diff --git a/static/icons/060033B8.png b/static/icons/060033B8.png deleted file mode 100755 index e6b95343..00000000 Binary files a/static/icons/060033B8.png and /dev/null differ diff --git a/static/icons/060033B9.png b/static/icons/060033B9.png deleted file mode 100755 index 90e716a2..00000000 Binary files a/static/icons/060033B9.png and /dev/null differ diff --git a/static/icons/060033BA.png b/static/icons/060033BA.png deleted file mode 100755 index 54696997..00000000 Binary files a/static/icons/060033BA.png and /dev/null differ diff --git a/static/icons/060033BB.png b/static/icons/060033BB.png deleted file mode 100755 index 3902bb5a..00000000 Binary files a/static/icons/060033BB.png and /dev/null differ diff --git a/static/icons/060033BC.png b/static/icons/060033BC.png deleted file mode 100755 index ca083545..00000000 Binary files a/static/icons/060033BC.png and /dev/null differ diff --git a/static/icons/060033BD.png b/static/icons/060033BD.png deleted file mode 100755 index af25cba6..00000000 Binary files a/static/icons/060033BD.png and /dev/null differ diff --git a/static/icons/060033BE.png b/static/icons/060033BE.png deleted file mode 100755 index 7fe5c618..00000000 Binary files a/static/icons/060033BE.png and /dev/null differ diff --git a/static/icons/060033BF.png b/static/icons/060033BF.png deleted file mode 100755 index c19cd8f6..00000000 Binary files a/static/icons/060033BF.png and /dev/null differ diff --git a/static/icons/060033C0.png b/static/icons/060033C0.png deleted file mode 100755 index 9fd0c4d1..00000000 Binary files a/static/icons/060033C0.png and /dev/null differ diff --git a/static/icons/060033C1.png b/static/icons/060033C1.png deleted file mode 100755 index b8a5bc36..00000000 Binary files a/static/icons/060033C1.png and /dev/null differ diff --git a/static/icons/060033C2.png b/static/icons/060033C2.png deleted file mode 100755 index 1aed44ae..00000000 Binary files a/static/icons/060033C2.png and /dev/null differ diff --git a/static/icons/060033C3.png b/static/icons/060033C3.png deleted file mode 100755 index 18367126..00000000 Binary files a/static/icons/060033C3.png and /dev/null differ diff --git a/static/icons/060033C4.png b/static/icons/060033C4.png deleted file mode 100755 index 5687c107..00000000 Binary files a/static/icons/060033C4.png and /dev/null differ diff --git a/static/icons/060033C5.png b/static/icons/060033C5.png deleted file mode 100755 index 136a1bc5..00000000 Binary files a/static/icons/060033C5.png and /dev/null differ diff --git a/static/icons/060033C6.png b/static/icons/060033C6.png deleted file mode 100755 index a4e9b306..00000000 Binary files a/static/icons/060033C6.png and /dev/null differ diff --git a/static/icons/060033C7.png b/static/icons/060033C7.png deleted file mode 100755 index f4dfb712..00000000 Binary files a/static/icons/060033C7.png and /dev/null differ diff --git a/static/icons/060033C8.png b/static/icons/060033C8.png deleted file mode 100755 index 5a1b1a48..00000000 Binary files a/static/icons/060033C8.png and /dev/null differ diff --git a/static/icons/060033C9.png b/static/icons/060033C9.png deleted file mode 100755 index f42004d9..00000000 Binary files a/static/icons/060033C9.png and /dev/null differ diff --git a/static/icons/060033CA.png b/static/icons/060033CA.png deleted file mode 100755 index 094a736e..00000000 Binary files a/static/icons/060033CA.png and /dev/null differ diff --git a/static/icons/060033CB.png b/static/icons/060033CB.png deleted file mode 100755 index a5975a47..00000000 Binary files a/static/icons/060033CB.png and /dev/null differ diff --git a/static/icons/060033CC.png b/static/icons/060033CC.png deleted file mode 100755 index a284fdd8..00000000 Binary files a/static/icons/060033CC.png and /dev/null differ diff --git a/static/icons/060033CD.png b/static/icons/060033CD.png deleted file mode 100755 index 5b2f2ac4..00000000 Binary files a/static/icons/060033CD.png and /dev/null differ diff --git a/static/icons/060033CE.png b/static/icons/060033CE.png deleted file mode 100755 index bf54a280..00000000 Binary files a/static/icons/060033CE.png and /dev/null differ diff --git a/static/icons/060033CF.png b/static/icons/060033CF.png deleted file mode 100755 index 86029359..00000000 Binary files a/static/icons/060033CF.png and /dev/null differ diff --git a/static/icons/060033D0.png b/static/icons/060033D0.png deleted file mode 100755 index d9508567..00000000 Binary files a/static/icons/060033D0.png and /dev/null differ diff --git a/static/icons/060033D1.png b/static/icons/060033D1.png deleted file mode 100755 index 89dde02f..00000000 Binary files a/static/icons/060033D1.png and /dev/null differ diff --git a/static/icons/060033D2.png b/static/icons/060033D2.png deleted file mode 100755 index 2af250b4..00000000 Binary files a/static/icons/060033D2.png and /dev/null differ diff --git a/static/icons/060033D3.png b/static/icons/060033D3.png deleted file mode 100755 index 9a58e97e..00000000 Binary files a/static/icons/060033D3.png and /dev/null differ diff --git a/static/icons/060033D5.png b/static/icons/060033D5.png deleted file mode 100755 index d654fed9..00000000 Binary files a/static/icons/060033D5.png and /dev/null differ diff --git a/static/icons/060033D6.png b/static/icons/060033D6.png deleted file mode 100755 index f05afb63..00000000 Binary files a/static/icons/060033D6.png and /dev/null differ diff --git a/static/icons/060033D7.png b/static/icons/060033D7.png deleted file mode 100755 index 8e8afa6a..00000000 Binary files a/static/icons/060033D7.png and /dev/null differ diff --git a/static/icons/060033D8.png b/static/icons/060033D8.png deleted file mode 100755 index 7de3a51d..00000000 Binary files a/static/icons/060033D8.png and /dev/null differ diff --git a/static/icons/060033D9.png b/static/icons/060033D9.png deleted file mode 100755 index 6c983ed0..00000000 Binary files a/static/icons/060033D9.png and /dev/null differ diff --git a/static/icons/060033DA.png b/static/icons/060033DA.png deleted file mode 100755 index 32b08f2d..00000000 Binary files a/static/icons/060033DA.png and /dev/null differ diff --git a/static/icons/060033DB.png b/static/icons/060033DB.png deleted file mode 100755 index c84ea425..00000000 Binary files a/static/icons/060033DB.png and /dev/null differ diff --git a/static/icons/060033DC.png b/static/icons/060033DC.png deleted file mode 100755 index c0d434fb..00000000 Binary files a/static/icons/060033DC.png and /dev/null differ diff --git a/static/icons/060033DD.png b/static/icons/060033DD.png deleted file mode 100755 index f34c433f..00000000 Binary files a/static/icons/060033DD.png and /dev/null differ diff --git a/static/icons/060033DE.png b/static/icons/060033DE.png deleted file mode 100755 index 2ca2caeb..00000000 Binary files a/static/icons/060033DE.png and /dev/null differ diff --git a/static/icons/060033DF.png b/static/icons/060033DF.png deleted file mode 100755 index ed5b15f3..00000000 Binary files a/static/icons/060033DF.png and /dev/null differ diff --git a/static/icons/060033E0.png b/static/icons/060033E0.png deleted file mode 100755 index ff65692c..00000000 Binary files a/static/icons/060033E0.png and /dev/null differ diff --git a/static/icons/060033E1.png b/static/icons/060033E1.png deleted file mode 100755 index 36d6b237..00000000 Binary files a/static/icons/060033E1.png and /dev/null differ diff --git a/static/icons/060033E2.png b/static/icons/060033E2.png deleted file mode 100755 index 9b096646..00000000 Binary files a/static/icons/060033E2.png and /dev/null differ diff --git a/static/icons/060033E3.png b/static/icons/060033E3.png deleted file mode 100755 index 4ad73029..00000000 Binary files a/static/icons/060033E3.png and /dev/null differ diff --git a/static/icons/060033E4.png b/static/icons/060033E4.png deleted file mode 100755 index 668ef8ab..00000000 Binary files a/static/icons/060033E4.png and /dev/null differ diff --git a/static/icons/060033E5.png b/static/icons/060033E5.png deleted file mode 100755 index caca25d9..00000000 Binary files a/static/icons/060033E5.png and /dev/null differ diff --git a/static/icons/060033E6.png b/static/icons/060033E6.png deleted file mode 100755 index 6336c060..00000000 Binary files a/static/icons/060033E6.png and /dev/null differ diff --git a/static/icons/060033E7.png b/static/icons/060033E7.png deleted file mode 100755 index 38e043b2..00000000 Binary files a/static/icons/060033E7.png and /dev/null differ diff --git a/static/icons/060033E8.png b/static/icons/060033E8.png deleted file mode 100755 index 1d562023..00000000 Binary files a/static/icons/060033E8.png and /dev/null differ diff --git a/static/icons/060033E9.png b/static/icons/060033E9.png deleted file mode 100755 index 9af7a8a5..00000000 Binary files a/static/icons/060033E9.png and /dev/null differ diff --git a/static/icons/060033EA.png b/static/icons/060033EA.png deleted file mode 100755 index 2888dd7e..00000000 Binary files a/static/icons/060033EA.png and /dev/null differ diff --git a/static/icons/060033EB.png b/static/icons/060033EB.png deleted file mode 100755 index 94d4f7a3..00000000 Binary files a/static/icons/060033EB.png and /dev/null differ diff --git a/static/icons/060033EC.png b/static/icons/060033EC.png deleted file mode 100755 index 931f130a..00000000 Binary files a/static/icons/060033EC.png and /dev/null differ diff --git a/static/icons/060033ED.png b/static/icons/060033ED.png deleted file mode 100755 index 1d4ccfef..00000000 Binary files a/static/icons/060033ED.png and /dev/null differ diff --git a/static/icons/060033EE.png b/static/icons/060033EE.png deleted file mode 100755 index a66eb17c..00000000 Binary files a/static/icons/060033EE.png and /dev/null differ diff --git a/static/icons/060033EF.png b/static/icons/060033EF.png deleted file mode 100755 index 52f027db..00000000 Binary files a/static/icons/060033EF.png and /dev/null differ diff --git a/static/icons/060033F0.png b/static/icons/060033F0.png deleted file mode 100755 index a2895def..00000000 Binary files a/static/icons/060033F0.png and /dev/null differ diff --git a/static/icons/060033F1.png b/static/icons/060033F1.png deleted file mode 100755 index 531ba4cf..00000000 Binary files a/static/icons/060033F1.png and /dev/null differ diff --git a/static/icons/060033F2.png b/static/icons/060033F2.png deleted file mode 100755 index 5ca3ae83..00000000 Binary files a/static/icons/060033F2.png and /dev/null differ diff --git a/static/icons/060033F3.png b/static/icons/060033F3.png deleted file mode 100755 index 5ed24d17..00000000 Binary files a/static/icons/060033F3.png and /dev/null differ diff --git a/static/icons/060033F4.png b/static/icons/060033F4.png deleted file mode 100755 index d0ce8512..00000000 Binary files a/static/icons/060033F4.png and /dev/null differ diff --git a/static/icons/060033F5.png b/static/icons/060033F5.png deleted file mode 100755 index 3d3b037d..00000000 Binary files a/static/icons/060033F5.png and /dev/null differ diff --git a/static/icons/060033F6.png b/static/icons/060033F6.png deleted file mode 100755 index 847fcbc4..00000000 Binary files a/static/icons/060033F6.png and /dev/null differ diff --git a/static/icons/060033F7.png b/static/icons/060033F7.png deleted file mode 100755 index 5d463921..00000000 Binary files a/static/icons/060033F7.png and /dev/null differ diff --git a/static/icons/060033F8.png b/static/icons/060033F8.png deleted file mode 100755 index 894ade96..00000000 Binary files a/static/icons/060033F8.png and /dev/null differ diff --git a/static/icons/060033F9.png b/static/icons/060033F9.png deleted file mode 100755 index 9c920855..00000000 Binary files a/static/icons/060033F9.png and /dev/null differ diff --git a/static/icons/060033FA.png b/static/icons/060033FA.png deleted file mode 100755 index ddd5361e..00000000 Binary files a/static/icons/060033FA.png and /dev/null differ diff --git a/static/icons/060033FB.png b/static/icons/060033FB.png deleted file mode 100755 index 69d7eaee..00000000 Binary files a/static/icons/060033FB.png and /dev/null differ diff --git a/static/icons/060033FC.png b/static/icons/060033FC.png deleted file mode 100755 index efc53a03..00000000 Binary files a/static/icons/060033FC.png and /dev/null differ diff --git a/static/icons/060033FD.png b/static/icons/060033FD.png deleted file mode 100755 index f5f96bb9..00000000 Binary files a/static/icons/060033FD.png and /dev/null differ diff --git a/static/icons/060033FE.png b/static/icons/060033FE.png deleted file mode 100755 index 1ee0827d..00000000 Binary files a/static/icons/060033FE.png and /dev/null differ diff --git a/static/icons/060033FF.png b/static/icons/060033FF.png deleted file mode 100755 index dd69f82e..00000000 Binary files a/static/icons/060033FF.png and /dev/null differ diff --git a/static/icons/06003400.png b/static/icons/06003400.png deleted file mode 100755 index d2a18c4b..00000000 Binary files a/static/icons/06003400.png and /dev/null differ diff --git a/static/icons/06003401.png b/static/icons/06003401.png deleted file mode 100755 index e270bb7b..00000000 Binary files a/static/icons/06003401.png and /dev/null differ diff --git a/static/icons/06003402.png b/static/icons/06003402.png deleted file mode 100755 index 139baea7..00000000 Binary files a/static/icons/06003402.png and /dev/null differ diff --git a/static/icons/06003403.png b/static/icons/06003403.png deleted file mode 100755 index c95a2af5..00000000 Binary files a/static/icons/06003403.png and /dev/null differ diff --git a/static/icons/06003404.png b/static/icons/06003404.png deleted file mode 100755 index 4be1b342..00000000 Binary files a/static/icons/06003404.png and /dev/null differ diff --git a/static/icons/06003405.png b/static/icons/06003405.png deleted file mode 100755 index 4421af3a..00000000 Binary files a/static/icons/06003405.png and /dev/null differ diff --git a/static/icons/06003406.png b/static/icons/06003406.png deleted file mode 100755 index 273e035a..00000000 Binary files a/static/icons/06003406.png and /dev/null differ diff --git a/static/icons/06003407.png b/static/icons/06003407.png deleted file mode 100755 index 5d59666f..00000000 Binary files a/static/icons/06003407.png and /dev/null differ diff --git a/static/icons/06003408.png b/static/icons/06003408.png deleted file mode 100755 index 66e827fa..00000000 Binary files a/static/icons/06003408.png and /dev/null differ diff --git a/static/icons/06003409.png b/static/icons/06003409.png deleted file mode 100755 index 85769ce6..00000000 Binary files a/static/icons/06003409.png and /dev/null differ diff --git a/static/icons/0600340A.png b/static/icons/0600340A.png deleted file mode 100755 index 55c897af..00000000 Binary files a/static/icons/0600340A.png and /dev/null differ diff --git a/static/icons/0600340B.png b/static/icons/0600340B.png deleted file mode 100755 index 4330a42d..00000000 Binary files a/static/icons/0600340B.png and /dev/null differ diff --git a/static/icons/0600340C.png b/static/icons/0600340C.png deleted file mode 100755 index b29975ba..00000000 Binary files a/static/icons/0600340C.png and /dev/null differ diff --git a/static/icons/0600340D.png b/static/icons/0600340D.png deleted file mode 100755 index 9f1f9299..00000000 Binary files a/static/icons/0600340D.png and /dev/null differ diff --git a/static/icons/0600340E.png b/static/icons/0600340E.png deleted file mode 100755 index bb83f56d..00000000 Binary files a/static/icons/0600340E.png and /dev/null differ diff --git a/static/icons/0600340F.png b/static/icons/0600340F.png deleted file mode 100755 index 5b3393a6..00000000 Binary files a/static/icons/0600340F.png and /dev/null differ diff --git a/static/icons/06003410.png b/static/icons/06003410.png deleted file mode 100755 index 601c53e4..00000000 Binary files a/static/icons/06003410.png and /dev/null differ diff --git a/static/icons/06003411.png b/static/icons/06003411.png deleted file mode 100755 index 93c0c57a..00000000 Binary files a/static/icons/06003411.png and /dev/null differ diff --git a/static/icons/06003412.png b/static/icons/06003412.png deleted file mode 100755 index 506dfab7..00000000 Binary files a/static/icons/06003412.png and /dev/null differ diff --git a/static/icons/06003413.png b/static/icons/06003413.png deleted file mode 100755 index d7390bad..00000000 Binary files a/static/icons/06003413.png and /dev/null differ diff --git a/static/icons/06003414.png b/static/icons/06003414.png deleted file mode 100755 index 1e46c6b3..00000000 Binary files a/static/icons/06003414.png and /dev/null differ diff --git a/static/icons/06003415.png b/static/icons/06003415.png deleted file mode 100755 index 67e01dc4..00000000 Binary files a/static/icons/06003415.png and /dev/null differ diff --git a/static/icons/06003416.png b/static/icons/06003416.png deleted file mode 100755 index eeaecb87..00000000 Binary files a/static/icons/06003416.png and /dev/null differ diff --git a/static/icons/06003417.png b/static/icons/06003417.png deleted file mode 100755 index d4fca470..00000000 Binary files a/static/icons/06003417.png and /dev/null differ diff --git a/static/icons/06003418.png b/static/icons/06003418.png deleted file mode 100755 index c4ee9866..00000000 Binary files a/static/icons/06003418.png and /dev/null differ diff --git a/static/icons/06003419.png b/static/icons/06003419.png deleted file mode 100755 index 89e9f62a..00000000 Binary files a/static/icons/06003419.png and /dev/null differ diff --git a/static/icons/0600341A.png b/static/icons/0600341A.png deleted file mode 100755 index a30469ff..00000000 Binary files a/static/icons/0600341A.png and /dev/null differ diff --git a/static/icons/0600341B.png b/static/icons/0600341B.png deleted file mode 100755 index a1ac602b..00000000 Binary files a/static/icons/0600341B.png and /dev/null differ diff --git a/static/icons/0600341C.png b/static/icons/0600341C.png deleted file mode 100755 index 171d654c..00000000 Binary files a/static/icons/0600341C.png and /dev/null differ diff --git a/static/icons/0600341D.png b/static/icons/0600341D.png deleted file mode 100755 index 746ab6df..00000000 Binary files a/static/icons/0600341D.png and /dev/null differ diff --git a/static/icons/0600341E.png b/static/icons/0600341E.png deleted file mode 100755 index 0586f991..00000000 Binary files a/static/icons/0600341E.png and /dev/null differ diff --git a/static/icons/0600341F.png b/static/icons/0600341F.png deleted file mode 100755 index 7b0eee3f..00000000 Binary files a/static/icons/0600341F.png and /dev/null differ diff --git a/static/icons/06003420.png b/static/icons/06003420.png deleted file mode 100755 index 1d68171c..00000000 Binary files a/static/icons/06003420.png and /dev/null differ diff --git a/static/icons/06003421.png b/static/icons/06003421.png deleted file mode 100755 index 3c893124..00000000 Binary files a/static/icons/06003421.png and /dev/null differ diff --git a/static/icons/06003422.png b/static/icons/06003422.png deleted file mode 100755 index fe2af918..00000000 Binary files a/static/icons/06003422.png and /dev/null differ diff --git a/static/icons/06003423.png b/static/icons/06003423.png deleted file mode 100755 index 587dc90d..00000000 Binary files a/static/icons/06003423.png and /dev/null differ diff --git a/static/icons/06003424.png b/static/icons/06003424.png deleted file mode 100755 index e4664179..00000000 Binary files a/static/icons/06003424.png and /dev/null differ diff --git a/static/icons/06003425.png b/static/icons/06003425.png deleted file mode 100755 index 40f747ae..00000000 Binary files a/static/icons/06003425.png and /dev/null differ diff --git a/static/icons/06003426.png b/static/icons/06003426.png deleted file mode 100755 index 99d64baa..00000000 Binary files a/static/icons/06003426.png and /dev/null differ diff --git a/static/icons/06003427.png b/static/icons/06003427.png deleted file mode 100755 index f8c31448..00000000 Binary files a/static/icons/06003427.png and /dev/null differ diff --git a/static/icons/06003428.png b/static/icons/06003428.png deleted file mode 100755 index 44b95c56..00000000 Binary files a/static/icons/06003428.png and /dev/null differ diff --git a/static/icons/06003429.png b/static/icons/06003429.png deleted file mode 100755 index 4c2f55be..00000000 Binary files a/static/icons/06003429.png and /dev/null differ diff --git a/static/icons/0600342A.png b/static/icons/0600342A.png deleted file mode 100755 index bf3f65da..00000000 Binary files a/static/icons/0600342A.png and /dev/null differ diff --git a/static/icons/0600342B.png b/static/icons/0600342B.png deleted file mode 100755 index 6ccc023f..00000000 Binary files a/static/icons/0600342B.png and /dev/null differ diff --git a/static/icons/0600342C.png b/static/icons/0600342C.png deleted file mode 100755 index 7dad662e..00000000 Binary files a/static/icons/0600342C.png and /dev/null differ diff --git a/static/icons/0600342D.png b/static/icons/0600342D.png deleted file mode 100755 index 46e654ad..00000000 Binary files a/static/icons/0600342D.png and /dev/null differ diff --git a/static/icons/0600342E.png b/static/icons/0600342E.png deleted file mode 100755 index da3abc1a..00000000 Binary files a/static/icons/0600342E.png and /dev/null differ diff --git a/static/icons/0600342F.png b/static/icons/0600342F.png deleted file mode 100755 index 475f4990..00000000 Binary files a/static/icons/0600342F.png and /dev/null differ diff --git a/static/icons/06003430.png b/static/icons/06003430.png deleted file mode 100755 index 87b2b017..00000000 Binary files a/static/icons/06003430.png and /dev/null differ diff --git a/static/icons/06003431.png b/static/icons/06003431.png deleted file mode 100755 index 74d3e849..00000000 Binary files a/static/icons/06003431.png and /dev/null differ diff --git a/static/icons/06003432.png b/static/icons/06003432.png deleted file mode 100755 index 83c61cf8..00000000 Binary files a/static/icons/06003432.png and /dev/null differ diff --git a/static/icons/06003433.png b/static/icons/06003433.png deleted file mode 100755 index b24a7c5b..00000000 Binary files a/static/icons/06003433.png and /dev/null differ diff --git a/static/icons/06003434.png b/static/icons/06003434.png deleted file mode 100755 index 8bc6b5be..00000000 Binary files a/static/icons/06003434.png and /dev/null differ diff --git a/static/icons/06003435.png b/static/icons/06003435.png deleted file mode 100755 index a37e2233..00000000 Binary files a/static/icons/06003435.png and /dev/null differ diff --git a/static/icons/06003436.png b/static/icons/06003436.png deleted file mode 100755 index 991a6511..00000000 Binary files a/static/icons/06003436.png and /dev/null differ diff --git a/static/icons/06003437.png b/static/icons/06003437.png deleted file mode 100755 index 737bf35f..00000000 Binary files a/static/icons/06003437.png and /dev/null differ diff --git a/static/icons/06003438.png b/static/icons/06003438.png deleted file mode 100755 index 09ee49c4..00000000 Binary files a/static/icons/06003438.png and /dev/null differ diff --git a/static/icons/06003439.png b/static/icons/06003439.png deleted file mode 100755 index 9e085ffd..00000000 Binary files a/static/icons/06003439.png and /dev/null differ diff --git a/static/icons/0600343A.png b/static/icons/0600343A.png deleted file mode 100755 index 010bd640..00000000 Binary files a/static/icons/0600343A.png and /dev/null differ diff --git a/static/icons/0600343B.png b/static/icons/0600343B.png deleted file mode 100755 index 84a550d8..00000000 Binary files a/static/icons/0600343B.png and /dev/null differ diff --git a/static/icons/0600343C.png b/static/icons/0600343C.png deleted file mode 100755 index 4ab2930f..00000000 Binary files a/static/icons/0600343C.png and /dev/null differ diff --git a/static/icons/0600343D.png b/static/icons/0600343D.png deleted file mode 100755 index c2fc809b..00000000 Binary files a/static/icons/0600343D.png and /dev/null differ diff --git a/static/icons/0600343E.png b/static/icons/0600343E.png deleted file mode 100755 index 1cd20d04..00000000 Binary files a/static/icons/0600343E.png and /dev/null differ diff --git a/static/icons/0600343F.png b/static/icons/0600343F.png deleted file mode 100755 index 2148575f..00000000 Binary files a/static/icons/0600343F.png and /dev/null differ diff --git a/static/icons/06003440.png b/static/icons/06003440.png deleted file mode 100755 index a3f353a0..00000000 Binary files a/static/icons/06003440.png and /dev/null differ diff --git a/static/icons/06003441.png b/static/icons/06003441.png deleted file mode 100755 index fc8c3eb2..00000000 Binary files a/static/icons/06003441.png and /dev/null differ diff --git a/static/icons/06003442.png b/static/icons/06003442.png deleted file mode 100755 index 017f2ad4..00000000 Binary files a/static/icons/06003442.png and /dev/null differ diff --git a/static/icons/06003443.png b/static/icons/06003443.png deleted file mode 100755 index 31a1d8f1..00000000 Binary files a/static/icons/06003443.png and /dev/null differ diff --git a/static/icons/06003444.png b/static/icons/06003444.png deleted file mode 100755 index 1a976636..00000000 Binary files a/static/icons/06003444.png and /dev/null differ diff --git a/static/icons/06003445.png b/static/icons/06003445.png deleted file mode 100755 index abe6bcbb..00000000 Binary files a/static/icons/06003445.png and /dev/null differ diff --git a/static/icons/06003446.png b/static/icons/06003446.png deleted file mode 100755 index 5941d8be..00000000 Binary files a/static/icons/06003446.png and /dev/null differ diff --git a/static/icons/06003447.png b/static/icons/06003447.png deleted file mode 100755 index 397cd822..00000000 Binary files a/static/icons/06003447.png and /dev/null differ diff --git a/static/icons/06003448.png b/static/icons/06003448.png deleted file mode 100755 index 402613b0..00000000 Binary files a/static/icons/06003448.png and /dev/null differ diff --git a/static/icons/06003449.png b/static/icons/06003449.png deleted file mode 100755 index 2a35cd56..00000000 Binary files a/static/icons/06003449.png and /dev/null differ diff --git a/static/icons/0600344A.png b/static/icons/0600344A.png deleted file mode 100755 index c85d7dc4..00000000 Binary files a/static/icons/0600344A.png and /dev/null differ diff --git a/static/icons/0600344B.png b/static/icons/0600344B.png deleted file mode 100755 index 5c06b93f..00000000 Binary files a/static/icons/0600344B.png and /dev/null differ diff --git a/static/icons/0600344C.png b/static/icons/0600344C.png deleted file mode 100755 index 9656290d..00000000 Binary files a/static/icons/0600344C.png and /dev/null differ diff --git a/static/icons/0600344D.png b/static/icons/0600344D.png deleted file mode 100755 index 545eee75..00000000 Binary files a/static/icons/0600344D.png and /dev/null differ diff --git a/static/icons/0600344E.png b/static/icons/0600344E.png deleted file mode 100755 index 34ecd1ee..00000000 Binary files a/static/icons/0600344E.png and /dev/null differ diff --git a/static/icons/0600344F.png b/static/icons/0600344F.png deleted file mode 100755 index e61357b6..00000000 Binary files a/static/icons/0600344F.png and /dev/null differ diff --git a/static/icons/06003450.png b/static/icons/06003450.png deleted file mode 100755 index 6a3f4b01..00000000 Binary files a/static/icons/06003450.png and /dev/null differ diff --git a/static/icons/06003451.png b/static/icons/06003451.png deleted file mode 100755 index 69520470..00000000 Binary files a/static/icons/06003451.png and /dev/null differ diff --git a/static/icons/06003452.png b/static/icons/06003452.png deleted file mode 100755 index 8fa2933a..00000000 Binary files a/static/icons/06003452.png and /dev/null differ diff --git a/static/icons/06003453.png b/static/icons/06003453.png deleted file mode 100755 index 3e69afd4..00000000 Binary files a/static/icons/06003453.png and /dev/null differ diff --git a/static/icons/06003454.png b/static/icons/06003454.png deleted file mode 100755 index 44b2e813..00000000 Binary files a/static/icons/06003454.png and /dev/null differ diff --git a/static/icons/06003455.png b/static/icons/06003455.png deleted file mode 100755 index b0e994f8..00000000 Binary files a/static/icons/06003455.png and /dev/null differ diff --git a/static/icons/06003456.png b/static/icons/06003456.png deleted file mode 100755 index 1c1374bc..00000000 Binary files a/static/icons/06003456.png and /dev/null differ diff --git a/static/icons/06003457.png b/static/icons/06003457.png deleted file mode 100755 index f028cb1f..00000000 Binary files a/static/icons/06003457.png and /dev/null differ diff --git a/static/icons/06003458.png b/static/icons/06003458.png deleted file mode 100755 index 43e552c5..00000000 Binary files a/static/icons/06003458.png and /dev/null differ diff --git a/static/icons/06003459.png b/static/icons/06003459.png deleted file mode 100755 index 40c2c42e..00000000 Binary files a/static/icons/06003459.png and /dev/null differ diff --git a/static/icons/0600345A.png b/static/icons/0600345A.png deleted file mode 100755 index 08b49f59..00000000 Binary files a/static/icons/0600345A.png and /dev/null differ diff --git a/static/icons/0600345B.png b/static/icons/0600345B.png deleted file mode 100755 index 8add65ee..00000000 Binary files a/static/icons/0600345B.png and /dev/null differ diff --git a/static/icons/0600345C.png b/static/icons/0600345C.png deleted file mode 100755 index 0f98507d..00000000 Binary files a/static/icons/0600345C.png and /dev/null differ diff --git a/static/icons/0600345D.png b/static/icons/0600345D.png deleted file mode 100755 index 15620281..00000000 Binary files a/static/icons/0600345D.png and /dev/null differ diff --git a/static/icons/0600345E.png b/static/icons/0600345E.png deleted file mode 100755 index 2e204460..00000000 Binary files a/static/icons/0600345E.png and /dev/null differ diff --git a/static/icons/0600345F.png b/static/icons/0600345F.png deleted file mode 100755 index 08fb8382..00000000 Binary files a/static/icons/0600345F.png and /dev/null differ diff --git a/static/icons/06003460.png b/static/icons/06003460.png deleted file mode 100755 index 8db0e6ed..00000000 Binary files a/static/icons/06003460.png and /dev/null differ diff --git a/static/icons/06003461.png b/static/icons/06003461.png deleted file mode 100755 index 332b0429..00000000 Binary files a/static/icons/06003461.png and /dev/null differ diff --git a/static/icons/06003462.png b/static/icons/06003462.png deleted file mode 100755 index 29a2775d..00000000 Binary files a/static/icons/06003462.png and /dev/null differ diff --git a/static/icons/06003463.png b/static/icons/06003463.png deleted file mode 100755 index db746413..00000000 Binary files a/static/icons/06003463.png and /dev/null differ diff --git a/static/icons/06003464.png b/static/icons/06003464.png deleted file mode 100755 index d0acd550..00000000 Binary files a/static/icons/06003464.png and /dev/null differ diff --git a/static/icons/06003465.png b/static/icons/06003465.png deleted file mode 100755 index 530dda91..00000000 Binary files a/static/icons/06003465.png and /dev/null differ diff --git a/static/icons/06003466.png b/static/icons/06003466.png deleted file mode 100755 index bc7f8a70..00000000 Binary files a/static/icons/06003466.png and /dev/null differ diff --git a/static/icons/06003467.png b/static/icons/06003467.png deleted file mode 100755 index 7df32d68..00000000 Binary files a/static/icons/06003467.png and /dev/null differ diff --git a/static/icons/06003468.png b/static/icons/06003468.png deleted file mode 100755 index e41c6782..00000000 Binary files a/static/icons/06003468.png and /dev/null differ diff --git a/static/icons/06003469.png b/static/icons/06003469.png deleted file mode 100755 index 1059fc98..00000000 Binary files a/static/icons/06003469.png and /dev/null differ diff --git a/static/icons/0600346A.png b/static/icons/0600346A.png deleted file mode 100755 index 92762541..00000000 Binary files a/static/icons/0600346A.png and /dev/null differ diff --git a/static/icons/0600346B.png b/static/icons/0600346B.png deleted file mode 100755 index 27e8fc97..00000000 Binary files a/static/icons/0600346B.png and /dev/null differ diff --git a/static/icons/0600346C.png b/static/icons/0600346C.png deleted file mode 100755 index e366dc2a..00000000 Binary files a/static/icons/0600346C.png and /dev/null differ diff --git a/static/icons/0600346D.png b/static/icons/0600346D.png deleted file mode 100755 index 691024fd..00000000 Binary files a/static/icons/0600346D.png and /dev/null differ diff --git a/static/icons/0600346E.png b/static/icons/0600346E.png deleted file mode 100755 index c6dbe9cb..00000000 Binary files a/static/icons/0600346E.png and /dev/null differ diff --git a/static/icons/0600346F.png b/static/icons/0600346F.png deleted file mode 100755 index 8d2e5215..00000000 Binary files a/static/icons/0600346F.png and /dev/null differ diff --git a/static/icons/06003470.png b/static/icons/06003470.png deleted file mode 100755 index 9d014e28..00000000 Binary files a/static/icons/06003470.png and /dev/null differ diff --git a/static/icons/06003471.png b/static/icons/06003471.png deleted file mode 100755 index e7a0011d..00000000 Binary files a/static/icons/06003471.png and /dev/null differ diff --git a/static/icons/06003472.png b/static/icons/06003472.png deleted file mode 100755 index c87c1eb3..00000000 Binary files a/static/icons/06003472.png and /dev/null differ diff --git a/static/icons/06003473.png b/static/icons/06003473.png deleted file mode 100755 index c7a7a4dd..00000000 Binary files a/static/icons/06003473.png and /dev/null differ diff --git a/static/icons/06003474.png b/static/icons/06003474.png deleted file mode 100755 index 6c451b16..00000000 Binary files a/static/icons/06003474.png and /dev/null differ diff --git a/static/icons/06003475.png b/static/icons/06003475.png deleted file mode 100755 index 13cadd13..00000000 Binary files a/static/icons/06003475.png and /dev/null differ diff --git a/static/icons/06003476.png b/static/icons/06003476.png deleted file mode 100755 index 43c734ed..00000000 Binary files a/static/icons/06003476.png and /dev/null differ diff --git a/static/icons/06003477.png b/static/icons/06003477.png deleted file mode 100755 index 73d4f8a9..00000000 Binary files a/static/icons/06003477.png and /dev/null differ diff --git a/static/icons/06003478.png b/static/icons/06003478.png deleted file mode 100755 index 871d888c..00000000 Binary files a/static/icons/06003478.png and /dev/null differ diff --git a/static/icons/06003479.png b/static/icons/06003479.png deleted file mode 100755 index 8f26b063..00000000 Binary files a/static/icons/06003479.png and /dev/null differ diff --git a/static/icons/0600347A.png b/static/icons/0600347A.png deleted file mode 100755 index 9f92c066..00000000 Binary files a/static/icons/0600347A.png and /dev/null differ diff --git a/static/icons/0600347B.png b/static/icons/0600347B.png deleted file mode 100755 index 11a33164..00000000 Binary files a/static/icons/0600347B.png and /dev/null differ diff --git a/static/icons/0600347C.png b/static/icons/0600347C.png deleted file mode 100755 index 2a019b81..00000000 Binary files a/static/icons/0600347C.png and /dev/null differ diff --git a/static/icons/0600347D.png b/static/icons/0600347D.png deleted file mode 100755 index f31bde27..00000000 Binary files a/static/icons/0600347D.png and /dev/null differ diff --git a/static/icons/0600347E.png b/static/icons/0600347E.png deleted file mode 100755 index 5e6a0947..00000000 Binary files a/static/icons/0600347E.png and /dev/null differ diff --git a/static/icons/0600347F.png b/static/icons/0600347F.png deleted file mode 100755 index 333e8873..00000000 Binary files a/static/icons/0600347F.png and /dev/null differ diff --git a/static/icons/06003480.png b/static/icons/06003480.png deleted file mode 100755 index 641571a6..00000000 Binary files a/static/icons/06003480.png and /dev/null differ diff --git a/static/icons/06003481.png b/static/icons/06003481.png deleted file mode 100755 index d43004e1..00000000 Binary files a/static/icons/06003481.png and /dev/null differ diff --git a/static/icons/06003482.png b/static/icons/06003482.png deleted file mode 100755 index b17a7643..00000000 Binary files a/static/icons/06003482.png and /dev/null differ diff --git a/static/icons/06003483.png b/static/icons/06003483.png deleted file mode 100755 index 2866ee51..00000000 Binary files a/static/icons/06003483.png and /dev/null differ diff --git a/static/icons/06003484.png b/static/icons/06003484.png deleted file mode 100755 index cf429e80..00000000 Binary files a/static/icons/06003484.png and /dev/null differ diff --git a/static/icons/06003485.png b/static/icons/06003485.png deleted file mode 100755 index 2fe78783..00000000 Binary files a/static/icons/06003485.png and /dev/null differ diff --git a/static/icons/06003486.png b/static/icons/06003486.png deleted file mode 100755 index 64979810..00000000 Binary files a/static/icons/06003486.png and /dev/null differ diff --git a/static/icons/06003487.png b/static/icons/06003487.png deleted file mode 100755 index 8d440e40..00000000 Binary files a/static/icons/06003487.png and /dev/null differ diff --git a/static/icons/06003489.png b/static/icons/06003489.png deleted file mode 100755 index cc02ba92..00000000 Binary files a/static/icons/06003489.png and /dev/null differ diff --git a/static/icons/0600348A.png b/static/icons/0600348A.png deleted file mode 100755 index d2cfa010..00000000 Binary files a/static/icons/0600348A.png and /dev/null differ diff --git a/static/icons/0600348B.png b/static/icons/0600348B.png deleted file mode 100755 index deec10fd..00000000 Binary files a/static/icons/0600348B.png and /dev/null differ diff --git a/static/icons/0600348C.png b/static/icons/0600348C.png deleted file mode 100755 index b29e613f..00000000 Binary files a/static/icons/0600348C.png and /dev/null differ diff --git a/static/icons/0600348D.png b/static/icons/0600348D.png deleted file mode 100755 index 13eb0bbd..00000000 Binary files a/static/icons/0600348D.png and /dev/null differ diff --git a/static/icons/0600348E.png b/static/icons/0600348E.png deleted file mode 100755 index 880415af..00000000 Binary files a/static/icons/0600348E.png and /dev/null differ diff --git a/static/icons/0600348F.png b/static/icons/0600348F.png deleted file mode 100755 index 77a7b434..00000000 Binary files a/static/icons/0600348F.png and /dev/null differ diff --git a/static/icons/06003490.png b/static/icons/06003490.png deleted file mode 100755 index f5eb2c48..00000000 Binary files a/static/icons/06003490.png and /dev/null differ diff --git a/static/icons/06003491.png b/static/icons/06003491.png deleted file mode 100755 index 7817b025..00000000 Binary files a/static/icons/06003491.png and /dev/null differ diff --git a/static/icons/06003492.png b/static/icons/06003492.png deleted file mode 100755 index 9da563cf..00000000 Binary files a/static/icons/06003492.png and /dev/null differ diff --git a/static/icons/06003493.png b/static/icons/06003493.png deleted file mode 100755 index b2d84786..00000000 Binary files a/static/icons/06003493.png and /dev/null differ diff --git a/static/icons/06003494.png b/static/icons/06003494.png deleted file mode 100755 index c5416844..00000000 Binary files a/static/icons/06003494.png and /dev/null differ diff --git a/static/icons/06003495.png b/static/icons/06003495.png deleted file mode 100755 index 1ead17dc..00000000 Binary files a/static/icons/06003495.png and /dev/null differ diff --git a/static/icons/06003496.png b/static/icons/06003496.png deleted file mode 100755 index a4f46c0c..00000000 Binary files a/static/icons/06003496.png and /dev/null differ diff --git a/static/icons/06003497.png b/static/icons/06003497.png deleted file mode 100755 index 9eb02e1d..00000000 Binary files a/static/icons/06003497.png and /dev/null differ diff --git a/static/icons/06003498.png b/static/icons/06003498.png deleted file mode 100755 index c9f0684e..00000000 Binary files a/static/icons/06003498.png and /dev/null differ diff --git a/static/icons/06003499.png b/static/icons/06003499.png deleted file mode 100755 index 1084e920..00000000 Binary files a/static/icons/06003499.png and /dev/null differ diff --git a/static/icons/0600349A.png b/static/icons/0600349A.png deleted file mode 100755 index 51f1990f..00000000 Binary files a/static/icons/0600349A.png and /dev/null differ diff --git a/static/icons/0600349B.png b/static/icons/0600349B.png deleted file mode 100755 index 99d89f89..00000000 Binary files a/static/icons/0600349B.png and /dev/null differ diff --git a/static/icons/0600349C.png b/static/icons/0600349C.png deleted file mode 100755 index 6b8c6594..00000000 Binary files a/static/icons/0600349C.png and /dev/null differ diff --git a/static/icons/0600349D.png b/static/icons/0600349D.png deleted file mode 100755 index f240c045..00000000 Binary files a/static/icons/0600349D.png and /dev/null differ diff --git a/static/icons/0600349E.png b/static/icons/0600349E.png deleted file mode 100755 index eb597e15..00000000 Binary files a/static/icons/0600349E.png and /dev/null differ diff --git a/static/icons/0600349F.png b/static/icons/0600349F.png deleted file mode 100755 index e013ee92..00000000 Binary files a/static/icons/0600349F.png and /dev/null differ diff --git a/static/icons/060034A0.png b/static/icons/060034A0.png deleted file mode 100755 index 3cc946b2..00000000 Binary files a/static/icons/060034A0.png and /dev/null differ diff --git a/static/icons/060034A1.png b/static/icons/060034A1.png deleted file mode 100755 index 2b7aeda7..00000000 Binary files a/static/icons/060034A1.png and /dev/null differ diff --git a/static/icons/060034A2.png b/static/icons/060034A2.png deleted file mode 100755 index bfa89d2d..00000000 Binary files a/static/icons/060034A2.png and /dev/null differ diff --git a/static/icons/060034A3.png b/static/icons/060034A3.png deleted file mode 100755 index 639f6b67..00000000 Binary files a/static/icons/060034A3.png and /dev/null differ diff --git a/static/icons/060034A4.png b/static/icons/060034A4.png deleted file mode 100755 index ac711a28..00000000 Binary files a/static/icons/060034A4.png and /dev/null differ diff --git a/static/icons/060034A5.png b/static/icons/060034A5.png deleted file mode 100755 index 1dd4e415..00000000 Binary files a/static/icons/060034A5.png and /dev/null differ diff --git a/static/icons/060034A6.png b/static/icons/060034A6.png deleted file mode 100755 index d43461ef..00000000 Binary files a/static/icons/060034A6.png and /dev/null differ diff --git a/static/icons/060034A7.png b/static/icons/060034A7.png deleted file mode 100755 index b3b278eb..00000000 Binary files a/static/icons/060034A7.png and /dev/null differ diff --git a/static/icons/060034A8.png b/static/icons/060034A8.png deleted file mode 100755 index 566c0bc0..00000000 Binary files a/static/icons/060034A8.png and /dev/null differ diff --git a/static/icons/060034A9.png b/static/icons/060034A9.png deleted file mode 100755 index 0768eaa1..00000000 Binary files a/static/icons/060034A9.png and /dev/null differ diff --git a/static/icons/060034AA.png b/static/icons/060034AA.png deleted file mode 100755 index 47265eed..00000000 Binary files a/static/icons/060034AA.png and /dev/null differ diff --git a/static/icons/060034AB.png b/static/icons/060034AB.png deleted file mode 100755 index 871209fe..00000000 Binary files a/static/icons/060034AB.png and /dev/null differ diff --git a/static/icons/060034AC.png b/static/icons/060034AC.png deleted file mode 100755 index 21aa2480..00000000 Binary files a/static/icons/060034AC.png and /dev/null differ diff --git a/static/icons/060034AD.png b/static/icons/060034AD.png deleted file mode 100755 index 1a0d360c..00000000 Binary files a/static/icons/060034AD.png and /dev/null differ diff --git a/static/icons/060034AE.png b/static/icons/060034AE.png deleted file mode 100755 index 4f65d325..00000000 Binary files a/static/icons/060034AE.png and /dev/null differ diff --git a/static/icons/060034AF.png b/static/icons/060034AF.png deleted file mode 100755 index 456a2f15..00000000 Binary files a/static/icons/060034AF.png and /dev/null differ diff --git a/static/icons/060034B0.png b/static/icons/060034B0.png deleted file mode 100755 index 68eb24c2..00000000 Binary files a/static/icons/060034B0.png and /dev/null differ diff --git a/static/icons/060034B1.png b/static/icons/060034B1.png deleted file mode 100755 index 04f40199..00000000 Binary files a/static/icons/060034B1.png and /dev/null differ diff --git a/static/icons/060034B2.png b/static/icons/060034B2.png deleted file mode 100755 index 634f2023..00000000 Binary files a/static/icons/060034B2.png and /dev/null differ diff --git a/static/icons/060034B3.png b/static/icons/060034B3.png deleted file mode 100755 index 9e07e7fd..00000000 Binary files a/static/icons/060034B3.png and /dev/null differ diff --git a/static/icons/060034B4.png b/static/icons/060034B4.png deleted file mode 100755 index 8694ffbb..00000000 Binary files a/static/icons/060034B4.png and /dev/null differ diff --git a/static/icons/060034B5.png b/static/icons/060034B5.png deleted file mode 100755 index f53237a6..00000000 Binary files a/static/icons/060034B5.png and /dev/null differ diff --git a/static/icons/060034B6.png b/static/icons/060034B6.png deleted file mode 100755 index c32c6849..00000000 Binary files a/static/icons/060034B6.png and /dev/null differ diff --git a/static/icons/060034B7.png b/static/icons/060034B7.png deleted file mode 100755 index a17a3766..00000000 Binary files a/static/icons/060034B7.png and /dev/null differ diff --git a/static/icons/060034B8.png b/static/icons/060034B8.png deleted file mode 100755 index 9683fdcf..00000000 Binary files a/static/icons/060034B8.png and /dev/null differ diff --git a/static/icons/060034B9.png b/static/icons/060034B9.png deleted file mode 100755 index 0fa24818..00000000 Binary files a/static/icons/060034B9.png and /dev/null differ diff --git a/static/icons/060034BA.png b/static/icons/060034BA.png deleted file mode 100755 index 9daf29a1..00000000 Binary files a/static/icons/060034BA.png and /dev/null differ diff --git a/static/icons/060034BB.png b/static/icons/060034BB.png deleted file mode 100755 index 81be50b8..00000000 Binary files a/static/icons/060034BB.png and /dev/null differ diff --git a/static/icons/060034BC.png b/static/icons/060034BC.png deleted file mode 100755 index 18bf8fbf..00000000 Binary files a/static/icons/060034BC.png and /dev/null differ diff --git a/static/icons/060034BD.png b/static/icons/060034BD.png deleted file mode 100755 index 98a581b4..00000000 Binary files a/static/icons/060034BD.png and /dev/null differ diff --git a/static/icons/060034BE.png b/static/icons/060034BE.png deleted file mode 100755 index c1f6ff0a..00000000 Binary files a/static/icons/060034BE.png and /dev/null differ diff --git a/static/icons/060034BF.png b/static/icons/060034BF.png deleted file mode 100755 index ca06c057..00000000 Binary files a/static/icons/060034BF.png and /dev/null differ diff --git a/static/icons/060034C0.png b/static/icons/060034C0.png deleted file mode 100755 index be5562f3..00000000 Binary files a/static/icons/060034C0.png and /dev/null differ diff --git a/static/icons/060034C1.png b/static/icons/060034C1.png deleted file mode 100755 index ecab3261..00000000 Binary files a/static/icons/060034C1.png and /dev/null differ diff --git a/static/icons/060034C2.png b/static/icons/060034C2.png deleted file mode 100755 index 60b22cba..00000000 Binary files a/static/icons/060034C2.png and /dev/null differ diff --git a/static/icons/060034C3.png b/static/icons/060034C3.png deleted file mode 100755 index 15578dbc..00000000 Binary files a/static/icons/060034C3.png and /dev/null differ diff --git a/static/icons/060034C4.png b/static/icons/060034C4.png deleted file mode 100755 index a804a170..00000000 Binary files a/static/icons/060034C4.png and /dev/null differ diff --git a/static/icons/060034C5.png b/static/icons/060034C5.png deleted file mode 100755 index e0f572ed..00000000 Binary files a/static/icons/060034C5.png and /dev/null differ diff --git a/static/icons/060034C6.png b/static/icons/060034C6.png deleted file mode 100755 index 132ed528..00000000 Binary files a/static/icons/060034C6.png and /dev/null differ diff --git a/static/icons/060034C7.png b/static/icons/060034C7.png deleted file mode 100755 index 693e5cf2..00000000 Binary files a/static/icons/060034C7.png and /dev/null differ diff --git a/static/icons/060034C8.png b/static/icons/060034C8.png deleted file mode 100755 index 15299869..00000000 Binary files a/static/icons/060034C8.png and /dev/null differ diff --git a/static/icons/060034C9.png b/static/icons/060034C9.png deleted file mode 100755 index 41f68498..00000000 Binary files a/static/icons/060034C9.png and /dev/null differ diff --git a/static/icons/060034CA.png b/static/icons/060034CA.png deleted file mode 100755 index deb00949..00000000 Binary files a/static/icons/060034CA.png and /dev/null differ diff --git a/static/icons/060034CB.png b/static/icons/060034CB.png deleted file mode 100755 index 3f07992f..00000000 Binary files a/static/icons/060034CB.png and /dev/null differ diff --git a/static/icons/060034CC.png b/static/icons/060034CC.png deleted file mode 100755 index 61722fe5..00000000 Binary files a/static/icons/060034CC.png and /dev/null differ diff --git a/static/icons/060034CD.png b/static/icons/060034CD.png deleted file mode 100755 index 04057451..00000000 Binary files a/static/icons/060034CD.png and /dev/null differ diff --git a/static/icons/060034CE.png b/static/icons/060034CE.png deleted file mode 100755 index 903bada3..00000000 Binary files a/static/icons/060034CE.png and /dev/null differ diff --git a/static/icons/060034CF.png b/static/icons/060034CF.png deleted file mode 100755 index 8eb12160..00000000 Binary files a/static/icons/060034CF.png and /dev/null differ diff --git a/static/icons/060034D0.png b/static/icons/060034D0.png deleted file mode 100755 index 7ce36431..00000000 Binary files a/static/icons/060034D0.png and /dev/null differ diff --git a/static/icons/060034D1.png b/static/icons/060034D1.png deleted file mode 100755 index f2bbae02..00000000 Binary files a/static/icons/060034D1.png and /dev/null differ diff --git a/static/icons/060034D2.png b/static/icons/060034D2.png deleted file mode 100755 index d46524f0..00000000 Binary files a/static/icons/060034D2.png and /dev/null differ diff --git a/static/icons/060034D3.png b/static/icons/060034D3.png deleted file mode 100755 index ab302a3e..00000000 Binary files a/static/icons/060034D3.png and /dev/null differ diff --git a/static/icons/060034D4.png b/static/icons/060034D4.png deleted file mode 100755 index af37f719..00000000 Binary files a/static/icons/060034D4.png and /dev/null differ diff --git a/static/icons/060034D5.png b/static/icons/060034D5.png deleted file mode 100755 index 648d613f..00000000 Binary files a/static/icons/060034D5.png and /dev/null differ diff --git a/static/icons/060034D6.png b/static/icons/060034D6.png deleted file mode 100755 index 9652b70a..00000000 Binary files a/static/icons/060034D6.png and /dev/null differ diff --git a/static/icons/060034D7.png b/static/icons/060034D7.png deleted file mode 100755 index cc0e2e02..00000000 Binary files a/static/icons/060034D7.png and /dev/null differ diff --git a/static/icons/060034D8.png b/static/icons/060034D8.png deleted file mode 100755 index cf135d85..00000000 Binary files a/static/icons/060034D8.png and /dev/null differ diff --git a/static/icons/060034D9.png b/static/icons/060034D9.png deleted file mode 100755 index f3ed4244..00000000 Binary files a/static/icons/060034D9.png and /dev/null differ diff --git a/static/icons/060034DA.png b/static/icons/060034DA.png deleted file mode 100755 index e56883cc..00000000 Binary files a/static/icons/060034DA.png and /dev/null differ diff --git a/static/icons/060034DB.png b/static/icons/060034DB.png deleted file mode 100755 index a7bae987..00000000 Binary files a/static/icons/060034DB.png and /dev/null differ diff --git a/static/icons/060034DC.png b/static/icons/060034DC.png deleted file mode 100755 index e17c3c90..00000000 Binary files a/static/icons/060034DC.png and /dev/null differ diff --git a/static/icons/060034DD.png b/static/icons/060034DD.png deleted file mode 100755 index cdba50b7..00000000 Binary files a/static/icons/060034DD.png and /dev/null differ diff --git a/static/icons/060034DE.png b/static/icons/060034DE.png deleted file mode 100755 index b4eb2089..00000000 Binary files a/static/icons/060034DE.png and /dev/null differ diff --git a/static/icons/060034DF.png b/static/icons/060034DF.png deleted file mode 100755 index 31b0b9a2..00000000 Binary files a/static/icons/060034DF.png and /dev/null differ diff --git a/static/icons/060034E0.png b/static/icons/060034E0.png deleted file mode 100755 index c4002198..00000000 Binary files a/static/icons/060034E0.png and /dev/null differ diff --git a/static/icons/060034E1.png b/static/icons/060034E1.png deleted file mode 100755 index 23800c3c..00000000 Binary files a/static/icons/060034E1.png and /dev/null differ diff --git a/static/icons/060034E2.png b/static/icons/060034E2.png deleted file mode 100755 index 4f52390d..00000000 Binary files a/static/icons/060034E2.png and /dev/null differ diff --git a/static/icons/060034E3.png b/static/icons/060034E3.png deleted file mode 100755 index d33beee6..00000000 Binary files a/static/icons/060034E3.png and /dev/null differ diff --git a/static/icons/060034E4.png b/static/icons/060034E4.png deleted file mode 100755 index 9b321ac2..00000000 Binary files a/static/icons/060034E4.png and /dev/null differ diff --git a/static/icons/060034E5.png b/static/icons/060034E5.png deleted file mode 100755 index dc652436..00000000 Binary files a/static/icons/060034E5.png and /dev/null differ diff --git a/static/icons/060034E6.png b/static/icons/060034E6.png deleted file mode 100755 index 2de1cef7..00000000 Binary files a/static/icons/060034E6.png and /dev/null differ diff --git a/static/icons/060034E7.png b/static/icons/060034E7.png deleted file mode 100755 index 5097486d..00000000 Binary files a/static/icons/060034E7.png and /dev/null differ diff --git a/static/icons/060034E8.png b/static/icons/060034E8.png deleted file mode 100755 index ec6a6fa0..00000000 Binary files a/static/icons/060034E8.png and /dev/null differ diff --git a/static/icons/060034E9.png b/static/icons/060034E9.png deleted file mode 100755 index 911309b1..00000000 Binary files a/static/icons/060034E9.png and /dev/null differ diff --git a/static/icons/060034EA.png b/static/icons/060034EA.png deleted file mode 100755 index 600b180b..00000000 Binary files a/static/icons/060034EA.png and /dev/null differ diff --git a/static/icons/060034EB.png b/static/icons/060034EB.png deleted file mode 100755 index da29d30a..00000000 Binary files a/static/icons/060034EB.png and /dev/null differ diff --git a/static/icons/060034EC.png b/static/icons/060034EC.png deleted file mode 100755 index 92512416..00000000 Binary files a/static/icons/060034EC.png and /dev/null differ diff --git a/static/icons/060034ED.png b/static/icons/060034ED.png deleted file mode 100755 index 51670deb..00000000 Binary files a/static/icons/060034ED.png and /dev/null differ diff --git a/static/icons/060034EE.png b/static/icons/060034EE.png deleted file mode 100755 index 0a80c568..00000000 Binary files a/static/icons/060034EE.png and /dev/null differ diff --git a/static/icons/060034EF.png b/static/icons/060034EF.png deleted file mode 100755 index 494c8c1b..00000000 Binary files a/static/icons/060034EF.png and /dev/null differ diff --git a/static/icons/060034F0.png b/static/icons/060034F0.png deleted file mode 100755 index f8fe73b2..00000000 Binary files a/static/icons/060034F0.png and /dev/null differ diff --git a/static/icons/060034F1.png b/static/icons/060034F1.png deleted file mode 100755 index b9ccf33c..00000000 Binary files a/static/icons/060034F1.png and /dev/null differ diff --git a/static/icons/060034F2.png b/static/icons/060034F2.png deleted file mode 100755 index aeab493f..00000000 Binary files a/static/icons/060034F2.png and /dev/null differ diff --git a/static/icons/060034F3.png b/static/icons/060034F3.png deleted file mode 100755 index 5a4b07e5..00000000 Binary files a/static/icons/060034F3.png and /dev/null differ diff --git a/static/icons/060034F4.png b/static/icons/060034F4.png deleted file mode 100755 index 67962088..00000000 Binary files a/static/icons/060034F4.png and /dev/null differ diff --git a/static/icons/060034F5.png b/static/icons/060034F5.png deleted file mode 100755 index 159ec61b..00000000 Binary files a/static/icons/060034F5.png and /dev/null differ diff --git a/static/icons/060034F6.png b/static/icons/060034F6.png deleted file mode 100755 index 0f9ff2e3..00000000 Binary files a/static/icons/060034F6.png and /dev/null differ diff --git a/static/icons/060034F7.png b/static/icons/060034F7.png deleted file mode 100755 index 171bed03..00000000 Binary files a/static/icons/060034F7.png and /dev/null differ diff --git a/static/icons/060034F8.png b/static/icons/060034F8.png deleted file mode 100755 index 9c5d8f60..00000000 Binary files a/static/icons/060034F8.png and /dev/null differ diff --git a/static/icons/060034F9.png b/static/icons/060034F9.png deleted file mode 100755 index bf6191a5..00000000 Binary files a/static/icons/060034F9.png and /dev/null differ diff --git a/static/icons/060034FA.png b/static/icons/060034FA.png deleted file mode 100755 index aad70961..00000000 Binary files a/static/icons/060034FA.png and /dev/null differ diff --git a/static/icons/060034FB.png b/static/icons/060034FB.png deleted file mode 100755 index 85691ba3..00000000 Binary files a/static/icons/060034FB.png and /dev/null differ diff --git a/static/icons/060034FC.png b/static/icons/060034FC.png deleted file mode 100755 index 7e73b45f..00000000 Binary files a/static/icons/060034FC.png and /dev/null differ diff --git a/static/icons/060034FD.png b/static/icons/060034FD.png deleted file mode 100755 index 82442d78..00000000 Binary files a/static/icons/060034FD.png and /dev/null differ diff --git a/static/icons/060034FE.png b/static/icons/060034FE.png deleted file mode 100755 index 78790781..00000000 Binary files a/static/icons/060034FE.png and /dev/null differ diff --git a/static/icons/060034FF.png b/static/icons/060034FF.png deleted file mode 100755 index 5cb056e5..00000000 Binary files a/static/icons/060034FF.png and /dev/null differ diff --git a/static/icons/06003500.png b/static/icons/06003500.png deleted file mode 100755 index 29a0f2c6..00000000 Binary files a/static/icons/06003500.png and /dev/null differ diff --git a/static/icons/06003501.png b/static/icons/06003501.png deleted file mode 100755 index 671bcb45..00000000 Binary files a/static/icons/06003501.png and /dev/null differ diff --git a/static/icons/06003502.png b/static/icons/06003502.png deleted file mode 100755 index 900e1858..00000000 Binary files a/static/icons/06003502.png and /dev/null differ diff --git a/static/icons/06003503.png b/static/icons/06003503.png deleted file mode 100755 index 30e9beb1..00000000 Binary files a/static/icons/06003503.png and /dev/null differ diff --git a/static/icons/06003504.png b/static/icons/06003504.png deleted file mode 100755 index 86a60720..00000000 Binary files a/static/icons/06003504.png and /dev/null differ diff --git a/static/icons/06003505.png b/static/icons/06003505.png deleted file mode 100755 index 8f25c70b..00000000 Binary files a/static/icons/06003505.png and /dev/null differ diff --git a/static/icons/06003507.png b/static/icons/06003507.png deleted file mode 100755 index c084506f..00000000 Binary files a/static/icons/06003507.png and /dev/null differ diff --git a/static/icons/06003508.png b/static/icons/06003508.png deleted file mode 100755 index 5a07ee28..00000000 Binary files a/static/icons/06003508.png and /dev/null differ diff --git a/static/icons/06003509.png b/static/icons/06003509.png deleted file mode 100755 index 26a5aaf7..00000000 Binary files a/static/icons/06003509.png and /dev/null differ diff --git a/static/icons/0600350A.png b/static/icons/0600350A.png deleted file mode 100755 index ff9372c0..00000000 Binary files a/static/icons/0600350A.png and /dev/null differ diff --git a/static/icons/0600350B.png b/static/icons/0600350B.png deleted file mode 100755 index 7bd1a9ce..00000000 Binary files a/static/icons/0600350B.png and /dev/null differ diff --git a/static/icons/0600350C.png b/static/icons/0600350C.png deleted file mode 100755 index 491edd6c..00000000 Binary files a/static/icons/0600350C.png and /dev/null differ diff --git a/static/icons/0600350D.png b/static/icons/0600350D.png deleted file mode 100755 index 4ad97d4b..00000000 Binary files a/static/icons/0600350D.png and /dev/null differ diff --git a/static/icons/0600350E.png b/static/icons/0600350E.png deleted file mode 100755 index 9c21eb74..00000000 Binary files a/static/icons/0600350E.png and /dev/null differ diff --git a/static/icons/0600350F.png b/static/icons/0600350F.png deleted file mode 100755 index 954054c1..00000000 Binary files a/static/icons/0600350F.png and /dev/null differ diff --git a/static/icons/06003510.png b/static/icons/06003510.png deleted file mode 100755 index dff07a7d..00000000 Binary files a/static/icons/06003510.png and /dev/null differ diff --git a/static/icons/06003511.png b/static/icons/06003511.png deleted file mode 100755 index 33d55429..00000000 Binary files a/static/icons/06003511.png and /dev/null differ diff --git a/static/icons/06003512.png b/static/icons/06003512.png deleted file mode 100755 index 3e45b294..00000000 Binary files a/static/icons/06003512.png and /dev/null differ diff --git a/static/icons/06003513.png b/static/icons/06003513.png deleted file mode 100755 index 4372f3fa..00000000 Binary files a/static/icons/06003513.png and /dev/null differ diff --git a/static/icons/06003514.png b/static/icons/06003514.png deleted file mode 100755 index 879b464b..00000000 Binary files a/static/icons/06003514.png and /dev/null differ diff --git a/static/icons/06003515.png b/static/icons/06003515.png deleted file mode 100755 index d2bb59fc..00000000 Binary files a/static/icons/06003515.png and /dev/null differ diff --git a/static/icons/06003516.png b/static/icons/06003516.png deleted file mode 100755 index cbcc1ec3..00000000 Binary files a/static/icons/06003516.png and /dev/null differ diff --git a/static/icons/06003517.png b/static/icons/06003517.png deleted file mode 100755 index 54b1f311..00000000 Binary files a/static/icons/06003517.png and /dev/null differ diff --git a/static/icons/06003518.png b/static/icons/06003518.png deleted file mode 100755 index 86a27a0c..00000000 Binary files a/static/icons/06003518.png and /dev/null differ diff --git a/static/icons/06003519.png b/static/icons/06003519.png deleted file mode 100755 index fe471977..00000000 Binary files a/static/icons/06003519.png and /dev/null differ diff --git a/static/icons/0600351A.png b/static/icons/0600351A.png deleted file mode 100755 index cdfbb1eb..00000000 Binary files a/static/icons/0600351A.png and /dev/null differ diff --git a/static/icons/0600351B.png b/static/icons/0600351B.png deleted file mode 100755 index f9ee057c..00000000 Binary files a/static/icons/0600351B.png and /dev/null differ diff --git a/static/icons/0600351C.png b/static/icons/0600351C.png deleted file mode 100755 index 533c2428..00000000 Binary files a/static/icons/0600351C.png and /dev/null differ diff --git a/static/icons/0600351D.png b/static/icons/0600351D.png deleted file mode 100755 index 448e609d..00000000 Binary files a/static/icons/0600351D.png and /dev/null differ diff --git a/static/icons/0600351E.png b/static/icons/0600351E.png deleted file mode 100755 index 1ac88613..00000000 Binary files a/static/icons/0600351E.png and /dev/null differ diff --git a/static/icons/0600351F.png b/static/icons/0600351F.png deleted file mode 100755 index 023b55c8..00000000 Binary files a/static/icons/0600351F.png and /dev/null differ diff --git a/static/icons/06003520.png b/static/icons/06003520.png deleted file mode 100755 index 81161239..00000000 Binary files a/static/icons/06003520.png and /dev/null differ diff --git a/static/icons/06003521.png b/static/icons/06003521.png deleted file mode 100755 index ff15fa42..00000000 Binary files a/static/icons/06003521.png and /dev/null differ diff --git a/static/icons/06003522.png b/static/icons/06003522.png deleted file mode 100755 index f5f35ac4..00000000 Binary files a/static/icons/06003522.png and /dev/null differ diff --git a/static/icons/06003523.png b/static/icons/06003523.png deleted file mode 100755 index 9fd5f1fb..00000000 Binary files a/static/icons/06003523.png and /dev/null differ diff --git a/static/icons/06003524.png b/static/icons/06003524.png deleted file mode 100755 index cc7fce13..00000000 Binary files a/static/icons/06003524.png and /dev/null differ diff --git a/static/icons/06003525.png b/static/icons/06003525.png deleted file mode 100755 index 7316a1e0..00000000 Binary files a/static/icons/06003525.png and /dev/null differ diff --git a/static/icons/06003526.png b/static/icons/06003526.png deleted file mode 100755 index b6837f5c..00000000 Binary files a/static/icons/06003526.png and /dev/null differ diff --git a/static/icons/06003527.png b/static/icons/06003527.png deleted file mode 100755 index bfa8a1c4..00000000 Binary files a/static/icons/06003527.png and /dev/null differ diff --git a/static/icons/06003528.png b/static/icons/06003528.png deleted file mode 100755 index f6e93f94..00000000 Binary files a/static/icons/06003528.png and /dev/null differ diff --git a/static/icons/06003529.png b/static/icons/06003529.png deleted file mode 100755 index c60981db..00000000 Binary files a/static/icons/06003529.png and /dev/null differ diff --git a/static/icons/0600352A.png b/static/icons/0600352A.png deleted file mode 100755 index 9e4cea9e..00000000 Binary files a/static/icons/0600352A.png and /dev/null differ diff --git a/static/icons/0600352B.png b/static/icons/0600352B.png deleted file mode 100755 index 2361a147..00000000 Binary files a/static/icons/0600352B.png and /dev/null differ diff --git a/static/icons/0600352C.png b/static/icons/0600352C.png deleted file mode 100755 index f9061d04..00000000 Binary files a/static/icons/0600352C.png and /dev/null differ diff --git a/static/icons/0600352D.png b/static/icons/0600352D.png deleted file mode 100755 index b30a81f3..00000000 Binary files a/static/icons/0600352D.png and /dev/null differ diff --git a/static/icons/0600352E.png b/static/icons/0600352E.png deleted file mode 100755 index e41ff858..00000000 Binary files a/static/icons/0600352E.png and /dev/null differ diff --git a/static/icons/0600352F.png b/static/icons/0600352F.png deleted file mode 100755 index 9e8cb794..00000000 Binary files a/static/icons/0600352F.png and /dev/null differ diff --git a/static/icons/06003530.png b/static/icons/06003530.png deleted file mode 100755 index 3f2c16b9..00000000 Binary files a/static/icons/06003530.png and /dev/null differ diff --git a/static/icons/06003531.png b/static/icons/06003531.png deleted file mode 100755 index 675f275d..00000000 Binary files a/static/icons/06003531.png and /dev/null differ diff --git a/static/icons/06003532.png b/static/icons/06003532.png deleted file mode 100755 index affefb32..00000000 Binary files a/static/icons/06003532.png and /dev/null differ diff --git a/static/icons/06003533.png b/static/icons/06003533.png deleted file mode 100755 index 7c9914f2..00000000 Binary files a/static/icons/06003533.png and /dev/null differ diff --git a/static/icons/06003534.png b/static/icons/06003534.png deleted file mode 100755 index 760b9139..00000000 Binary files a/static/icons/06003534.png and /dev/null differ diff --git a/static/icons/06003535.png b/static/icons/06003535.png deleted file mode 100755 index b1b3e441..00000000 Binary files a/static/icons/06003535.png and /dev/null differ diff --git a/static/icons/06003536.png b/static/icons/06003536.png deleted file mode 100755 index d043c420..00000000 Binary files a/static/icons/06003536.png and /dev/null differ diff --git a/static/icons/06003537.png b/static/icons/06003537.png deleted file mode 100755 index b22dd539..00000000 Binary files a/static/icons/06003537.png and /dev/null differ diff --git a/static/icons/06003538.png b/static/icons/06003538.png deleted file mode 100755 index 114a4c09..00000000 Binary files a/static/icons/06003538.png and /dev/null differ diff --git a/static/icons/06003539.png b/static/icons/06003539.png deleted file mode 100755 index 56098903..00000000 Binary files a/static/icons/06003539.png and /dev/null differ diff --git a/static/icons/0600353A.png b/static/icons/0600353A.png deleted file mode 100755 index 5633a41e..00000000 Binary files a/static/icons/0600353A.png and /dev/null differ diff --git a/static/icons/0600353B.png b/static/icons/0600353B.png deleted file mode 100755 index f996a084..00000000 Binary files a/static/icons/0600353B.png and /dev/null differ diff --git a/static/icons/0600353C.png b/static/icons/0600353C.png deleted file mode 100755 index b36d4ae0..00000000 Binary files a/static/icons/0600353C.png and /dev/null differ diff --git a/static/icons/0600353D.png b/static/icons/0600353D.png deleted file mode 100755 index 29a16fa6..00000000 Binary files a/static/icons/0600353D.png and /dev/null differ diff --git a/static/icons/0600353E.png b/static/icons/0600353E.png deleted file mode 100755 index bc8ab7a0..00000000 Binary files a/static/icons/0600353E.png and /dev/null differ diff --git a/static/icons/0600353F.png b/static/icons/0600353F.png deleted file mode 100755 index 0137f33e..00000000 Binary files a/static/icons/0600353F.png and /dev/null differ diff --git a/static/icons/06003540.png b/static/icons/06003540.png deleted file mode 100755 index ee131014..00000000 Binary files a/static/icons/06003540.png and /dev/null differ diff --git a/static/icons/06003541.png b/static/icons/06003541.png deleted file mode 100755 index 97c1998f..00000000 Binary files a/static/icons/06003541.png and /dev/null differ diff --git a/static/icons/06003542.png b/static/icons/06003542.png deleted file mode 100755 index 239a6ed6..00000000 Binary files a/static/icons/06003542.png and /dev/null differ diff --git a/static/icons/06003543.png b/static/icons/06003543.png deleted file mode 100755 index b7ea8fc1..00000000 Binary files a/static/icons/06003543.png and /dev/null differ diff --git a/static/icons/06003544.png b/static/icons/06003544.png deleted file mode 100755 index b82e089d..00000000 Binary files a/static/icons/06003544.png and /dev/null differ diff --git a/static/icons/06003545.png b/static/icons/06003545.png deleted file mode 100755 index cb8e9d59..00000000 Binary files a/static/icons/06003545.png and /dev/null differ diff --git a/static/icons/06003546.png b/static/icons/06003546.png deleted file mode 100755 index cf8b8487..00000000 Binary files a/static/icons/06003546.png and /dev/null differ diff --git a/static/icons/06003547.png b/static/icons/06003547.png deleted file mode 100755 index fff78636..00000000 Binary files a/static/icons/06003547.png and /dev/null differ diff --git a/static/icons/06003548.png b/static/icons/06003548.png deleted file mode 100755 index 6f4506c5..00000000 Binary files a/static/icons/06003548.png and /dev/null differ diff --git a/static/icons/06003549.png b/static/icons/06003549.png deleted file mode 100755 index 5735d2f2..00000000 Binary files a/static/icons/06003549.png and /dev/null differ diff --git a/static/icons/0600354A.png b/static/icons/0600354A.png deleted file mode 100755 index 0632ad43..00000000 Binary files a/static/icons/0600354A.png and /dev/null differ diff --git a/static/icons/0600354B.png b/static/icons/0600354B.png deleted file mode 100755 index 84addb9c..00000000 Binary files a/static/icons/0600354B.png and /dev/null differ diff --git a/static/icons/0600354C.png b/static/icons/0600354C.png deleted file mode 100755 index f27719fd..00000000 Binary files a/static/icons/0600354C.png and /dev/null differ diff --git a/static/icons/0600354D.png b/static/icons/0600354D.png deleted file mode 100755 index 146c016e..00000000 Binary files a/static/icons/0600354D.png and /dev/null differ diff --git a/static/icons/0600354E.png b/static/icons/0600354E.png deleted file mode 100755 index 465e7816..00000000 Binary files a/static/icons/0600354E.png and /dev/null differ diff --git a/static/icons/0600354F.png b/static/icons/0600354F.png deleted file mode 100755 index 9c59a839..00000000 Binary files a/static/icons/0600354F.png and /dev/null differ diff --git a/static/icons/06003550.png b/static/icons/06003550.png deleted file mode 100755 index 6bd0d864..00000000 Binary files a/static/icons/06003550.png and /dev/null differ diff --git a/static/icons/06003551.png b/static/icons/06003551.png deleted file mode 100755 index c2a99d99..00000000 Binary files a/static/icons/06003551.png and /dev/null differ diff --git a/static/icons/06003552.png b/static/icons/06003552.png deleted file mode 100755 index e40f4eb9..00000000 Binary files a/static/icons/06003552.png and /dev/null differ diff --git a/static/icons/06003553.png b/static/icons/06003553.png deleted file mode 100755 index 81565742..00000000 Binary files a/static/icons/06003553.png and /dev/null differ diff --git a/static/icons/06003554.png b/static/icons/06003554.png deleted file mode 100755 index f6dfc230..00000000 Binary files a/static/icons/06003554.png and /dev/null differ diff --git a/static/icons/06003555.png b/static/icons/06003555.png deleted file mode 100755 index 1ac398fb..00000000 Binary files a/static/icons/06003555.png and /dev/null differ diff --git a/static/icons/06003556.png b/static/icons/06003556.png deleted file mode 100755 index 08c81c23..00000000 Binary files a/static/icons/06003556.png and /dev/null differ diff --git a/static/icons/06003557.png b/static/icons/06003557.png deleted file mode 100755 index d6001490..00000000 Binary files a/static/icons/06003557.png and /dev/null differ diff --git a/static/icons/06003558.png b/static/icons/06003558.png deleted file mode 100755 index 75627452..00000000 Binary files a/static/icons/06003558.png and /dev/null differ diff --git a/static/icons/06003559.png b/static/icons/06003559.png deleted file mode 100755 index 93e5c2db..00000000 Binary files a/static/icons/06003559.png and /dev/null differ diff --git a/static/icons/0600355A.png b/static/icons/0600355A.png deleted file mode 100755 index 3645f51b..00000000 Binary files a/static/icons/0600355A.png and /dev/null differ diff --git a/static/icons/0600355B.png b/static/icons/0600355B.png deleted file mode 100755 index 0e9607ff..00000000 Binary files a/static/icons/0600355B.png and /dev/null differ diff --git a/static/icons/0600355C.png b/static/icons/0600355C.png deleted file mode 100755 index eee4be0b..00000000 Binary files a/static/icons/0600355C.png and /dev/null differ diff --git a/static/icons/0600355D.png b/static/icons/0600355D.png deleted file mode 100755 index 2f57ce0d..00000000 Binary files a/static/icons/0600355D.png and /dev/null differ diff --git a/static/icons/0600355E.png b/static/icons/0600355E.png deleted file mode 100755 index b72c2d9b..00000000 Binary files a/static/icons/0600355E.png and /dev/null differ diff --git a/static/icons/0600355F.png b/static/icons/0600355F.png deleted file mode 100755 index 80530994..00000000 Binary files a/static/icons/0600355F.png and /dev/null differ diff --git a/static/icons/06003560.png b/static/icons/06003560.png deleted file mode 100755 index 0f9d1d76..00000000 Binary files a/static/icons/06003560.png and /dev/null differ diff --git a/static/icons/06003561.png b/static/icons/06003561.png deleted file mode 100755 index 5f2e0038..00000000 Binary files a/static/icons/06003561.png and /dev/null differ diff --git a/static/icons/06003562.png b/static/icons/06003562.png deleted file mode 100755 index fe3233c9..00000000 Binary files a/static/icons/06003562.png and /dev/null differ diff --git a/static/icons/06003563.png b/static/icons/06003563.png deleted file mode 100755 index 7c559182..00000000 Binary files a/static/icons/06003563.png and /dev/null differ diff --git a/static/icons/06003564.png b/static/icons/06003564.png deleted file mode 100755 index 17d6abe4..00000000 Binary files a/static/icons/06003564.png and /dev/null differ diff --git a/static/icons/06003565.png b/static/icons/06003565.png deleted file mode 100755 index 461ccf42..00000000 Binary files a/static/icons/06003565.png and /dev/null differ diff --git a/static/icons/06003566.png b/static/icons/06003566.png deleted file mode 100755 index f5fbeef9..00000000 Binary files a/static/icons/06003566.png and /dev/null differ diff --git a/static/icons/06003567.png b/static/icons/06003567.png deleted file mode 100755 index e4047366..00000000 Binary files a/static/icons/06003567.png and /dev/null differ diff --git a/static/icons/06003568.png b/static/icons/06003568.png deleted file mode 100755 index d7585c71..00000000 Binary files a/static/icons/06003568.png and /dev/null differ diff --git a/static/icons/06003569.png b/static/icons/06003569.png deleted file mode 100755 index 053e5581..00000000 Binary files a/static/icons/06003569.png and /dev/null differ diff --git a/static/icons/0600356A.png b/static/icons/0600356A.png deleted file mode 100755 index 905b6bc5..00000000 Binary files a/static/icons/0600356A.png and /dev/null differ diff --git a/static/icons/0600356B.png b/static/icons/0600356B.png deleted file mode 100755 index d03cf559..00000000 Binary files a/static/icons/0600356B.png and /dev/null differ diff --git a/static/icons/0600356C.png b/static/icons/0600356C.png deleted file mode 100755 index 3561c4b3..00000000 Binary files a/static/icons/0600356C.png and /dev/null differ diff --git a/static/icons/0600356D.png b/static/icons/0600356D.png deleted file mode 100755 index 52c56049..00000000 Binary files a/static/icons/0600356D.png and /dev/null differ diff --git a/static/icons/0600356E.png b/static/icons/0600356E.png deleted file mode 100755 index 2fb8b5f1..00000000 Binary files a/static/icons/0600356E.png and /dev/null differ diff --git a/static/icons/0600356F.png b/static/icons/0600356F.png deleted file mode 100755 index 91c57485..00000000 Binary files a/static/icons/0600356F.png and /dev/null differ diff --git a/static/icons/06003570.png b/static/icons/06003570.png deleted file mode 100755 index e636d401..00000000 Binary files a/static/icons/06003570.png and /dev/null differ diff --git a/static/icons/06003571.png b/static/icons/06003571.png deleted file mode 100755 index fd5008b5..00000000 Binary files a/static/icons/06003571.png and /dev/null differ diff --git a/static/icons/06003572.png b/static/icons/06003572.png deleted file mode 100755 index e0c3d1db..00000000 Binary files a/static/icons/06003572.png and /dev/null differ diff --git a/static/icons/06003573.png b/static/icons/06003573.png deleted file mode 100755 index ad5eb163..00000000 Binary files a/static/icons/06003573.png and /dev/null differ diff --git a/static/icons/06003574.png b/static/icons/06003574.png deleted file mode 100755 index 1efdb43d..00000000 Binary files a/static/icons/06003574.png and /dev/null differ diff --git a/static/icons/06003575.png b/static/icons/06003575.png deleted file mode 100755 index 9cb1547d..00000000 Binary files a/static/icons/06003575.png and /dev/null differ diff --git a/static/icons/06003576.png b/static/icons/06003576.png deleted file mode 100755 index f8a9316f..00000000 Binary files a/static/icons/06003576.png and /dev/null differ diff --git a/static/icons/06003577.png b/static/icons/06003577.png deleted file mode 100755 index 9c767e76..00000000 Binary files a/static/icons/06003577.png and /dev/null differ diff --git a/static/icons/06003578.png b/static/icons/06003578.png deleted file mode 100755 index 71cde6a2..00000000 Binary files a/static/icons/06003578.png and /dev/null differ diff --git a/static/icons/06003579.png b/static/icons/06003579.png deleted file mode 100755 index 7bf311b0..00000000 Binary files a/static/icons/06003579.png and /dev/null differ diff --git a/static/icons/0600357A.png b/static/icons/0600357A.png deleted file mode 100755 index afb4d31b..00000000 Binary files a/static/icons/0600357A.png and /dev/null differ diff --git a/static/icons/0600357B.png b/static/icons/0600357B.png deleted file mode 100755 index 9e7bd81c..00000000 Binary files a/static/icons/0600357B.png and /dev/null differ diff --git a/static/icons/0600357C.png b/static/icons/0600357C.png deleted file mode 100755 index 7aa18636..00000000 Binary files a/static/icons/0600357C.png and /dev/null differ diff --git a/static/icons/0600357D.png b/static/icons/0600357D.png deleted file mode 100755 index 96ae1883..00000000 Binary files a/static/icons/0600357D.png and /dev/null differ diff --git a/static/icons/0600357E.png b/static/icons/0600357E.png deleted file mode 100755 index f1f37a0a..00000000 Binary files a/static/icons/0600357E.png and /dev/null differ diff --git a/static/icons/0600357F.png b/static/icons/0600357F.png deleted file mode 100755 index 92f2d800..00000000 Binary files a/static/icons/0600357F.png and /dev/null differ diff --git a/static/icons/06003580.png b/static/icons/06003580.png deleted file mode 100755 index 146ca744..00000000 Binary files a/static/icons/06003580.png and /dev/null differ diff --git a/static/icons/06003581.png b/static/icons/06003581.png deleted file mode 100755 index 289a71e1..00000000 Binary files a/static/icons/06003581.png and /dev/null differ diff --git a/static/icons/06003582.png b/static/icons/06003582.png deleted file mode 100755 index e69ce9ae..00000000 Binary files a/static/icons/06003582.png and /dev/null differ diff --git a/static/icons/06003583.png b/static/icons/06003583.png deleted file mode 100755 index 39d4f2dc..00000000 Binary files a/static/icons/06003583.png and /dev/null differ diff --git a/static/icons/06003584.png b/static/icons/06003584.png deleted file mode 100755 index 44483867..00000000 Binary files a/static/icons/06003584.png and /dev/null differ diff --git a/static/icons/06003585.png b/static/icons/06003585.png deleted file mode 100755 index d0257570..00000000 Binary files a/static/icons/06003585.png and /dev/null differ diff --git a/static/icons/06003586.png b/static/icons/06003586.png deleted file mode 100755 index be794aa8..00000000 Binary files a/static/icons/06003586.png and /dev/null differ diff --git a/static/icons/06003587.png b/static/icons/06003587.png deleted file mode 100755 index 886c4c9c..00000000 Binary files a/static/icons/06003587.png and /dev/null differ diff --git a/static/icons/06003588.png b/static/icons/06003588.png deleted file mode 100755 index dc66a922..00000000 Binary files a/static/icons/06003588.png and /dev/null differ diff --git a/static/icons/06003589.png b/static/icons/06003589.png deleted file mode 100755 index bf2d3e21..00000000 Binary files a/static/icons/06003589.png and /dev/null differ diff --git a/static/icons/0600358A.png b/static/icons/0600358A.png deleted file mode 100755 index cff38857..00000000 Binary files a/static/icons/0600358A.png and /dev/null differ diff --git a/static/icons/0600358B.png b/static/icons/0600358B.png deleted file mode 100755 index 3fb38e52..00000000 Binary files a/static/icons/0600358B.png and /dev/null differ diff --git a/static/icons/0600358C.png b/static/icons/0600358C.png deleted file mode 100755 index e1fc7e3d..00000000 Binary files a/static/icons/0600358C.png and /dev/null differ diff --git a/static/icons/0600358D.png b/static/icons/0600358D.png deleted file mode 100755 index a950a819..00000000 Binary files a/static/icons/0600358D.png and /dev/null differ diff --git a/static/icons/0600358F.png b/static/icons/0600358F.png deleted file mode 100755 index 89153c16..00000000 Binary files a/static/icons/0600358F.png and /dev/null differ diff --git a/static/icons/06003590.png b/static/icons/06003590.png deleted file mode 100755 index 51db08a3..00000000 Binary files a/static/icons/06003590.png and /dev/null differ diff --git a/static/icons/06003591.png b/static/icons/06003591.png deleted file mode 100755 index bee80785..00000000 Binary files a/static/icons/06003591.png and /dev/null differ diff --git a/static/icons/06003592.png b/static/icons/06003592.png deleted file mode 100755 index b5835aa9..00000000 Binary files a/static/icons/06003592.png and /dev/null differ diff --git a/static/icons/06003593.png b/static/icons/06003593.png deleted file mode 100755 index 9a242d47..00000000 Binary files a/static/icons/06003593.png and /dev/null differ diff --git a/static/icons/06003594.png b/static/icons/06003594.png deleted file mode 100755 index 1dee2df9..00000000 Binary files a/static/icons/06003594.png and /dev/null differ diff --git a/static/icons/06003595.png b/static/icons/06003595.png deleted file mode 100755 index d9bcd371..00000000 Binary files a/static/icons/06003595.png and /dev/null differ diff --git a/static/icons/06003596.png b/static/icons/06003596.png deleted file mode 100755 index 6c87633f..00000000 Binary files a/static/icons/06003596.png and /dev/null differ diff --git a/static/icons/06003597.png b/static/icons/06003597.png deleted file mode 100755 index 262416f7..00000000 Binary files a/static/icons/06003597.png and /dev/null differ diff --git a/static/icons/06003598.png b/static/icons/06003598.png deleted file mode 100755 index 918d1db1..00000000 Binary files a/static/icons/06003598.png and /dev/null differ diff --git a/static/icons/06003599.png b/static/icons/06003599.png deleted file mode 100755 index bc988d19..00000000 Binary files a/static/icons/06003599.png and /dev/null differ diff --git a/static/icons/0600359A.png b/static/icons/0600359A.png deleted file mode 100755 index 6e8f62d0..00000000 Binary files a/static/icons/0600359A.png and /dev/null differ diff --git a/static/icons/0600359B.png b/static/icons/0600359B.png deleted file mode 100755 index 7d3d4538..00000000 Binary files a/static/icons/0600359B.png and /dev/null differ diff --git a/static/icons/0600359C.png b/static/icons/0600359C.png deleted file mode 100755 index fc2720b1..00000000 Binary files a/static/icons/0600359C.png and /dev/null differ diff --git a/static/icons/0600359D.png b/static/icons/0600359D.png deleted file mode 100755 index cfbf5aa5..00000000 Binary files a/static/icons/0600359D.png and /dev/null differ diff --git a/static/icons/0600359E.png b/static/icons/0600359E.png deleted file mode 100755 index f3af2891..00000000 Binary files a/static/icons/0600359E.png and /dev/null differ diff --git a/static/icons/0600359F.png b/static/icons/0600359F.png deleted file mode 100755 index 22de72d8..00000000 Binary files a/static/icons/0600359F.png and /dev/null differ diff --git a/static/icons/060035A0.png b/static/icons/060035A0.png deleted file mode 100755 index 4b1ba6d7..00000000 Binary files a/static/icons/060035A0.png and /dev/null differ diff --git a/static/icons/060035A1.png b/static/icons/060035A1.png deleted file mode 100755 index 20d5cffc..00000000 Binary files a/static/icons/060035A1.png and /dev/null differ diff --git a/static/icons/060035A2.png b/static/icons/060035A2.png deleted file mode 100755 index bf8b08fc..00000000 Binary files a/static/icons/060035A2.png and /dev/null differ diff --git a/static/icons/060035A3.png b/static/icons/060035A3.png deleted file mode 100755 index 4cb77c4e..00000000 Binary files a/static/icons/060035A3.png and /dev/null differ diff --git a/static/icons/060035A4.png b/static/icons/060035A4.png deleted file mode 100755 index b131abfb..00000000 Binary files a/static/icons/060035A4.png and /dev/null differ diff --git a/static/icons/060035A5.png b/static/icons/060035A5.png deleted file mode 100755 index c7de37e8..00000000 Binary files a/static/icons/060035A5.png and /dev/null differ diff --git a/static/icons/060035A6.png b/static/icons/060035A6.png deleted file mode 100755 index 8f220f87..00000000 Binary files a/static/icons/060035A6.png and /dev/null differ diff --git a/static/icons/060035A8.png b/static/icons/060035A8.png deleted file mode 100755 index fc08dc48..00000000 Binary files a/static/icons/060035A8.png and /dev/null differ diff --git a/static/icons/060035A9.png b/static/icons/060035A9.png deleted file mode 100755 index ed72b0a6..00000000 Binary files a/static/icons/060035A9.png and /dev/null differ diff --git a/static/icons/060035AA.png b/static/icons/060035AA.png deleted file mode 100755 index 79c02c1c..00000000 Binary files a/static/icons/060035AA.png and /dev/null differ diff --git a/static/icons/060035AB.png b/static/icons/060035AB.png deleted file mode 100755 index e2014e69..00000000 Binary files a/static/icons/060035AB.png and /dev/null differ diff --git a/static/icons/060035AC.png b/static/icons/060035AC.png deleted file mode 100755 index 35adaff3..00000000 Binary files a/static/icons/060035AC.png and /dev/null differ diff --git a/static/icons/060035AD.png b/static/icons/060035AD.png deleted file mode 100755 index e6cd0b0a..00000000 Binary files a/static/icons/060035AD.png and /dev/null differ diff --git a/static/icons/060035AE.png b/static/icons/060035AE.png deleted file mode 100755 index 1f7f9868..00000000 Binary files a/static/icons/060035AE.png and /dev/null differ diff --git a/static/icons/060035AF.png b/static/icons/060035AF.png deleted file mode 100755 index 3e25c3ea..00000000 Binary files a/static/icons/060035AF.png and /dev/null differ diff --git a/static/icons/060035B0.png b/static/icons/060035B0.png deleted file mode 100755 index bb4d12d5..00000000 Binary files a/static/icons/060035B0.png and /dev/null differ diff --git a/static/icons/060035B1.png b/static/icons/060035B1.png deleted file mode 100755 index da4f9eb1..00000000 Binary files a/static/icons/060035B1.png and /dev/null differ diff --git a/static/icons/060035B2.png b/static/icons/060035B2.png deleted file mode 100755 index 912c896e..00000000 Binary files a/static/icons/060035B2.png and /dev/null differ diff --git a/static/icons/060035B3.png b/static/icons/060035B3.png deleted file mode 100755 index 63132573..00000000 Binary files a/static/icons/060035B3.png and /dev/null differ diff --git a/static/icons/060035B4.png b/static/icons/060035B4.png deleted file mode 100755 index 24895743..00000000 Binary files a/static/icons/060035B4.png and /dev/null differ diff --git a/static/icons/060035B5.png b/static/icons/060035B5.png deleted file mode 100755 index 873d2a4c..00000000 Binary files a/static/icons/060035B5.png and /dev/null differ diff --git a/static/icons/060035B6.png b/static/icons/060035B6.png deleted file mode 100755 index 70dc852f..00000000 Binary files a/static/icons/060035B6.png and /dev/null differ diff --git a/static/icons/060035B7.png b/static/icons/060035B7.png deleted file mode 100755 index ad151232..00000000 Binary files a/static/icons/060035B7.png and /dev/null differ diff --git a/static/icons/060035B8.png b/static/icons/060035B8.png deleted file mode 100755 index 3bba75f1..00000000 Binary files a/static/icons/060035B8.png and /dev/null differ diff --git a/static/icons/060035B9.png b/static/icons/060035B9.png deleted file mode 100755 index d8f584d6..00000000 Binary files a/static/icons/060035B9.png and /dev/null differ diff --git a/static/icons/060035BA.png b/static/icons/060035BA.png deleted file mode 100755 index 2a3ac47e..00000000 Binary files a/static/icons/060035BA.png and /dev/null differ diff --git a/static/icons/060035BB.png b/static/icons/060035BB.png deleted file mode 100755 index 9577c95f..00000000 Binary files a/static/icons/060035BB.png and /dev/null differ diff --git a/static/icons/060035BC.png b/static/icons/060035BC.png deleted file mode 100755 index 82e65be0..00000000 Binary files a/static/icons/060035BC.png and /dev/null differ diff --git a/static/icons/060035BD.png b/static/icons/060035BD.png deleted file mode 100755 index fec46b6a..00000000 Binary files a/static/icons/060035BD.png and /dev/null differ diff --git a/static/icons/060035BE.png b/static/icons/060035BE.png deleted file mode 100755 index 0ba50ffd..00000000 Binary files a/static/icons/060035BE.png and /dev/null differ diff --git a/static/icons/060035BF.png b/static/icons/060035BF.png deleted file mode 100755 index aa546b6d..00000000 Binary files a/static/icons/060035BF.png and /dev/null differ diff --git a/static/icons/060035C0.png b/static/icons/060035C0.png deleted file mode 100755 index cc572527..00000000 Binary files a/static/icons/060035C0.png and /dev/null differ diff --git a/static/icons/060035C1.png b/static/icons/060035C1.png deleted file mode 100755 index f48691da..00000000 Binary files a/static/icons/060035C1.png and /dev/null differ diff --git a/static/icons/060035C2.png b/static/icons/060035C2.png deleted file mode 100755 index 75f450d5..00000000 Binary files a/static/icons/060035C2.png and /dev/null differ diff --git a/static/icons/060035C3.png b/static/icons/060035C3.png deleted file mode 100755 index 34b727f2..00000000 Binary files a/static/icons/060035C3.png and /dev/null differ diff --git a/static/icons/060035C4.png b/static/icons/060035C4.png deleted file mode 100755 index b437604d..00000000 Binary files a/static/icons/060035C4.png and /dev/null differ diff --git a/static/icons/060035C5.png b/static/icons/060035C5.png deleted file mode 100755 index 633fdd16..00000000 Binary files a/static/icons/060035C5.png and /dev/null differ diff --git a/static/icons/060035C6.png b/static/icons/060035C6.png deleted file mode 100755 index 1543a43b..00000000 Binary files a/static/icons/060035C6.png and /dev/null differ diff --git a/static/icons/060035C7.png b/static/icons/060035C7.png deleted file mode 100755 index a0c7507d..00000000 Binary files a/static/icons/060035C7.png and /dev/null differ diff --git a/static/icons/060035C8.png b/static/icons/060035C8.png deleted file mode 100755 index aabf5e94..00000000 Binary files a/static/icons/060035C8.png and /dev/null differ diff --git a/static/icons/060035C9.png b/static/icons/060035C9.png deleted file mode 100755 index b0aa4a75..00000000 Binary files a/static/icons/060035C9.png and /dev/null differ diff --git a/static/icons/060035CA.png b/static/icons/060035CA.png deleted file mode 100755 index 4b891501..00000000 Binary files a/static/icons/060035CA.png and /dev/null differ diff --git a/static/icons/060035CB.png b/static/icons/060035CB.png deleted file mode 100755 index 28c25125..00000000 Binary files a/static/icons/060035CB.png and /dev/null differ diff --git a/static/icons/060035CC.png b/static/icons/060035CC.png deleted file mode 100755 index e792d429..00000000 Binary files a/static/icons/060035CC.png and /dev/null differ diff --git a/static/icons/060035CD.png b/static/icons/060035CD.png deleted file mode 100755 index 7d8b197f..00000000 Binary files a/static/icons/060035CD.png and /dev/null differ diff --git a/static/icons/060035CE.png b/static/icons/060035CE.png deleted file mode 100755 index d31f03b2..00000000 Binary files a/static/icons/060035CE.png and /dev/null differ diff --git a/static/icons/060035CF.png b/static/icons/060035CF.png deleted file mode 100755 index 60c3a133..00000000 Binary files a/static/icons/060035CF.png and /dev/null differ diff --git a/static/icons/060035D0.png b/static/icons/060035D0.png deleted file mode 100755 index f1585bcc..00000000 Binary files a/static/icons/060035D0.png and /dev/null differ diff --git a/static/icons/060035D1.png b/static/icons/060035D1.png deleted file mode 100755 index 015d3f38..00000000 Binary files a/static/icons/060035D1.png and /dev/null differ diff --git a/static/icons/060035D2.png b/static/icons/060035D2.png deleted file mode 100755 index 77726bc4..00000000 Binary files a/static/icons/060035D2.png and /dev/null differ diff --git a/static/icons/060035D3.png b/static/icons/060035D3.png deleted file mode 100755 index e8d31f52..00000000 Binary files a/static/icons/060035D3.png and /dev/null differ diff --git a/static/icons/060035D4.png b/static/icons/060035D4.png deleted file mode 100755 index 00a54f64..00000000 Binary files a/static/icons/060035D4.png and /dev/null differ diff --git a/static/icons/060035D5.png b/static/icons/060035D5.png deleted file mode 100755 index 3dd19787..00000000 Binary files a/static/icons/060035D5.png and /dev/null differ diff --git a/static/icons/060035D6.png b/static/icons/060035D6.png deleted file mode 100755 index a13e639d..00000000 Binary files a/static/icons/060035D6.png and /dev/null differ diff --git a/static/icons/060035D7.png b/static/icons/060035D7.png deleted file mode 100755 index b1fe647b..00000000 Binary files a/static/icons/060035D7.png and /dev/null differ diff --git a/static/icons/060035D8.png b/static/icons/060035D8.png deleted file mode 100755 index 0ff7341d..00000000 Binary files a/static/icons/060035D8.png and /dev/null differ diff --git a/static/icons/060035D9.png b/static/icons/060035D9.png deleted file mode 100755 index 701d9f37..00000000 Binary files a/static/icons/060035D9.png and /dev/null differ diff --git a/static/icons/060035DA.png b/static/icons/060035DA.png deleted file mode 100755 index 42379c33..00000000 Binary files a/static/icons/060035DA.png and /dev/null differ diff --git a/static/icons/060035DB.png b/static/icons/060035DB.png deleted file mode 100755 index ce23e910..00000000 Binary files a/static/icons/060035DB.png and /dev/null differ diff --git a/static/icons/060035DC.png b/static/icons/060035DC.png deleted file mode 100755 index db3d8ab6..00000000 Binary files a/static/icons/060035DC.png and /dev/null differ diff --git a/static/icons/060035DD.png b/static/icons/060035DD.png deleted file mode 100755 index 63068222..00000000 Binary files a/static/icons/060035DD.png and /dev/null differ diff --git a/static/icons/060035DE.png b/static/icons/060035DE.png deleted file mode 100755 index bff56057..00000000 Binary files a/static/icons/060035DE.png and /dev/null differ diff --git a/static/icons/060035DF.png b/static/icons/060035DF.png deleted file mode 100755 index bd14217a..00000000 Binary files a/static/icons/060035DF.png and /dev/null differ diff --git a/static/icons/060035E0.png b/static/icons/060035E0.png deleted file mode 100755 index bdd7c898..00000000 Binary files a/static/icons/060035E0.png and /dev/null differ diff --git a/static/icons/060035E1.png b/static/icons/060035E1.png deleted file mode 100755 index cf6ff7a3..00000000 Binary files a/static/icons/060035E1.png and /dev/null differ diff --git a/static/icons/060035E2.png b/static/icons/060035E2.png deleted file mode 100755 index ce913e1c..00000000 Binary files a/static/icons/060035E2.png and /dev/null differ diff --git a/static/icons/060035E3.png b/static/icons/060035E3.png deleted file mode 100755 index 71ef1e65..00000000 Binary files a/static/icons/060035E3.png and /dev/null differ diff --git a/static/icons/060035E4.png b/static/icons/060035E4.png deleted file mode 100755 index 25ed0615..00000000 Binary files a/static/icons/060035E4.png and /dev/null differ diff --git a/static/icons/060035E5.png b/static/icons/060035E5.png deleted file mode 100755 index d9966a1b..00000000 Binary files a/static/icons/060035E5.png and /dev/null differ diff --git a/static/icons/060035E6.png b/static/icons/060035E6.png deleted file mode 100755 index cfb64fd6..00000000 Binary files a/static/icons/060035E6.png and /dev/null differ diff --git a/static/icons/060035E7.png b/static/icons/060035E7.png deleted file mode 100755 index 0a475436..00000000 Binary files a/static/icons/060035E7.png and /dev/null differ diff --git a/static/icons/060035E8.png b/static/icons/060035E8.png deleted file mode 100755 index 727629a8..00000000 Binary files a/static/icons/060035E8.png and /dev/null differ diff --git a/static/icons/060035E9.png b/static/icons/060035E9.png deleted file mode 100755 index 10369c22..00000000 Binary files a/static/icons/060035E9.png and /dev/null differ diff --git a/static/icons/060035EA.png b/static/icons/060035EA.png deleted file mode 100755 index 7328fa28..00000000 Binary files a/static/icons/060035EA.png and /dev/null differ diff --git a/static/icons/060035EB.png b/static/icons/060035EB.png deleted file mode 100755 index d12f6237..00000000 Binary files a/static/icons/060035EB.png and /dev/null differ diff --git a/static/icons/060035EC.png b/static/icons/060035EC.png deleted file mode 100755 index 3e750be1..00000000 Binary files a/static/icons/060035EC.png and /dev/null differ diff --git a/static/icons/060035ED.png b/static/icons/060035ED.png deleted file mode 100755 index 0ee70875..00000000 Binary files a/static/icons/060035ED.png and /dev/null differ diff --git a/static/icons/060035EE.png b/static/icons/060035EE.png deleted file mode 100755 index 233b121c..00000000 Binary files a/static/icons/060035EE.png and /dev/null differ diff --git a/static/icons/060035EF.png b/static/icons/060035EF.png deleted file mode 100755 index 84bef8a3..00000000 Binary files a/static/icons/060035EF.png and /dev/null differ diff --git a/static/icons/060035F0.png b/static/icons/060035F0.png deleted file mode 100755 index a494f808..00000000 Binary files a/static/icons/060035F0.png and /dev/null differ diff --git a/static/icons/060035F1.png b/static/icons/060035F1.png deleted file mode 100755 index 4846aad6..00000000 Binary files a/static/icons/060035F1.png and /dev/null differ diff --git a/static/icons/060035F2.png b/static/icons/060035F2.png deleted file mode 100755 index 15604b0b..00000000 Binary files a/static/icons/060035F2.png and /dev/null differ diff --git a/static/icons/060035F3.png b/static/icons/060035F3.png deleted file mode 100755 index 8e2672f9..00000000 Binary files a/static/icons/060035F3.png and /dev/null differ diff --git a/static/icons/060035F4.png b/static/icons/060035F4.png deleted file mode 100755 index 1e525517..00000000 Binary files a/static/icons/060035F4.png and /dev/null differ diff --git a/static/icons/060035F5.png b/static/icons/060035F5.png deleted file mode 100755 index c21af5fa..00000000 Binary files a/static/icons/060035F5.png and /dev/null differ diff --git a/static/icons/060035F6.png b/static/icons/060035F6.png deleted file mode 100755 index 32417078..00000000 Binary files a/static/icons/060035F6.png and /dev/null differ diff --git a/static/icons/060035F7.png b/static/icons/060035F7.png deleted file mode 100755 index cb3077c6..00000000 Binary files a/static/icons/060035F7.png and /dev/null differ diff --git a/static/icons/060035F8.png b/static/icons/060035F8.png deleted file mode 100755 index d5467151..00000000 Binary files a/static/icons/060035F8.png and /dev/null differ diff --git a/static/icons/060035F9.png b/static/icons/060035F9.png deleted file mode 100755 index 64899abe..00000000 Binary files a/static/icons/060035F9.png and /dev/null differ diff --git a/static/icons/060035FA.png b/static/icons/060035FA.png deleted file mode 100755 index a533da1c..00000000 Binary files a/static/icons/060035FA.png and /dev/null differ diff --git a/static/icons/060035FB.png b/static/icons/060035FB.png deleted file mode 100755 index b4afac7f..00000000 Binary files a/static/icons/060035FB.png and /dev/null differ diff --git a/static/icons/060035FC.png b/static/icons/060035FC.png deleted file mode 100755 index fc1a7740..00000000 Binary files a/static/icons/060035FC.png and /dev/null differ diff --git a/static/icons/060035FD.png b/static/icons/060035FD.png deleted file mode 100755 index 26ae2648..00000000 Binary files a/static/icons/060035FD.png and /dev/null differ diff --git a/static/icons/060035FE.png b/static/icons/060035FE.png deleted file mode 100755 index 719de31a..00000000 Binary files a/static/icons/060035FE.png and /dev/null differ diff --git a/static/icons/060035FF.png b/static/icons/060035FF.png deleted file mode 100755 index af47a3a0..00000000 Binary files a/static/icons/060035FF.png and /dev/null differ diff --git a/static/icons/06003600.png b/static/icons/06003600.png deleted file mode 100755 index 8a7cbf36..00000000 Binary files a/static/icons/06003600.png and /dev/null differ diff --git a/static/icons/06003601.png b/static/icons/06003601.png deleted file mode 100755 index b2e9a648..00000000 Binary files a/static/icons/06003601.png and /dev/null differ diff --git a/static/icons/06003602.png b/static/icons/06003602.png deleted file mode 100755 index 9be140a5..00000000 Binary files a/static/icons/06003602.png and /dev/null differ diff --git a/static/icons/06003603.png b/static/icons/06003603.png deleted file mode 100755 index 9f49b5c9..00000000 Binary files a/static/icons/06003603.png and /dev/null differ diff --git a/static/icons/06003604.png b/static/icons/06003604.png deleted file mode 100755 index 47cce0dc..00000000 Binary files a/static/icons/06003604.png and /dev/null differ diff --git a/static/icons/06003605.png b/static/icons/06003605.png deleted file mode 100755 index 20112829..00000000 Binary files a/static/icons/06003605.png and /dev/null differ diff --git a/static/icons/06003606.png b/static/icons/06003606.png deleted file mode 100755 index 3cc40743..00000000 Binary files a/static/icons/06003606.png and /dev/null differ diff --git a/static/icons/06003607.png b/static/icons/06003607.png deleted file mode 100755 index fef449ec..00000000 Binary files a/static/icons/06003607.png and /dev/null differ diff --git a/static/icons/06003608.png b/static/icons/06003608.png deleted file mode 100755 index a8d3fd85..00000000 Binary files a/static/icons/06003608.png and /dev/null differ diff --git a/static/icons/06003609.png b/static/icons/06003609.png deleted file mode 100755 index a50340b9..00000000 Binary files a/static/icons/06003609.png and /dev/null differ diff --git a/static/icons/0600360A.png b/static/icons/0600360A.png deleted file mode 100755 index 1157dcb7..00000000 Binary files a/static/icons/0600360A.png and /dev/null differ diff --git a/static/icons/0600360B.png b/static/icons/0600360B.png deleted file mode 100755 index d97e7d47..00000000 Binary files a/static/icons/0600360B.png and /dev/null differ diff --git a/static/icons/0600360C.png b/static/icons/0600360C.png deleted file mode 100755 index ad44c228..00000000 Binary files a/static/icons/0600360C.png and /dev/null differ diff --git a/static/icons/0600360D.png b/static/icons/0600360D.png deleted file mode 100755 index 700ef223..00000000 Binary files a/static/icons/0600360D.png and /dev/null differ diff --git a/static/icons/0600360E.png b/static/icons/0600360E.png deleted file mode 100755 index 6d2b523f..00000000 Binary files a/static/icons/0600360E.png and /dev/null differ diff --git a/static/icons/0600360F.png b/static/icons/0600360F.png deleted file mode 100755 index f5ed00ef..00000000 Binary files a/static/icons/0600360F.png and /dev/null differ diff --git a/static/icons/06003610.png b/static/icons/06003610.png deleted file mode 100755 index 9c16b187..00000000 Binary files a/static/icons/06003610.png and /dev/null differ diff --git a/static/icons/06003611.png b/static/icons/06003611.png deleted file mode 100755 index f3ea876b..00000000 Binary files a/static/icons/06003611.png and /dev/null differ diff --git a/static/icons/06003612.png b/static/icons/06003612.png deleted file mode 100755 index 0cf72610..00000000 Binary files a/static/icons/06003612.png and /dev/null differ diff --git a/static/icons/06003613.png b/static/icons/06003613.png deleted file mode 100755 index a0e07758..00000000 Binary files a/static/icons/06003613.png and /dev/null differ diff --git a/static/icons/06003614.png b/static/icons/06003614.png deleted file mode 100755 index 15ee1e71..00000000 Binary files a/static/icons/06003614.png and /dev/null differ diff --git a/static/icons/06003615.png b/static/icons/06003615.png deleted file mode 100755 index 84cae943..00000000 Binary files a/static/icons/06003615.png and /dev/null differ diff --git a/static/icons/06003616.png b/static/icons/06003616.png deleted file mode 100755 index cd8cfb81..00000000 Binary files a/static/icons/06003616.png and /dev/null differ diff --git a/static/icons/06003617.png b/static/icons/06003617.png deleted file mode 100755 index c3662d01..00000000 Binary files a/static/icons/06003617.png and /dev/null differ diff --git a/static/icons/06003618.png b/static/icons/06003618.png deleted file mode 100755 index 16ebdcf8..00000000 Binary files a/static/icons/06003618.png and /dev/null differ diff --git a/static/icons/06003619.png b/static/icons/06003619.png deleted file mode 100755 index be2fc2ae..00000000 Binary files a/static/icons/06003619.png and /dev/null differ diff --git a/static/icons/0600361A.png b/static/icons/0600361A.png deleted file mode 100755 index 91d4b411..00000000 Binary files a/static/icons/0600361A.png and /dev/null differ diff --git a/static/icons/0600361B.png b/static/icons/0600361B.png deleted file mode 100755 index 44204415..00000000 Binary files a/static/icons/0600361B.png and /dev/null differ diff --git a/static/icons/0600361C.png b/static/icons/0600361C.png deleted file mode 100755 index fb3e4f4a..00000000 Binary files a/static/icons/0600361C.png and /dev/null differ diff --git a/static/icons/0600361D.png b/static/icons/0600361D.png deleted file mode 100755 index 9145d479..00000000 Binary files a/static/icons/0600361D.png and /dev/null differ diff --git a/static/icons/0600361E.png b/static/icons/0600361E.png deleted file mode 100755 index d1470d3a..00000000 Binary files a/static/icons/0600361E.png and /dev/null differ diff --git a/static/icons/0600361F.png b/static/icons/0600361F.png deleted file mode 100755 index 20654b69..00000000 Binary files a/static/icons/0600361F.png and /dev/null differ diff --git a/static/icons/06003620.png b/static/icons/06003620.png deleted file mode 100755 index 367b953f..00000000 Binary files a/static/icons/06003620.png and /dev/null differ diff --git a/static/icons/06003621.png b/static/icons/06003621.png deleted file mode 100755 index 2e96521c..00000000 Binary files a/static/icons/06003621.png and /dev/null differ diff --git a/static/icons/06003622.png b/static/icons/06003622.png deleted file mode 100755 index 90d84114..00000000 Binary files a/static/icons/06003622.png and /dev/null differ diff --git a/static/icons/06003623.png b/static/icons/06003623.png deleted file mode 100755 index 8f5c381e..00000000 Binary files a/static/icons/06003623.png and /dev/null differ diff --git a/static/icons/06003624.png b/static/icons/06003624.png deleted file mode 100755 index 46ec2898..00000000 Binary files a/static/icons/06003624.png and /dev/null differ diff --git a/static/icons/06003625.png b/static/icons/06003625.png deleted file mode 100755 index 675b5f64..00000000 Binary files a/static/icons/06003625.png and /dev/null differ diff --git a/static/icons/06003626.png b/static/icons/06003626.png deleted file mode 100755 index 8ff046b1..00000000 Binary files a/static/icons/06003626.png and /dev/null differ diff --git a/static/icons/06003627.png b/static/icons/06003627.png deleted file mode 100755 index 6d1b69fc..00000000 Binary files a/static/icons/06003627.png and /dev/null differ diff --git a/static/icons/06003628.png b/static/icons/06003628.png deleted file mode 100755 index 1fc8babc..00000000 Binary files a/static/icons/06003628.png and /dev/null differ diff --git a/static/icons/06003629.png b/static/icons/06003629.png deleted file mode 100755 index e34c5613..00000000 Binary files a/static/icons/06003629.png and /dev/null differ diff --git a/static/icons/0600362A.png b/static/icons/0600362A.png deleted file mode 100755 index b8c7f742..00000000 Binary files a/static/icons/0600362A.png and /dev/null differ diff --git a/static/icons/0600362B.png b/static/icons/0600362B.png deleted file mode 100755 index caea9de5..00000000 Binary files a/static/icons/0600362B.png and /dev/null differ diff --git a/static/icons/0600362C.png b/static/icons/0600362C.png deleted file mode 100755 index 692c8b4c..00000000 Binary files a/static/icons/0600362C.png and /dev/null differ diff --git a/static/icons/0600362D.png b/static/icons/0600362D.png deleted file mode 100755 index 3c45082e..00000000 Binary files a/static/icons/0600362D.png and /dev/null differ diff --git a/static/icons/0600362E.png b/static/icons/0600362E.png deleted file mode 100755 index 6ca3d59a..00000000 Binary files a/static/icons/0600362E.png and /dev/null differ diff --git a/static/icons/0600362F.png b/static/icons/0600362F.png deleted file mode 100755 index 4a605b94..00000000 Binary files a/static/icons/0600362F.png and /dev/null differ diff --git a/static/icons/06003630.png b/static/icons/06003630.png deleted file mode 100755 index d190998c..00000000 Binary files a/static/icons/06003630.png and /dev/null differ diff --git a/static/icons/06003631.png b/static/icons/06003631.png deleted file mode 100755 index 72c6c98a..00000000 Binary files a/static/icons/06003631.png and /dev/null differ diff --git a/static/icons/06003632.png b/static/icons/06003632.png deleted file mode 100755 index 5b00c929..00000000 Binary files a/static/icons/06003632.png and /dev/null differ diff --git a/static/icons/06003633.png b/static/icons/06003633.png deleted file mode 100755 index 87e8ed91..00000000 Binary files a/static/icons/06003633.png and /dev/null differ diff --git a/static/icons/06003634.png b/static/icons/06003634.png deleted file mode 100755 index 25de0094..00000000 Binary files a/static/icons/06003634.png and /dev/null differ diff --git a/static/icons/06003635.png b/static/icons/06003635.png deleted file mode 100755 index 263ad498..00000000 Binary files a/static/icons/06003635.png and /dev/null differ diff --git a/static/icons/06003638.png b/static/icons/06003638.png deleted file mode 100755 index f88317ac..00000000 Binary files a/static/icons/06003638.png and /dev/null differ diff --git a/static/icons/06003639.png b/static/icons/06003639.png deleted file mode 100755 index 939500de..00000000 Binary files a/static/icons/06003639.png and /dev/null differ diff --git a/static/icons/0600363A.png b/static/icons/0600363A.png deleted file mode 100755 index 81a74d3e..00000000 Binary files a/static/icons/0600363A.png and /dev/null differ diff --git a/static/icons/0600363B.png b/static/icons/0600363B.png deleted file mode 100755 index 93a2534f..00000000 Binary files a/static/icons/0600363B.png and /dev/null differ diff --git a/static/icons/0600363C.png b/static/icons/0600363C.png deleted file mode 100755 index 4d649fda..00000000 Binary files a/static/icons/0600363C.png and /dev/null differ diff --git a/static/icons/0600363D.png b/static/icons/0600363D.png deleted file mode 100755 index 39550996..00000000 Binary files a/static/icons/0600363D.png and /dev/null differ diff --git a/static/icons/0600363E.png b/static/icons/0600363E.png deleted file mode 100755 index a1544bff..00000000 Binary files a/static/icons/0600363E.png and /dev/null differ diff --git a/static/icons/0600363F.png b/static/icons/0600363F.png deleted file mode 100755 index 976965d2..00000000 Binary files a/static/icons/0600363F.png and /dev/null differ diff --git a/static/icons/06003640.png b/static/icons/06003640.png deleted file mode 100755 index f047fa05..00000000 Binary files a/static/icons/06003640.png and /dev/null differ diff --git a/static/icons/06003641.png b/static/icons/06003641.png deleted file mode 100755 index fb64cb42..00000000 Binary files a/static/icons/06003641.png and /dev/null differ diff --git a/static/icons/06003642.png b/static/icons/06003642.png deleted file mode 100755 index 35207169..00000000 Binary files a/static/icons/06003642.png and /dev/null differ diff --git a/static/icons/06003643.png b/static/icons/06003643.png deleted file mode 100755 index 416473cc..00000000 Binary files a/static/icons/06003643.png and /dev/null differ diff --git a/static/icons/06003644.png b/static/icons/06003644.png deleted file mode 100755 index 39d4892c..00000000 Binary files a/static/icons/06003644.png and /dev/null differ diff --git a/static/icons/06003645.png b/static/icons/06003645.png deleted file mode 100755 index e3c9f01a..00000000 Binary files a/static/icons/06003645.png and /dev/null differ diff --git a/static/icons/06003646.png b/static/icons/06003646.png deleted file mode 100755 index 2bd30a50..00000000 Binary files a/static/icons/06003646.png and /dev/null differ diff --git a/static/icons/06003647.png b/static/icons/06003647.png deleted file mode 100755 index a854f3be..00000000 Binary files a/static/icons/06003647.png and /dev/null differ diff --git a/static/icons/06003648.png b/static/icons/06003648.png deleted file mode 100755 index f4b9d242..00000000 Binary files a/static/icons/06003648.png and /dev/null differ diff --git a/static/icons/06003649.png b/static/icons/06003649.png deleted file mode 100755 index 39efe36d..00000000 Binary files a/static/icons/06003649.png and /dev/null differ diff --git a/static/icons/0600364A.png b/static/icons/0600364A.png deleted file mode 100755 index b1514610..00000000 Binary files a/static/icons/0600364A.png and /dev/null differ diff --git a/static/icons/0600364B.png b/static/icons/0600364B.png deleted file mode 100755 index a886ac5f..00000000 Binary files a/static/icons/0600364B.png and /dev/null differ diff --git a/static/icons/0600364C.png b/static/icons/0600364C.png deleted file mode 100755 index 74b38dac..00000000 Binary files a/static/icons/0600364C.png and /dev/null differ diff --git a/static/icons/0600364D.png b/static/icons/0600364D.png deleted file mode 100755 index 73e04393..00000000 Binary files a/static/icons/0600364D.png and /dev/null differ diff --git a/static/icons/0600364E.png b/static/icons/0600364E.png deleted file mode 100755 index 3954e738..00000000 Binary files a/static/icons/0600364E.png and /dev/null differ diff --git a/static/icons/0600364F.png b/static/icons/0600364F.png deleted file mode 100755 index 959c3e7e..00000000 Binary files a/static/icons/0600364F.png and /dev/null differ diff --git a/static/icons/06003650.png b/static/icons/06003650.png deleted file mode 100755 index 49346231..00000000 Binary files a/static/icons/06003650.png and /dev/null differ diff --git a/static/icons/06003651.png b/static/icons/06003651.png deleted file mode 100755 index e22b7115..00000000 Binary files a/static/icons/06003651.png and /dev/null differ diff --git a/static/icons/06003652.png b/static/icons/06003652.png deleted file mode 100755 index 51708f59..00000000 Binary files a/static/icons/06003652.png and /dev/null differ diff --git a/static/icons/06003653.png b/static/icons/06003653.png deleted file mode 100755 index 11c3eac1..00000000 Binary files a/static/icons/06003653.png and /dev/null differ diff --git a/static/icons/06003654.png b/static/icons/06003654.png deleted file mode 100755 index 6986f9ac..00000000 Binary files a/static/icons/06003654.png and /dev/null differ diff --git a/static/icons/06003655.png b/static/icons/06003655.png deleted file mode 100755 index a168ac52..00000000 Binary files a/static/icons/06003655.png and /dev/null differ diff --git a/static/icons/06003656.png b/static/icons/06003656.png deleted file mode 100755 index 38807bae..00000000 Binary files a/static/icons/06003656.png and /dev/null differ diff --git a/static/icons/06003657.png b/static/icons/06003657.png deleted file mode 100755 index 0b4abba1..00000000 Binary files a/static/icons/06003657.png and /dev/null differ diff --git a/static/icons/06003658.png b/static/icons/06003658.png deleted file mode 100755 index 377ec141..00000000 Binary files a/static/icons/06003658.png and /dev/null differ diff --git a/static/icons/06003659.png b/static/icons/06003659.png deleted file mode 100755 index 6c1cb19a..00000000 Binary files a/static/icons/06003659.png and /dev/null differ diff --git a/static/icons/0600365A.png b/static/icons/0600365A.png deleted file mode 100755 index 84a60811..00000000 Binary files a/static/icons/0600365A.png and /dev/null differ diff --git a/static/icons/0600365B.png b/static/icons/0600365B.png deleted file mode 100755 index 9bd7bd78..00000000 Binary files a/static/icons/0600365B.png and /dev/null differ diff --git a/static/icons/0600365C.png b/static/icons/0600365C.png deleted file mode 100755 index 524b2fe8..00000000 Binary files a/static/icons/0600365C.png and /dev/null differ diff --git a/static/icons/0600365D.png b/static/icons/0600365D.png deleted file mode 100755 index ca445fff..00000000 Binary files a/static/icons/0600365D.png and /dev/null differ diff --git a/static/icons/0600365E.png b/static/icons/0600365E.png deleted file mode 100755 index 8f111696..00000000 Binary files a/static/icons/0600365E.png and /dev/null differ diff --git a/static/icons/0600365F.png b/static/icons/0600365F.png deleted file mode 100755 index 92a7ae0f..00000000 Binary files a/static/icons/0600365F.png and /dev/null differ diff --git a/static/icons/06003660.png b/static/icons/06003660.png deleted file mode 100755 index d34135bb..00000000 Binary files a/static/icons/06003660.png and /dev/null differ diff --git a/static/icons/06003661.png b/static/icons/06003661.png deleted file mode 100755 index ebc93e9d..00000000 Binary files a/static/icons/06003661.png and /dev/null differ diff --git a/static/icons/06003662.png b/static/icons/06003662.png deleted file mode 100755 index 851856b9..00000000 Binary files a/static/icons/06003662.png and /dev/null differ diff --git a/static/icons/06003663.png b/static/icons/06003663.png deleted file mode 100755 index af09a6bd..00000000 Binary files a/static/icons/06003663.png and /dev/null differ diff --git a/static/icons/06003664.png b/static/icons/06003664.png deleted file mode 100755 index 8f37e3d5..00000000 Binary files a/static/icons/06003664.png and /dev/null differ diff --git a/static/icons/06003665.png b/static/icons/06003665.png deleted file mode 100755 index 474460c6..00000000 Binary files a/static/icons/06003665.png and /dev/null differ diff --git a/static/icons/06003666.png b/static/icons/06003666.png deleted file mode 100755 index df38c2c8..00000000 Binary files a/static/icons/06003666.png and /dev/null differ diff --git a/static/icons/06003667.png b/static/icons/06003667.png deleted file mode 100755 index b9885386..00000000 Binary files a/static/icons/06003667.png and /dev/null differ diff --git a/static/icons/06003668.png b/static/icons/06003668.png deleted file mode 100755 index ecd57dfc..00000000 Binary files a/static/icons/06003668.png and /dev/null differ diff --git a/static/icons/06003669.png b/static/icons/06003669.png deleted file mode 100755 index 2202aaf3..00000000 Binary files a/static/icons/06003669.png and /dev/null differ diff --git a/static/icons/0600366A.png b/static/icons/0600366A.png deleted file mode 100755 index 4d416cc2..00000000 Binary files a/static/icons/0600366A.png and /dev/null differ diff --git a/static/icons/0600366B.png b/static/icons/0600366B.png deleted file mode 100755 index e2da4553..00000000 Binary files a/static/icons/0600366B.png and /dev/null differ diff --git a/static/icons/0600366C.png b/static/icons/0600366C.png deleted file mode 100755 index a8f1216b..00000000 Binary files a/static/icons/0600366C.png and /dev/null differ diff --git a/static/icons/0600366D.png b/static/icons/0600366D.png deleted file mode 100755 index f694ebe7..00000000 Binary files a/static/icons/0600366D.png and /dev/null differ diff --git a/static/icons/0600366E.png b/static/icons/0600366E.png deleted file mode 100755 index ba1bb427..00000000 Binary files a/static/icons/0600366E.png and /dev/null differ diff --git a/static/icons/0600366F.png b/static/icons/0600366F.png deleted file mode 100755 index bbe28454..00000000 Binary files a/static/icons/0600366F.png and /dev/null differ diff --git a/static/icons/06003670.png b/static/icons/06003670.png deleted file mode 100755 index 64e6741f..00000000 Binary files a/static/icons/06003670.png and /dev/null differ diff --git a/static/icons/06003671.png b/static/icons/06003671.png deleted file mode 100755 index f84cf260..00000000 Binary files a/static/icons/06003671.png and /dev/null differ diff --git a/static/icons/06003672.png b/static/icons/06003672.png deleted file mode 100755 index c2e44e00..00000000 Binary files a/static/icons/06003672.png and /dev/null differ diff --git a/static/icons/06003673.png b/static/icons/06003673.png deleted file mode 100755 index 50efcbd4..00000000 Binary files a/static/icons/06003673.png and /dev/null differ diff --git a/static/icons/06003674.png b/static/icons/06003674.png deleted file mode 100755 index 8a2129e6..00000000 Binary files a/static/icons/06003674.png and /dev/null differ diff --git a/static/icons/06003675.png b/static/icons/06003675.png deleted file mode 100755 index eb8e7eea..00000000 Binary files a/static/icons/06003675.png and /dev/null differ diff --git a/static/icons/06003676.png b/static/icons/06003676.png deleted file mode 100755 index 1066dbca..00000000 Binary files a/static/icons/06003676.png and /dev/null differ diff --git a/static/icons/06003677.png b/static/icons/06003677.png deleted file mode 100755 index e38b82b6..00000000 Binary files a/static/icons/06003677.png and /dev/null differ diff --git a/static/icons/06003678.png b/static/icons/06003678.png deleted file mode 100755 index aaaaacad..00000000 Binary files a/static/icons/06003678.png and /dev/null differ diff --git a/static/icons/06003679.png b/static/icons/06003679.png deleted file mode 100755 index 16ac3ed4..00000000 Binary files a/static/icons/06003679.png and /dev/null differ diff --git a/static/icons/0600367A.png b/static/icons/0600367A.png deleted file mode 100755 index dcc67a1f..00000000 Binary files a/static/icons/0600367A.png and /dev/null differ diff --git a/static/icons/0600367B.png b/static/icons/0600367B.png deleted file mode 100755 index 7e99ea53..00000000 Binary files a/static/icons/0600367B.png and /dev/null differ diff --git a/static/icons/0600367C.png b/static/icons/0600367C.png deleted file mode 100755 index f2b0ba6b..00000000 Binary files a/static/icons/0600367C.png and /dev/null differ diff --git a/static/icons/0600367D.png b/static/icons/0600367D.png deleted file mode 100755 index 55843e14..00000000 Binary files a/static/icons/0600367D.png and /dev/null differ diff --git a/static/icons/0600367E.png b/static/icons/0600367E.png deleted file mode 100755 index 39b512e5..00000000 Binary files a/static/icons/0600367E.png and /dev/null differ diff --git a/static/icons/0600367F.png b/static/icons/0600367F.png deleted file mode 100755 index 091e645d..00000000 Binary files a/static/icons/0600367F.png and /dev/null differ diff --git a/static/icons/06003680.png b/static/icons/06003680.png deleted file mode 100755 index b797c014..00000000 Binary files a/static/icons/06003680.png and /dev/null differ diff --git a/static/icons/06003681.png b/static/icons/06003681.png deleted file mode 100755 index f8d7ed2a..00000000 Binary files a/static/icons/06003681.png and /dev/null differ diff --git a/static/icons/06003682.png b/static/icons/06003682.png deleted file mode 100755 index 6c48d6ed..00000000 Binary files a/static/icons/06003682.png and /dev/null differ diff --git a/static/icons/06003683.png b/static/icons/06003683.png deleted file mode 100755 index 0fe3efdb..00000000 Binary files a/static/icons/06003683.png and /dev/null differ diff --git a/static/icons/06003684.png b/static/icons/06003684.png deleted file mode 100755 index ba3f6edd..00000000 Binary files a/static/icons/06003684.png and /dev/null differ diff --git a/static/icons/06003685.png b/static/icons/06003685.png deleted file mode 100755 index 0989b39f..00000000 Binary files a/static/icons/06003685.png and /dev/null differ diff --git a/static/icons/06003686.png b/static/icons/06003686.png deleted file mode 100755 index 250a0e35..00000000 Binary files a/static/icons/06003686.png and /dev/null differ diff --git a/static/icons/06003687.png b/static/icons/06003687.png deleted file mode 100755 index 9f6819e8..00000000 Binary files a/static/icons/06003687.png and /dev/null differ diff --git a/static/icons/06003688.png b/static/icons/06003688.png deleted file mode 100755 index fc21de2e..00000000 Binary files a/static/icons/06003688.png and /dev/null differ diff --git a/static/icons/06003689.png b/static/icons/06003689.png deleted file mode 100755 index ea53b8ec..00000000 Binary files a/static/icons/06003689.png and /dev/null differ diff --git a/static/icons/0600368A.png b/static/icons/0600368A.png deleted file mode 100755 index 1ffff969..00000000 Binary files a/static/icons/0600368A.png and /dev/null differ diff --git a/static/icons/0600368B.png b/static/icons/0600368B.png deleted file mode 100755 index 8b0b0d72..00000000 Binary files a/static/icons/0600368B.png and /dev/null differ diff --git a/static/icons/0600368C.png b/static/icons/0600368C.png deleted file mode 100755 index 3047eb0c..00000000 Binary files a/static/icons/0600368C.png and /dev/null differ diff --git a/static/icons/0600368D.png b/static/icons/0600368D.png deleted file mode 100755 index 55db0c76..00000000 Binary files a/static/icons/0600368D.png and /dev/null differ diff --git a/static/icons/0600368E.png b/static/icons/0600368E.png deleted file mode 100755 index 9dc882ac..00000000 Binary files a/static/icons/0600368E.png and /dev/null differ diff --git a/static/icons/0600368F.png b/static/icons/0600368F.png deleted file mode 100755 index 527a967e..00000000 Binary files a/static/icons/0600368F.png and /dev/null differ diff --git a/static/icons/06003690.png b/static/icons/06003690.png deleted file mode 100755 index 431e39e7..00000000 Binary files a/static/icons/06003690.png and /dev/null differ diff --git a/static/icons/06003691.png b/static/icons/06003691.png deleted file mode 100755 index f576acee..00000000 Binary files a/static/icons/06003691.png and /dev/null differ diff --git a/static/icons/06003692.png b/static/icons/06003692.png deleted file mode 100755 index 80a38def..00000000 Binary files a/static/icons/06003692.png and /dev/null differ diff --git a/static/icons/06003693.png b/static/icons/06003693.png deleted file mode 100755 index 50a38db8..00000000 Binary files a/static/icons/06003693.png and /dev/null differ diff --git a/static/icons/06003694.png b/static/icons/06003694.png deleted file mode 100755 index 8614b41c..00000000 Binary files a/static/icons/06003694.png and /dev/null differ diff --git a/static/icons/06003695.png b/static/icons/06003695.png deleted file mode 100755 index 04f87381..00000000 Binary files a/static/icons/06003695.png and /dev/null differ diff --git a/static/icons/06003696.png b/static/icons/06003696.png deleted file mode 100755 index 683c5a6e..00000000 Binary files a/static/icons/06003696.png and /dev/null differ diff --git a/static/icons/06003697.png b/static/icons/06003697.png deleted file mode 100755 index f1b3f688..00000000 Binary files a/static/icons/06003697.png and /dev/null differ diff --git a/static/icons/06003698.png b/static/icons/06003698.png deleted file mode 100755 index 27d33182..00000000 Binary files a/static/icons/06003698.png and /dev/null differ diff --git a/static/icons/06003699.png b/static/icons/06003699.png deleted file mode 100755 index f515bda2..00000000 Binary files a/static/icons/06003699.png and /dev/null differ diff --git a/static/icons/0600369A.png b/static/icons/0600369A.png deleted file mode 100755 index 6b596611..00000000 Binary files a/static/icons/0600369A.png and /dev/null differ diff --git a/static/icons/0600369B.png b/static/icons/0600369B.png deleted file mode 100755 index 713be0a5..00000000 Binary files a/static/icons/0600369B.png and /dev/null differ diff --git a/static/icons/0600369C.png b/static/icons/0600369C.png deleted file mode 100755 index 4896eab0..00000000 Binary files a/static/icons/0600369C.png and /dev/null differ diff --git a/static/icons/0600369D.png b/static/icons/0600369D.png deleted file mode 100755 index 5a077fb3..00000000 Binary files a/static/icons/0600369D.png and /dev/null differ diff --git a/static/icons/0600369E.png b/static/icons/0600369E.png deleted file mode 100755 index d59dcd83..00000000 Binary files a/static/icons/0600369E.png and /dev/null differ diff --git a/static/icons/0600369F.png b/static/icons/0600369F.png deleted file mode 100755 index d6ac32a8..00000000 Binary files a/static/icons/0600369F.png and /dev/null differ diff --git a/static/icons/060036A0.png b/static/icons/060036A0.png deleted file mode 100755 index 21a328e1..00000000 Binary files a/static/icons/060036A0.png and /dev/null differ diff --git a/static/icons/060036A1.png b/static/icons/060036A1.png deleted file mode 100755 index 8d18c608..00000000 Binary files a/static/icons/060036A1.png and /dev/null differ diff --git a/static/icons/060036A2.png b/static/icons/060036A2.png deleted file mode 100755 index 56a4a30d..00000000 Binary files a/static/icons/060036A2.png and /dev/null differ diff --git a/static/icons/060036A3.png b/static/icons/060036A3.png deleted file mode 100755 index 8c9ca579..00000000 Binary files a/static/icons/060036A3.png and /dev/null differ diff --git a/static/icons/060036A4.png b/static/icons/060036A4.png deleted file mode 100755 index c4f95654..00000000 Binary files a/static/icons/060036A4.png and /dev/null differ diff --git a/static/icons/060036A5.png b/static/icons/060036A5.png deleted file mode 100755 index bdb77e89..00000000 Binary files a/static/icons/060036A5.png and /dev/null differ diff --git a/static/icons/060036A6.png b/static/icons/060036A6.png deleted file mode 100755 index b51bf48e..00000000 Binary files a/static/icons/060036A6.png and /dev/null differ diff --git a/static/icons/060036A7.png b/static/icons/060036A7.png deleted file mode 100755 index d321a651..00000000 Binary files a/static/icons/060036A7.png and /dev/null differ diff --git a/static/icons/060036A8.png b/static/icons/060036A8.png deleted file mode 100755 index 3d812ef1..00000000 Binary files a/static/icons/060036A8.png and /dev/null differ diff --git a/static/icons/060036A9.png b/static/icons/060036A9.png deleted file mode 100755 index bbe92886..00000000 Binary files a/static/icons/060036A9.png and /dev/null differ diff --git a/static/icons/060036AA.png b/static/icons/060036AA.png deleted file mode 100755 index 321612e2..00000000 Binary files a/static/icons/060036AA.png and /dev/null differ diff --git a/static/icons/060036AB.png b/static/icons/060036AB.png deleted file mode 100755 index 3299261a..00000000 Binary files a/static/icons/060036AB.png and /dev/null differ diff --git a/static/icons/060036AC.png b/static/icons/060036AC.png deleted file mode 100755 index 17ae3a10..00000000 Binary files a/static/icons/060036AC.png and /dev/null differ diff --git a/static/icons/060036AD.png b/static/icons/060036AD.png deleted file mode 100755 index 32c6f0ae..00000000 Binary files a/static/icons/060036AD.png and /dev/null differ diff --git a/static/icons/060036AE.png b/static/icons/060036AE.png deleted file mode 100755 index 99ea1a0b..00000000 Binary files a/static/icons/060036AE.png and /dev/null differ diff --git a/static/icons/060036AF.png b/static/icons/060036AF.png deleted file mode 100755 index f87de5a1..00000000 Binary files a/static/icons/060036AF.png and /dev/null differ diff --git a/static/icons/060036B0.png b/static/icons/060036B0.png deleted file mode 100755 index ac91df7e..00000000 Binary files a/static/icons/060036B0.png and /dev/null differ diff --git a/static/icons/060036B1.png b/static/icons/060036B1.png deleted file mode 100755 index 904571bb..00000000 Binary files a/static/icons/060036B1.png and /dev/null differ diff --git a/static/icons/060036B2.png b/static/icons/060036B2.png deleted file mode 100755 index a08b2152..00000000 Binary files a/static/icons/060036B2.png and /dev/null differ diff --git a/static/icons/060036B3.png b/static/icons/060036B3.png deleted file mode 100755 index 66158ab5..00000000 Binary files a/static/icons/060036B3.png and /dev/null differ diff --git a/static/icons/060036B4.png b/static/icons/060036B4.png deleted file mode 100755 index 1f284684..00000000 Binary files a/static/icons/060036B4.png and /dev/null differ diff --git a/static/icons/060036B5.png b/static/icons/060036B5.png deleted file mode 100755 index a4c83ad2..00000000 Binary files a/static/icons/060036B5.png and /dev/null differ diff --git a/static/icons/060036B6.png b/static/icons/060036B6.png deleted file mode 100755 index 3f6983ac..00000000 Binary files a/static/icons/060036B6.png and /dev/null differ diff --git a/static/icons/060036B7.png b/static/icons/060036B7.png deleted file mode 100755 index 4d63a54e..00000000 Binary files a/static/icons/060036B7.png and /dev/null differ diff --git a/static/icons/060036B8.png b/static/icons/060036B8.png deleted file mode 100755 index cbb3cfeb..00000000 Binary files a/static/icons/060036B8.png and /dev/null differ diff --git a/static/icons/060036B9.png b/static/icons/060036B9.png deleted file mode 100755 index 60f1afb7..00000000 Binary files a/static/icons/060036B9.png and /dev/null differ diff --git a/static/icons/060036BA.png b/static/icons/060036BA.png deleted file mode 100755 index 51297151..00000000 Binary files a/static/icons/060036BA.png and /dev/null differ diff --git a/static/icons/060036BB.png b/static/icons/060036BB.png deleted file mode 100755 index a27a3641..00000000 Binary files a/static/icons/060036BB.png and /dev/null differ diff --git a/static/icons/060036BC.png b/static/icons/060036BC.png deleted file mode 100755 index 0bfe40ff..00000000 Binary files a/static/icons/060036BC.png and /dev/null differ diff --git a/static/icons/060036BD.png b/static/icons/060036BD.png deleted file mode 100755 index 7adda4ab..00000000 Binary files a/static/icons/060036BD.png and /dev/null differ diff --git a/static/icons/060036BE.png b/static/icons/060036BE.png deleted file mode 100755 index 09895e85..00000000 Binary files a/static/icons/060036BE.png and /dev/null differ diff --git a/static/icons/060036BF.png b/static/icons/060036BF.png deleted file mode 100755 index ca7def9d..00000000 Binary files a/static/icons/060036BF.png and /dev/null differ diff --git a/static/icons/060036C0.png b/static/icons/060036C0.png deleted file mode 100755 index 4f4ddaea..00000000 Binary files a/static/icons/060036C0.png and /dev/null differ diff --git a/static/icons/060036C1.png b/static/icons/060036C1.png deleted file mode 100755 index 7f1bbe00..00000000 Binary files a/static/icons/060036C1.png and /dev/null differ diff --git a/static/icons/060036C2.png b/static/icons/060036C2.png deleted file mode 100755 index 0cfec0b7..00000000 Binary files a/static/icons/060036C2.png and /dev/null differ diff --git a/static/icons/060036C3.png b/static/icons/060036C3.png deleted file mode 100755 index c6cea5aa..00000000 Binary files a/static/icons/060036C3.png and /dev/null differ diff --git a/static/icons/060036C4.png b/static/icons/060036C4.png deleted file mode 100755 index 4c1a0558..00000000 Binary files a/static/icons/060036C4.png and /dev/null differ diff --git a/static/icons/060036C5.png b/static/icons/060036C5.png deleted file mode 100755 index 98857056..00000000 Binary files a/static/icons/060036C5.png and /dev/null differ diff --git a/static/icons/060036C6.png b/static/icons/060036C6.png deleted file mode 100755 index 98c26b06..00000000 Binary files a/static/icons/060036C6.png and /dev/null differ diff --git a/static/icons/060036C7.png b/static/icons/060036C7.png deleted file mode 100755 index 2acfe916..00000000 Binary files a/static/icons/060036C7.png and /dev/null differ diff --git a/static/icons/060036C8.png b/static/icons/060036C8.png deleted file mode 100755 index 5948b4c2..00000000 Binary files a/static/icons/060036C8.png and /dev/null differ diff --git a/static/icons/060036C9.png b/static/icons/060036C9.png deleted file mode 100755 index 1ab4966c..00000000 Binary files a/static/icons/060036C9.png and /dev/null differ diff --git a/static/icons/060036CA.png b/static/icons/060036CA.png deleted file mode 100755 index 13e28821..00000000 Binary files a/static/icons/060036CA.png and /dev/null differ diff --git a/static/icons/060036CB.png b/static/icons/060036CB.png deleted file mode 100755 index 6ce56d06..00000000 Binary files a/static/icons/060036CB.png and /dev/null differ diff --git a/static/icons/060036CC.png b/static/icons/060036CC.png deleted file mode 100755 index e524e5b8..00000000 Binary files a/static/icons/060036CC.png and /dev/null differ diff --git a/static/icons/060036CD.png b/static/icons/060036CD.png deleted file mode 100755 index f5fab638..00000000 Binary files a/static/icons/060036CD.png and /dev/null differ diff --git a/static/icons/060036CE.png b/static/icons/060036CE.png deleted file mode 100755 index 2a217e3c..00000000 Binary files a/static/icons/060036CE.png and /dev/null differ diff --git a/static/icons/060036CF.png b/static/icons/060036CF.png deleted file mode 100755 index 13f4a823..00000000 Binary files a/static/icons/060036CF.png and /dev/null differ diff --git a/static/icons/060036D0.png b/static/icons/060036D0.png deleted file mode 100755 index de01de65..00000000 Binary files a/static/icons/060036D0.png and /dev/null differ diff --git a/static/icons/060036D1.png b/static/icons/060036D1.png deleted file mode 100755 index b1905bf0..00000000 Binary files a/static/icons/060036D1.png and /dev/null differ diff --git a/static/icons/060036D2.png b/static/icons/060036D2.png deleted file mode 100755 index f82b16a3..00000000 Binary files a/static/icons/060036D2.png and /dev/null differ diff --git a/static/icons/060036D3.png b/static/icons/060036D3.png deleted file mode 100755 index dab32799..00000000 Binary files a/static/icons/060036D3.png and /dev/null differ diff --git a/static/icons/060036D4.png b/static/icons/060036D4.png deleted file mode 100755 index ddd017a9..00000000 Binary files a/static/icons/060036D4.png and /dev/null differ diff --git a/static/icons/060036D5.png b/static/icons/060036D5.png deleted file mode 100755 index 182dcf52..00000000 Binary files a/static/icons/060036D5.png and /dev/null differ diff --git a/static/icons/060036D6.png b/static/icons/060036D6.png deleted file mode 100755 index 38e15fe3..00000000 Binary files a/static/icons/060036D6.png and /dev/null differ diff --git a/static/icons/060036D7.png b/static/icons/060036D7.png deleted file mode 100755 index bbd37365..00000000 Binary files a/static/icons/060036D7.png and /dev/null differ diff --git a/static/icons/060036D8.png b/static/icons/060036D8.png deleted file mode 100755 index 1251c480..00000000 Binary files a/static/icons/060036D8.png and /dev/null differ diff --git a/static/icons/060036D9.png b/static/icons/060036D9.png deleted file mode 100755 index b8ed7e1f..00000000 Binary files a/static/icons/060036D9.png and /dev/null differ diff --git a/static/icons/060036DA.png b/static/icons/060036DA.png deleted file mode 100755 index a8c12250..00000000 Binary files a/static/icons/060036DA.png and /dev/null differ diff --git a/static/icons/060036DB.png b/static/icons/060036DB.png deleted file mode 100755 index 7c9fa60e..00000000 Binary files a/static/icons/060036DB.png and /dev/null differ diff --git a/static/icons/060036DC.png b/static/icons/060036DC.png deleted file mode 100755 index a11c9a1e..00000000 Binary files a/static/icons/060036DC.png and /dev/null differ diff --git a/static/icons/060036DD.png b/static/icons/060036DD.png deleted file mode 100755 index 0c76701f..00000000 Binary files a/static/icons/060036DD.png and /dev/null differ diff --git a/static/icons/060036DE.png b/static/icons/060036DE.png deleted file mode 100755 index 620f9552..00000000 Binary files a/static/icons/060036DE.png and /dev/null differ diff --git a/static/icons/060036DF.png b/static/icons/060036DF.png deleted file mode 100755 index dfc15ce3..00000000 Binary files a/static/icons/060036DF.png and /dev/null differ diff --git a/static/icons/060036E0.png b/static/icons/060036E0.png deleted file mode 100755 index 45cd42b0..00000000 Binary files a/static/icons/060036E0.png and /dev/null differ diff --git a/static/icons/060036E1.png b/static/icons/060036E1.png deleted file mode 100755 index dc162631..00000000 Binary files a/static/icons/060036E1.png and /dev/null differ diff --git a/static/icons/060036E2.png b/static/icons/060036E2.png deleted file mode 100755 index e61689b5..00000000 Binary files a/static/icons/060036E2.png and /dev/null differ diff --git a/static/icons/060036E3.png b/static/icons/060036E3.png deleted file mode 100755 index ae5762eb..00000000 Binary files a/static/icons/060036E3.png and /dev/null differ diff --git a/static/icons/060036E4.png b/static/icons/060036E4.png deleted file mode 100755 index 891c6533..00000000 Binary files a/static/icons/060036E4.png and /dev/null differ diff --git a/static/icons/060036E5.png b/static/icons/060036E5.png deleted file mode 100755 index 740c4f1e..00000000 Binary files a/static/icons/060036E5.png and /dev/null differ diff --git a/static/icons/060036E6.png b/static/icons/060036E6.png deleted file mode 100755 index ee91d1f2..00000000 Binary files a/static/icons/060036E6.png and /dev/null differ diff --git a/static/icons/060036E7.png b/static/icons/060036E7.png deleted file mode 100755 index 93620b28..00000000 Binary files a/static/icons/060036E7.png and /dev/null differ diff --git a/static/icons/060036E8.png b/static/icons/060036E8.png deleted file mode 100755 index 363f1f4d..00000000 Binary files a/static/icons/060036E8.png and /dev/null differ diff --git a/static/icons/060036E9.png b/static/icons/060036E9.png deleted file mode 100755 index e93a497e..00000000 Binary files a/static/icons/060036E9.png and /dev/null differ diff --git a/static/icons/060036EA.png b/static/icons/060036EA.png deleted file mode 100755 index 3acc28d7..00000000 Binary files a/static/icons/060036EA.png and /dev/null differ diff --git a/static/icons/060036EB.png b/static/icons/060036EB.png deleted file mode 100755 index 71052191..00000000 Binary files a/static/icons/060036EB.png and /dev/null differ diff --git a/static/icons/060036EC.png b/static/icons/060036EC.png deleted file mode 100755 index 249f6c2d..00000000 Binary files a/static/icons/060036EC.png and /dev/null differ diff --git a/static/icons/060036ED.png b/static/icons/060036ED.png deleted file mode 100755 index 2ff5e62f..00000000 Binary files a/static/icons/060036ED.png and /dev/null differ diff --git a/static/icons/060036EE.png b/static/icons/060036EE.png deleted file mode 100755 index b4754346..00000000 Binary files a/static/icons/060036EE.png and /dev/null differ diff --git a/static/icons/060036EF.png b/static/icons/060036EF.png deleted file mode 100755 index 41c565fa..00000000 Binary files a/static/icons/060036EF.png and /dev/null differ diff --git a/static/icons/060036F0.png b/static/icons/060036F0.png deleted file mode 100755 index a27b9acc..00000000 Binary files a/static/icons/060036F0.png and /dev/null differ diff --git a/static/icons/060036F1.png b/static/icons/060036F1.png deleted file mode 100755 index 69ab0a30..00000000 Binary files a/static/icons/060036F1.png and /dev/null differ diff --git a/static/icons/060036F2.png b/static/icons/060036F2.png deleted file mode 100755 index 7582d4e6..00000000 Binary files a/static/icons/060036F2.png and /dev/null differ diff --git a/static/icons/060036F3.png b/static/icons/060036F3.png deleted file mode 100755 index f0a07818..00000000 Binary files a/static/icons/060036F3.png and /dev/null differ diff --git a/static/icons/060036F4.png b/static/icons/060036F4.png deleted file mode 100755 index 3dc1cba3..00000000 Binary files a/static/icons/060036F4.png and /dev/null differ diff --git a/static/icons/060036F5.png b/static/icons/060036F5.png deleted file mode 100755 index f718378c..00000000 Binary files a/static/icons/060036F5.png and /dev/null differ diff --git a/static/icons/060036F6.png b/static/icons/060036F6.png deleted file mode 100755 index a2e9e6c2..00000000 Binary files a/static/icons/060036F6.png and /dev/null differ diff --git a/static/icons/060036F7.png b/static/icons/060036F7.png deleted file mode 100755 index 1398a7b1..00000000 Binary files a/static/icons/060036F7.png and /dev/null differ diff --git a/static/icons/060036F9.png b/static/icons/060036F9.png deleted file mode 100755 index fdc7816c..00000000 Binary files a/static/icons/060036F9.png and /dev/null differ diff --git a/static/icons/060036FA.png b/static/icons/060036FA.png deleted file mode 100755 index 8485d1fc..00000000 Binary files a/static/icons/060036FA.png and /dev/null differ diff --git a/static/icons/060036FB.png b/static/icons/060036FB.png deleted file mode 100755 index d5c0eada..00000000 Binary files a/static/icons/060036FB.png and /dev/null differ diff --git a/static/icons/060036FC.png b/static/icons/060036FC.png deleted file mode 100755 index 51de8011..00000000 Binary files a/static/icons/060036FC.png and /dev/null differ diff --git a/static/icons/060036FD.png b/static/icons/060036FD.png deleted file mode 100755 index 75b1c074..00000000 Binary files a/static/icons/060036FD.png and /dev/null differ diff --git a/static/icons/060036FE.png b/static/icons/060036FE.png deleted file mode 100755 index 24d13ee3..00000000 Binary files a/static/icons/060036FE.png and /dev/null differ diff --git a/static/icons/060036FF.png b/static/icons/060036FF.png deleted file mode 100755 index c23cafd9..00000000 Binary files a/static/icons/060036FF.png and /dev/null differ diff --git a/static/icons/06003700.png b/static/icons/06003700.png deleted file mode 100755 index 2b39a49e..00000000 Binary files a/static/icons/06003700.png and /dev/null differ diff --git a/static/icons/06003701.png b/static/icons/06003701.png deleted file mode 100755 index 167805f5..00000000 Binary files a/static/icons/06003701.png and /dev/null differ diff --git a/static/icons/06003702.png b/static/icons/06003702.png deleted file mode 100755 index ec191245..00000000 Binary files a/static/icons/06003702.png and /dev/null differ diff --git a/static/icons/06003703.png b/static/icons/06003703.png deleted file mode 100755 index 07a3f02c..00000000 Binary files a/static/icons/06003703.png and /dev/null differ diff --git a/static/icons/06003704.png b/static/icons/06003704.png deleted file mode 100755 index 1c9d7590..00000000 Binary files a/static/icons/06003704.png and /dev/null differ diff --git a/static/icons/06003705.png b/static/icons/06003705.png deleted file mode 100755 index a0b35a44..00000000 Binary files a/static/icons/06003705.png and /dev/null differ diff --git a/static/icons/06003706.png b/static/icons/06003706.png deleted file mode 100755 index be08a5d8..00000000 Binary files a/static/icons/06003706.png and /dev/null differ diff --git a/static/icons/06003707.png b/static/icons/06003707.png deleted file mode 100755 index af67b9a4..00000000 Binary files a/static/icons/06003707.png and /dev/null differ diff --git a/static/icons/06003708.png b/static/icons/06003708.png deleted file mode 100755 index 7baf961a..00000000 Binary files a/static/icons/06003708.png and /dev/null differ diff --git a/static/icons/06003709.png b/static/icons/06003709.png deleted file mode 100755 index 249cfa48..00000000 Binary files a/static/icons/06003709.png and /dev/null differ diff --git a/static/icons/0600370A.png b/static/icons/0600370A.png deleted file mode 100755 index 4f117218..00000000 Binary files a/static/icons/0600370A.png and /dev/null differ diff --git a/static/icons/0600370B.png b/static/icons/0600370B.png deleted file mode 100755 index 45ba4ab0..00000000 Binary files a/static/icons/0600370B.png and /dev/null differ diff --git a/static/icons/0600370C.png b/static/icons/0600370C.png deleted file mode 100755 index 8b87051c..00000000 Binary files a/static/icons/0600370C.png and /dev/null differ diff --git a/static/icons/0600370D.png b/static/icons/0600370D.png deleted file mode 100755 index ffbf5efb..00000000 Binary files a/static/icons/0600370D.png and /dev/null differ diff --git a/static/icons/0600370E.png b/static/icons/0600370E.png deleted file mode 100755 index 815e019a..00000000 Binary files a/static/icons/0600370E.png and /dev/null differ diff --git a/static/icons/0600370F.png b/static/icons/0600370F.png deleted file mode 100755 index 2d78f088..00000000 Binary files a/static/icons/0600370F.png and /dev/null differ diff --git a/static/icons/06003710.png b/static/icons/06003710.png deleted file mode 100755 index 368350a5..00000000 Binary files a/static/icons/06003710.png and /dev/null differ diff --git a/static/icons/06003711.png b/static/icons/06003711.png deleted file mode 100755 index d2e47eb2..00000000 Binary files a/static/icons/06003711.png and /dev/null differ diff --git a/static/icons/06003712.png b/static/icons/06003712.png deleted file mode 100755 index cf02815e..00000000 Binary files a/static/icons/06003712.png and /dev/null differ diff --git a/static/icons/06003713.png b/static/icons/06003713.png deleted file mode 100755 index 2ed4a4dc..00000000 Binary files a/static/icons/06003713.png and /dev/null differ diff --git a/static/icons/06003714.png b/static/icons/06003714.png deleted file mode 100755 index 4b261a14..00000000 Binary files a/static/icons/06003714.png and /dev/null differ diff --git a/static/icons/06003715.png b/static/icons/06003715.png deleted file mode 100755 index f309ac9a..00000000 Binary files a/static/icons/06003715.png and /dev/null differ diff --git a/static/icons/06003716.png b/static/icons/06003716.png deleted file mode 100755 index c868814e..00000000 Binary files a/static/icons/06003716.png and /dev/null differ diff --git a/static/icons/06003717.png b/static/icons/06003717.png deleted file mode 100755 index 3ee63fec..00000000 Binary files a/static/icons/06003717.png and /dev/null differ diff --git a/static/icons/06003718.png b/static/icons/06003718.png deleted file mode 100755 index f61ad395..00000000 Binary files a/static/icons/06003718.png and /dev/null differ diff --git a/static/icons/06003719.png b/static/icons/06003719.png deleted file mode 100755 index dd5437a0..00000000 Binary files a/static/icons/06003719.png and /dev/null differ diff --git a/static/icons/0600371A.png b/static/icons/0600371A.png deleted file mode 100755 index 1437cff0..00000000 Binary files a/static/icons/0600371A.png and /dev/null differ diff --git a/static/icons/0600371B.png b/static/icons/0600371B.png deleted file mode 100755 index e25b42de..00000000 Binary files a/static/icons/0600371B.png and /dev/null differ diff --git a/static/icons/0600371C.png b/static/icons/0600371C.png deleted file mode 100755 index cdaa5536..00000000 Binary files a/static/icons/0600371C.png and /dev/null differ diff --git a/static/icons/0600371D.png b/static/icons/0600371D.png deleted file mode 100755 index 79cbae6d..00000000 Binary files a/static/icons/0600371D.png and /dev/null differ diff --git a/static/icons/0600371E.png b/static/icons/0600371E.png deleted file mode 100755 index bb86bc43..00000000 Binary files a/static/icons/0600371E.png and /dev/null differ diff --git a/static/icons/0600371F.png b/static/icons/0600371F.png deleted file mode 100755 index 3cff0d3e..00000000 Binary files a/static/icons/0600371F.png and /dev/null differ diff --git a/static/icons/06003720.png b/static/icons/06003720.png deleted file mode 100755 index d3337324..00000000 Binary files a/static/icons/06003720.png and /dev/null differ diff --git a/static/icons/06003721.png b/static/icons/06003721.png deleted file mode 100755 index 42df825d..00000000 Binary files a/static/icons/06003721.png and /dev/null differ diff --git a/static/icons/06003722.png b/static/icons/06003722.png deleted file mode 100755 index 02241564..00000000 Binary files a/static/icons/06003722.png and /dev/null differ diff --git a/static/icons/06003723.png b/static/icons/06003723.png deleted file mode 100755 index 9c5b8112..00000000 Binary files a/static/icons/06003723.png and /dev/null differ diff --git a/static/icons/06003724.png b/static/icons/06003724.png deleted file mode 100755 index 82331557..00000000 Binary files a/static/icons/06003724.png and /dev/null differ diff --git a/static/icons/06003725.png b/static/icons/06003725.png deleted file mode 100755 index 818921c9..00000000 Binary files a/static/icons/06003725.png and /dev/null differ diff --git a/static/icons/06003726.png b/static/icons/06003726.png deleted file mode 100755 index 6248bf3c..00000000 Binary files a/static/icons/06003726.png and /dev/null differ diff --git a/static/icons/06003727.png b/static/icons/06003727.png deleted file mode 100755 index 1ea822a8..00000000 Binary files a/static/icons/06003727.png and /dev/null differ diff --git a/static/icons/06003728.png b/static/icons/06003728.png deleted file mode 100755 index f2e33c64..00000000 Binary files a/static/icons/06003728.png and /dev/null differ diff --git a/static/icons/06003729.png b/static/icons/06003729.png deleted file mode 100755 index b99a9dba..00000000 Binary files a/static/icons/06003729.png and /dev/null differ diff --git a/static/icons/0600372A.png b/static/icons/0600372A.png deleted file mode 100755 index d8d16263..00000000 Binary files a/static/icons/0600372A.png and /dev/null differ diff --git a/static/icons/0600372B.png b/static/icons/0600372B.png deleted file mode 100755 index 73a767ff..00000000 Binary files a/static/icons/0600372B.png and /dev/null differ diff --git a/static/icons/0600372C.png b/static/icons/0600372C.png deleted file mode 100755 index 6d74700e..00000000 Binary files a/static/icons/0600372C.png and /dev/null differ diff --git a/static/icons/0600372D.png b/static/icons/0600372D.png deleted file mode 100755 index 3ec597bb..00000000 Binary files a/static/icons/0600372D.png and /dev/null differ diff --git a/static/icons/0600372E.png b/static/icons/0600372E.png deleted file mode 100755 index 407b858c..00000000 Binary files a/static/icons/0600372E.png and /dev/null differ diff --git a/static/icons/0600372F.png b/static/icons/0600372F.png deleted file mode 100755 index 145b1fc8..00000000 Binary files a/static/icons/0600372F.png and /dev/null differ diff --git a/static/icons/06003730.png b/static/icons/06003730.png deleted file mode 100755 index c29c0a08..00000000 Binary files a/static/icons/06003730.png and /dev/null differ diff --git a/static/icons/06003731.png b/static/icons/06003731.png deleted file mode 100755 index 21eb4e12..00000000 Binary files a/static/icons/06003731.png and /dev/null differ diff --git a/static/icons/06003732.png b/static/icons/06003732.png deleted file mode 100755 index 7b386f47..00000000 Binary files a/static/icons/06003732.png and /dev/null differ diff --git a/static/icons/06003733.png b/static/icons/06003733.png deleted file mode 100755 index f42ad45e..00000000 Binary files a/static/icons/06003733.png and /dev/null differ diff --git a/static/icons/06003734.png b/static/icons/06003734.png deleted file mode 100755 index 5bbf9fd7..00000000 Binary files a/static/icons/06003734.png and /dev/null differ diff --git a/static/icons/06003735.png b/static/icons/06003735.png deleted file mode 100755 index 7188ff4b..00000000 Binary files a/static/icons/06003735.png and /dev/null differ diff --git a/static/icons/06003736.png b/static/icons/06003736.png deleted file mode 100755 index f10b33d9..00000000 Binary files a/static/icons/06003736.png and /dev/null differ diff --git a/static/icons/06003737.png b/static/icons/06003737.png deleted file mode 100755 index c5763b43..00000000 Binary files a/static/icons/06003737.png and /dev/null differ diff --git a/static/icons/06003738.png b/static/icons/06003738.png deleted file mode 100755 index c133eb5e..00000000 Binary files a/static/icons/06003738.png and /dev/null differ diff --git a/static/icons/06003739.png b/static/icons/06003739.png deleted file mode 100755 index 99af837b..00000000 Binary files a/static/icons/06003739.png and /dev/null differ diff --git a/static/icons/0600373A.png b/static/icons/0600373A.png deleted file mode 100755 index 59fbd635..00000000 Binary files a/static/icons/0600373A.png and /dev/null differ diff --git a/static/icons/0600373B.png b/static/icons/0600373B.png deleted file mode 100755 index bfc8c0dd..00000000 Binary files a/static/icons/0600373B.png and /dev/null differ diff --git a/static/icons/0600373C.png b/static/icons/0600373C.png deleted file mode 100755 index e2c28dc4..00000000 Binary files a/static/icons/0600373C.png and /dev/null differ diff --git a/static/icons/0600373D.png b/static/icons/0600373D.png deleted file mode 100755 index c77f4e3f..00000000 Binary files a/static/icons/0600373D.png and /dev/null differ diff --git a/static/icons/0600373E.png b/static/icons/0600373E.png deleted file mode 100755 index 85d7bcb6..00000000 Binary files a/static/icons/0600373E.png and /dev/null differ diff --git a/static/icons/0600373F.png b/static/icons/0600373F.png deleted file mode 100755 index c2e9f0ae..00000000 Binary files a/static/icons/0600373F.png and /dev/null differ diff --git a/static/icons/06003740.png b/static/icons/06003740.png deleted file mode 100755 index 0f054b03..00000000 Binary files a/static/icons/06003740.png and /dev/null differ diff --git a/static/icons/06003741.png b/static/icons/06003741.png deleted file mode 100755 index 86a19f7e..00000000 Binary files a/static/icons/06003741.png and /dev/null differ diff --git a/static/icons/06003742.png b/static/icons/06003742.png deleted file mode 100755 index 9de337e1..00000000 Binary files a/static/icons/06003742.png and /dev/null differ diff --git a/static/icons/06003743.png b/static/icons/06003743.png deleted file mode 100755 index f167f5ab..00000000 Binary files a/static/icons/06003743.png and /dev/null differ diff --git a/static/icons/06003744.png b/static/icons/06003744.png deleted file mode 100755 index 44931603..00000000 Binary files a/static/icons/06003744.png and /dev/null differ diff --git a/static/icons/06003745.png b/static/icons/06003745.png deleted file mode 100755 index 726560de..00000000 Binary files a/static/icons/06003745.png and /dev/null differ diff --git a/static/icons/06003746.png b/static/icons/06003746.png deleted file mode 100755 index aec98f89..00000000 Binary files a/static/icons/06003746.png and /dev/null differ diff --git a/static/icons/06003747.png b/static/icons/06003747.png deleted file mode 100755 index 811c3720..00000000 Binary files a/static/icons/06003747.png and /dev/null differ diff --git a/static/icons/06003748.png b/static/icons/06003748.png deleted file mode 100755 index 3c3e611e..00000000 Binary files a/static/icons/06003748.png and /dev/null differ diff --git a/static/icons/06003749.png b/static/icons/06003749.png deleted file mode 100755 index 67096842..00000000 Binary files a/static/icons/06003749.png and /dev/null differ diff --git a/static/icons/0600374A.png b/static/icons/0600374A.png deleted file mode 100755 index 7bbc4217..00000000 Binary files a/static/icons/0600374A.png and /dev/null differ diff --git a/static/icons/0600374B.png b/static/icons/0600374B.png deleted file mode 100755 index d84bf4d0..00000000 Binary files a/static/icons/0600374B.png and /dev/null differ diff --git a/static/icons/0600374C.png b/static/icons/0600374C.png deleted file mode 100755 index 0ea81997..00000000 Binary files a/static/icons/0600374C.png and /dev/null differ diff --git a/static/icons/0600374D.png b/static/icons/0600374D.png deleted file mode 100755 index 5ba19c82..00000000 Binary files a/static/icons/0600374D.png and /dev/null differ diff --git a/static/icons/0600374E.png b/static/icons/0600374E.png deleted file mode 100755 index de6dab4a..00000000 Binary files a/static/icons/0600374E.png and /dev/null differ diff --git a/static/icons/0600374F.png b/static/icons/0600374F.png deleted file mode 100755 index 0e8fb6e3..00000000 Binary files a/static/icons/0600374F.png and /dev/null differ diff --git a/static/icons/06003750.png b/static/icons/06003750.png deleted file mode 100755 index a1fe1485..00000000 Binary files a/static/icons/06003750.png and /dev/null differ diff --git a/static/icons/06003751.png b/static/icons/06003751.png deleted file mode 100755 index 69bc7250..00000000 Binary files a/static/icons/06003751.png and /dev/null differ diff --git a/static/icons/06003752.png b/static/icons/06003752.png deleted file mode 100755 index 5b0c206a..00000000 Binary files a/static/icons/06003752.png and /dev/null differ diff --git a/static/icons/06003753.png b/static/icons/06003753.png deleted file mode 100755 index d08405d9..00000000 Binary files a/static/icons/06003753.png and /dev/null differ diff --git a/static/icons/06003754.png b/static/icons/06003754.png deleted file mode 100755 index 33793f0c..00000000 Binary files a/static/icons/06003754.png and /dev/null differ diff --git a/static/icons/06003755.png b/static/icons/06003755.png deleted file mode 100755 index 92eb49a8..00000000 Binary files a/static/icons/06003755.png and /dev/null differ diff --git a/static/icons/06003756.png b/static/icons/06003756.png deleted file mode 100755 index 9ebee811..00000000 Binary files a/static/icons/06003756.png and /dev/null differ diff --git a/static/icons/06003757.png b/static/icons/06003757.png deleted file mode 100755 index 44f10535..00000000 Binary files a/static/icons/06003757.png and /dev/null differ diff --git a/static/icons/06003758.png b/static/icons/06003758.png deleted file mode 100755 index 7900e9a2..00000000 Binary files a/static/icons/06003758.png and /dev/null differ diff --git a/static/icons/06003759.png b/static/icons/06003759.png deleted file mode 100755 index 61b14443..00000000 Binary files a/static/icons/06003759.png and /dev/null differ diff --git a/static/icons/0600375A.png b/static/icons/0600375A.png deleted file mode 100755 index 4c4c8fde..00000000 Binary files a/static/icons/0600375A.png and /dev/null differ diff --git a/static/icons/0600375B.png b/static/icons/0600375B.png deleted file mode 100755 index f6635379..00000000 Binary files a/static/icons/0600375B.png and /dev/null differ diff --git a/static/icons/0600375C.png b/static/icons/0600375C.png deleted file mode 100755 index 460fc880..00000000 Binary files a/static/icons/0600375C.png and /dev/null differ diff --git a/static/icons/0600375D.png b/static/icons/0600375D.png deleted file mode 100755 index 8f82d391..00000000 Binary files a/static/icons/0600375D.png and /dev/null differ diff --git a/static/icons/0600375E.png b/static/icons/0600375E.png deleted file mode 100755 index f8e4ec85..00000000 Binary files a/static/icons/0600375E.png and /dev/null differ diff --git a/static/icons/0600375F.png b/static/icons/0600375F.png deleted file mode 100755 index 8bb06791..00000000 Binary files a/static/icons/0600375F.png and /dev/null differ diff --git a/static/icons/06003760.png b/static/icons/06003760.png deleted file mode 100755 index ee238b35..00000000 Binary files a/static/icons/06003760.png and /dev/null differ diff --git a/static/icons/06003761.png b/static/icons/06003761.png deleted file mode 100755 index cbf63f5d..00000000 Binary files a/static/icons/06003761.png and /dev/null differ diff --git a/static/icons/06003762.png b/static/icons/06003762.png deleted file mode 100755 index 28ea3911..00000000 Binary files a/static/icons/06003762.png and /dev/null differ diff --git a/static/icons/06003763.png b/static/icons/06003763.png deleted file mode 100755 index 78316953..00000000 Binary files a/static/icons/06003763.png and /dev/null differ diff --git a/static/icons/06003764.png b/static/icons/06003764.png deleted file mode 100755 index 67d8aa6b..00000000 Binary files a/static/icons/06003764.png and /dev/null differ diff --git a/static/icons/06003765.png b/static/icons/06003765.png deleted file mode 100755 index 79c1374a..00000000 Binary files a/static/icons/06003765.png and /dev/null differ diff --git a/static/icons/06003766.png b/static/icons/06003766.png deleted file mode 100755 index e32b73a2..00000000 Binary files a/static/icons/06003766.png and /dev/null differ diff --git a/static/icons/06003767.png b/static/icons/06003767.png deleted file mode 100755 index 0d123133..00000000 Binary files a/static/icons/06003767.png and /dev/null differ diff --git a/static/icons/06003768.png b/static/icons/06003768.png deleted file mode 100755 index 99c75081..00000000 Binary files a/static/icons/06003768.png and /dev/null differ diff --git a/static/icons/06003769.png b/static/icons/06003769.png deleted file mode 100755 index 6539fec4..00000000 Binary files a/static/icons/06003769.png and /dev/null differ diff --git a/static/icons/0600376A.png b/static/icons/0600376A.png deleted file mode 100755 index 478afe6c..00000000 Binary files a/static/icons/0600376A.png and /dev/null differ diff --git a/static/icons/0600376B.png b/static/icons/0600376B.png deleted file mode 100755 index 861262a4..00000000 Binary files a/static/icons/0600376B.png and /dev/null differ diff --git a/static/icons/0600376C.png b/static/icons/0600376C.png deleted file mode 100755 index 9b435529..00000000 Binary files a/static/icons/0600376C.png and /dev/null differ diff --git a/static/icons/0600376D.png b/static/icons/0600376D.png deleted file mode 100755 index 1217303c..00000000 Binary files a/static/icons/0600376D.png and /dev/null differ diff --git a/static/icons/0600376E.png b/static/icons/0600376E.png deleted file mode 100755 index cdf9b6d1..00000000 Binary files a/static/icons/0600376E.png and /dev/null differ diff --git a/static/icons/0600376F.png b/static/icons/0600376F.png deleted file mode 100755 index 07054465..00000000 Binary files a/static/icons/0600376F.png and /dev/null differ diff --git a/static/icons/06003770.png b/static/icons/06003770.png deleted file mode 100755 index a57d2f9d..00000000 Binary files a/static/icons/06003770.png and /dev/null differ diff --git a/static/icons/06003771.png b/static/icons/06003771.png deleted file mode 100755 index e66ee265..00000000 Binary files a/static/icons/06003771.png and /dev/null differ diff --git a/static/icons/06003772.png b/static/icons/06003772.png deleted file mode 100755 index e709b51e..00000000 Binary files a/static/icons/06003772.png and /dev/null differ diff --git a/static/icons/06003773.png b/static/icons/06003773.png deleted file mode 100755 index de6f7be4..00000000 Binary files a/static/icons/06003773.png and /dev/null differ diff --git a/static/icons/06003774.png b/static/icons/06003774.png deleted file mode 100755 index 6b17fbc0..00000000 Binary files a/static/icons/06003774.png and /dev/null differ diff --git a/static/icons/06003775.png b/static/icons/06003775.png deleted file mode 100755 index ac1d1209..00000000 Binary files a/static/icons/06003775.png and /dev/null differ diff --git a/static/icons/06003776.png b/static/icons/06003776.png deleted file mode 100755 index ace9861f..00000000 Binary files a/static/icons/06003776.png and /dev/null differ diff --git a/static/icons/06003777.png b/static/icons/06003777.png deleted file mode 100755 index 9ef7244b..00000000 Binary files a/static/icons/06003777.png and /dev/null differ diff --git a/static/icons/06003778.png b/static/icons/06003778.png deleted file mode 100755 index 857281f7..00000000 Binary files a/static/icons/06003778.png and /dev/null differ diff --git a/static/icons/06003779.png b/static/icons/06003779.png deleted file mode 100755 index 331c04dc..00000000 Binary files a/static/icons/06003779.png and /dev/null differ diff --git a/static/icons/0600377A.png b/static/icons/0600377A.png deleted file mode 100755 index 854789b5..00000000 Binary files a/static/icons/0600377A.png and /dev/null differ diff --git a/static/icons/0600377B.png b/static/icons/0600377B.png deleted file mode 100755 index f02257ed..00000000 Binary files a/static/icons/0600377B.png and /dev/null differ diff --git a/static/icons/0600377C.png b/static/icons/0600377C.png deleted file mode 100755 index 6ec21ef2..00000000 Binary files a/static/icons/0600377C.png and /dev/null differ diff --git a/static/icons/0600377D.png b/static/icons/0600377D.png deleted file mode 100755 index 57b186fa..00000000 Binary files a/static/icons/0600377D.png and /dev/null differ diff --git a/static/icons/0600377E.png b/static/icons/0600377E.png deleted file mode 100755 index 6b713350..00000000 Binary files a/static/icons/0600377E.png and /dev/null differ diff --git a/static/icons/0600377F.png b/static/icons/0600377F.png deleted file mode 100755 index b51a7d17..00000000 Binary files a/static/icons/0600377F.png and /dev/null differ diff --git a/static/icons/06003780.png b/static/icons/06003780.png deleted file mode 100755 index f05654ae..00000000 Binary files a/static/icons/06003780.png and /dev/null differ diff --git a/static/icons/06003781.png b/static/icons/06003781.png deleted file mode 100755 index 726c514f..00000000 Binary files a/static/icons/06003781.png and /dev/null differ diff --git a/static/icons/06003782.png b/static/icons/06003782.png deleted file mode 100755 index 64f1b8f6..00000000 Binary files a/static/icons/06003782.png and /dev/null differ diff --git a/static/icons/06003783.png b/static/icons/06003783.png deleted file mode 100755 index 68e0f527..00000000 Binary files a/static/icons/06003783.png and /dev/null differ diff --git a/static/icons/06003784.png b/static/icons/06003784.png deleted file mode 100755 index e2faacba..00000000 Binary files a/static/icons/06003784.png and /dev/null differ diff --git a/static/icons/06003785.png b/static/icons/06003785.png deleted file mode 100755 index b209de3a..00000000 Binary files a/static/icons/06003785.png and /dev/null differ diff --git a/static/icons/06003786.png b/static/icons/06003786.png deleted file mode 100755 index 6d272ee7..00000000 Binary files a/static/icons/06003786.png and /dev/null differ diff --git a/static/icons/06003787.png b/static/icons/06003787.png deleted file mode 100755 index 276dce05..00000000 Binary files a/static/icons/06003787.png and /dev/null differ diff --git a/static/icons/06003788.png b/static/icons/06003788.png deleted file mode 100755 index 1b21dfdd..00000000 Binary files a/static/icons/06003788.png and /dev/null differ diff --git a/static/icons/06003789.png b/static/icons/06003789.png deleted file mode 100755 index 2ba10bed..00000000 Binary files a/static/icons/06003789.png and /dev/null differ diff --git a/static/icons/0600378A.png b/static/icons/0600378A.png deleted file mode 100755 index bef6f15e..00000000 Binary files a/static/icons/0600378A.png and /dev/null differ diff --git a/static/icons/0600378B.png b/static/icons/0600378B.png deleted file mode 100755 index f2542c04..00000000 Binary files a/static/icons/0600378B.png and /dev/null differ diff --git a/static/icons/0600378C.png b/static/icons/0600378C.png deleted file mode 100755 index 85c2ddf2..00000000 Binary files a/static/icons/0600378C.png and /dev/null differ diff --git a/static/icons/0600378D.png b/static/icons/0600378D.png deleted file mode 100755 index 2721b3f3..00000000 Binary files a/static/icons/0600378D.png and /dev/null differ diff --git a/static/icons/0600378F.png b/static/icons/0600378F.png deleted file mode 100755 index a27c08c6..00000000 Binary files a/static/icons/0600378F.png and /dev/null differ diff --git a/static/icons/06003790.png b/static/icons/06003790.png deleted file mode 100755 index 9fdd3675..00000000 Binary files a/static/icons/06003790.png and /dev/null differ diff --git a/static/icons/06003791.png b/static/icons/06003791.png deleted file mode 100755 index 5092e91c..00000000 Binary files a/static/icons/06003791.png and /dev/null differ diff --git a/static/icons/06003794.png b/static/icons/06003794.png deleted file mode 100755 index 79fd9f5e..00000000 Binary files a/static/icons/06003794.png and /dev/null differ diff --git a/static/icons/0600379A.png b/static/icons/0600379A.png deleted file mode 100755 index f4187e2e..00000000 Binary files a/static/icons/0600379A.png and /dev/null differ diff --git a/static/icons/0600379B.png b/static/icons/0600379B.png deleted file mode 100755 index 31a2cf2e..00000000 Binary files a/static/icons/0600379B.png and /dev/null differ diff --git a/static/icons/0600379F.png b/static/icons/0600379F.png deleted file mode 100755 index dc75c7cf..00000000 Binary files a/static/icons/0600379F.png and /dev/null differ diff --git a/static/icons/060037A0.png b/static/icons/060037A0.png deleted file mode 100755 index 0a83ffe6..00000000 Binary files a/static/icons/060037A0.png and /dev/null differ diff --git a/static/icons/060037A1.png b/static/icons/060037A1.png deleted file mode 100755 index 815d5cc8..00000000 Binary files a/static/icons/060037A1.png and /dev/null differ diff --git a/static/icons/060037A6.png b/static/icons/060037A6.png deleted file mode 100755 index 55f80c24..00000000 Binary files a/static/icons/060037A6.png and /dev/null differ diff --git a/static/icons/060037A7.png b/static/icons/060037A7.png deleted file mode 100755 index b5f6790b..00000000 Binary files a/static/icons/060037A7.png and /dev/null differ diff --git a/static/icons/060037A9.png b/static/icons/060037A9.png deleted file mode 100755 index dec7db63..00000000 Binary files a/static/icons/060037A9.png and /dev/null differ diff --git a/static/icons/060037AA.png b/static/icons/060037AA.png deleted file mode 100755 index aab6cec3..00000000 Binary files a/static/icons/060037AA.png and /dev/null differ diff --git a/static/icons/060037AB.png b/static/icons/060037AB.png deleted file mode 100755 index 2260b78e..00000000 Binary files a/static/icons/060037AB.png and /dev/null differ diff --git a/static/icons/060037AC.png b/static/icons/060037AC.png deleted file mode 100755 index f1167581..00000000 Binary files a/static/icons/060037AC.png and /dev/null differ diff --git a/static/icons/060037AE.png b/static/icons/060037AE.png deleted file mode 100755 index 4117ab9e..00000000 Binary files a/static/icons/060037AE.png and /dev/null differ diff --git a/static/icons/060037AF.png b/static/icons/060037AF.png deleted file mode 100755 index 72806362..00000000 Binary files a/static/icons/060037AF.png and /dev/null differ diff --git a/static/icons/060037B0.png b/static/icons/060037B0.png deleted file mode 100755 index 8b6c4591..00000000 Binary files a/static/icons/060037B0.png and /dev/null differ diff --git a/static/icons/060037B1.png b/static/icons/060037B1.png deleted file mode 100755 index 99cb9e55..00000000 Binary files a/static/icons/060037B1.png and /dev/null differ diff --git a/static/icons/060037B9.png b/static/icons/060037B9.png deleted file mode 100755 index 2c215d33..00000000 Binary files a/static/icons/060037B9.png and /dev/null differ diff --git a/static/icons/060037BD.png b/static/icons/060037BD.png deleted file mode 100755 index 1bd6d5c1..00000000 Binary files a/static/icons/060037BD.png and /dev/null differ diff --git a/static/icons/060037C0.png b/static/icons/060037C0.png deleted file mode 100755 index ba5b93a5..00000000 Binary files a/static/icons/060037C0.png and /dev/null differ diff --git a/static/icons/060037C1.png b/static/icons/060037C1.png deleted file mode 100755 index 6d042bc2..00000000 Binary files a/static/icons/060037C1.png and /dev/null differ diff --git a/static/icons/060037C2.png b/static/icons/060037C2.png deleted file mode 100755 index 19c0985e..00000000 Binary files a/static/icons/060037C2.png and /dev/null differ diff --git a/static/icons/060037CA.png b/static/icons/060037CA.png deleted file mode 100755 index b33f2513..00000000 Binary files a/static/icons/060037CA.png and /dev/null differ diff --git a/static/icons/060037CB.png b/static/icons/060037CB.png deleted file mode 100755 index 462dddb8..00000000 Binary files a/static/icons/060037CB.png and /dev/null differ diff --git a/static/icons/060037CC.png b/static/icons/060037CC.png deleted file mode 100755 index 99d3327f..00000000 Binary files a/static/icons/060037CC.png and /dev/null differ diff --git a/static/icons/060037CD.png b/static/icons/060037CD.png deleted file mode 100755 index 529d9952..00000000 Binary files a/static/icons/060037CD.png and /dev/null differ diff --git a/static/icons/060037D2.png b/static/icons/060037D2.png deleted file mode 100755 index cbedbd0f..00000000 Binary files a/static/icons/060037D2.png and /dev/null differ diff --git a/static/icons/060037D4.png b/static/icons/060037D4.png deleted file mode 100755 index 91b45a5d..00000000 Binary files a/static/icons/060037D4.png and /dev/null differ diff --git a/static/icons/060037D5.png b/static/icons/060037D5.png deleted file mode 100755 index 6ee12591..00000000 Binary files a/static/icons/060037D5.png and /dev/null differ diff --git a/static/icons/060037D6.png b/static/icons/060037D6.png deleted file mode 100755 index 1a2accee..00000000 Binary files a/static/icons/060037D6.png and /dev/null differ diff --git a/static/icons/060037D7.png b/static/icons/060037D7.png deleted file mode 100755 index 369bab04..00000000 Binary files a/static/icons/060037D7.png and /dev/null differ diff --git a/static/icons/060037D8.png b/static/icons/060037D8.png deleted file mode 100755 index 7c59a4f9..00000000 Binary files a/static/icons/060037D8.png and /dev/null differ diff --git a/static/icons/060037DA.png b/static/icons/060037DA.png deleted file mode 100755 index 3e276692..00000000 Binary files a/static/icons/060037DA.png and /dev/null differ diff --git a/static/icons/060037DB.png b/static/icons/060037DB.png deleted file mode 100755 index a3c21474..00000000 Binary files a/static/icons/060037DB.png and /dev/null differ diff --git a/static/icons/060037DC.png b/static/icons/060037DC.png deleted file mode 100755 index 3f5c5f5b..00000000 Binary files a/static/icons/060037DC.png and /dev/null differ diff --git a/static/icons/060037DD.png b/static/icons/060037DD.png deleted file mode 100755 index 90c423f9..00000000 Binary files a/static/icons/060037DD.png and /dev/null differ diff --git a/static/icons/060037DE.png b/static/icons/060037DE.png deleted file mode 100755 index 0fd187e8..00000000 Binary files a/static/icons/060037DE.png and /dev/null differ diff --git a/static/icons/060037E1.png b/static/icons/060037E1.png deleted file mode 100755 index ebf965d0..00000000 Binary files a/static/icons/060037E1.png and /dev/null differ diff --git a/static/icons/060037E2.png b/static/icons/060037E2.png deleted file mode 100755 index 46a84e8b..00000000 Binary files a/static/icons/060037E2.png and /dev/null differ diff --git a/static/icons/060037E3.png b/static/icons/060037E3.png deleted file mode 100755 index 60ec6e9e..00000000 Binary files a/static/icons/060037E3.png and /dev/null differ diff --git a/static/icons/060037E4.png b/static/icons/060037E4.png deleted file mode 100755 index 3ddfdebf..00000000 Binary files a/static/icons/060037E4.png and /dev/null differ diff --git a/static/icons/060037E5.png b/static/icons/060037E5.png deleted file mode 100755 index 6934ce2d..00000000 Binary files a/static/icons/060037E5.png and /dev/null differ diff --git a/static/icons/060037E6.png b/static/icons/060037E6.png deleted file mode 100755 index 28d8258e..00000000 Binary files a/static/icons/060037E6.png and /dev/null differ diff --git a/static/icons/060037E7.png b/static/icons/060037E7.png deleted file mode 100755 index 12e57b65..00000000 Binary files a/static/icons/060037E7.png and /dev/null differ diff --git a/static/icons/060037E8.png b/static/icons/060037E8.png deleted file mode 100755 index 6a45999d..00000000 Binary files a/static/icons/060037E8.png and /dev/null differ diff --git a/static/icons/060037EC.png b/static/icons/060037EC.png deleted file mode 100755 index a48c2f03..00000000 Binary files a/static/icons/060037EC.png and /dev/null differ diff --git a/static/icons/060037ED.png b/static/icons/060037ED.png deleted file mode 100755 index 707f2f9f..00000000 Binary files a/static/icons/060037ED.png and /dev/null differ diff --git a/static/icons/060037F1.png b/static/icons/060037F1.png deleted file mode 100755 index 4ec67002..00000000 Binary files a/static/icons/060037F1.png and /dev/null differ diff --git a/static/icons/060037F2.png b/static/icons/060037F2.png deleted file mode 100755 index a4daa2ac..00000000 Binary files a/static/icons/060037F2.png and /dev/null differ diff --git a/static/icons/060037F3.png b/static/icons/060037F3.png deleted file mode 100755 index 6e21569b..00000000 Binary files a/static/icons/060037F3.png and /dev/null differ diff --git a/static/icons/060037F4.png b/static/icons/060037F4.png deleted file mode 100755 index 2aaf4455..00000000 Binary files a/static/icons/060037F4.png and /dev/null differ diff --git a/static/icons/060037F8.png b/static/icons/060037F8.png deleted file mode 100755 index a87a745f..00000000 Binary files a/static/icons/060037F8.png and /dev/null differ diff --git a/static/icons/060037F9.png b/static/icons/060037F9.png deleted file mode 100755 index daa78f68..00000000 Binary files a/static/icons/060037F9.png and /dev/null differ diff --git a/static/icons/060037FA.png b/static/icons/060037FA.png deleted file mode 100755 index 2f9097a5..00000000 Binary files a/static/icons/060037FA.png and /dev/null differ diff --git a/static/icons/060037FB.png b/static/icons/060037FB.png deleted file mode 100755 index 9137b90f..00000000 Binary files a/static/icons/060037FB.png and /dev/null differ diff --git a/static/icons/060037FD.png b/static/icons/060037FD.png deleted file mode 100755 index 2a9a521e..00000000 Binary files a/static/icons/060037FD.png and /dev/null differ diff --git a/static/icons/06003807.png b/static/icons/06003807.png deleted file mode 100755 index 1055fab3..00000000 Binary files a/static/icons/06003807.png and /dev/null differ diff --git a/static/icons/06003808.png b/static/icons/06003808.png deleted file mode 100755 index 10995ea2..00000000 Binary files a/static/icons/06003808.png and /dev/null differ diff --git a/static/icons/06003809.png b/static/icons/06003809.png deleted file mode 100755 index bd623d42..00000000 Binary files a/static/icons/06003809.png and /dev/null differ diff --git a/static/icons/0600380A.png b/static/icons/0600380A.png deleted file mode 100755 index 4ae0ad1f..00000000 Binary files a/static/icons/0600380A.png and /dev/null differ diff --git a/static/icons/0600380B.png b/static/icons/0600380B.png deleted file mode 100755 index 7fc80029..00000000 Binary files a/static/icons/0600380B.png and /dev/null differ diff --git a/static/icons/0600380C.png b/static/icons/0600380C.png deleted file mode 100755 index 224e663d..00000000 Binary files a/static/icons/0600380C.png and /dev/null differ diff --git a/static/icons/06003815.png b/static/icons/06003815.png deleted file mode 100755 index 408225d6..00000000 Binary files a/static/icons/06003815.png and /dev/null differ diff --git a/static/icons/06003816.png b/static/icons/06003816.png deleted file mode 100755 index dd744cd8..00000000 Binary files a/static/icons/06003816.png and /dev/null differ diff --git a/static/icons/06003817.png b/static/icons/06003817.png deleted file mode 100755 index 1eb7af50..00000000 Binary files a/static/icons/06003817.png and /dev/null differ diff --git a/static/icons/06003819.png b/static/icons/06003819.png deleted file mode 100755 index bd6b1967..00000000 Binary files a/static/icons/06003819.png and /dev/null differ diff --git a/static/icons/06003821.png b/static/icons/06003821.png deleted file mode 100755 index a8639667..00000000 Binary files a/static/icons/06003821.png and /dev/null differ diff --git a/static/icons/06003824.png b/static/icons/06003824.png deleted file mode 100755 index fcf74cd4..00000000 Binary files a/static/icons/06003824.png and /dev/null differ diff --git a/static/icons/06003826.png b/static/icons/06003826.png deleted file mode 100755 index 022b9cd0..00000000 Binary files a/static/icons/06003826.png and /dev/null differ diff --git a/static/icons/06003828.png b/static/icons/06003828.png deleted file mode 100755 index e3416a70..00000000 Binary files a/static/icons/06003828.png and /dev/null differ diff --git a/static/icons/0600382A.png b/static/icons/0600382A.png deleted file mode 100755 index 0eef18ff..00000000 Binary files a/static/icons/0600382A.png and /dev/null differ diff --git a/static/icons/0600382C.png b/static/icons/0600382C.png deleted file mode 100755 index 0a25b351..00000000 Binary files a/static/icons/0600382C.png and /dev/null differ diff --git a/static/icons/0600382E.png b/static/icons/0600382E.png deleted file mode 100755 index 9e95892f..00000000 Binary files a/static/icons/0600382E.png and /dev/null differ diff --git a/static/icons/06003830.png b/static/icons/06003830.png deleted file mode 100755 index 04e1b497..00000000 Binary files a/static/icons/06003830.png and /dev/null differ diff --git a/static/icons/06003832.png b/static/icons/06003832.png deleted file mode 100755 index 78e9ee24..00000000 Binary files a/static/icons/06003832.png and /dev/null differ diff --git a/static/icons/06003833.png b/static/icons/06003833.png deleted file mode 100755 index d1794ff2..00000000 Binary files a/static/icons/06003833.png and /dev/null differ diff --git a/static/icons/06003835.png b/static/icons/06003835.png deleted file mode 100755 index 90a6a51b..00000000 Binary files a/static/icons/06003835.png and /dev/null differ diff --git a/static/icons/06003837.png b/static/icons/06003837.png deleted file mode 100755 index a3a53070..00000000 Binary files a/static/icons/06003837.png and /dev/null differ diff --git a/static/icons/06003839.png b/static/icons/06003839.png deleted file mode 100755 index 86c3c3c0..00000000 Binary files a/static/icons/06003839.png and /dev/null differ diff --git a/static/icons/0600383B.png b/static/icons/0600383B.png deleted file mode 100755 index a53f063e..00000000 Binary files a/static/icons/0600383B.png and /dev/null differ diff --git a/static/icons/0600383D.png b/static/icons/0600383D.png deleted file mode 100755 index 581b9ab1..00000000 Binary files a/static/icons/0600383D.png and /dev/null differ diff --git a/static/icons/0600383F.png b/static/icons/0600383F.png deleted file mode 100755 index 5cb58d91..00000000 Binary files a/static/icons/0600383F.png and /dev/null differ diff --git a/static/icons/06003843.png b/static/icons/06003843.png deleted file mode 100755 index 57381bb6..00000000 Binary files a/static/icons/06003843.png and /dev/null differ diff --git a/static/icons/0600384C.png b/static/icons/0600384C.png deleted file mode 100755 index aa1d4e97..00000000 Binary files a/static/icons/0600384C.png and /dev/null differ diff --git a/static/icons/06003851.png b/static/icons/06003851.png deleted file mode 100755 index ad78039e..00000000 Binary files a/static/icons/06003851.png and /dev/null differ diff --git a/static/icons/06003853.png b/static/icons/06003853.png deleted file mode 100755 index c91f4475..00000000 Binary files a/static/icons/06003853.png and /dev/null differ diff --git a/static/icons/06003856.png b/static/icons/06003856.png deleted file mode 100755 index 85790320..00000000 Binary files a/static/icons/06003856.png and /dev/null differ diff --git a/static/icons/06003858.png b/static/icons/06003858.png deleted file mode 100755 index ffaaa042..00000000 Binary files a/static/icons/06003858.png and /dev/null differ diff --git a/static/icons/06003859.png b/static/icons/06003859.png deleted file mode 100755 index faa8d10d..00000000 Binary files a/static/icons/06003859.png and /dev/null differ diff --git a/static/icons/06003865.png b/static/icons/06003865.png deleted file mode 100755 index 4aebd6cd..00000000 Binary files a/static/icons/06003865.png and /dev/null differ diff --git a/static/icons/0600387B.png b/static/icons/0600387B.png deleted file mode 100755 index 7b3cc7ea..00000000 Binary files a/static/icons/0600387B.png and /dev/null differ diff --git a/static/icons/0600387D.png b/static/icons/0600387D.png deleted file mode 100755 index 5faf49ae..00000000 Binary files a/static/icons/0600387D.png and /dev/null differ diff --git a/static/icons/0600387E.png b/static/icons/0600387E.png deleted file mode 100755 index 0b9e4cfe..00000000 Binary files a/static/icons/0600387E.png and /dev/null differ diff --git a/static/icons/0600387F.png b/static/icons/0600387F.png deleted file mode 100755 index 6ed44037..00000000 Binary files a/static/icons/0600387F.png and /dev/null differ diff --git a/static/icons/06003880.png b/static/icons/06003880.png deleted file mode 100755 index ea6b6ff0..00000000 Binary files a/static/icons/06003880.png and /dev/null differ diff --git a/static/icons/06003881.png b/static/icons/06003881.png deleted file mode 100755 index beb28c81..00000000 Binary files a/static/icons/06003881.png and /dev/null differ diff --git a/static/icons/06003882.png b/static/icons/06003882.png deleted file mode 100755 index cf43cb6d..00000000 Binary files a/static/icons/06003882.png and /dev/null differ diff --git a/static/icons/06003883.png b/static/icons/06003883.png deleted file mode 100755 index f0b0ed87..00000000 Binary files a/static/icons/06003883.png and /dev/null differ diff --git a/static/icons/06003884.png b/static/icons/06003884.png deleted file mode 100755 index 8cbd00cc..00000000 Binary files a/static/icons/06003884.png and /dev/null differ diff --git a/static/icons/06003885.png b/static/icons/06003885.png deleted file mode 100755 index 246e02cc..00000000 Binary files a/static/icons/06003885.png and /dev/null differ diff --git a/static/icons/0600388A.png b/static/icons/0600388A.png deleted file mode 100755 index 341bd4c7..00000000 Binary files a/static/icons/0600388A.png and /dev/null differ diff --git a/static/icons/0600388C.png b/static/icons/0600388C.png deleted file mode 100755 index 7304f4b8..00000000 Binary files a/static/icons/0600388C.png and /dev/null differ diff --git a/static/icons/0600388D.png b/static/icons/0600388D.png deleted file mode 100755 index 5c2ee93c..00000000 Binary files a/static/icons/0600388D.png and /dev/null differ diff --git a/static/icons/0600388E.png b/static/icons/0600388E.png deleted file mode 100755 index 1d145630..00000000 Binary files a/static/icons/0600388E.png and /dev/null differ diff --git a/static/icons/0600388F.png b/static/icons/0600388F.png deleted file mode 100755 index 7a9b60d0..00000000 Binary files a/static/icons/0600388F.png and /dev/null differ diff --git a/static/icons/06003891.png b/static/icons/06003891.png deleted file mode 100755 index 013fc25e..00000000 Binary files a/static/icons/06003891.png and /dev/null differ diff --git a/static/icons/06003893.png b/static/icons/06003893.png deleted file mode 100755 index 01b0ef95..00000000 Binary files a/static/icons/06003893.png and /dev/null differ diff --git a/static/icons/06003895.png b/static/icons/06003895.png deleted file mode 100755 index 9cca57b2..00000000 Binary files a/static/icons/06003895.png and /dev/null differ diff --git a/static/icons/06003896.png b/static/icons/06003896.png deleted file mode 100755 index 293672e1..00000000 Binary files a/static/icons/06003896.png and /dev/null differ diff --git a/static/icons/06003897.png b/static/icons/06003897.png deleted file mode 100755 index 117df3e7..00000000 Binary files a/static/icons/06003897.png and /dev/null differ diff --git a/static/icons/06003899.png b/static/icons/06003899.png deleted file mode 100755 index 66099fd6..00000000 Binary files a/static/icons/06003899.png and /dev/null differ diff --git a/static/icons/0600389A.png b/static/icons/0600389A.png deleted file mode 100755 index 9cca57b2..00000000 Binary files a/static/icons/0600389A.png and /dev/null differ diff --git a/static/icons/0600389C.png b/static/icons/0600389C.png deleted file mode 100755 index 89f2e502..00000000 Binary files a/static/icons/0600389C.png and /dev/null differ diff --git a/static/icons/0600389E.png b/static/icons/0600389E.png deleted file mode 100755 index f6537b49..00000000 Binary files a/static/icons/0600389E.png and /dev/null differ diff --git a/static/icons/060038A0.png b/static/icons/060038A0.png deleted file mode 100755 index 8c9b8afa..00000000 Binary files a/static/icons/060038A0.png and /dev/null differ diff --git a/static/icons/060038A2.png b/static/icons/060038A2.png deleted file mode 100755 index 664bfab4..00000000 Binary files a/static/icons/060038A2.png and /dev/null differ diff --git a/static/icons/060038A4.png b/static/icons/060038A4.png deleted file mode 100755 index f3a4cc8b..00000000 Binary files a/static/icons/060038A4.png and /dev/null differ diff --git a/static/icons/060038A6.png b/static/icons/060038A6.png deleted file mode 100755 index 4a42c026..00000000 Binary files a/static/icons/060038A6.png and /dev/null differ diff --git a/static/icons/060038A8.png b/static/icons/060038A8.png deleted file mode 100755 index 0f1a5a3e..00000000 Binary files a/static/icons/060038A8.png and /dev/null differ diff --git a/static/icons/060038AF.png b/static/icons/060038AF.png deleted file mode 100755 index cae1a946..00000000 Binary files a/static/icons/060038AF.png and /dev/null differ diff --git a/static/icons/060038B0.png b/static/icons/060038B0.png deleted file mode 100755 index f3011964..00000000 Binary files a/static/icons/060038B0.png and /dev/null differ diff --git a/static/icons/060038B1.png b/static/icons/060038B1.png deleted file mode 100755 index 68b0d152..00000000 Binary files a/static/icons/060038B1.png and /dev/null differ diff --git a/static/icons/060038D7.png b/static/icons/060038D7.png deleted file mode 100755 index 33a70f13..00000000 Binary files a/static/icons/060038D7.png and /dev/null differ diff --git a/static/icons/060038D8.png b/static/icons/060038D8.png deleted file mode 100755 index c0952be5..00000000 Binary files a/static/icons/060038D8.png and /dev/null differ diff --git a/static/icons/060038E7.png b/static/icons/060038E7.png deleted file mode 100755 index a5590778..00000000 Binary files a/static/icons/060038E7.png and /dev/null differ diff --git a/static/icons/060038E9.png b/static/icons/060038E9.png deleted file mode 100755 index f2a83618..00000000 Binary files a/static/icons/060038E9.png and /dev/null differ diff --git a/static/icons/060038EE.png b/static/icons/060038EE.png deleted file mode 100755 index 5a996d35..00000000 Binary files a/static/icons/060038EE.png and /dev/null differ diff --git a/static/icons/060038F0.png b/static/icons/060038F0.png deleted file mode 100755 index 0d65d626..00000000 Binary files a/static/icons/060038F0.png and /dev/null differ diff --git a/static/icons/060038F2.png b/static/icons/060038F2.png deleted file mode 100755 index 4c88d79e..00000000 Binary files a/static/icons/060038F2.png and /dev/null differ diff --git a/static/icons/060038F4.png b/static/icons/060038F4.png deleted file mode 100755 index b0a384c1..00000000 Binary files a/static/icons/060038F4.png and /dev/null differ diff --git a/static/icons/060038F6.png b/static/icons/060038F6.png deleted file mode 100755 index b2f671b0..00000000 Binary files a/static/icons/060038F6.png and /dev/null differ diff --git a/static/icons/060038F8.png b/static/icons/060038F8.png deleted file mode 100755 index c61ece99..00000000 Binary files a/static/icons/060038F8.png and /dev/null differ diff --git a/static/icons/060038FA.png b/static/icons/060038FA.png deleted file mode 100755 index 2c33eb56..00000000 Binary files a/static/icons/060038FA.png and /dev/null differ diff --git a/static/icons/060038FC.png b/static/icons/060038FC.png deleted file mode 100755 index 8490cb8c..00000000 Binary files a/static/icons/060038FC.png and /dev/null differ diff --git a/static/icons/060038FE.png b/static/icons/060038FE.png deleted file mode 100755 index 32768f79..00000000 Binary files a/static/icons/060038FE.png and /dev/null differ diff --git a/static/icons/06003900.png b/static/icons/06003900.png deleted file mode 100755 index 2fe52f6a..00000000 Binary files a/static/icons/06003900.png and /dev/null differ diff --git a/static/icons/06003902.png b/static/icons/06003902.png deleted file mode 100755 index cbbd5095..00000000 Binary files a/static/icons/06003902.png and /dev/null differ diff --git a/static/icons/06003904.png b/static/icons/06003904.png deleted file mode 100755 index 80bb7097..00000000 Binary files a/static/icons/06003904.png and /dev/null differ diff --git a/static/icons/06003906.png b/static/icons/06003906.png deleted file mode 100755 index 27e33d00..00000000 Binary files a/static/icons/06003906.png and /dev/null differ diff --git a/static/icons/06003907.png b/static/icons/06003907.png deleted file mode 100755 index 1051acba..00000000 Binary files a/static/icons/06003907.png and /dev/null differ diff --git a/static/icons/06003909.png b/static/icons/06003909.png deleted file mode 100755 index 3af81c43..00000000 Binary files a/static/icons/06003909.png and /dev/null differ diff --git a/static/icons/0600390B.png b/static/icons/0600390B.png deleted file mode 100755 index 9a7664e4..00000000 Binary files a/static/icons/0600390B.png and /dev/null differ diff --git a/static/icons/0600390D.png b/static/icons/0600390D.png deleted file mode 100755 index fe59c034..00000000 Binary files a/static/icons/0600390D.png and /dev/null differ diff --git a/static/icons/0600390F.png b/static/icons/0600390F.png deleted file mode 100755 index 4b476457..00000000 Binary files a/static/icons/0600390F.png and /dev/null differ diff --git a/static/icons/06003911.png b/static/icons/06003911.png deleted file mode 100755 index c01d6f33..00000000 Binary files a/static/icons/06003911.png and /dev/null differ diff --git a/static/icons/06003913.png b/static/icons/06003913.png deleted file mode 100755 index cefdef86..00000000 Binary files a/static/icons/06003913.png and /dev/null differ diff --git a/static/icons/06003914.png b/static/icons/06003914.png deleted file mode 100755 index b5d6eaa3..00000000 Binary files a/static/icons/06003914.png and /dev/null differ diff --git a/static/icons/06003915.png b/static/icons/06003915.png deleted file mode 100755 index b9762cf0..00000000 Binary files a/static/icons/06003915.png and /dev/null differ diff --git a/static/icons/06003918.png b/static/icons/06003918.png deleted file mode 100755 index ed3813ca..00000000 Binary files a/static/icons/06003918.png and /dev/null differ diff --git a/static/icons/0600391B.png b/static/icons/0600391B.png deleted file mode 100755 index b2dfc4a1..00000000 Binary files a/static/icons/0600391B.png and /dev/null differ diff --git a/static/icons/0600391D.png b/static/icons/0600391D.png deleted file mode 100755 index d75b476f..00000000 Binary files a/static/icons/0600391D.png and /dev/null differ diff --git a/static/icons/06003933.png b/static/icons/06003933.png deleted file mode 100755 index d5fd0a94..00000000 Binary files a/static/icons/06003933.png and /dev/null differ diff --git a/static/icons/06003935.png b/static/icons/06003935.png deleted file mode 100755 index 88a588ba..00000000 Binary files a/static/icons/06003935.png and /dev/null differ diff --git a/static/icons/06003937.png b/static/icons/06003937.png deleted file mode 100755 index e51621ec..00000000 Binary files a/static/icons/06003937.png and /dev/null differ diff --git a/static/icons/06003939.png b/static/icons/06003939.png deleted file mode 100755 index c8314413..00000000 Binary files a/static/icons/06003939.png and /dev/null differ diff --git a/static/icons/0600393B.png b/static/icons/0600393B.png deleted file mode 100755 index 3ca8df87..00000000 Binary files a/static/icons/0600393B.png and /dev/null differ diff --git a/static/icons/0600393D.png b/static/icons/0600393D.png deleted file mode 100755 index 2e4ca070..00000000 Binary files a/static/icons/0600393D.png and /dev/null differ diff --git a/static/icons/0600393F.png b/static/icons/0600393F.png deleted file mode 100755 index 7e2872ee..00000000 Binary files a/static/icons/0600393F.png and /dev/null differ diff --git a/static/icons/06003941.png b/static/icons/06003941.png deleted file mode 100755 index e3a57049..00000000 Binary files a/static/icons/06003941.png and /dev/null differ diff --git a/static/icons/06003943.png b/static/icons/06003943.png deleted file mode 100755 index 9e2e100b..00000000 Binary files a/static/icons/06003943.png and /dev/null differ diff --git a/static/icons/06003944.png b/static/icons/06003944.png deleted file mode 100755 index 63f86d6f..00000000 Binary files a/static/icons/06003944.png and /dev/null differ diff --git a/static/icons/06003948.png b/static/icons/06003948.png deleted file mode 100755 index d73899b1..00000000 Binary files a/static/icons/06003948.png and /dev/null differ diff --git a/static/icons/0600394C.png b/static/icons/0600394C.png deleted file mode 100755 index 21f84e2c..00000000 Binary files a/static/icons/0600394C.png and /dev/null differ diff --git a/static/icons/0600394E.png b/static/icons/0600394E.png deleted file mode 100755 index dae2a277..00000000 Binary files a/static/icons/0600394E.png and /dev/null differ diff --git a/static/icons/0600394F.png b/static/icons/0600394F.png deleted file mode 100755 index 977786d2..00000000 Binary files a/static/icons/0600394F.png and /dev/null differ diff --git a/static/icons/06003951.png b/static/icons/06003951.png deleted file mode 100755 index 4b538b37..00000000 Binary files a/static/icons/06003951.png and /dev/null differ diff --git a/static/icons/06003953.png b/static/icons/06003953.png deleted file mode 100755 index aae6e999..00000000 Binary files a/static/icons/06003953.png and /dev/null differ diff --git a/static/icons/06003955.png b/static/icons/06003955.png deleted file mode 100755 index 2d740f55..00000000 Binary files a/static/icons/06003955.png and /dev/null differ diff --git a/static/icons/06003957.png b/static/icons/06003957.png deleted file mode 100755 index 0a7633f2..00000000 Binary files a/static/icons/06003957.png and /dev/null differ diff --git a/static/icons/06003959.png b/static/icons/06003959.png deleted file mode 100755 index 49701a25..00000000 Binary files a/static/icons/06003959.png and /dev/null differ diff --git a/static/icons/0600395B.png b/static/icons/0600395B.png deleted file mode 100755 index 817082e5..00000000 Binary files a/static/icons/0600395B.png and /dev/null differ diff --git a/static/icons/0600395D.png b/static/icons/0600395D.png deleted file mode 100755 index c337a9fc..00000000 Binary files a/static/icons/0600395D.png and /dev/null differ diff --git a/static/icons/0600395F.png b/static/icons/0600395F.png deleted file mode 100755 index 88c3bb11..00000000 Binary files a/static/icons/0600395F.png and /dev/null differ diff --git a/static/icons/06003961.png b/static/icons/06003961.png deleted file mode 100755 index d25441e4..00000000 Binary files a/static/icons/06003961.png and /dev/null differ diff --git a/static/icons/06003963.png b/static/icons/06003963.png deleted file mode 100755 index 43bc7c31..00000000 Binary files a/static/icons/06003963.png and /dev/null differ diff --git a/static/icons/06003965.png b/static/icons/06003965.png deleted file mode 100755 index 10e90dc4..00000000 Binary files a/static/icons/06003965.png and /dev/null differ diff --git a/static/icons/06003968.png b/static/icons/06003968.png deleted file mode 100755 index 68f6bc43..00000000 Binary files a/static/icons/06003968.png and /dev/null differ diff --git a/static/icons/0600396A.png b/static/icons/0600396A.png deleted file mode 100755 index 2ed7d29e..00000000 Binary files a/static/icons/0600396A.png and /dev/null differ diff --git a/static/icons/0600396B.png b/static/icons/0600396B.png deleted file mode 100755 index 6dcf7798..00000000 Binary files a/static/icons/0600396B.png and /dev/null differ diff --git a/static/icons/0600396C.png b/static/icons/0600396C.png deleted file mode 100755 index 4a2e3b6f..00000000 Binary files a/static/icons/0600396C.png and /dev/null differ diff --git a/static/icons/0600396E.png b/static/icons/0600396E.png deleted file mode 100755 index 148a1d6a..00000000 Binary files a/static/icons/0600396E.png and /dev/null differ diff --git a/static/icons/06003971.png b/static/icons/06003971.png deleted file mode 100755 index 751bd798..00000000 Binary files a/static/icons/06003971.png and /dev/null differ diff --git a/static/icons/06003973.png b/static/icons/06003973.png deleted file mode 100755 index 0f0c535e..00000000 Binary files a/static/icons/06003973.png and /dev/null differ diff --git a/static/icons/06003975.png b/static/icons/06003975.png deleted file mode 100755 index f2b6fbfd..00000000 Binary files a/static/icons/06003975.png and /dev/null differ diff --git a/static/icons/06003977.png b/static/icons/06003977.png deleted file mode 100755 index 82b071a3..00000000 Binary files a/static/icons/06003977.png and /dev/null differ diff --git a/static/icons/06003978.png b/static/icons/06003978.png deleted file mode 100755 index 9c25bb2a..00000000 Binary files a/static/icons/06003978.png and /dev/null differ diff --git a/static/icons/0600397B.png b/static/icons/0600397B.png deleted file mode 100755 index 00d6e0f3..00000000 Binary files a/static/icons/0600397B.png and /dev/null differ diff --git a/static/icons/0600397D.png b/static/icons/0600397D.png deleted file mode 100755 index 146bd0af..00000000 Binary files a/static/icons/0600397D.png and /dev/null differ diff --git a/static/icons/0600397F.png b/static/icons/0600397F.png deleted file mode 100755 index e43db16a..00000000 Binary files a/static/icons/0600397F.png and /dev/null differ diff --git a/static/icons/06003981.png b/static/icons/06003981.png deleted file mode 100755 index f55b1a89..00000000 Binary files a/static/icons/06003981.png and /dev/null differ diff --git a/static/icons/06003983.png b/static/icons/06003983.png deleted file mode 100755 index cc562dd4..00000000 Binary files a/static/icons/06003983.png and /dev/null differ diff --git a/static/icons/06003985.png b/static/icons/06003985.png deleted file mode 100755 index 8bc5db36..00000000 Binary files a/static/icons/06003985.png and /dev/null differ diff --git a/static/icons/06003987.png b/static/icons/06003987.png deleted file mode 100755 index 1cb1ad86..00000000 Binary files a/static/icons/06003987.png and /dev/null differ diff --git a/static/icons/06003989.png b/static/icons/06003989.png deleted file mode 100755 index 6b753d61..00000000 Binary files a/static/icons/06003989.png and /dev/null differ diff --git a/static/icons/0600398B.png b/static/icons/0600398B.png deleted file mode 100755 index 07034350..00000000 Binary files a/static/icons/0600398B.png and /dev/null differ diff --git a/static/icons/0600398D.png b/static/icons/0600398D.png deleted file mode 100755 index 20d5e2ea..00000000 Binary files a/static/icons/0600398D.png and /dev/null differ diff --git a/static/icons/0600398F.png b/static/icons/0600398F.png deleted file mode 100755 index f6bf1b19..00000000 Binary files a/static/icons/0600398F.png and /dev/null differ diff --git a/static/icons/06003991.png b/static/icons/06003991.png deleted file mode 100755 index e6ae5976..00000000 Binary files a/static/icons/06003991.png and /dev/null differ diff --git a/static/icons/06003993.png b/static/icons/06003993.png deleted file mode 100755 index a05a583f..00000000 Binary files a/static/icons/06003993.png and /dev/null differ diff --git a/static/icons/06003995.png b/static/icons/06003995.png deleted file mode 100755 index 9488d085..00000000 Binary files a/static/icons/06003995.png and /dev/null differ diff --git a/static/icons/06003997.png b/static/icons/06003997.png deleted file mode 100755 index 66a4f9dd..00000000 Binary files a/static/icons/06003997.png and /dev/null differ diff --git a/static/icons/06003999.png b/static/icons/06003999.png deleted file mode 100755 index 375af3e2..00000000 Binary files a/static/icons/06003999.png and /dev/null differ diff --git a/static/icons/0600399B.png b/static/icons/0600399B.png deleted file mode 100755 index d72a5418..00000000 Binary files a/static/icons/0600399B.png and /dev/null differ diff --git a/static/icons/0600399D.png b/static/icons/0600399D.png deleted file mode 100755 index a7ae7cd8..00000000 Binary files a/static/icons/0600399D.png and /dev/null differ diff --git a/static/icons/0600399F.png b/static/icons/0600399F.png deleted file mode 100755 index 48cca317..00000000 Binary files a/static/icons/0600399F.png and /dev/null differ diff --git a/static/icons/060039A1.png b/static/icons/060039A1.png deleted file mode 100755 index 000b321d..00000000 Binary files a/static/icons/060039A1.png and /dev/null differ diff --git a/static/icons/060039A3.png b/static/icons/060039A3.png deleted file mode 100755 index a1996b2a..00000000 Binary files a/static/icons/060039A3.png and /dev/null differ diff --git a/static/icons/060039A5.png b/static/icons/060039A5.png deleted file mode 100755 index 33951ce6..00000000 Binary files a/static/icons/060039A5.png and /dev/null differ diff --git a/static/icons/060039A7.png b/static/icons/060039A7.png deleted file mode 100755 index 93981bfd..00000000 Binary files a/static/icons/060039A7.png and /dev/null differ diff --git a/static/icons/060039A9.png b/static/icons/060039A9.png deleted file mode 100755 index 33951ce6..00000000 Binary files a/static/icons/060039A9.png and /dev/null differ diff --git a/static/icons/060039AB.png b/static/icons/060039AB.png deleted file mode 100755 index f975ba24..00000000 Binary files a/static/icons/060039AB.png and /dev/null differ diff --git a/static/icons/060039AD.png b/static/icons/060039AD.png deleted file mode 100755 index 540f40c9..00000000 Binary files a/static/icons/060039AD.png and /dev/null differ diff --git a/static/icons/060039AF.png b/static/icons/060039AF.png deleted file mode 100755 index 1256ba8c..00000000 Binary files a/static/icons/060039AF.png and /dev/null differ diff --git a/static/icons/060039B1.png b/static/icons/060039B1.png deleted file mode 100755 index ec9bd30b..00000000 Binary files a/static/icons/060039B1.png and /dev/null differ diff --git a/static/icons/060039B3.png b/static/icons/060039B3.png deleted file mode 100755 index 74be8cf9..00000000 Binary files a/static/icons/060039B3.png and /dev/null differ diff --git a/static/icons/060039B5.png b/static/icons/060039B5.png deleted file mode 100755 index d6c777c1..00000000 Binary files a/static/icons/060039B5.png and /dev/null differ diff --git a/static/icons/060039B7.png b/static/icons/060039B7.png deleted file mode 100755 index 36fdee9d..00000000 Binary files a/static/icons/060039B7.png and /dev/null differ diff --git a/static/icons/060039B9.png b/static/icons/060039B9.png deleted file mode 100755 index c5865f3c..00000000 Binary files a/static/icons/060039B9.png and /dev/null differ diff --git a/static/icons/060039BB.png b/static/icons/060039BB.png deleted file mode 100755 index 7d95c57c..00000000 Binary files a/static/icons/060039BB.png and /dev/null differ diff --git a/static/icons/060039BD.png b/static/icons/060039BD.png deleted file mode 100755 index ea0710ba..00000000 Binary files a/static/icons/060039BD.png and /dev/null differ diff --git a/static/icons/060039BF.png b/static/icons/060039BF.png deleted file mode 100755 index 4cd629aa..00000000 Binary files a/static/icons/060039BF.png and /dev/null differ diff --git a/static/icons/060039C1.png b/static/icons/060039C1.png deleted file mode 100755 index a5009a7f..00000000 Binary files a/static/icons/060039C1.png and /dev/null differ diff --git a/static/icons/060039C3.png b/static/icons/060039C3.png deleted file mode 100755 index 07f66b5e..00000000 Binary files a/static/icons/060039C3.png and /dev/null differ diff --git a/static/icons/060039C5.png b/static/icons/060039C5.png deleted file mode 100755 index 08ff6c66..00000000 Binary files a/static/icons/060039C5.png and /dev/null differ diff --git a/static/icons/060039C7.png b/static/icons/060039C7.png deleted file mode 100755 index 67c76726..00000000 Binary files a/static/icons/060039C7.png and /dev/null differ diff --git a/static/icons/060039C9.png b/static/icons/060039C9.png deleted file mode 100755 index 4309d136..00000000 Binary files a/static/icons/060039C9.png and /dev/null differ diff --git a/static/icons/060039CB.png b/static/icons/060039CB.png deleted file mode 100755 index 9b3ed79b..00000000 Binary files a/static/icons/060039CB.png and /dev/null differ diff --git a/static/icons/060039CD.png b/static/icons/060039CD.png deleted file mode 100755 index 866cbcc2..00000000 Binary files a/static/icons/060039CD.png and /dev/null differ diff --git a/static/icons/060039CE.png b/static/icons/060039CE.png deleted file mode 100755 index 49c4599f..00000000 Binary files a/static/icons/060039CE.png and /dev/null differ diff --git a/static/icons/060039D0.png b/static/icons/060039D0.png deleted file mode 100755 index 6cdd93be..00000000 Binary files a/static/icons/060039D0.png and /dev/null differ diff --git a/static/icons/060039F2.png b/static/icons/060039F2.png deleted file mode 100755 index a2dfefe9..00000000 Binary files a/static/icons/060039F2.png and /dev/null differ diff --git a/static/icons/060039F5.png b/static/icons/060039F5.png deleted file mode 100755 index 2c96d3e4..00000000 Binary files a/static/icons/060039F5.png and /dev/null differ diff --git a/static/icons/06003A17.png b/static/icons/06003A17.png deleted file mode 100755 index a04560d9..00000000 Binary files a/static/icons/06003A17.png and /dev/null differ diff --git a/static/icons/06003A1E.png b/static/icons/06003A1E.png deleted file mode 100755 index 232ef576..00000000 Binary files a/static/icons/06003A1E.png and /dev/null differ diff --git a/static/icons/06003A22.png b/static/icons/06003A22.png deleted file mode 100755 index 70daf390..00000000 Binary files a/static/icons/06003A22.png and /dev/null differ diff --git a/static/icons/06003A23.png b/static/icons/06003A23.png deleted file mode 100755 index 65622b23..00000000 Binary files a/static/icons/06003A23.png and /dev/null differ diff --git a/static/icons/06003A25.png b/static/icons/06003A25.png deleted file mode 100755 index 189cafbe..00000000 Binary files a/static/icons/06003A25.png and /dev/null differ diff --git a/static/icons/06003A27.png b/static/icons/06003A27.png deleted file mode 100755 index b248a3ba..00000000 Binary files a/static/icons/06003A27.png and /dev/null differ diff --git a/static/icons/06003A29.png b/static/icons/06003A29.png deleted file mode 100755 index fda6d000..00000000 Binary files a/static/icons/06003A29.png and /dev/null differ diff --git a/static/icons/06003A2B.png b/static/icons/06003A2B.png deleted file mode 100755 index 0acd1c9c..00000000 Binary files a/static/icons/06003A2B.png and /dev/null differ diff --git a/static/icons/06003A2D.png b/static/icons/06003A2D.png deleted file mode 100755 index e3aef03c..00000000 Binary files a/static/icons/06003A2D.png and /dev/null differ diff --git a/static/icons/06003A2F.png b/static/icons/06003A2F.png deleted file mode 100755 index 882aaa2f..00000000 Binary files a/static/icons/06003A2F.png and /dev/null differ diff --git a/static/icons/06003A31.png b/static/icons/06003A31.png deleted file mode 100755 index 56710155..00000000 Binary files a/static/icons/06003A31.png and /dev/null differ diff --git a/static/icons/06003A55.png b/static/icons/06003A55.png deleted file mode 100755 index 70418171..00000000 Binary files a/static/icons/06003A55.png and /dev/null differ diff --git a/static/icons/06003A57.png b/static/icons/06003A57.png deleted file mode 100755 index 1a4eebfb..00000000 Binary files a/static/icons/06003A57.png and /dev/null differ diff --git a/static/icons/06003A59.png b/static/icons/06003A59.png deleted file mode 100755 index bff221e2..00000000 Binary files a/static/icons/06003A59.png and /dev/null differ diff --git a/static/icons/06003A5B.png b/static/icons/06003A5B.png deleted file mode 100755 index 57a6e19a..00000000 Binary files a/static/icons/06003A5B.png and /dev/null differ diff --git a/static/icons/06003A68.png b/static/icons/06003A68.png deleted file mode 100755 index d80cd2c7..00000000 Binary files a/static/icons/06003A68.png and /dev/null differ diff --git a/static/icons/06003A6A.png b/static/icons/06003A6A.png deleted file mode 100755 index 601a6bf6..00000000 Binary files a/static/icons/06003A6A.png and /dev/null differ diff --git a/static/icons/06003A6C.png b/static/icons/06003A6C.png deleted file mode 100755 index 1b1d7458..00000000 Binary files a/static/icons/06003A6C.png and /dev/null differ diff --git a/static/icons/06003A7F.png b/static/icons/06003A7F.png deleted file mode 100755 index 7e33532f..00000000 Binary files a/static/icons/06003A7F.png and /dev/null differ diff --git a/static/icons/06003A81.png b/static/icons/06003A81.png deleted file mode 100755 index 622b531f..00000000 Binary files a/static/icons/06003A81.png and /dev/null differ diff --git a/static/icons/06003A83.png b/static/icons/06003A83.png deleted file mode 100755 index eec98b18..00000000 Binary files a/static/icons/06003A83.png and /dev/null differ diff --git a/static/icons/06003AB0.png b/static/icons/06003AB0.png deleted file mode 100755 index 3ca93376..00000000 Binary files a/static/icons/06003AB0.png and /dev/null differ diff --git a/static/icons/06003AB2.png b/static/icons/06003AB2.png deleted file mode 100755 index 801fa955..00000000 Binary files a/static/icons/06003AB2.png and /dev/null differ diff --git a/static/icons/06003AB4.png b/static/icons/06003AB4.png deleted file mode 100755 index 28ab97cb..00000000 Binary files a/static/icons/06003AB4.png and /dev/null differ diff --git a/static/icons/06003AB6.png b/static/icons/06003AB6.png deleted file mode 100755 index 31b1bff6..00000000 Binary files a/static/icons/06003AB6.png and /dev/null differ diff --git a/static/icons/06003AC0.png b/static/icons/06003AC0.png deleted file mode 100755 index 3ad5343f..00000000 Binary files a/static/icons/06003AC0.png and /dev/null differ diff --git a/static/icons/06003AC4.png b/static/icons/06003AC4.png deleted file mode 100755 index d09da953..00000000 Binary files a/static/icons/06003AC4.png and /dev/null differ diff --git a/static/icons/06003AC6.png b/static/icons/06003AC6.png deleted file mode 100755 index 9f2e2ec9..00000000 Binary files a/static/icons/06003AC6.png and /dev/null differ diff --git a/static/icons/06003ACE.png b/static/icons/06003ACE.png deleted file mode 100755 index 741f693c..00000000 Binary files a/static/icons/06003ACE.png and /dev/null differ diff --git a/static/icons/06003AD0.png b/static/icons/06003AD0.png deleted file mode 100755 index 30a20adb..00000000 Binary files a/static/icons/06003AD0.png and /dev/null differ diff --git a/static/icons/06003AD2.png b/static/icons/06003AD2.png deleted file mode 100755 index 2d6818bc..00000000 Binary files a/static/icons/06003AD2.png and /dev/null differ diff --git a/static/icons/06003AD4.png b/static/icons/06003AD4.png deleted file mode 100755 index ad75305f..00000000 Binary files a/static/icons/06003AD4.png and /dev/null differ diff --git a/static/icons/06003AD6.png b/static/icons/06003AD6.png deleted file mode 100755 index 437918bc..00000000 Binary files a/static/icons/06003AD6.png and /dev/null differ diff --git a/static/icons/06003AD8.png b/static/icons/06003AD8.png deleted file mode 100755 index ac5c18e1..00000000 Binary files a/static/icons/06003AD8.png and /dev/null differ diff --git a/static/icons/06003ADA.png b/static/icons/06003ADA.png deleted file mode 100755 index 09b334d8..00000000 Binary files a/static/icons/06003ADA.png and /dev/null differ diff --git a/static/icons/06003AE9.png b/static/icons/06003AE9.png deleted file mode 100755 index 57e01d43..00000000 Binary files a/static/icons/06003AE9.png and /dev/null differ diff --git a/static/icons/06003AEB.png b/static/icons/06003AEB.png deleted file mode 100755 index 99f4538a..00000000 Binary files a/static/icons/06003AEB.png and /dev/null differ diff --git a/static/icons/06003AED.png b/static/icons/06003AED.png deleted file mode 100755 index 868a28d2..00000000 Binary files a/static/icons/06003AED.png and /dev/null differ diff --git a/static/icons/06003AEF.png b/static/icons/06003AEF.png deleted file mode 100755 index b67f04a6..00000000 Binary files a/static/icons/06003AEF.png and /dev/null differ diff --git a/static/icons/06003AF1.png b/static/icons/06003AF1.png deleted file mode 100755 index edb6a14a..00000000 Binary files a/static/icons/06003AF1.png and /dev/null differ diff --git a/static/icons/06003AF3.png b/static/icons/06003AF3.png deleted file mode 100755 index 4087216e..00000000 Binary files a/static/icons/06003AF3.png and /dev/null differ diff --git a/static/icons/06003AF5.png b/static/icons/06003AF5.png deleted file mode 100755 index 9892814c..00000000 Binary files a/static/icons/06003AF5.png and /dev/null differ diff --git a/static/icons/06003AF7.png b/static/icons/06003AF7.png deleted file mode 100755 index dc13d163..00000000 Binary files a/static/icons/06003AF7.png and /dev/null differ diff --git a/static/icons/06003AF9.png b/static/icons/06003AF9.png deleted file mode 100755 index 654ada39..00000000 Binary files a/static/icons/06003AF9.png and /dev/null differ diff --git a/static/icons/06003AFB.png b/static/icons/06003AFB.png deleted file mode 100755 index 6a418d33..00000000 Binary files a/static/icons/06003AFB.png and /dev/null differ diff --git a/static/icons/06003AFD.png b/static/icons/06003AFD.png deleted file mode 100755 index ac7534a1..00000000 Binary files a/static/icons/06003AFD.png and /dev/null differ diff --git a/static/icons/06003AFF.png b/static/icons/06003AFF.png deleted file mode 100755 index ab0d5cd8..00000000 Binary files a/static/icons/06003AFF.png and /dev/null differ diff --git a/static/icons/06003B01.png b/static/icons/06003B01.png deleted file mode 100755 index f63fe28d..00000000 Binary files a/static/icons/06003B01.png and /dev/null differ diff --git a/static/icons/06003B03.png b/static/icons/06003B03.png deleted file mode 100755 index 656f116f..00000000 Binary files a/static/icons/06003B03.png and /dev/null differ diff --git a/static/icons/06003B05.png b/static/icons/06003B05.png deleted file mode 100755 index 37d88515..00000000 Binary files a/static/icons/06003B05.png and /dev/null differ diff --git a/static/icons/06003B07.png b/static/icons/06003B07.png deleted file mode 100755 index ffe14832..00000000 Binary files a/static/icons/06003B07.png and /dev/null differ diff --git a/static/icons/06003B09.png b/static/icons/06003B09.png deleted file mode 100755 index f0a37882..00000000 Binary files a/static/icons/06003B09.png and /dev/null differ diff --git a/static/icons/06003B0B.png b/static/icons/06003B0B.png deleted file mode 100755 index 24651457..00000000 Binary files a/static/icons/06003B0B.png and /dev/null differ diff --git a/static/icons/06003B0D.png b/static/icons/06003B0D.png deleted file mode 100755 index d8a09c6c..00000000 Binary files a/static/icons/06003B0D.png and /dev/null differ diff --git a/static/icons/06003B0F.png b/static/icons/06003B0F.png deleted file mode 100755 index ff497445..00000000 Binary files a/static/icons/06003B0F.png and /dev/null differ diff --git a/static/icons/06003B11.png b/static/icons/06003B11.png deleted file mode 100755 index b8685b77..00000000 Binary files a/static/icons/06003B11.png and /dev/null differ diff --git a/static/icons/06003B13.png b/static/icons/06003B13.png deleted file mode 100755 index 5dcc3726..00000000 Binary files a/static/icons/06003B13.png and /dev/null differ diff --git a/static/icons/06003B15.png b/static/icons/06003B15.png deleted file mode 100755 index 8b675d5d..00000000 Binary files a/static/icons/06003B15.png and /dev/null differ diff --git a/static/icons/06003B16.png b/static/icons/06003B16.png deleted file mode 100755 index 3ee7ce46..00000000 Binary files a/static/icons/06003B16.png and /dev/null differ diff --git a/static/icons/06003B18.png b/static/icons/06003B18.png deleted file mode 100755 index 225b130e..00000000 Binary files a/static/icons/06003B18.png and /dev/null differ diff --git a/static/icons/06003B1C.png b/static/icons/06003B1C.png deleted file mode 100755 index 11bbd9c1..00000000 Binary files a/static/icons/06003B1C.png and /dev/null differ diff --git a/static/icons/06003B1E.png b/static/icons/06003B1E.png deleted file mode 100755 index 636b55b7..00000000 Binary files a/static/icons/06003B1E.png and /dev/null differ diff --git a/static/icons/06003B20.png b/static/icons/06003B20.png deleted file mode 100755 index c19dd777..00000000 Binary files a/static/icons/06003B20.png and /dev/null differ diff --git a/static/icons/06003B22.png b/static/icons/06003B22.png deleted file mode 100755 index 2ece12e2..00000000 Binary files a/static/icons/06003B22.png and /dev/null differ diff --git a/static/icons/06003B24.png b/static/icons/06003B24.png deleted file mode 100755 index 4b66646c..00000000 Binary files a/static/icons/06003B24.png and /dev/null differ diff --git a/static/icons/06003B26.png b/static/icons/06003B26.png deleted file mode 100755 index 9169b82e..00000000 Binary files a/static/icons/06003B26.png and /dev/null differ diff --git a/static/icons/06003B28.png b/static/icons/06003B28.png deleted file mode 100755 index 731360a1..00000000 Binary files a/static/icons/06003B28.png and /dev/null differ diff --git a/static/icons/06003B2C.png b/static/icons/06003B2C.png deleted file mode 100755 index 24f39022..00000000 Binary files a/static/icons/06003B2C.png and /dev/null differ diff --git a/static/icons/06003B2E.png b/static/icons/06003B2E.png deleted file mode 100755 index 0c8fee35..00000000 Binary files a/static/icons/06003B2E.png and /dev/null differ diff --git a/static/icons/06003B30.png b/static/icons/06003B30.png deleted file mode 100755 index f9393673..00000000 Binary files a/static/icons/06003B30.png and /dev/null differ diff --git a/static/icons/06003B32.png b/static/icons/06003B32.png deleted file mode 100755 index 3e028874..00000000 Binary files a/static/icons/06003B32.png and /dev/null differ diff --git a/static/icons/06003B34.png b/static/icons/06003B34.png deleted file mode 100755 index 9ada146b..00000000 Binary files a/static/icons/06003B34.png and /dev/null differ diff --git a/static/icons/06003B36.png b/static/icons/06003B36.png deleted file mode 100755 index 70c31849..00000000 Binary files a/static/icons/06003B36.png and /dev/null differ diff --git a/static/icons/06003B4E.png b/static/icons/06003B4E.png deleted file mode 100755 index c3dd6dc1..00000000 Binary files a/static/icons/06003B4E.png and /dev/null differ diff --git a/static/icons/06003B63.png b/static/icons/06003B63.png deleted file mode 100755 index 4a3f2349..00000000 Binary files a/static/icons/06003B63.png and /dev/null differ diff --git a/static/icons/06003B8E.png b/static/icons/06003B8E.png deleted file mode 100755 index c9c0a84d..00000000 Binary files a/static/icons/06003B8E.png and /dev/null differ diff --git a/static/icons/06003B90.png b/static/icons/06003B90.png deleted file mode 100755 index 05ff7760..00000000 Binary files a/static/icons/06003B90.png and /dev/null differ diff --git a/static/icons/06003B92.png b/static/icons/06003B92.png deleted file mode 100755 index f5be6bde..00000000 Binary files a/static/icons/06003B92.png and /dev/null differ diff --git a/static/icons/06003B98.png b/static/icons/06003B98.png deleted file mode 100755 index 88fb0fbc..00000000 Binary files a/static/icons/06003B98.png and /dev/null differ diff --git a/static/icons/06003BC7.png b/static/icons/06003BC7.png deleted file mode 100755 index 79c57b90..00000000 Binary files a/static/icons/06003BC7.png and /dev/null differ diff --git a/static/icons/06003BC9.png b/static/icons/06003BC9.png deleted file mode 100755 index 07530b02..00000000 Binary files a/static/icons/06003BC9.png and /dev/null differ diff --git a/static/icons/06003BCB.png b/static/icons/06003BCB.png deleted file mode 100755 index ce172282..00000000 Binary files a/static/icons/06003BCB.png and /dev/null differ diff --git a/static/icons/06003BD1.png b/static/icons/06003BD1.png deleted file mode 100755 index b097454a..00000000 Binary files a/static/icons/06003BD1.png and /dev/null differ diff --git a/static/icons/06003BD3.png b/static/icons/06003BD3.png deleted file mode 100755 index fc6c6ca3..00000000 Binary files a/static/icons/06003BD3.png and /dev/null differ diff --git a/static/icons/06003BD5.png b/static/icons/06003BD5.png deleted file mode 100755 index 1e0ce6ce..00000000 Binary files a/static/icons/06003BD5.png and /dev/null differ diff --git a/static/icons/06003BD7.png b/static/icons/06003BD7.png deleted file mode 100755 index 2b700951..00000000 Binary files a/static/icons/06003BD7.png and /dev/null differ diff --git a/static/icons/06003BD9.png b/static/icons/06003BD9.png deleted file mode 100755 index eac2893d..00000000 Binary files a/static/icons/06003BD9.png and /dev/null differ diff --git a/static/icons/06003BDB.png b/static/icons/06003BDB.png deleted file mode 100755 index ecb4db7c..00000000 Binary files a/static/icons/06003BDB.png and /dev/null differ diff --git a/static/icons/06003BE3.png b/static/icons/06003BE3.png deleted file mode 100755 index b1da43b2..00000000 Binary files a/static/icons/06003BE3.png and /dev/null differ diff --git a/static/icons/06003BE5.png b/static/icons/06003BE5.png deleted file mode 100755 index 82b07280..00000000 Binary files a/static/icons/06003BE5.png and /dev/null differ diff --git a/static/icons/06003BE6.png b/static/icons/06003BE6.png deleted file mode 100755 index 5f5827ff..00000000 Binary files a/static/icons/06003BE6.png and /dev/null differ diff --git a/static/icons/06003BE8.png b/static/icons/06003BE8.png deleted file mode 100755 index 8af36c69..00000000 Binary files a/static/icons/06003BE8.png and /dev/null differ diff --git a/static/icons/06003BEA.png b/static/icons/06003BEA.png deleted file mode 100755 index f8b8ac01..00000000 Binary files a/static/icons/06003BEA.png and /dev/null differ diff --git a/static/icons/06003BEC.png b/static/icons/06003BEC.png deleted file mode 100755 index 47c83981..00000000 Binary files a/static/icons/06003BEC.png and /dev/null differ diff --git a/static/icons/06003BEE.png b/static/icons/06003BEE.png deleted file mode 100755 index 26f7b8e5..00000000 Binary files a/static/icons/06003BEE.png and /dev/null differ diff --git a/static/icons/06003BF0.png b/static/icons/06003BF0.png deleted file mode 100755 index 8eb47a09..00000000 Binary files a/static/icons/06003BF0.png and /dev/null differ diff --git a/static/icons/06003BF2.png b/static/icons/06003BF2.png deleted file mode 100755 index c05f88c6..00000000 Binary files a/static/icons/06003BF2.png and /dev/null differ diff --git a/static/icons/06003BF4.png b/static/icons/06003BF4.png deleted file mode 100755 index f445d1f5..00000000 Binary files a/static/icons/06003BF4.png and /dev/null differ diff --git a/static/icons/06003BF6.png b/static/icons/06003BF6.png deleted file mode 100755 index 018f7545..00000000 Binary files a/static/icons/06003BF6.png and /dev/null differ diff --git a/static/icons/06003BF8.png b/static/icons/06003BF8.png deleted file mode 100755 index 183bef40..00000000 Binary files a/static/icons/06003BF8.png and /dev/null differ diff --git a/static/icons/06003BFA.png b/static/icons/06003BFA.png deleted file mode 100755 index 6c0906ea..00000000 Binary files a/static/icons/06003BFA.png and /dev/null differ diff --git a/static/icons/06003BFB.png b/static/icons/06003BFB.png deleted file mode 100755 index f894a5b9..00000000 Binary files a/static/icons/06003BFB.png and /dev/null differ diff --git a/static/icons/06003BFD.png b/static/icons/06003BFD.png deleted file mode 100755 index 6f9d8312..00000000 Binary files a/static/icons/06003BFD.png and /dev/null differ diff --git a/static/icons/06003BFF.png b/static/icons/06003BFF.png deleted file mode 100755 index 6a8ab64c..00000000 Binary files a/static/icons/06003BFF.png and /dev/null differ diff --git a/static/icons/06003C00.png b/static/icons/06003C00.png deleted file mode 100755 index 654000fc..00000000 Binary files a/static/icons/06003C00.png and /dev/null differ diff --git a/static/icons/06003C02.png b/static/icons/06003C02.png deleted file mode 100755 index 9968d36c..00000000 Binary files a/static/icons/06003C02.png and /dev/null differ diff --git a/static/icons/06003C04.png b/static/icons/06003C04.png deleted file mode 100755 index 29aac4f1..00000000 Binary files a/static/icons/06003C04.png and /dev/null differ diff --git a/static/icons/06003C05.png b/static/icons/06003C05.png deleted file mode 100755 index 000d96b0..00000000 Binary files a/static/icons/06003C05.png and /dev/null differ diff --git a/static/icons/06003C07.png b/static/icons/06003C07.png deleted file mode 100755 index b7cfe665..00000000 Binary files a/static/icons/06003C07.png and /dev/null differ diff --git a/static/icons/06003C09.png b/static/icons/06003C09.png deleted file mode 100755 index 68ccffe4..00000000 Binary files a/static/icons/06003C09.png and /dev/null differ diff --git a/static/icons/06003C0A.png b/static/icons/06003C0A.png deleted file mode 100755 index 7847d8eb..00000000 Binary files a/static/icons/06003C0A.png and /dev/null differ diff --git a/static/icons/06003C0C.png b/static/icons/06003C0C.png deleted file mode 100755 index f49017c0..00000000 Binary files a/static/icons/06003C0C.png and /dev/null differ diff --git a/static/icons/06003C0E.png b/static/icons/06003C0E.png deleted file mode 100755 index b4815e98..00000000 Binary files a/static/icons/06003C0E.png and /dev/null differ diff --git a/static/icons/06003C11.png b/static/icons/06003C11.png deleted file mode 100755 index 4099154c..00000000 Binary files a/static/icons/06003C11.png and /dev/null differ diff --git a/static/icons/06003C13.png b/static/icons/06003C13.png deleted file mode 100755 index a236bc3b..00000000 Binary files a/static/icons/06003C13.png and /dev/null differ diff --git a/static/icons/06003C15.png b/static/icons/06003C15.png deleted file mode 100755 index 769dec3e..00000000 Binary files a/static/icons/06003C15.png and /dev/null differ diff --git a/static/icons/06003C18.png b/static/icons/06003C18.png deleted file mode 100755 index b63b54dc..00000000 Binary files a/static/icons/06003C18.png and /dev/null differ diff --git a/static/icons/06003C1A.png b/static/icons/06003C1A.png deleted file mode 100755 index 4b34d088..00000000 Binary files a/static/icons/06003C1A.png and /dev/null differ diff --git a/static/icons/06003C1D.png b/static/icons/06003C1D.png deleted file mode 100755 index 302f815e..00000000 Binary files a/static/icons/06003C1D.png and /dev/null differ diff --git a/static/icons/06003C21.png b/static/icons/06003C21.png deleted file mode 100755 index bfc7265b..00000000 Binary files a/static/icons/06003C21.png and /dev/null differ diff --git a/static/icons/06003C25.png b/static/icons/06003C25.png deleted file mode 100755 index 8701ab1a..00000000 Binary files a/static/icons/06003C25.png and /dev/null differ diff --git a/static/icons/06003C27.png b/static/icons/06003C27.png deleted file mode 100755 index 25833a68..00000000 Binary files a/static/icons/06003C27.png and /dev/null differ diff --git a/static/icons/06003C2A.png b/static/icons/06003C2A.png deleted file mode 100755 index 706bff8e..00000000 Binary files a/static/icons/06003C2A.png and /dev/null differ diff --git a/static/icons/06003C2B.png b/static/icons/06003C2B.png deleted file mode 100755 index 0c7bf1ef..00000000 Binary files a/static/icons/06003C2B.png and /dev/null differ diff --git a/static/icons/06003C2C.png b/static/icons/06003C2C.png deleted file mode 100755 index 87411a7b..00000000 Binary files a/static/icons/06003C2C.png and /dev/null differ diff --git a/static/icons/06003C2D.png b/static/icons/06003C2D.png deleted file mode 100755 index 390c2487..00000000 Binary files a/static/icons/06003C2D.png and /dev/null differ diff --git a/static/icons/06003C36.png b/static/icons/06003C36.png deleted file mode 100755 index 96a1dce3..00000000 Binary files a/static/icons/06003C36.png and /dev/null differ diff --git a/static/icons/06003C37.png b/static/icons/06003C37.png deleted file mode 100755 index b8a75603..00000000 Binary files a/static/icons/06003C37.png and /dev/null differ diff --git a/static/icons/06003C38.png b/static/icons/06003C38.png deleted file mode 100755 index aeb961e6..00000000 Binary files a/static/icons/06003C38.png and /dev/null differ diff --git a/static/icons/06003C39.png b/static/icons/06003C39.png deleted file mode 100755 index bdf8ee2f..00000000 Binary files a/static/icons/06003C39.png and /dev/null differ diff --git a/static/icons/06003C3B.png b/static/icons/06003C3B.png deleted file mode 100755 index 6db4f9a9..00000000 Binary files a/static/icons/06003C3B.png and /dev/null differ diff --git a/static/icons/06003C3D.png b/static/icons/06003C3D.png deleted file mode 100755 index 5046f1d1..00000000 Binary files a/static/icons/06003C3D.png and /dev/null differ diff --git a/static/icons/06003C3E.png b/static/icons/06003C3E.png deleted file mode 100755 index 6652b295..00000000 Binary files a/static/icons/06003C3E.png and /dev/null differ diff --git a/static/icons/06003C3F.png b/static/icons/06003C3F.png deleted file mode 100755 index 8169109e..00000000 Binary files a/static/icons/06003C3F.png and /dev/null differ diff --git a/static/icons/06003C40.png b/static/icons/06003C40.png deleted file mode 100755 index 824eea5b..00000000 Binary files a/static/icons/06003C40.png and /dev/null differ diff --git a/static/icons/06003C45.png b/static/icons/06003C45.png deleted file mode 100755 index b31b4038..00000000 Binary files a/static/icons/06003C45.png and /dev/null differ diff --git a/static/icons/06003C4A.png b/static/icons/06003C4A.png deleted file mode 100755 index c7e32bd3..00000000 Binary files a/static/icons/06003C4A.png and /dev/null differ diff --git a/static/icons/06003C4C.png b/static/icons/06003C4C.png deleted file mode 100755 index fea33051..00000000 Binary files a/static/icons/06003C4C.png and /dev/null differ diff --git a/static/icons/06003C4E.png b/static/icons/06003C4E.png deleted file mode 100755 index 40f13e8a..00000000 Binary files a/static/icons/06003C4E.png and /dev/null differ diff --git a/static/icons/06003C50.png b/static/icons/06003C50.png deleted file mode 100755 index a9874492..00000000 Binary files a/static/icons/06003C50.png and /dev/null differ diff --git a/static/icons/06003C54.png b/static/icons/06003C54.png deleted file mode 100755 index 59d6f55a..00000000 Binary files a/static/icons/06003C54.png and /dev/null differ diff --git a/static/icons/06003C55.png b/static/icons/06003C55.png deleted file mode 100755 index 95a26f6e..00000000 Binary files a/static/icons/06003C55.png and /dev/null differ diff --git a/static/icons/06003C56.png b/static/icons/06003C56.png deleted file mode 100755 index 0a2101ca..00000000 Binary files a/static/icons/06003C56.png and /dev/null differ diff --git a/static/icons/06003C5E.png b/static/icons/06003C5E.png deleted file mode 100755 index e8253c8f..00000000 Binary files a/static/icons/06003C5E.png and /dev/null differ diff --git a/static/icons/06003C7D.png b/static/icons/06003C7D.png deleted file mode 100755 index d7a9a633..00000000 Binary files a/static/icons/06003C7D.png and /dev/null differ diff --git a/static/icons/06003C83.png b/static/icons/06003C83.png deleted file mode 100755 index a791da42..00000000 Binary files a/static/icons/06003C83.png and /dev/null differ diff --git a/static/icons/06003C85.png b/static/icons/06003C85.png deleted file mode 100755 index 8bf88ca0..00000000 Binary files a/static/icons/06003C85.png and /dev/null differ diff --git a/static/icons/06003C87.png b/static/icons/06003C87.png deleted file mode 100755 index bb7367b1..00000000 Binary files a/static/icons/06003C87.png and /dev/null differ diff --git a/static/icons/06003C89.png b/static/icons/06003C89.png deleted file mode 100755 index 3cf9b36d..00000000 Binary files a/static/icons/06003C89.png and /dev/null differ diff --git a/static/icons/06003C8B.png b/static/icons/06003C8B.png deleted file mode 100755 index 564d4a4b..00000000 Binary files a/static/icons/06003C8B.png and /dev/null differ diff --git a/static/icons/06003C8D.png b/static/icons/06003C8D.png deleted file mode 100755 index 1b3900dc..00000000 Binary files a/static/icons/06003C8D.png and /dev/null differ diff --git a/static/icons/06003C8F.png b/static/icons/06003C8F.png deleted file mode 100755 index 624d0ce5..00000000 Binary files a/static/icons/06003C8F.png and /dev/null differ diff --git a/static/icons/06003C92.png b/static/icons/06003C92.png deleted file mode 100755 index 58fa7fac..00000000 Binary files a/static/icons/06003C92.png and /dev/null differ diff --git a/static/icons/06003C93.png b/static/icons/06003C93.png deleted file mode 100755 index 82e4dc13..00000000 Binary files a/static/icons/06003C93.png and /dev/null differ diff --git a/static/icons/06003C96.png b/static/icons/06003C96.png deleted file mode 100755 index 226ab5c4..00000000 Binary files a/static/icons/06003C96.png and /dev/null differ diff --git a/static/icons/06003C97.png b/static/icons/06003C97.png deleted file mode 100755 index d253ad49..00000000 Binary files a/static/icons/06003C97.png and /dev/null differ diff --git a/static/icons/06003C98.png b/static/icons/06003C98.png deleted file mode 100755 index 0294adfe..00000000 Binary files a/static/icons/06003C98.png and /dev/null differ diff --git a/static/icons/06003C9A.png b/static/icons/06003C9A.png deleted file mode 100755 index 2a4b722b..00000000 Binary files a/static/icons/06003C9A.png and /dev/null differ diff --git a/static/icons/06003C9C.png b/static/icons/06003C9C.png deleted file mode 100755 index 7f8edc77..00000000 Binary files a/static/icons/06003C9C.png and /dev/null differ diff --git a/static/icons/06003C9D.png b/static/icons/06003C9D.png deleted file mode 100755 index 57d68e2c..00000000 Binary files a/static/icons/06003C9D.png and /dev/null differ diff --git a/static/icons/06003C9E.png b/static/icons/06003C9E.png deleted file mode 100755 index f87c1023..00000000 Binary files a/static/icons/06003C9E.png and /dev/null differ diff --git a/static/icons/06003C9F.png b/static/icons/06003C9F.png deleted file mode 100755 index 0b32ba09..00000000 Binary files a/static/icons/06003C9F.png and /dev/null differ diff --git a/static/icons/06003CA0.png b/static/icons/06003CA0.png deleted file mode 100755 index 014fd980..00000000 Binary files a/static/icons/06003CA0.png and /dev/null differ diff --git a/static/icons/06003CA1.png b/static/icons/06003CA1.png deleted file mode 100755 index 549afaef..00000000 Binary files a/static/icons/06003CA1.png and /dev/null differ diff --git a/static/icons/06003CA2.png b/static/icons/06003CA2.png deleted file mode 100755 index d07ed31e..00000000 Binary files a/static/icons/06003CA2.png and /dev/null differ diff --git a/static/icons/06003CA3.png b/static/icons/06003CA3.png deleted file mode 100755 index 03899435..00000000 Binary files a/static/icons/06003CA3.png and /dev/null differ diff --git a/static/icons/06003CA5.png b/static/icons/06003CA5.png deleted file mode 100755 index fa3a385b..00000000 Binary files a/static/icons/06003CA5.png and /dev/null differ diff --git a/static/icons/06003CA7.png b/static/icons/06003CA7.png deleted file mode 100755 index 2c25129c..00000000 Binary files a/static/icons/06003CA7.png and /dev/null differ diff --git a/static/icons/06003CA8.png b/static/icons/06003CA8.png deleted file mode 100755 index 45869b08..00000000 Binary files a/static/icons/06003CA8.png and /dev/null differ diff --git a/static/icons/06003CAA.png b/static/icons/06003CAA.png deleted file mode 100755 index e9f870fb..00000000 Binary files a/static/icons/06003CAA.png and /dev/null differ diff --git a/static/icons/06003CAB.png b/static/icons/06003CAB.png deleted file mode 100755 index d7b51547..00000000 Binary files a/static/icons/06003CAB.png and /dev/null differ diff --git a/static/icons/06003CAC.png b/static/icons/06003CAC.png deleted file mode 100755 index 91c33411..00000000 Binary files a/static/icons/06003CAC.png and /dev/null differ diff --git a/static/icons/06003CAD.png b/static/icons/06003CAD.png deleted file mode 100755 index 8df7e0e7..00000000 Binary files a/static/icons/06003CAD.png and /dev/null differ diff --git a/static/icons/06003CB3.png b/static/icons/06003CB3.png deleted file mode 100755 index e9b65ebf..00000000 Binary files a/static/icons/06003CB3.png and /dev/null differ diff --git a/static/icons/06003CB5.png b/static/icons/06003CB5.png deleted file mode 100755 index 736ca200..00000000 Binary files a/static/icons/06003CB5.png and /dev/null differ diff --git a/static/icons/06003CB7.png b/static/icons/06003CB7.png deleted file mode 100755 index 97f40e87..00000000 Binary files a/static/icons/06003CB7.png and /dev/null differ diff --git a/static/icons/06003CB9.png b/static/icons/06003CB9.png deleted file mode 100755 index f19f6ff6..00000000 Binary files a/static/icons/06003CB9.png and /dev/null differ diff --git a/static/icons/06003CBB.png b/static/icons/06003CBB.png deleted file mode 100755 index 2358c116..00000000 Binary files a/static/icons/06003CBB.png and /dev/null differ diff --git a/static/icons/06003CBD.png b/static/icons/06003CBD.png deleted file mode 100755 index 012ebaa1..00000000 Binary files a/static/icons/06003CBD.png and /dev/null differ diff --git a/static/icons/06003CBF.png b/static/icons/06003CBF.png deleted file mode 100755 index 906f1c2f..00000000 Binary files a/static/icons/06003CBF.png and /dev/null differ diff --git a/static/icons/06003CC1.png b/static/icons/06003CC1.png deleted file mode 100755 index 18cc511f..00000000 Binary files a/static/icons/06003CC1.png and /dev/null differ diff --git a/static/icons/06003CEF.png b/static/icons/06003CEF.png deleted file mode 100755 index a81e228f..00000000 Binary files a/static/icons/06003CEF.png and /dev/null differ diff --git a/static/icons/06003CFA.png b/static/icons/06003CFA.png deleted file mode 100755 index 7f3597a1..00000000 Binary files a/static/icons/06003CFA.png and /dev/null differ diff --git a/static/icons/06003D0D.png b/static/icons/06003D0D.png deleted file mode 100755 index abfb4387..00000000 Binary files a/static/icons/06003D0D.png and /dev/null differ diff --git a/static/icons/06003D0F.png b/static/icons/06003D0F.png deleted file mode 100755 index 4f483b30..00000000 Binary files a/static/icons/06003D0F.png and /dev/null differ diff --git a/static/icons/06003D11.png b/static/icons/06003D11.png deleted file mode 100755 index 2ca18030..00000000 Binary files a/static/icons/06003D11.png and /dev/null differ diff --git a/static/icons/06003D13.png b/static/icons/06003D13.png deleted file mode 100755 index 66ef92b5..00000000 Binary files a/static/icons/06003D13.png and /dev/null differ diff --git a/static/icons/06003D15.png b/static/icons/06003D15.png deleted file mode 100755 index 150a094a..00000000 Binary files a/static/icons/06003D15.png and /dev/null differ diff --git a/static/icons/06003D17.png b/static/icons/06003D17.png deleted file mode 100755 index 9ae86a74..00000000 Binary files a/static/icons/06003D17.png and /dev/null differ diff --git a/static/icons/06003D19.png b/static/icons/06003D19.png deleted file mode 100755 index d7f955c2..00000000 Binary files a/static/icons/06003D19.png and /dev/null differ diff --git a/static/icons/06003D1B.png b/static/icons/06003D1B.png deleted file mode 100755 index fbeef95a..00000000 Binary files a/static/icons/06003D1B.png and /dev/null differ diff --git a/static/icons/06003D1D.png b/static/icons/06003D1D.png deleted file mode 100755 index f5847142..00000000 Binary files a/static/icons/06003D1D.png and /dev/null differ diff --git a/static/icons/06003D1F.png b/static/icons/06003D1F.png deleted file mode 100755 index 6cfcfc3e..00000000 Binary files a/static/icons/06003D1F.png and /dev/null differ diff --git a/static/icons/06003D21.png b/static/icons/06003D21.png deleted file mode 100755 index be3a619a..00000000 Binary files a/static/icons/06003D21.png and /dev/null differ diff --git a/static/icons/06003D23.png b/static/icons/06003D23.png deleted file mode 100755 index c796072d..00000000 Binary files a/static/icons/06003D23.png and /dev/null differ diff --git a/static/icons/06003D25.png b/static/icons/06003D25.png deleted file mode 100755 index 5515ddc5..00000000 Binary files a/static/icons/06003D25.png and /dev/null differ diff --git a/static/icons/06003D27.png b/static/icons/06003D27.png deleted file mode 100755 index 5f9c360a..00000000 Binary files a/static/icons/06003D27.png and /dev/null differ diff --git a/static/icons/06003D2A.png b/static/icons/06003D2A.png deleted file mode 100755 index 46ba4769..00000000 Binary files a/static/icons/06003D2A.png and /dev/null differ diff --git a/static/icons/06003D2C.png b/static/icons/06003D2C.png deleted file mode 100755 index ca082efd..00000000 Binary files a/static/icons/06003D2C.png and /dev/null differ diff --git a/static/icons/06003D2E.png b/static/icons/06003D2E.png deleted file mode 100755 index b99e0674..00000000 Binary files a/static/icons/06003D2E.png and /dev/null differ diff --git a/static/icons/06003D30.png b/static/icons/06003D30.png deleted file mode 100755 index 7f4c3840..00000000 Binary files a/static/icons/06003D30.png and /dev/null differ diff --git a/static/icons/06003D32.png b/static/icons/06003D32.png deleted file mode 100755 index bfab3d32..00000000 Binary files a/static/icons/06003D32.png and /dev/null differ diff --git a/static/icons/06003D41.png b/static/icons/06003D41.png deleted file mode 100755 index d90c696f..00000000 Binary files a/static/icons/06003D41.png and /dev/null differ diff --git a/static/icons/06003D42.png b/static/icons/06003D42.png deleted file mode 100755 index 7e3d5819..00000000 Binary files a/static/icons/06003D42.png and /dev/null differ diff --git a/static/icons/06003D43.png b/static/icons/06003D43.png deleted file mode 100755 index a54d27d3..00000000 Binary files a/static/icons/06003D43.png and /dev/null differ diff --git a/static/icons/06003D44.png b/static/icons/06003D44.png deleted file mode 100755 index a88952fb..00000000 Binary files a/static/icons/06003D44.png and /dev/null differ diff --git a/static/icons/06003D45.png b/static/icons/06003D45.png deleted file mode 100755 index ab7d09ce..00000000 Binary files a/static/icons/06003D45.png and /dev/null differ diff --git a/static/icons/06003D46.png b/static/icons/06003D46.png deleted file mode 100755 index 2ec3b424..00000000 Binary files a/static/icons/06003D46.png and /dev/null differ diff --git a/static/icons/06003D47.png b/static/icons/06003D47.png deleted file mode 100755 index 9e5509e3..00000000 Binary files a/static/icons/06003D47.png and /dev/null differ diff --git a/static/icons/06003D49.png b/static/icons/06003D49.png deleted file mode 100755 index 97c594fe..00000000 Binary files a/static/icons/06003D49.png and /dev/null differ diff --git a/static/icons/06003D4A.png b/static/icons/06003D4A.png deleted file mode 100755 index f04ec23c..00000000 Binary files a/static/icons/06003D4A.png and /dev/null differ diff --git a/static/icons/06003D50.png b/static/icons/06003D50.png deleted file mode 100755 index 349c6e62..00000000 Binary files a/static/icons/06003D50.png and /dev/null differ diff --git a/static/icons/06003D58.png b/static/icons/06003D58.png deleted file mode 100755 index 7a39809c..00000000 Binary files a/static/icons/06003D58.png and /dev/null differ diff --git a/static/icons/06003D5A.png b/static/icons/06003D5A.png deleted file mode 100755 index 6bd75014..00000000 Binary files a/static/icons/06003D5A.png and /dev/null differ diff --git a/static/icons/06003D5C.png b/static/icons/06003D5C.png deleted file mode 100755 index e2cf7871..00000000 Binary files a/static/icons/06003D5C.png and /dev/null differ diff --git a/static/icons/06003D5E.png b/static/icons/06003D5E.png deleted file mode 100755 index f199ac14..00000000 Binary files a/static/icons/06003D5E.png and /dev/null differ diff --git a/static/icons/06003D60.png b/static/icons/06003D60.png deleted file mode 100755 index b4abed8d..00000000 Binary files a/static/icons/06003D60.png and /dev/null differ diff --git a/static/icons/06003D62.png b/static/icons/06003D62.png deleted file mode 100755 index 572922c3..00000000 Binary files a/static/icons/06003D62.png and /dev/null differ diff --git a/static/icons/06003D64.png b/static/icons/06003D64.png deleted file mode 100755 index ee030639..00000000 Binary files a/static/icons/06003D64.png and /dev/null differ diff --git a/static/icons/06003D66.png b/static/icons/06003D66.png deleted file mode 100755 index 0b318af8..00000000 Binary files a/static/icons/06003D66.png and /dev/null differ diff --git a/static/icons/06003D68.png b/static/icons/06003D68.png deleted file mode 100755 index 14f1d501..00000000 Binary files a/static/icons/06003D68.png and /dev/null differ diff --git a/static/icons/06003D6A.png b/static/icons/06003D6A.png deleted file mode 100755 index 5f6081a5..00000000 Binary files a/static/icons/06003D6A.png and /dev/null differ diff --git a/static/icons/06003D6C.png b/static/icons/06003D6C.png deleted file mode 100755 index f77e6de4..00000000 Binary files a/static/icons/06003D6C.png and /dev/null differ diff --git a/static/icons/06003D6E.png b/static/icons/06003D6E.png deleted file mode 100755 index a7b161b5..00000000 Binary files a/static/icons/06003D6E.png and /dev/null differ diff --git a/static/icons/06003D70.png b/static/icons/06003D70.png deleted file mode 100755 index 0e2fd0d6..00000000 Binary files a/static/icons/06003D70.png and /dev/null differ diff --git a/static/icons/06003D72.png b/static/icons/06003D72.png deleted file mode 100755 index 3f2d9a9c..00000000 Binary files a/static/icons/06003D72.png and /dev/null differ diff --git a/static/icons/06003D74.png b/static/icons/06003D74.png deleted file mode 100755 index f415f9b7..00000000 Binary files a/static/icons/06003D74.png and /dev/null differ diff --git a/static/icons/06003D76.png b/static/icons/06003D76.png deleted file mode 100755 index df067194..00000000 Binary files a/static/icons/06003D76.png and /dev/null differ diff --git a/static/icons/06003D78.png b/static/icons/06003D78.png deleted file mode 100755 index 6222b83c..00000000 Binary files a/static/icons/06003D78.png and /dev/null differ diff --git a/static/icons/06003D87.png b/static/icons/06003D87.png deleted file mode 100755 index 72ef4082..00000000 Binary files a/static/icons/06003D87.png and /dev/null differ diff --git a/static/icons/06003D89.png b/static/icons/06003D89.png deleted file mode 100755 index 44ac61fe..00000000 Binary files a/static/icons/06003D89.png and /dev/null differ diff --git a/static/icons/06003D8B.png b/static/icons/06003D8B.png deleted file mode 100755 index 558f5967..00000000 Binary files a/static/icons/06003D8B.png and /dev/null differ diff --git a/static/icons/06003D8D.png b/static/icons/06003D8D.png deleted file mode 100755 index ade32eff..00000000 Binary files a/static/icons/06003D8D.png and /dev/null differ diff --git a/static/icons/06003D8F.png b/static/icons/06003D8F.png deleted file mode 100755 index 0fef0852..00000000 Binary files a/static/icons/06003D8F.png and /dev/null differ diff --git a/static/icons/06003D91.png b/static/icons/06003D91.png deleted file mode 100755 index 8a05961f..00000000 Binary files a/static/icons/06003D91.png and /dev/null differ diff --git a/static/icons/06003D93.png b/static/icons/06003D93.png deleted file mode 100755 index 4b0bfdaa..00000000 Binary files a/static/icons/06003D93.png and /dev/null differ diff --git a/static/icons/06003D95.png b/static/icons/06003D95.png deleted file mode 100755 index b327e860..00000000 Binary files a/static/icons/06003D95.png and /dev/null differ diff --git a/static/icons/06003D97.png b/static/icons/06003D97.png deleted file mode 100755 index f96b3be5..00000000 Binary files a/static/icons/06003D97.png and /dev/null differ diff --git a/static/icons/06003D99.png b/static/icons/06003D99.png deleted file mode 100755 index 34634865..00000000 Binary files a/static/icons/06003D99.png and /dev/null differ diff --git a/static/icons/06003D9B.png b/static/icons/06003D9B.png deleted file mode 100755 index 017dac44..00000000 Binary files a/static/icons/06003D9B.png and /dev/null differ diff --git a/static/icons/06003D9D.png b/static/icons/06003D9D.png deleted file mode 100755 index 3de3434e..00000000 Binary files a/static/icons/06003D9D.png and /dev/null differ diff --git a/static/icons/06003D9F.png b/static/icons/06003D9F.png deleted file mode 100755 index 4bf42991..00000000 Binary files a/static/icons/06003D9F.png and /dev/null differ diff --git a/static/icons/06003DA1.png b/static/icons/06003DA1.png deleted file mode 100755 index 31cc33b1..00000000 Binary files a/static/icons/06003DA1.png and /dev/null differ diff --git a/static/icons/06003DA3.png b/static/icons/06003DA3.png deleted file mode 100755 index 492e7bd1..00000000 Binary files a/static/icons/06003DA3.png and /dev/null differ diff --git a/static/icons/06003DA5.png b/static/icons/06003DA5.png deleted file mode 100755 index 31cc33b1..00000000 Binary files a/static/icons/06003DA5.png and /dev/null differ diff --git a/static/icons/06003DA7.png b/static/icons/06003DA7.png deleted file mode 100755 index 394eea79..00000000 Binary files a/static/icons/06003DA7.png and /dev/null differ diff --git a/static/icons/06003DA9.png b/static/icons/06003DA9.png deleted file mode 100755 index b6647aac..00000000 Binary files a/static/icons/06003DA9.png and /dev/null differ diff --git a/static/icons/06003DB0.png b/static/icons/06003DB0.png deleted file mode 100755 index 97d1ef5d..00000000 Binary files a/static/icons/06003DB0.png and /dev/null differ diff --git a/static/icons/06003DB2.png b/static/icons/06003DB2.png deleted file mode 100755 index 6bd8430c..00000000 Binary files a/static/icons/06003DB2.png and /dev/null differ diff --git a/static/icons/06003DB4.png b/static/icons/06003DB4.png deleted file mode 100755 index 2b889316..00000000 Binary files a/static/icons/06003DB4.png and /dev/null differ diff --git a/static/icons/06003DB6.png b/static/icons/06003DB6.png deleted file mode 100755 index db9d31fb..00000000 Binary files a/static/icons/06003DB6.png and /dev/null differ diff --git a/static/icons/06003DB8.png b/static/icons/06003DB8.png deleted file mode 100755 index 860337e6..00000000 Binary files a/static/icons/06003DB8.png and /dev/null differ diff --git a/static/icons/06003DBA.png b/static/icons/06003DBA.png deleted file mode 100755 index 6ed04dcc..00000000 Binary files a/static/icons/06003DBA.png and /dev/null differ diff --git a/static/icons/06003DBC.png b/static/icons/06003DBC.png deleted file mode 100755 index 2221aaef..00000000 Binary files a/static/icons/06003DBC.png and /dev/null differ diff --git a/static/icons/06003DBD.png b/static/icons/06003DBD.png deleted file mode 100755 index c9ef014e..00000000 Binary files a/static/icons/06003DBD.png and /dev/null differ diff --git a/static/icons/06003DC9.png b/static/icons/06003DC9.png deleted file mode 100755 index 4264300f..00000000 Binary files a/static/icons/06003DC9.png and /dev/null differ diff --git a/static/icons/06003DCB.png b/static/icons/06003DCB.png deleted file mode 100755 index 7298d84d..00000000 Binary files a/static/icons/06003DCB.png and /dev/null differ diff --git a/static/icons/06003DCD.png b/static/icons/06003DCD.png deleted file mode 100755 index e42810e1..00000000 Binary files a/static/icons/06003DCD.png and /dev/null differ diff --git a/static/icons/06003DCF.png b/static/icons/06003DCF.png deleted file mode 100755 index c80a6cf9..00000000 Binary files a/static/icons/06003DCF.png and /dev/null differ diff --git a/static/icons/06003DD1.png b/static/icons/06003DD1.png deleted file mode 100755 index a2366bcf..00000000 Binary files a/static/icons/06003DD1.png and /dev/null differ diff --git a/static/icons/06003DD2.png b/static/icons/06003DD2.png deleted file mode 100755 index f6a9160e..00000000 Binary files a/static/icons/06003DD2.png and /dev/null differ diff --git a/static/icons/06003DD5.png b/static/icons/06003DD5.png deleted file mode 100755 index 70b54af2..00000000 Binary files a/static/icons/06003DD5.png and /dev/null differ diff --git a/static/icons/06003DE9.png b/static/icons/06003DE9.png deleted file mode 100755 index 711d0e66..00000000 Binary files a/static/icons/06003DE9.png and /dev/null differ diff --git a/static/icons/06003DEB.png b/static/icons/06003DEB.png deleted file mode 100755 index 3aee2cba..00000000 Binary files a/static/icons/06003DEB.png and /dev/null differ diff --git a/static/icons/06003DED.png b/static/icons/06003DED.png deleted file mode 100755 index eed2675f..00000000 Binary files a/static/icons/06003DED.png and /dev/null differ diff --git a/static/icons/06003DEF.png b/static/icons/06003DEF.png deleted file mode 100755 index d4345a50..00000000 Binary files a/static/icons/06003DEF.png and /dev/null differ diff --git a/static/icons/06003DFD.png b/static/icons/06003DFD.png deleted file mode 100755 index 29c00dc4..00000000 Binary files a/static/icons/06003DFD.png and /dev/null differ diff --git a/static/icons/06003DFF.png b/static/icons/06003DFF.png deleted file mode 100755 index 32dc45a4..00000000 Binary files a/static/icons/06003DFF.png and /dev/null differ diff --git a/static/icons/06003E01.png b/static/icons/06003E01.png deleted file mode 100755 index b6c248c0..00000000 Binary files a/static/icons/06003E01.png and /dev/null differ diff --git a/static/icons/06003E03.png b/static/icons/06003E03.png deleted file mode 100755 index a72b589e..00000000 Binary files a/static/icons/06003E03.png and /dev/null differ diff --git a/static/icons/06003E10.png b/static/icons/06003E10.png deleted file mode 100755 index 8bc4de35..00000000 Binary files a/static/icons/06003E10.png and /dev/null differ diff --git a/static/icons/06003E11.png b/static/icons/06003E11.png deleted file mode 100755 index 9acd8ad1..00000000 Binary files a/static/icons/06003E11.png and /dev/null differ diff --git a/static/icons/06003E13.png b/static/icons/06003E13.png deleted file mode 100755 index 7b99924f..00000000 Binary files a/static/icons/06003E13.png and /dev/null differ diff --git a/static/icons/06003E15.png b/static/icons/06003E15.png deleted file mode 100755 index 8b634df4..00000000 Binary files a/static/icons/06003E15.png and /dev/null differ diff --git a/static/icons/06003E17.png b/static/icons/06003E17.png deleted file mode 100755 index d521b6ce..00000000 Binary files a/static/icons/06003E17.png and /dev/null differ diff --git a/static/icons/06003E1A.png b/static/icons/06003E1A.png deleted file mode 100755 index ead8c2b4..00000000 Binary files a/static/icons/06003E1A.png and /dev/null differ diff --git a/static/icons/06003E1B.png b/static/icons/06003E1B.png deleted file mode 100755 index 0da59706..00000000 Binary files a/static/icons/06003E1B.png and /dev/null differ diff --git a/static/icons/06003E1C.png b/static/icons/06003E1C.png deleted file mode 100755 index 4ff27e72..00000000 Binary files a/static/icons/06003E1C.png and /dev/null differ diff --git a/static/icons/06003E1D.png b/static/icons/06003E1D.png deleted file mode 100755 index aff9ce2e..00000000 Binary files a/static/icons/06003E1D.png and /dev/null differ diff --git a/static/icons/06003E1E.png b/static/icons/06003E1E.png deleted file mode 100755 index ce30304d..00000000 Binary files a/static/icons/06003E1E.png and /dev/null differ diff --git a/static/icons/06003E1F.png b/static/icons/06003E1F.png deleted file mode 100755 index 8200cc66..00000000 Binary files a/static/icons/06003E1F.png and /dev/null differ diff --git a/static/icons/06003E20.png b/static/icons/06003E20.png deleted file mode 100755 index d5b46457..00000000 Binary files a/static/icons/06003E20.png and /dev/null differ diff --git a/static/icons/06003E21.png b/static/icons/06003E21.png deleted file mode 100755 index 246d4d56..00000000 Binary files a/static/icons/06003E21.png and /dev/null differ diff --git a/static/icons/06003E22.png b/static/icons/06003E22.png deleted file mode 100755 index 9141d17a..00000000 Binary files a/static/icons/06003E22.png and /dev/null differ diff --git a/static/icons/06003E29.png b/static/icons/06003E29.png deleted file mode 100755 index cd19daf2..00000000 Binary files a/static/icons/06003E29.png and /dev/null differ diff --git a/static/icons/06003E2A.png b/static/icons/06003E2A.png deleted file mode 100755 index 7afa09dd..00000000 Binary files a/static/icons/06003E2A.png and /dev/null differ diff --git a/static/icons/06003E2B.png b/static/icons/06003E2B.png deleted file mode 100755 index cd19daf2..00000000 Binary files a/static/icons/06003E2B.png and /dev/null differ diff --git a/static/icons/06003E2C.png b/static/icons/06003E2C.png deleted file mode 100755 index d2b5c2a0..00000000 Binary files a/static/icons/06003E2C.png and /dev/null differ diff --git a/static/icons/06003E3B.png b/static/icons/06003E3B.png deleted file mode 100755 index b73f5352..00000000 Binary files a/static/icons/06003E3B.png and /dev/null differ diff --git a/static/icons/06003E3E.png b/static/icons/06003E3E.png deleted file mode 100755 index e9fdaa84..00000000 Binary files a/static/icons/06003E3E.png and /dev/null differ diff --git a/static/icons/06003E40.png b/static/icons/06003E40.png deleted file mode 100755 index ec414d62..00000000 Binary files a/static/icons/06003E40.png and /dev/null differ diff --git a/static/icons/06003E42.png b/static/icons/06003E42.png deleted file mode 100755 index d1237123..00000000 Binary files a/static/icons/06003E42.png and /dev/null differ diff --git a/static/icons/06003E44.png b/static/icons/06003E44.png deleted file mode 100755 index 5910616d..00000000 Binary files a/static/icons/06003E44.png and /dev/null differ diff --git a/static/icons/06003E46.png b/static/icons/06003E46.png deleted file mode 100755 index 57e822cf..00000000 Binary files a/static/icons/06003E46.png and /dev/null differ diff --git a/static/icons/06003E48.png b/static/icons/06003E48.png deleted file mode 100755 index e34e9ca4..00000000 Binary files a/static/icons/06003E48.png and /dev/null differ diff --git a/static/icons/06003E4A.png b/static/icons/06003E4A.png deleted file mode 100755 index 59631cb9..00000000 Binary files a/static/icons/06003E4A.png and /dev/null differ diff --git a/static/icons/06003E4C.png b/static/icons/06003E4C.png deleted file mode 100755 index 4edabc7f..00000000 Binary files a/static/icons/06003E4C.png and /dev/null differ diff --git a/static/icons/06003E4E.png b/static/icons/06003E4E.png deleted file mode 100755 index ac76e12e..00000000 Binary files a/static/icons/06003E4E.png and /dev/null differ diff --git a/static/icons/06003E50.png b/static/icons/06003E50.png deleted file mode 100755 index df0e8a6b..00000000 Binary files a/static/icons/06003E50.png and /dev/null differ diff --git a/static/icons/06003E52.png b/static/icons/06003E52.png deleted file mode 100755 index 1336660b..00000000 Binary files a/static/icons/06003E52.png and /dev/null differ diff --git a/static/icons/06003E54.png b/static/icons/06003E54.png deleted file mode 100755 index 18f8c08d..00000000 Binary files a/static/icons/06003E54.png and /dev/null differ diff --git a/static/icons/06003E56.png b/static/icons/06003E56.png deleted file mode 100755 index 76fe33f9..00000000 Binary files a/static/icons/06003E56.png and /dev/null differ diff --git a/static/icons/06003E58.png b/static/icons/06003E58.png deleted file mode 100755 index 14e8a87f..00000000 Binary files a/static/icons/06003E58.png and /dev/null differ diff --git a/static/icons/06003E5A.png b/static/icons/06003E5A.png deleted file mode 100755 index 9a941219..00000000 Binary files a/static/icons/06003E5A.png and /dev/null differ diff --git a/static/icons/06003E5D.png b/static/icons/06003E5D.png deleted file mode 100755 index cdc3c500..00000000 Binary files a/static/icons/06003E5D.png and /dev/null differ diff --git a/static/icons/06003E5F.png b/static/icons/06003E5F.png deleted file mode 100755 index 15a4b103..00000000 Binary files a/static/icons/06003E5F.png and /dev/null differ diff --git a/static/icons/06003E61.png b/static/icons/06003E61.png deleted file mode 100755 index 1983f9ac..00000000 Binary files a/static/icons/06003E61.png and /dev/null differ diff --git a/static/icons/06003E63.png b/static/icons/06003E63.png deleted file mode 100755 index d6a5e625..00000000 Binary files a/static/icons/06003E63.png and /dev/null differ diff --git a/static/icons/06003E65.png b/static/icons/06003E65.png deleted file mode 100755 index 2e86069d..00000000 Binary files a/static/icons/06003E65.png and /dev/null differ diff --git a/static/icons/06003E67.png b/static/icons/06003E67.png deleted file mode 100755 index 425edf4c..00000000 Binary files a/static/icons/06003E67.png and /dev/null differ diff --git a/static/icons/06003E68.png b/static/icons/06003E68.png deleted file mode 100755 index 990997fc..00000000 Binary files a/static/icons/06003E68.png and /dev/null differ diff --git a/static/icons/06003E6B.png b/static/icons/06003E6B.png deleted file mode 100755 index b334094b..00000000 Binary files a/static/icons/06003E6B.png and /dev/null differ diff --git a/static/icons/06003E79.png b/static/icons/06003E79.png deleted file mode 100755 index 27b0a3fb..00000000 Binary files a/static/icons/06003E79.png and /dev/null differ diff --git a/static/icons/06003E7C.png b/static/icons/06003E7C.png deleted file mode 100755 index 280c82a9..00000000 Binary files a/static/icons/06003E7C.png and /dev/null differ diff --git a/static/icons/06003E7E.png b/static/icons/06003E7E.png deleted file mode 100755 index cf072839..00000000 Binary files a/static/icons/06003E7E.png and /dev/null differ diff --git a/static/icons/06003E80.png b/static/icons/06003E80.png deleted file mode 100755 index 3551f3e2..00000000 Binary files a/static/icons/06003E80.png and /dev/null differ diff --git a/static/icons/06003E82.png b/static/icons/06003E82.png deleted file mode 100755 index a5f5a422..00000000 Binary files a/static/icons/06003E82.png and /dev/null differ diff --git a/static/icons/06003E84.png b/static/icons/06003E84.png deleted file mode 100755 index 48e8ddd0..00000000 Binary files a/static/icons/06003E84.png and /dev/null differ diff --git a/static/icons/06003E86.png b/static/icons/06003E86.png deleted file mode 100755 index cd10b6d7..00000000 Binary files a/static/icons/06003E86.png and /dev/null differ diff --git a/static/icons/06003E88.png b/static/icons/06003E88.png deleted file mode 100755 index 3b2c67d3..00000000 Binary files a/static/icons/06003E88.png and /dev/null differ diff --git a/static/icons/06003E8A.png b/static/icons/06003E8A.png deleted file mode 100755 index 45230760..00000000 Binary files a/static/icons/06003E8A.png and /dev/null differ diff --git a/static/icons/06003E92.png b/static/icons/06003E92.png deleted file mode 100755 index bf618a5f..00000000 Binary files a/static/icons/06003E92.png and /dev/null differ diff --git a/static/icons/06003E93.png b/static/icons/06003E93.png deleted file mode 100755 index 46d214e3..00000000 Binary files a/static/icons/06003E93.png and /dev/null differ diff --git a/static/icons/06003E97.png b/static/icons/06003E97.png deleted file mode 100755 index bdd1e900..00000000 Binary files a/static/icons/06003E97.png and /dev/null differ diff --git a/static/icons/06003E9A.png b/static/icons/06003E9A.png deleted file mode 100755 index 1e4e32ee..00000000 Binary files a/static/icons/06003E9A.png and /dev/null differ diff --git a/static/icons/06003E9C.png b/static/icons/06003E9C.png deleted file mode 100755 index fe9c4d7b..00000000 Binary files a/static/icons/06003E9C.png and /dev/null differ diff --git a/static/icons/06003E9E.png b/static/icons/06003E9E.png deleted file mode 100755 index 5a0b60c6..00000000 Binary files a/static/icons/06003E9E.png and /dev/null differ diff --git a/static/icons/06003EA0.png b/static/icons/06003EA0.png deleted file mode 100755 index 64566fc0..00000000 Binary files a/static/icons/06003EA0.png and /dev/null differ diff --git a/static/icons/06003EA2.png b/static/icons/06003EA2.png deleted file mode 100755 index da413f70..00000000 Binary files a/static/icons/06003EA2.png and /dev/null differ diff --git a/static/icons/06003EA4.png b/static/icons/06003EA4.png deleted file mode 100755 index b05a30f5..00000000 Binary files a/static/icons/06003EA4.png and /dev/null differ diff --git a/static/icons/06003EA6.png b/static/icons/06003EA6.png deleted file mode 100755 index 33eb9ff6..00000000 Binary files a/static/icons/06003EA6.png and /dev/null differ diff --git a/static/icons/06003EA8.png b/static/icons/06003EA8.png deleted file mode 100755 index 41851836..00000000 Binary files a/static/icons/06003EA8.png and /dev/null differ diff --git a/static/icons/06003EAC.png b/static/icons/06003EAC.png deleted file mode 100755 index a8d7e95e..00000000 Binary files a/static/icons/06003EAC.png and /dev/null differ diff --git a/static/icons/06003EAE.png b/static/icons/06003EAE.png deleted file mode 100755 index daa7944d..00000000 Binary files a/static/icons/06003EAE.png and /dev/null differ diff --git a/static/icons/06003EB0.png b/static/icons/06003EB0.png deleted file mode 100755 index d01a8a69..00000000 Binary files a/static/icons/06003EB0.png and /dev/null differ diff --git a/static/icons/06003EB2.png b/static/icons/06003EB2.png deleted file mode 100755 index 4165ea13..00000000 Binary files a/static/icons/06003EB2.png and /dev/null differ diff --git a/static/icons/06003EBA.png b/static/icons/06003EBA.png deleted file mode 100755 index c839b733..00000000 Binary files a/static/icons/06003EBA.png and /dev/null differ diff --git a/static/icons/06003EBC.png b/static/icons/06003EBC.png deleted file mode 100755 index bc886136..00000000 Binary files a/static/icons/06003EBC.png and /dev/null differ diff --git a/static/icons/06003EBE.png b/static/icons/06003EBE.png deleted file mode 100755 index b66a6efd..00000000 Binary files a/static/icons/06003EBE.png and /dev/null differ diff --git a/static/icons/06003EC4.png b/static/icons/06003EC4.png deleted file mode 100755 index 10babe60..00000000 Binary files a/static/icons/06003EC4.png and /dev/null differ diff --git a/static/icons/06003EC7.png b/static/icons/06003EC7.png deleted file mode 100755 index 7447d5aa..00000000 Binary files a/static/icons/06003EC7.png and /dev/null differ diff --git a/static/icons/06003EC9.png b/static/icons/06003EC9.png deleted file mode 100755 index 0fe22c3a..00000000 Binary files a/static/icons/06003EC9.png and /dev/null differ diff --git a/static/icons/06003ECB.png b/static/icons/06003ECB.png deleted file mode 100755 index b474083e..00000000 Binary files a/static/icons/06003ECB.png and /dev/null differ diff --git a/static/icons/06003ECD.png b/static/icons/06003ECD.png deleted file mode 100755 index 0d9ebdff..00000000 Binary files a/static/icons/06003ECD.png and /dev/null differ diff --git a/static/icons/06003ECF.png b/static/icons/06003ECF.png deleted file mode 100755 index ab3a911d..00000000 Binary files a/static/icons/06003ECF.png and /dev/null differ diff --git a/static/icons/06003ED1.png b/static/icons/06003ED1.png deleted file mode 100755 index 4ceb930b..00000000 Binary files a/static/icons/06003ED1.png and /dev/null differ diff --git a/static/icons/06003ED3.png b/static/icons/06003ED3.png deleted file mode 100755 index ab65d826..00000000 Binary files a/static/icons/06003ED3.png and /dev/null differ diff --git a/static/icons/06003ED5.png b/static/icons/06003ED5.png deleted file mode 100755 index f66e59ad..00000000 Binary files a/static/icons/06003ED5.png and /dev/null differ diff --git a/static/icons/06003ED6.png b/static/icons/06003ED6.png deleted file mode 100755 index 4e6be4ad..00000000 Binary files a/static/icons/06003ED6.png and /dev/null differ diff --git a/static/icons/06003ED7.png b/static/icons/06003ED7.png deleted file mode 100755 index ebdd812e..00000000 Binary files a/static/icons/06003ED7.png and /dev/null differ diff --git a/static/icons/06003ED8.png b/static/icons/06003ED8.png deleted file mode 100755 index 9d2109b5..00000000 Binary files a/static/icons/06003ED8.png and /dev/null differ diff --git a/static/icons/06003EDA.png b/static/icons/06003EDA.png deleted file mode 100755 index f26d3279..00000000 Binary files a/static/icons/06003EDA.png and /dev/null differ diff --git a/static/icons/06003EDC.png b/static/icons/06003EDC.png deleted file mode 100755 index c2b59905..00000000 Binary files a/static/icons/06003EDC.png and /dev/null differ diff --git a/static/icons/06003EDE.png b/static/icons/06003EDE.png deleted file mode 100755 index ed4beb54..00000000 Binary files a/static/icons/06003EDE.png and /dev/null differ diff --git a/static/icons/06003EDF.png b/static/icons/06003EDF.png deleted file mode 100755 index e03b10fa..00000000 Binary files a/static/icons/06003EDF.png and /dev/null differ diff --git a/static/icons/06003EE1.png b/static/icons/06003EE1.png deleted file mode 100755 index a0a78886..00000000 Binary files a/static/icons/06003EE1.png and /dev/null differ diff --git a/static/icons/06003EE9.png b/static/icons/06003EE9.png deleted file mode 100755 index 7231f660..00000000 Binary files a/static/icons/06003EE9.png and /dev/null differ diff --git a/static/icons/06003EEB.png b/static/icons/06003EEB.png deleted file mode 100755 index 079b71ce..00000000 Binary files a/static/icons/06003EEB.png and /dev/null differ diff --git a/static/icons/06003EEE.png b/static/icons/06003EEE.png deleted file mode 100755 index eb1bc981..00000000 Binary files a/static/icons/06003EEE.png and /dev/null differ diff --git a/static/icons/06003EF0.png b/static/icons/06003EF0.png deleted file mode 100755 index b3fe681e..00000000 Binary files a/static/icons/06003EF0.png and /dev/null differ diff --git a/static/icons/06003EF4.png b/static/icons/06003EF4.png deleted file mode 100755 index 4d02e715..00000000 Binary files a/static/icons/06003EF4.png and /dev/null differ diff --git a/static/icons/06003EF6.png b/static/icons/06003EF6.png deleted file mode 100755 index e0c4d868..00000000 Binary files a/static/icons/06003EF6.png and /dev/null differ diff --git a/static/icons/06003F00.png b/static/icons/06003F00.png deleted file mode 100755 index 8a9fb7c3..00000000 Binary files a/static/icons/06003F00.png and /dev/null differ diff --git a/static/icons/06003F02.png b/static/icons/06003F02.png deleted file mode 100755 index 2853295c..00000000 Binary files a/static/icons/06003F02.png and /dev/null differ diff --git a/static/icons/06003F04.png b/static/icons/06003F04.png deleted file mode 100755 index 5990fe67..00000000 Binary files a/static/icons/06003F04.png and /dev/null differ diff --git a/static/icons/06003F06.png b/static/icons/06003F06.png deleted file mode 100755 index c3152fba..00000000 Binary files a/static/icons/06003F06.png and /dev/null differ diff --git a/static/icons/06003F08.png b/static/icons/06003F08.png deleted file mode 100755 index b402f74a..00000000 Binary files a/static/icons/06003F08.png and /dev/null differ diff --git a/static/icons/06003F0E.png b/static/icons/06003F0E.png deleted file mode 100755 index 0ae81aa6..00000000 Binary files a/static/icons/06003F0E.png and /dev/null differ diff --git a/static/icons/06003F10.png b/static/icons/06003F10.png deleted file mode 100755 index 408295ca..00000000 Binary files a/static/icons/06003F10.png and /dev/null differ diff --git a/static/icons/06003F12.png b/static/icons/06003F12.png deleted file mode 100755 index cb4fc4af..00000000 Binary files a/static/icons/06003F12.png and /dev/null differ diff --git a/static/icons/06003F14.png b/static/icons/06003F14.png deleted file mode 100755 index bac9259c..00000000 Binary files a/static/icons/06003F14.png and /dev/null differ diff --git a/static/icons/06003F16.png b/static/icons/06003F16.png deleted file mode 100755 index af3a52f5..00000000 Binary files a/static/icons/06003F16.png and /dev/null differ diff --git a/static/icons/06003F18.png b/static/icons/06003F18.png deleted file mode 100755 index bfdd972d..00000000 Binary files a/static/icons/06003F18.png and /dev/null differ diff --git a/static/icons/06003F1A.png b/static/icons/06003F1A.png deleted file mode 100755 index 90de412d..00000000 Binary files a/static/icons/06003F1A.png and /dev/null differ diff --git a/static/icons/06003F1C.png b/static/icons/06003F1C.png deleted file mode 100755 index aa7fd369..00000000 Binary files a/static/icons/06003F1C.png and /dev/null differ diff --git a/static/icons/06003F1E.png b/static/icons/06003F1E.png deleted file mode 100755 index 90701c4f..00000000 Binary files a/static/icons/06003F1E.png and /dev/null differ diff --git a/static/icons/06003F26.png b/static/icons/06003F26.png deleted file mode 100755 index e875ee6b..00000000 Binary files a/static/icons/06003F26.png and /dev/null differ diff --git a/static/icons/06003F28.png b/static/icons/06003F28.png deleted file mode 100755 index d94eb1b6..00000000 Binary files a/static/icons/06003F28.png and /dev/null differ diff --git a/static/icons/06003F51.png b/static/icons/06003F51.png deleted file mode 100755 index 429d66b3..00000000 Binary files a/static/icons/06003F51.png and /dev/null differ diff --git a/static/icons/06003F53.png b/static/icons/06003F53.png deleted file mode 100755 index 2d047fc5..00000000 Binary files a/static/icons/06003F53.png and /dev/null differ diff --git a/static/icons/06003F55.png b/static/icons/06003F55.png deleted file mode 100755 index f1ae596e..00000000 Binary files a/static/icons/06003F55.png and /dev/null differ diff --git a/static/icons/06003F72.png b/static/icons/06003F72.png deleted file mode 100755 index 319f8ff9..00000000 Binary files a/static/icons/06003F72.png and /dev/null differ diff --git a/static/icons/06003F74.png b/static/icons/06003F74.png deleted file mode 100755 index 9a4c2a38..00000000 Binary files a/static/icons/06003F74.png and /dev/null differ diff --git a/static/icons/06003F76.png b/static/icons/06003F76.png deleted file mode 100755 index 78f40cb7..00000000 Binary files a/static/icons/06003F76.png and /dev/null differ diff --git a/static/icons/06003F7B.png b/static/icons/06003F7B.png deleted file mode 100755 index 7fefd11d..00000000 Binary files a/static/icons/06003F7B.png and /dev/null differ diff --git a/static/icons/06003F89.png b/static/icons/06003F89.png deleted file mode 100755 index 7b60e5ea..00000000 Binary files a/static/icons/06003F89.png and /dev/null differ diff --git a/static/icons/06003F8B.png b/static/icons/06003F8B.png deleted file mode 100755 index d4805bed..00000000 Binary files a/static/icons/06003F8B.png and /dev/null differ diff --git a/static/icons/06003F90.png b/static/icons/06003F90.png deleted file mode 100755 index 749597f0..00000000 Binary files a/static/icons/06003F90.png and /dev/null differ diff --git a/static/icons/06003F9A.png b/static/icons/06003F9A.png deleted file mode 100755 index 7dcf6735..00000000 Binary files a/static/icons/06003F9A.png and /dev/null differ diff --git a/static/icons/06003F9C.png b/static/icons/06003F9C.png deleted file mode 100755 index 6263f947..00000000 Binary files a/static/icons/06003F9C.png and /dev/null differ diff --git a/static/icons/06003F9E.png b/static/icons/06003F9E.png deleted file mode 100755 index ed37b69a..00000000 Binary files a/static/icons/06003F9E.png and /dev/null differ diff --git a/static/icons/06003FA1.png b/static/icons/06003FA1.png deleted file mode 100755 index 37da71b9..00000000 Binary files a/static/icons/06003FA1.png and /dev/null differ diff --git a/static/icons/06003FA3.png b/static/icons/06003FA3.png deleted file mode 100755 index b3d12553..00000000 Binary files a/static/icons/06003FA3.png and /dev/null differ diff --git a/static/icons/06003FA7.png b/static/icons/06003FA7.png deleted file mode 100755 index e69ff2b4..00000000 Binary files a/static/icons/06003FA7.png and /dev/null differ diff --git a/static/icons/06003FAB.png b/static/icons/06003FAB.png deleted file mode 100755 index 41d0769f..00000000 Binary files a/static/icons/06003FAB.png and /dev/null differ diff --git a/static/icons/06003FAD.png b/static/icons/06003FAD.png deleted file mode 100755 index 61dbf625..00000000 Binary files a/static/icons/06003FAD.png and /dev/null differ diff --git a/static/icons/06003FB0.png b/static/icons/06003FB0.png deleted file mode 100755 index 4cc1b32a..00000000 Binary files a/static/icons/06003FB0.png and /dev/null differ diff --git a/static/icons/06003FB2.png b/static/icons/06003FB2.png deleted file mode 100755 index f57eab0f..00000000 Binary files a/static/icons/06003FB2.png and /dev/null differ diff --git a/static/icons/06003FB4.png b/static/icons/06003FB4.png deleted file mode 100755 index b9849a3c..00000000 Binary files a/static/icons/06003FB4.png and /dev/null differ diff --git a/static/icons/06003FBE.png b/static/icons/06003FBE.png deleted file mode 100755 index 15684907..00000000 Binary files a/static/icons/06003FBE.png and /dev/null differ diff --git a/static/icons/06003FC0.png b/static/icons/06003FC0.png deleted file mode 100755 index a1a73dfb..00000000 Binary files a/static/icons/06003FC0.png and /dev/null differ diff --git a/static/icons/06003FC9.png b/static/icons/06003FC9.png deleted file mode 100755 index d02b7b5f..00000000 Binary files a/static/icons/06003FC9.png and /dev/null differ diff --git a/static/icons/06003FCB.png b/static/icons/06003FCB.png deleted file mode 100755 index 9d0a2917..00000000 Binary files a/static/icons/06003FCB.png and /dev/null differ diff --git a/static/icons/06003FCD.png b/static/icons/06003FCD.png deleted file mode 100755 index 4787d63d..00000000 Binary files a/static/icons/06003FCD.png and /dev/null differ diff --git a/static/icons/06003FCF.png b/static/icons/06003FCF.png deleted file mode 100755 index aa37fcd5..00000000 Binary files a/static/icons/06003FCF.png and /dev/null differ diff --git a/static/icons/06003FD1.png b/static/icons/06003FD1.png deleted file mode 100755 index 04594e63..00000000 Binary files a/static/icons/06003FD1.png and /dev/null differ diff --git a/static/icons/06003FD3.png b/static/icons/06003FD3.png deleted file mode 100755 index 60eb3964..00000000 Binary files a/static/icons/06003FD3.png and /dev/null differ diff --git a/static/icons/06003FDB.png b/static/icons/06003FDB.png deleted file mode 100755 index 0d12084c..00000000 Binary files a/static/icons/06003FDB.png and /dev/null differ diff --git a/static/icons/06003FDD.png b/static/icons/06003FDD.png deleted file mode 100755 index ffbc8510..00000000 Binary files a/static/icons/06003FDD.png and /dev/null differ diff --git a/static/icons/06003FDF.png b/static/icons/06003FDF.png deleted file mode 100755 index 60e1700c..00000000 Binary files a/static/icons/06003FDF.png and /dev/null differ diff --git a/static/icons/06003FE3.png b/static/icons/06003FE3.png deleted file mode 100755 index 782b186d..00000000 Binary files a/static/icons/06003FE3.png and /dev/null differ diff --git a/static/icons/06003FE5.png b/static/icons/06003FE5.png deleted file mode 100755 index 72024f6d..00000000 Binary files a/static/icons/06003FE5.png and /dev/null differ diff --git a/static/icons/06003FE7.png b/static/icons/06003FE7.png deleted file mode 100755 index 38d2a039..00000000 Binary files a/static/icons/06003FE7.png and /dev/null differ diff --git a/static/icons/06003FE9.png b/static/icons/06003FE9.png deleted file mode 100755 index 6203d60b..00000000 Binary files a/static/icons/06003FE9.png and /dev/null differ diff --git a/static/icons/06003FEB.png b/static/icons/06003FEB.png deleted file mode 100755 index 7e799a3d..00000000 Binary files a/static/icons/06003FEB.png and /dev/null differ diff --git a/static/icons/06003FF3.png b/static/icons/06003FF3.png deleted file mode 100755 index a909dc65..00000000 Binary files a/static/icons/06003FF3.png and /dev/null differ diff --git a/static/icons/06003FF5.png b/static/icons/06003FF5.png deleted file mode 100755 index dccbbb73..00000000 Binary files a/static/icons/06003FF5.png and /dev/null differ diff --git a/static/icons/06004008.png b/static/icons/06004008.png deleted file mode 100755 index a6579607..00000000 Binary files a/static/icons/06004008.png and /dev/null differ diff --git a/static/icons/0600400A.png b/static/icons/0600400A.png deleted file mode 100755 index 611db53c..00000000 Binary files a/static/icons/0600400A.png and /dev/null differ diff --git a/static/icons/0600400C.png b/static/icons/0600400C.png deleted file mode 100755 index 749a683b..00000000 Binary files a/static/icons/0600400C.png and /dev/null differ diff --git a/static/icons/0600400E.png b/static/icons/0600400E.png deleted file mode 100755 index 45125bac..00000000 Binary files a/static/icons/0600400E.png and /dev/null differ diff --git a/static/icons/06004012.png b/static/icons/06004012.png deleted file mode 100755 index 7d63f460..00000000 Binary files a/static/icons/06004012.png and /dev/null differ diff --git a/static/icons/06004014.png b/static/icons/06004014.png deleted file mode 100755 index 97cd6f76..00000000 Binary files a/static/icons/06004014.png and /dev/null differ diff --git a/static/icons/06004016.png b/static/icons/06004016.png deleted file mode 100755 index 520fabbe..00000000 Binary files a/static/icons/06004016.png and /dev/null differ diff --git a/static/icons/06004018.png b/static/icons/06004018.png deleted file mode 100755 index 2643896e..00000000 Binary files a/static/icons/06004018.png and /dev/null differ diff --git a/static/icons/0600401E.png b/static/icons/0600401E.png deleted file mode 100755 index c1dfab2f..00000000 Binary files a/static/icons/0600401E.png and /dev/null differ diff --git a/static/icons/06004020.png b/static/icons/06004020.png deleted file mode 100755 index 565e5f9f..00000000 Binary files a/static/icons/06004020.png and /dev/null differ diff --git a/static/icons/06004022.png b/static/icons/06004022.png deleted file mode 100755 index ddce5ff6..00000000 Binary files a/static/icons/06004022.png and /dev/null differ diff --git a/static/icons/06004027.png b/static/icons/06004027.png deleted file mode 100755 index aecf4e0f..00000000 Binary files a/static/icons/06004027.png and /dev/null differ diff --git a/static/icons/0600402E.png b/static/icons/0600402E.png deleted file mode 100755 index d120a3d6..00000000 Binary files a/static/icons/0600402E.png and /dev/null differ diff --git a/static/icons/06004032.png b/static/icons/06004032.png deleted file mode 100755 index dbf12760..00000000 Binary files a/static/icons/06004032.png and /dev/null differ diff --git a/static/icons/06004033.png b/static/icons/06004033.png deleted file mode 100755 index 12cb89bc..00000000 Binary files a/static/icons/06004033.png and /dev/null differ diff --git a/static/icons/06004036.png b/static/icons/06004036.png deleted file mode 100755 index d6e9fff4..00000000 Binary files a/static/icons/06004036.png and /dev/null differ diff --git a/static/icons/06004039.png b/static/icons/06004039.png deleted file mode 100755 index a5852dd8..00000000 Binary files a/static/icons/06004039.png and /dev/null differ diff --git a/static/icons/0600403A.png b/static/icons/0600403A.png deleted file mode 100755 index fbe3ec51..00000000 Binary files a/static/icons/0600403A.png and /dev/null differ diff --git a/static/icons/0600403B.png b/static/icons/0600403B.png deleted file mode 100755 index 7e09ffa0..00000000 Binary files a/static/icons/0600403B.png and /dev/null differ diff --git a/static/icons/0600403C.png b/static/icons/0600403C.png deleted file mode 100755 index 10cec2d3..00000000 Binary files a/static/icons/0600403C.png and /dev/null differ diff --git a/static/icons/0600403F.png b/static/icons/0600403F.png deleted file mode 100755 index 49c41e9f..00000000 Binary files a/static/icons/0600403F.png and /dev/null differ diff --git a/static/icons/06004040.png b/static/icons/06004040.png deleted file mode 100755 index 243b2c95..00000000 Binary files a/static/icons/06004040.png and /dev/null differ diff --git a/static/icons/06004041.png b/static/icons/06004041.png deleted file mode 100755 index 093970ff..00000000 Binary files a/static/icons/06004041.png and /dev/null differ diff --git a/static/icons/06004042.png b/static/icons/06004042.png deleted file mode 100755 index b97c15bf..00000000 Binary files a/static/icons/06004042.png and /dev/null differ diff --git a/static/icons/06004045.png b/static/icons/06004045.png deleted file mode 100755 index 4e80a190..00000000 Binary files a/static/icons/06004045.png and /dev/null differ diff --git a/static/icons/06004047.png b/static/icons/06004047.png deleted file mode 100755 index b9f76e23..00000000 Binary files a/static/icons/06004047.png and /dev/null differ diff --git a/static/icons/0600404F.png b/static/icons/0600404F.png deleted file mode 100755 index e05119fe..00000000 Binary files a/static/icons/0600404F.png and /dev/null differ diff --git a/static/icons/06004050.png b/static/icons/06004050.png deleted file mode 100755 index 661de70d..00000000 Binary files a/static/icons/06004050.png and /dev/null differ diff --git a/static/icons/06004052.png b/static/icons/06004052.png deleted file mode 100755 index 429ee6c9..00000000 Binary files a/static/icons/06004052.png and /dev/null differ diff --git a/static/icons/06004054.png b/static/icons/06004054.png deleted file mode 100755 index f97194f8..00000000 Binary files a/static/icons/06004054.png and /dev/null differ diff --git a/static/icons/0600405B.png b/static/icons/0600405B.png deleted file mode 100755 index 4622e775..00000000 Binary files a/static/icons/0600405B.png and /dev/null differ diff --git a/static/icons/0600405C.png b/static/icons/0600405C.png deleted file mode 100755 index dcc4a3ca..00000000 Binary files a/static/icons/0600405C.png and /dev/null differ diff --git a/static/icons/0600405D.png b/static/icons/0600405D.png deleted file mode 100755 index 14beab5a..00000000 Binary files a/static/icons/0600405D.png and /dev/null differ diff --git a/static/icons/0600405E.png b/static/icons/0600405E.png deleted file mode 100755 index 3b6b270b..00000000 Binary files a/static/icons/0600405E.png and /dev/null differ diff --git a/static/icons/0600405F.png b/static/icons/0600405F.png deleted file mode 100755 index d2710a87..00000000 Binary files a/static/icons/0600405F.png and /dev/null differ diff --git a/static/icons/06004060.png b/static/icons/06004060.png deleted file mode 100755 index 64a66285..00000000 Binary files a/static/icons/06004060.png and /dev/null differ diff --git a/static/icons/06004061.png b/static/icons/06004061.png deleted file mode 100755 index 9a034c30..00000000 Binary files a/static/icons/06004061.png and /dev/null differ diff --git a/static/icons/06004062.png b/static/icons/06004062.png deleted file mode 100755 index 5f428c87..00000000 Binary files a/static/icons/06004062.png and /dev/null differ diff --git a/static/icons/06004064.png b/static/icons/06004064.png deleted file mode 100755 index ced0061e..00000000 Binary files a/static/icons/06004064.png and /dev/null differ diff --git a/static/icons/06004066.png b/static/icons/06004066.png deleted file mode 100755 index 08ebf32b..00000000 Binary files a/static/icons/06004066.png and /dev/null differ diff --git a/static/icons/06004075.png b/static/icons/06004075.png deleted file mode 100755 index ad2a92e4..00000000 Binary files a/static/icons/06004075.png and /dev/null differ diff --git a/static/icons/06004077.png b/static/icons/06004077.png deleted file mode 100755 index 129ba297..00000000 Binary files a/static/icons/06004077.png and /dev/null differ diff --git a/static/icons/06004079.png b/static/icons/06004079.png deleted file mode 100755 index 1f1201c0..00000000 Binary files a/static/icons/06004079.png and /dev/null differ diff --git a/static/icons/0600407B.png b/static/icons/0600407B.png deleted file mode 100755 index 50559722..00000000 Binary files a/static/icons/0600407B.png and /dev/null differ diff --git a/static/icons/0600407D.png b/static/icons/0600407D.png deleted file mode 100755 index 2de44b00..00000000 Binary files a/static/icons/0600407D.png and /dev/null differ diff --git a/static/icons/0600407F.png b/static/icons/0600407F.png deleted file mode 100755 index c9a11d33..00000000 Binary files a/static/icons/0600407F.png and /dev/null differ diff --git a/static/icons/06004081.png b/static/icons/06004081.png deleted file mode 100755 index 32e4fa18..00000000 Binary files a/static/icons/06004081.png and /dev/null differ diff --git a/static/icons/06004083.png b/static/icons/06004083.png deleted file mode 100755 index 18158a37..00000000 Binary files a/static/icons/06004083.png and /dev/null differ diff --git a/static/icons/06004085.png b/static/icons/06004085.png deleted file mode 100755 index c5133061..00000000 Binary files a/static/icons/06004085.png and /dev/null differ diff --git a/static/icons/06004087.png b/static/icons/06004087.png deleted file mode 100755 index 5a05784c..00000000 Binary files a/static/icons/06004087.png and /dev/null differ diff --git a/static/icons/06004089.png b/static/icons/06004089.png deleted file mode 100755 index e02af8f5..00000000 Binary files a/static/icons/06004089.png and /dev/null differ diff --git a/static/icons/0600408B.png b/static/icons/0600408B.png deleted file mode 100755 index 0bd94c49..00000000 Binary files a/static/icons/0600408B.png and /dev/null differ diff --git a/static/icons/0600408D.png b/static/icons/0600408D.png deleted file mode 100755 index 1497c71a..00000000 Binary files a/static/icons/0600408D.png and /dev/null differ diff --git a/static/icons/06004090.png b/static/icons/06004090.png deleted file mode 100755 index 1497c71a..00000000 Binary files a/static/icons/06004090.png and /dev/null differ diff --git a/static/icons/06004094.png b/static/icons/06004094.png deleted file mode 100755 index 1169354d..00000000 Binary files a/static/icons/06004094.png and /dev/null differ diff --git a/static/icons/06004096.png b/static/icons/06004096.png deleted file mode 100755 index a7545cd7..00000000 Binary files a/static/icons/06004096.png and /dev/null differ diff --git a/static/icons/060040B4.png b/static/icons/060040B4.png deleted file mode 100755 index 2e5ccbd2..00000000 Binary files a/static/icons/060040B4.png and /dev/null differ diff --git a/static/icons/060040B6.png b/static/icons/060040B6.png deleted file mode 100755 index 6e3ebef6..00000000 Binary files a/static/icons/060040B6.png and /dev/null differ diff --git a/static/icons/060040B8.png b/static/icons/060040B8.png deleted file mode 100755 index e25d6c2b..00000000 Binary files a/static/icons/060040B8.png and /dev/null differ diff --git a/static/icons/060040BA.png b/static/icons/060040BA.png deleted file mode 100755 index 0996b785..00000000 Binary files a/static/icons/060040BA.png and /dev/null differ diff --git a/static/icons/060040BC.png b/static/icons/060040BC.png deleted file mode 100755 index 01d9ba35..00000000 Binary files a/static/icons/060040BC.png and /dev/null differ diff --git a/static/icons/060040BE.png b/static/icons/060040BE.png deleted file mode 100755 index 736cdfc6..00000000 Binary files a/static/icons/060040BE.png and /dev/null differ diff --git a/static/icons/060040C0.png b/static/icons/060040C0.png deleted file mode 100755 index 45dfc6c7..00000000 Binary files a/static/icons/060040C0.png and /dev/null differ diff --git a/static/icons/060040C2.png b/static/icons/060040C2.png deleted file mode 100755 index 927d2ee1..00000000 Binary files a/static/icons/060040C2.png and /dev/null differ diff --git a/static/icons/060040C4.png b/static/icons/060040C4.png deleted file mode 100755 index 6a510571..00000000 Binary files a/static/icons/060040C4.png and /dev/null differ diff --git a/static/icons/060040C6.png b/static/icons/060040C6.png deleted file mode 100755 index e5411c56..00000000 Binary files a/static/icons/060040C6.png and /dev/null differ diff --git a/static/icons/060040C8.png b/static/icons/060040C8.png deleted file mode 100755 index e43f516e..00000000 Binary files a/static/icons/060040C8.png and /dev/null differ diff --git a/static/icons/060040CA.png b/static/icons/060040CA.png deleted file mode 100755 index e28cabc5..00000000 Binary files a/static/icons/060040CA.png and /dev/null differ diff --git a/static/icons/060040CC.png b/static/icons/060040CC.png deleted file mode 100755 index 9b990b52..00000000 Binary files a/static/icons/060040CC.png and /dev/null differ diff --git a/static/icons/060040D4.png b/static/icons/060040D4.png deleted file mode 100755 index 25d06d68..00000000 Binary files a/static/icons/060040D4.png and /dev/null differ diff --git a/static/icons/060040D6.png b/static/icons/060040D6.png deleted file mode 100755 index 225232c2..00000000 Binary files a/static/icons/060040D6.png and /dev/null differ diff --git a/static/icons/060040D8.png b/static/icons/060040D8.png deleted file mode 100755 index 7cd675bd..00000000 Binary files a/static/icons/060040D8.png and /dev/null differ diff --git a/static/icons/060040DA.png b/static/icons/060040DA.png deleted file mode 100755 index 844499e9..00000000 Binary files a/static/icons/060040DA.png and /dev/null differ diff --git a/static/icons/060040DE.png b/static/icons/060040DE.png deleted file mode 100755 index 5cff5f47..00000000 Binary files a/static/icons/060040DE.png and /dev/null differ diff --git a/static/icons/060040E0.png b/static/icons/060040E0.png deleted file mode 100755 index b4e7f488..00000000 Binary files a/static/icons/060040E0.png and /dev/null differ diff --git a/static/icons/06004100.png b/static/icons/06004100.png deleted file mode 100755 index 8770fdfa..00000000 Binary files a/static/icons/06004100.png and /dev/null differ diff --git a/static/icons/06004102.png b/static/icons/06004102.png deleted file mode 100755 index 5c36de98..00000000 Binary files a/static/icons/06004102.png and /dev/null differ diff --git a/static/icons/06004104.png b/static/icons/06004104.png deleted file mode 100755 index 728e986b..00000000 Binary files a/static/icons/06004104.png and /dev/null differ diff --git a/static/icons/06004106.png b/static/icons/06004106.png deleted file mode 100755 index 3a85c059..00000000 Binary files a/static/icons/06004106.png and /dev/null differ diff --git a/static/icons/06004108.png b/static/icons/06004108.png deleted file mode 100755 index 22a884dd..00000000 Binary files a/static/icons/06004108.png and /dev/null differ diff --git a/static/icons/0600410A.png b/static/icons/0600410A.png deleted file mode 100755 index 54cecdde..00000000 Binary files a/static/icons/0600410A.png and /dev/null differ diff --git a/static/icons/0600410D.png b/static/icons/0600410D.png deleted file mode 100755 index 2f4e8815..00000000 Binary files a/static/icons/0600410D.png and /dev/null differ diff --git a/static/icons/0600410F.png b/static/icons/0600410F.png deleted file mode 100755 index 1d436257..00000000 Binary files a/static/icons/0600410F.png and /dev/null differ diff --git a/static/icons/06004111.png b/static/icons/06004111.png deleted file mode 100755 index e8c93247..00000000 Binary files a/static/icons/06004111.png and /dev/null differ diff --git a/static/icons/06004113.png b/static/icons/06004113.png deleted file mode 100755 index 21832b36..00000000 Binary files a/static/icons/06004113.png and /dev/null differ diff --git a/static/icons/06004129.png b/static/icons/06004129.png deleted file mode 100755 index 682a5a42..00000000 Binary files a/static/icons/06004129.png and /dev/null differ diff --git a/static/icons/06004131.png b/static/icons/06004131.png deleted file mode 100755 index fcc8f003..00000000 Binary files a/static/icons/06004131.png and /dev/null differ diff --git a/static/icons/0600413B.png b/static/icons/0600413B.png deleted file mode 100755 index 38e43431..00000000 Binary files a/static/icons/0600413B.png and /dev/null differ diff --git a/static/icons/0600413D.png b/static/icons/0600413D.png deleted file mode 100755 index 4e93b6c2..00000000 Binary files a/static/icons/0600413D.png and /dev/null differ diff --git a/static/icons/06004140.png b/static/icons/06004140.png deleted file mode 100755 index eb93df47..00000000 Binary files a/static/icons/06004140.png and /dev/null differ diff --git a/static/icons/06004141.png b/static/icons/06004141.png deleted file mode 100755 index 364842fc..00000000 Binary files a/static/icons/06004141.png and /dev/null differ diff --git a/static/icons/06004164.png b/static/icons/06004164.png deleted file mode 100755 index 4841f897..00000000 Binary files a/static/icons/06004164.png and /dev/null differ diff --git a/static/icons/06004165.png b/static/icons/06004165.png deleted file mode 100755 index 1ba53c47..00000000 Binary files a/static/icons/06004165.png and /dev/null differ diff --git a/static/icons/06004166.png b/static/icons/06004166.png deleted file mode 100755 index aeec7c63..00000000 Binary files a/static/icons/06004166.png and /dev/null differ diff --git a/static/icons/06004167.png b/static/icons/06004167.png deleted file mode 100755 index 6c78d27c..00000000 Binary files a/static/icons/06004167.png and /dev/null differ diff --git a/static/icons/06004168.png b/static/icons/06004168.png deleted file mode 100755 index ffdc26ae..00000000 Binary files a/static/icons/06004168.png and /dev/null differ diff --git a/static/icons/06004169.png b/static/icons/06004169.png deleted file mode 100755 index 276b9263..00000000 Binary files a/static/icons/06004169.png and /dev/null differ diff --git a/static/icons/0600416A.png b/static/icons/0600416A.png deleted file mode 100755 index 064f9abe..00000000 Binary files a/static/icons/0600416A.png and /dev/null differ diff --git a/static/icons/0600416B.png b/static/icons/0600416B.png deleted file mode 100755 index 7f957cf9..00000000 Binary files a/static/icons/0600416B.png and /dev/null differ diff --git a/static/icons/0600416C.png b/static/icons/0600416C.png deleted file mode 100755 index 26522f7c..00000000 Binary files a/static/icons/0600416C.png and /dev/null differ diff --git a/static/icons/0600416D.png b/static/icons/0600416D.png deleted file mode 100755 index 26963ba8..00000000 Binary files a/static/icons/0600416D.png and /dev/null differ diff --git a/static/icons/0600416E.png b/static/icons/0600416E.png deleted file mode 100755 index cd5cad99..00000000 Binary files a/static/icons/0600416E.png and /dev/null differ diff --git a/static/icons/06004170.png b/static/icons/06004170.png deleted file mode 100755 index 4f9a21dc..00000000 Binary files a/static/icons/06004170.png and /dev/null differ diff --git a/static/icons/06004171.png b/static/icons/06004171.png deleted file mode 100755 index 0d9ebdff..00000000 Binary files a/static/icons/06004171.png and /dev/null differ diff --git a/static/icons/06004175.png b/static/icons/06004175.png deleted file mode 100755 index fc607f23..00000000 Binary files a/static/icons/06004175.png and /dev/null differ diff --git a/static/icons/06004177.png b/static/icons/06004177.png deleted file mode 100755 index f4954bb6..00000000 Binary files a/static/icons/06004177.png and /dev/null differ diff --git a/static/icons/06004179.png b/static/icons/06004179.png deleted file mode 100755 index 0c03c86e..00000000 Binary files a/static/icons/06004179.png and /dev/null differ diff --git a/static/icons/0600417B.png b/static/icons/0600417B.png deleted file mode 100755 index fdeeb04e..00000000 Binary files a/static/icons/0600417B.png and /dev/null differ diff --git a/static/icons/0600417D.png b/static/icons/0600417D.png deleted file mode 100755 index 2ce8593b..00000000 Binary files a/static/icons/0600417D.png and /dev/null differ diff --git a/static/icons/06004180.png b/static/icons/06004180.png deleted file mode 100755 index 6eae97ba..00000000 Binary files a/static/icons/06004180.png and /dev/null differ diff --git a/static/icons/06004187.png b/static/icons/06004187.png deleted file mode 100755 index 81d5e0a0..00000000 Binary files a/static/icons/06004187.png and /dev/null differ diff --git a/static/icons/0600418D.png b/static/icons/0600418D.png deleted file mode 100755 index aec6fd53..00000000 Binary files a/static/icons/0600418D.png and /dev/null differ diff --git a/static/icons/0600418F.png b/static/icons/0600418F.png deleted file mode 100755 index c65498cf..00000000 Binary files a/static/icons/0600418F.png and /dev/null differ diff --git a/static/icons/06004192.png b/static/icons/06004192.png deleted file mode 100755 index efa54d85..00000000 Binary files a/static/icons/06004192.png and /dev/null differ diff --git a/static/icons/06004194.png b/static/icons/06004194.png deleted file mode 100755 index 85b417d8..00000000 Binary files a/static/icons/06004194.png and /dev/null differ diff --git a/static/icons/06004196.png b/static/icons/06004196.png deleted file mode 100755 index d603fe06..00000000 Binary files a/static/icons/06004196.png and /dev/null differ diff --git a/static/icons/0600419E.png b/static/icons/0600419E.png deleted file mode 100755 index 4235d6ee..00000000 Binary files a/static/icons/0600419E.png and /dev/null differ diff --git a/static/icons/060041A0.png b/static/icons/060041A0.png deleted file mode 100755 index 4f63cdc0..00000000 Binary files a/static/icons/060041A0.png and /dev/null differ diff --git a/static/icons/060041A2.png b/static/icons/060041A2.png deleted file mode 100755 index e74080f8..00000000 Binary files a/static/icons/060041A2.png and /dev/null differ diff --git a/static/icons/060041A7.png b/static/icons/060041A7.png deleted file mode 100755 index 5681ea2f..00000000 Binary files a/static/icons/060041A7.png and /dev/null differ diff --git a/static/icons/060041A9.png b/static/icons/060041A9.png deleted file mode 100755 index 2bd6813a..00000000 Binary files a/static/icons/060041A9.png and /dev/null differ diff --git a/static/icons/060041AC.png b/static/icons/060041AC.png deleted file mode 100755 index f2330e51..00000000 Binary files a/static/icons/060041AC.png and /dev/null differ diff --git a/static/icons/060041AD.png b/static/icons/060041AD.png deleted file mode 100755 index cc979478..00000000 Binary files a/static/icons/060041AD.png and /dev/null differ diff --git a/static/icons/060041AF.png b/static/icons/060041AF.png deleted file mode 100755 index 5722bfd3..00000000 Binary files a/static/icons/060041AF.png and /dev/null differ diff --git a/static/icons/060041B2.png b/static/icons/060041B2.png deleted file mode 100755 index cb00f97c..00000000 Binary files a/static/icons/060041B2.png and /dev/null differ diff --git a/static/icons/060041B5.png b/static/icons/060041B5.png deleted file mode 100755 index 8136e530..00000000 Binary files a/static/icons/060041B5.png and /dev/null differ diff --git a/static/icons/060041B7.png b/static/icons/060041B7.png deleted file mode 100755 index 0038101c..00000000 Binary files a/static/icons/060041B7.png and /dev/null differ diff --git a/static/icons/060041B9.png b/static/icons/060041B9.png deleted file mode 100755 index e3f6e137..00000000 Binary files a/static/icons/060041B9.png and /dev/null differ diff --git a/static/icons/060041BB.png b/static/icons/060041BB.png deleted file mode 100755 index c20cb533..00000000 Binary files a/static/icons/060041BB.png and /dev/null differ diff --git a/static/icons/060041BD.png b/static/icons/060041BD.png deleted file mode 100755 index 98c85682..00000000 Binary files a/static/icons/060041BD.png and /dev/null differ diff --git a/static/icons/060041C0.png b/static/icons/060041C0.png deleted file mode 100755 index f0e52b7c..00000000 Binary files a/static/icons/060041C0.png and /dev/null differ diff --git a/static/icons/060041C2.png b/static/icons/060041C2.png deleted file mode 100755 index 583821dc..00000000 Binary files a/static/icons/060041C2.png and /dev/null differ diff --git a/static/icons/060041C4.png b/static/icons/060041C4.png deleted file mode 100755 index 2896a23a..00000000 Binary files a/static/icons/060041C4.png and /dev/null differ diff --git a/static/icons/060041C6.png b/static/icons/060041C6.png deleted file mode 100755 index f31772bd..00000000 Binary files a/static/icons/060041C6.png and /dev/null differ diff --git a/static/icons/060041C9.png b/static/icons/060041C9.png deleted file mode 100755 index f0a22a88..00000000 Binary files a/static/icons/060041C9.png and /dev/null differ diff --git a/static/icons/060041CE.png b/static/icons/060041CE.png deleted file mode 100755 index a8f78ba0..00000000 Binary files a/static/icons/060041CE.png and /dev/null differ diff --git a/static/icons/060041D0.png b/static/icons/060041D0.png deleted file mode 100755 index bde460d2..00000000 Binary files a/static/icons/060041D0.png and /dev/null differ diff --git a/static/icons/060041D2.png b/static/icons/060041D2.png deleted file mode 100755 index 1430d79a..00000000 Binary files a/static/icons/060041D2.png and /dev/null differ diff --git a/static/icons/060041D7.png b/static/icons/060041D7.png deleted file mode 100755 index 823473fc..00000000 Binary files a/static/icons/060041D7.png and /dev/null differ diff --git a/static/icons/060041D9.png b/static/icons/060041D9.png deleted file mode 100755 index a1d6bb0d..00000000 Binary files a/static/icons/060041D9.png and /dev/null differ diff --git a/static/icons/060041DB.png b/static/icons/060041DB.png deleted file mode 100755 index 7a5f5ddc..00000000 Binary files a/static/icons/060041DB.png and /dev/null differ diff --git a/static/icons/060041DD.png b/static/icons/060041DD.png deleted file mode 100755 index cfd01c24..00000000 Binary files a/static/icons/060041DD.png and /dev/null differ diff --git a/static/icons/060041DF.png b/static/icons/060041DF.png deleted file mode 100755 index f80df9e3..00000000 Binary files a/static/icons/060041DF.png and /dev/null differ diff --git a/static/icons/060041E1.png b/static/icons/060041E1.png deleted file mode 100755 index 5d1bdd53..00000000 Binary files a/static/icons/060041E1.png and /dev/null differ diff --git a/static/icons/060041E3.png b/static/icons/060041E3.png deleted file mode 100755 index d2c40c1d..00000000 Binary files a/static/icons/060041E3.png and /dev/null differ diff --git a/static/icons/060041E5.png b/static/icons/060041E5.png deleted file mode 100755 index dc6b7f11..00000000 Binary files a/static/icons/060041E5.png and /dev/null differ diff --git a/static/icons/060041E8.png b/static/icons/060041E8.png deleted file mode 100755 index 6a85852f..00000000 Binary files a/static/icons/060041E8.png and /dev/null differ diff --git a/static/icons/060041EC.png b/static/icons/060041EC.png deleted file mode 100755 index eb556d3f..00000000 Binary files a/static/icons/060041EC.png and /dev/null differ diff --git a/static/icons/060041F1.png b/static/icons/060041F1.png deleted file mode 100755 index 3afc148a..00000000 Binary files a/static/icons/060041F1.png and /dev/null differ diff --git a/static/icons/060041F3.png b/static/icons/060041F3.png deleted file mode 100755 index 414a9d82..00000000 Binary files a/static/icons/060041F3.png and /dev/null differ diff --git a/static/icons/060041F5.png b/static/icons/060041F5.png deleted file mode 100755 index 0bd94c49..00000000 Binary files a/static/icons/060041F5.png and /dev/null differ diff --git a/static/icons/060041F7.png b/static/icons/060041F7.png deleted file mode 100755 index 4a7f78b5..00000000 Binary files a/static/icons/060041F7.png and /dev/null differ diff --git a/static/icons/060041F9.png b/static/icons/060041F9.png deleted file mode 100755 index 4b9a1daf..00000000 Binary files a/static/icons/060041F9.png and /dev/null differ diff --git a/static/icons/060041FB.png b/static/icons/060041FB.png deleted file mode 100755 index a5638aa6..00000000 Binary files a/static/icons/060041FB.png and /dev/null differ diff --git a/static/icons/060041FD.png b/static/icons/060041FD.png deleted file mode 100755 index 94df6499..00000000 Binary files a/static/icons/060041FD.png and /dev/null differ diff --git a/static/icons/060041FF.png b/static/icons/060041FF.png deleted file mode 100755 index 8b6e8498..00000000 Binary files a/static/icons/060041FF.png and /dev/null differ diff --git a/static/icons/06004201.png b/static/icons/06004201.png deleted file mode 100755 index 880938a1..00000000 Binary files a/static/icons/06004201.png and /dev/null differ diff --git a/static/icons/06004203.png b/static/icons/06004203.png deleted file mode 100755 index 6870e5b4..00000000 Binary files a/static/icons/06004203.png and /dev/null differ diff --git a/static/icons/06004204.png b/static/icons/06004204.png deleted file mode 100755 index 0cc60d29..00000000 Binary files a/static/icons/06004204.png and /dev/null differ diff --git a/static/icons/06004205.png b/static/icons/06004205.png deleted file mode 100755 index 1d7d21cf..00000000 Binary files a/static/icons/06004205.png and /dev/null differ diff --git a/static/icons/06004207.png b/static/icons/06004207.png deleted file mode 100755 index d7645e16..00000000 Binary files a/static/icons/06004207.png and /dev/null differ diff --git a/static/icons/06004209.png b/static/icons/06004209.png deleted file mode 100755 index 559e615d..00000000 Binary files a/static/icons/06004209.png and /dev/null differ diff --git a/static/icons/0600420B.png b/static/icons/0600420B.png deleted file mode 100755 index 11e47203..00000000 Binary files a/static/icons/0600420B.png and /dev/null differ diff --git a/static/icons/0600420D.png b/static/icons/0600420D.png deleted file mode 100755 index e9228288..00000000 Binary files a/static/icons/0600420D.png and /dev/null differ diff --git a/static/icons/0600420F.png b/static/icons/0600420F.png deleted file mode 100755 index 2fe335e8..00000000 Binary files a/static/icons/0600420F.png and /dev/null differ diff --git a/static/icons/06004211.png b/static/icons/06004211.png deleted file mode 100755 index 6c0de0af..00000000 Binary files a/static/icons/06004211.png and /dev/null differ diff --git a/static/icons/06004213.png b/static/icons/06004213.png deleted file mode 100755 index d6c8a8c8..00000000 Binary files a/static/icons/06004213.png and /dev/null differ diff --git a/static/icons/06004215.png b/static/icons/06004215.png deleted file mode 100755 index 8aca25ff..00000000 Binary files a/static/icons/06004215.png and /dev/null differ diff --git a/static/icons/06004217.png b/static/icons/06004217.png deleted file mode 100755 index f864c750..00000000 Binary files a/static/icons/06004217.png and /dev/null differ diff --git a/static/icons/06004219.png b/static/icons/06004219.png deleted file mode 100755 index e7a8bace..00000000 Binary files a/static/icons/06004219.png and /dev/null differ diff --git a/static/icons/0600421B.png b/static/icons/0600421B.png deleted file mode 100755 index 1d9ac672..00000000 Binary files a/static/icons/0600421B.png and /dev/null differ diff --git a/static/icons/0600421D.png b/static/icons/0600421D.png deleted file mode 100755 index 9d79b156..00000000 Binary files a/static/icons/0600421D.png and /dev/null differ diff --git a/static/icons/0600421F.png b/static/icons/0600421F.png deleted file mode 100755 index 0a86df8c..00000000 Binary files a/static/icons/0600421F.png and /dev/null differ diff --git a/static/icons/06004221.png b/static/icons/06004221.png deleted file mode 100755 index d7142f8f..00000000 Binary files a/static/icons/06004221.png and /dev/null differ diff --git a/static/icons/06004223.png b/static/icons/06004223.png deleted file mode 100755 index e5d53fc4..00000000 Binary files a/static/icons/06004223.png and /dev/null differ diff --git a/static/icons/06004225.png b/static/icons/06004225.png deleted file mode 100755 index b5ba3510..00000000 Binary files a/static/icons/06004225.png and /dev/null differ diff --git a/static/icons/06004227.png b/static/icons/06004227.png deleted file mode 100755 index 38d0611e..00000000 Binary files a/static/icons/06004227.png and /dev/null differ diff --git a/static/icons/06004229.png b/static/icons/06004229.png deleted file mode 100755 index eb926578..00000000 Binary files a/static/icons/06004229.png and /dev/null differ diff --git a/static/icons/0600422B.png b/static/icons/0600422B.png deleted file mode 100755 index 8bf0a4c0..00000000 Binary files a/static/icons/0600422B.png and /dev/null differ diff --git a/static/icons/0600422E.png b/static/icons/0600422E.png deleted file mode 100755 index 848341dd..00000000 Binary files a/static/icons/0600422E.png and /dev/null differ diff --git a/static/icons/06004231.png b/static/icons/06004231.png deleted file mode 100755 index 3159b7e0..00000000 Binary files a/static/icons/06004231.png and /dev/null differ diff --git a/static/icons/06004234.png b/static/icons/06004234.png deleted file mode 100755 index 099725a3..00000000 Binary files a/static/icons/06004234.png and /dev/null differ diff --git a/static/icons/06004236.png b/static/icons/06004236.png deleted file mode 100755 index 7835fa63..00000000 Binary files a/static/icons/06004236.png and /dev/null differ diff --git a/static/icons/06004238.png b/static/icons/06004238.png deleted file mode 100755 index 52c793bc..00000000 Binary files a/static/icons/06004238.png and /dev/null differ diff --git a/static/icons/0600423A.png b/static/icons/0600423A.png deleted file mode 100755 index ca66106c..00000000 Binary files a/static/icons/0600423A.png and /dev/null differ diff --git a/static/icons/0600423E.png b/static/icons/0600423E.png deleted file mode 100755 index bfa46bfb..00000000 Binary files a/static/icons/0600423E.png and /dev/null differ diff --git a/static/icons/0600423F.png b/static/icons/0600423F.png deleted file mode 100755 index 9090d51f..00000000 Binary files a/static/icons/0600423F.png and /dev/null differ diff --git a/static/icons/06004241.png b/static/icons/06004241.png deleted file mode 100755 index 25eb4534..00000000 Binary files a/static/icons/06004241.png and /dev/null differ diff --git a/static/icons/06004243.png b/static/icons/06004243.png deleted file mode 100755 index 2b2ada0b..00000000 Binary files a/static/icons/06004243.png and /dev/null differ diff --git a/static/icons/06004245.png b/static/icons/06004245.png deleted file mode 100755 index 85b196d9..00000000 Binary files a/static/icons/06004245.png and /dev/null differ diff --git a/static/icons/06004247.png b/static/icons/06004247.png deleted file mode 100755 index 0c358782..00000000 Binary files a/static/icons/06004247.png and /dev/null differ diff --git a/static/icons/06004249.png b/static/icons/06004249.png deleted file mode 100755 index 8a0f7423..00000000 Binary files a/static/icons/06004249.png and /dev/null differ diff --git a/static/icons/0600424B.png b/static/icons/0600424B.png deleted file mode 100755 index f1e746ef..00000000 Binary files a/static/icons/0600424B.png and /dev/null differ diff --git a/static/icons/0600424D.png b/static/icons/0600424D.png deleted file mode 100755 index 8d05b2ad..00000000 Binary files a/static/icons/0600424D.png and /dev/null differ diff --git a/static/icons/06004251.png b/static/icons/06004251.png deleted file mode 100755 index 882d3945..00000000 Binary files a/static/icons/06004251.png and /dev/null differ diff --git a/static/icons/06004253.png b/static/icons/06004253.png deleted file mode 100755 index 241f404a..00000000 Binary files a/static/icons/06004253.png and /dev/null differ diff --git a/static/icons/06004256.png b/static/icons/06004256.png deleted file mode 100755 index 02b7c165..00000000 Binary files a/static/icons/06004256.png and /dev/null differ diff --git a/static/icons/06004258.png b/static/icons/06004258.png deleted file mode 100755 index 4f53698a..00000000 Binary files a/static/icons/06004258.png and /dev/null differ diff --git a/static/icons/0600425A.png b/static/icons/0600425A.png deleted file mode 100755 index 034db58f..00000000 Binary files a/static/icons/0600425A.png and /dev/null differ diff --git a/static/icons/0600425C.png b/static/icons/0600425C.png deleted file mode 100755 index a4610bc5..00000000 Binary files a/static/icons/0600425C.png and /dev/null differ diff --git a/static/icons/0600425F.png b/static/icons/0600425F.png deleted file mode 100755 index 89779edc..00000000 Binary files a/static/icons/0600425F.png and /dev/null differ diff --git a/static/icons/06004261.png b/static/icons/06004261.png deleted file mode 100755 index 641b299d..00000000 Binary files a/static/icons/06004261.png and /dev/null differ diff --git a/static/icons/06004263.png b/static/icons/06004263.png deleted file mode 100755 index b5212edb..00000000 Binary files a/static/icons/06004263.png and /dev/null differ diff --git a/static/icons/06004265.png b/static/icons/06004265.png deleted file mode 100755 index 4f3f8736..00000000 Binary files a/static/icons/06004265.png and /dev/null differ diff --git a/static/icons/06004267.png b/static/icons/06004267.png deleted file mode 100755 index 6340b358..00000000 Binary files a/static/icons/06004267.png and /dev/null differ diff --git a/static/icons/06004269.png b/static/icons/06004269.png deleted file mode 100755 index 48ca50f8..00000000 Binary files a/static/icons/06004269.png and /dev/null differ diff --git a/static/icons/06004274.png b/static/icons/06004274.png deleted file mode 100755 index 01f222e3..00000000 Binary files a/static/icons/06004274.png and /dev/null differ diff --git a/static/icons/06004276.png b/static/icons/06004276.png deleted file mode 100755 index c82dea68..00000000 Binary files a/static/icons/06004276.png and /dev/null differ diff --git a/static/icons/06004278.png b/static/icons/06004278.png deleted file mode 100755 index 8cf2a4ac..00000000 Binary files a/static/icons/06004278.png and /dev/null differ diff --git a/static/icons/0600427A.png b/static/icons/0600427A.png deleted file mode 100755 index 0461f4b0..00000000 Binary files a/static/icons/0600427A.png and /dev/null differ diff --git a/static/icons/0600427C.png b/static/icons/0600427C.png deleted file mode 100755 index 5bc1da34..00000000 Binary files a/static/icons/0600427C.png and /dev/null differ diff --git a/static/icons/0600427E.png b/static/icons/0600427E.png deleted file mode 100755 index be7abc1f..00000000 Binary files a/static/icons/0600427E.png and /dev/null differ diff --git a/static/icons/06004280.png b/static/icons/06004280.png deleted file mode 100755 index 3d87fb88..00000000 Binary files a/static/icons/06004280.png and /dev/null differ diff --git a/static/icons/06004282.png b/static/icons/06004282.png deleted file mode 100755 index d9ce8882..00000000 Binary files a/static/icons/06004282.png and /dev/null differ diff --git a/static/icons/06004284.png b/static/icons/06004284.png deleted file mode 100755 index 7e5d8541..00000000 Binary files a/static/icons/06004284.png and /dev/null differ diff --git a/static/icons/06004286.png b/static/icons/06004286.png deleted file mode 100755 index 4c85f5b0..00000000 Binary files a/static/icons/06004286.png and /dev/null differ diff --git a/static/icons/0600428B.png b/static/icons/0600428B.png deleted file mode 100755 index 6f8ae54e..00000000 Binary files a/static/icons/0600428B.png and /dev/null differ diff --git a/static/icons/0600428E.png b/static/icons/0600428E.png deleted file mode 100755 index 2b811c96..00000000 Binary files a/static/icons/0600428E.png and /dev/null differ diff --git a/static/icons/06004290.png b/static/icons/06004290.png deleted file mode 100755 index addc32f4..00000000 Binary files a/static/icons/06004290.png and /dev/null differ diff --git a/static/icons/06004292.png b/static/icons/06004292.png deleted file mode 100755 index 888ef5e7..00000000 Binary files a/static/icons/06004292.png and /dev/null differ diff --git a/static/icons/06004294.png b/static/icons/06004294.png deleted file mode 100755 index b79b6720..00000000 Binary files a/static/icons/06004294.png and /dev/null differ diff --git a/static/icons/06004296.png b/static/icons/06004296.png deleted file mode 100755 index 8bdc6a6d..00000000 Binary files a/static/icons/06004296.png and /dev/null differ diff --git a/static/icons/06004298.png b/static/icons/06004298.png deleted file mode 100755 index 122b9ceb..00000000 Binary files a/static/icons/06004298.png and /dev/null differ diff --git a/static/icons/060042A2.png b/static/icons/060042A2.png deleted file mode 100755 index 93749d8a..00000000 Binary files a/static/icons/060042A2.png and /dev/null differ diff --git a/static/icons/060042A8.png b/static/icons/060042A8.png deleted file mode 100755 index 2f26fb44..00000000 Binary files a/static/icons/060042A8.png and /dev/null differ diff --git a/static/icons/060042AA.png b/static/icons/060042AA.png deleted file mode 100755 index 54406131..00000000 Binary files a/static/icons/060042AA.png and /dev/null differ diff --git a/static/icons/060042AC.png b/static/icons/060042AC.png deleted file mode 100755 index a284f853..00000000 Binary files a/static/icons/060042AC.png and /dev/null differ diff --git a/static/icons/060042AE.png b/static/icons/060042AE.png deleted file mode 100755 index 57c07ba7..00000000 Binary files a/static/icons/060042AE.png and /dev/null differ diff --git a/static/icons/060042B0.png b/static/icons/060042B0.png deleted file mode 100755 index c7b7a0d6..00000000 Binary files a/static/icons/060042B0.png and /dev/null differ diff --git a/static/icons/060042B2.png b/static/icons/060042B2.png deleted file mode 100755 index bc5e958b..00000000 Binary files a/static/icons/060042B2.png and /dev/null differ diff --git a/static/icons/060042B4.png b/static/icons/060042B4.png deleted file mode 100755 index 32d52c32..00000000 Binary files a/static/icons/060042B4.png and /dev/null differ diff --git a/static/icons/060042B6.png b/static/icons/060042B6.png deleted file mode 100755 index 55f11c9e..00000000 Binary files a/static/icons/060042B6.png and /dev/null differ diff --git a/static/icons/060042B8.png b/static/icons/060042B8.png deleted file mode 100755 index 099b34dd..00000000 Binary files a/static/icons/060042B8.png and /dev/null differ diff --git a/static/icons/060042BA.png b/static/icons/060042BA.png deleted file mode 100755 index 5f2035c3..00000000 Binary files a/static/icons/060042BA.png and /dev/null differ diff --git a/static/icons/060042BC.png b/static/icons/060042BC.png deleted file mode 100755 index 02881817..00000000 Binary files a/static/icons/060042BC.png and /dev/null differ diff --git a/static/icons/060042BE.png b/static/icons/060042BE.png deleted file mode 100755 index 8d986554..00000000 Binary files a/static/icons/060042BE.png and /dev/null differ diff --git a/static/icons/060042C0.png b/static/icons/060042C0.png deleted file mode 100755 index 1b4f19c7..00000000 Binary files a/static/icons/060042C0.png and /dev/null differ diff --git a/static/icons/060042C1.png b/static/icons/060042C1.png deleted file mode 100755 index b4826ede..00000000 Binary files a/static/icons/060042C1.png and /dev/null differ diff --git a/static/icons/060042C2.png b/static/icons/060042C2.png deleted file mode 100755 index 87a0ea00..00000000 Binary files a/static/icons/060042C2.png and /dev/null differ diff --git a/static/icons/060042C4.png b/static/icons/060042C4.png deleted file mode 100755 index 56a10c25..00000000 Binary files a/static/icons/060042C4.png and /dev/null differ diff --git a/static/icons/060042C6.png b/static/icons/060042C6.png deleted file mode 100755 index b526cbdd..00000000 Binary files a/static/icons/060042C6.png and /dev/null differ diff --git a/static/icons/060042C8.png b/static/icons/060042C8.png deleted file mode 100755 index 4d90db2c..00000000 Binary files a/static/icons/060042C8.png and /dev/null differ diff --git a/static/icons/060042CA.png b/static/icons/060042CA.png deleted file mode 100755 index c7edc8d8..00000000 Binary files a/static/icons/060042CA.png and /dev/null differ diff --git a/static/icons/060042CD.png b/static/icons/060042CD.png deleted file mode 100755 index 971ca92c..00000000 Binary files a/static/icons/060042CD.png and /dev/null differ diff --git a/static/icons/060042CF.png b/static/icons/060042CF.png deleted file mode 100755 index 1d859731..00000000 Binary files a/static/icons/060042CF.png and /dev/null differ diff --git a/static/icons/060042D4.png b/static/icons/060042D4.png deleted file mode 100755 index 66e8ea43..00000000 Binary files a/static/icons/060042D4.png and /dev/null differ diff --git a/static/icons/060042D6.png b/static/icons/060042D6.png deleted file mode 100755 index cdf3406e..00000000 Binary files a/static/icons/060042D6.png and /dev/null differ diff --git a/static/icons/060042D8.png b/static/icons/060042D8.png deleted file mode 100755 index 1dedd156..00000000 Binary files a/static/icons/060042D8.png and /dev/null differ diff --git a/static/icons/060042DA.png b/static/icons/060042DA.png deleted file mode 100755 index d120a3d6..00000000 Binary files a/static/icons/060042DA.png and /dev/null differ diff --git a/static/icons/060042DC.png b/static/icons/060042DC.png deleted file mode 100755 index b1f3ce7e..00000000 Binary files a/static/icons/060042DC.png and /dev/null differ diff --git a/static/icons/060042DF.png b/static/icons/060042DF.png deleted file mode 100755 index 25249ae9..00000000 Binary files a/static/icons/060042DF.png and /dev/null differ diff --git a/static/icons/060042E0.png b/static/icons/060042E0.png deleted file mode 100755 index 881fb2c1..00000000 Binary files a/static/icons/060042E0.png and /dev/null differ diff --git a/static/icons/060042E1.png b/static/icons/060042E1.png deleted file mode 100755 index 127fe95e..00000000 Binary files a/static/icons/060042E1.png and /dev/null differ diff --git a/static/icons/060042E2.png b/static/icons/060042E2.png deleted file mode 100755 index 997d131e..00000000 Binary files a/static/icons/060042E2.png and /dev/null differ diff --git a/static/icons/060042E3.png b/static/icons/060042E3.png deleted file mode 100755 index 763814d5..00000000 Binary files a/static/icons/060042E3.png and /dev/null differ diff --git a/static/icons/060042E4.png b/static/icons/060042E4.png deleted file mode 100755 index 4dbb0af1..00000000 Binary files a/static/icons/060042E4.png and /dev/null differ diff --git a/static/icons/060042E5.png b/static/icons/060042E5.png deleted file mode 100755 index 88eae907..00000000 Binary files a/static/icons/060042E5.png and /dev/null differ diff --git a/static/icons/060042E6.png b/static/icons/060042E6.png deleted file mode 100755 index 99f13d54..00000000 Binary files a/static/icons/060042E6.png and /dev/null differ diff --git a/static/icons/060042E7.png b/static/icons/060042E7.png deleted file mode 100755 index f6bb9ae2..00000000 Binary files a/static/icons/060042E7.png and /dev/null differ diff --git a/static/icons/060042E8.png b/static/icons/060042E8.png deleted file mode 100755 index b7f6860d..00000000 Binary files a/static/icons/060042E8.png and /dev/null differ diff --git a/static/icons/060042E9.png b/static/icons/060042E9.png deleted file mode 100755 index ab63c1ce..00000000 Binary files a/static/icons/060042E9.png and /dev/null differ diff --git a/static/icons/060042EA.png b/static/icons/060042EA.png deleted file mode 100755 index c78a1aa3..00000000 Binary files a/static/icons/060042EA.png and /dev/null differ diff --git a/static/icons/060042EB.png b/static/icons/060042EB.png deleted file mode 100755 index b9bf3c0c..00000000 Binary files a/static/icons/060042EB.png and /dev/null differ diff --git a/static/icons/060042EC.png b/static/icons/060042EC.png deleted file mode 100755 index 22136fad..00000000 Binary files a/static/icons/060042EC.png and /dev/null differ diff --git a/static/icons/060042ED.png b/static/icons/060042ED.png deleted file mode 100755 index 1b4b004d..00000000 Binary files a/static/icons/060042ED.png and /dev/null differ diff --git a/static/icons/060042EE.png b/static/icons/060042EE.png deleted file mode 100755 index 7f830090..00000000 Binary files a/static/icons/060042EE.png and /dev/null differ diff --git a/static/icons/060042EF.png b/static/icons/060042EF.png deleted file mode 100755 index cb07fece..00000000 Binary files a/static/icons/060042EF.png and /dev/null differ diff --git a/static/icons/060042F0.png b/static/icons/060042F0.png deleted file mode 100755 index 272a83c3..00000000 Binary files a/static/icons/060042F0.png and /dev/null differ diff --git a/static/icons/060042F1.png b/static/icons/060042F1.png deleted file mode 100755 index a94c40e9..00000000 Binary files a/static/icons/060042F1.png and /dev/null differ diff --git a/static/icons/060042F2.png b/static/icons/060042F2.png deleted file mode 100755 index 5f65beb7..00000000 Binary files a/static/icons/060042F2.png and /dev/null differ diff --git a/static/icons/060042F3.png b/static/icons/060042F3.png deleted file mode 100755 index c232fc8a..00000000 Binary files a/static/icons/060042F3.png and /dev/null differ diff --git a/static/icons/060042F4.png b/static/icons/060042F4.png deleted file mode 100755 index 83130e5e..00000000 Binary files a/static/icons/060042F4.png and /dev/null differ diff --git a/static/icons/060042F5.png b/static/icons/060042F5.png deleted file mode 100755 index d6e7d9f2..00000000 Binary files a/static/icons/060042F5.png and /dev/null differ diff --git a/static/icons/060042F7.png b/static/icons/060042F7.png deleted file mode 100755 index 9c022937..00000000 Binary files a/static/icons/060042F7.png and /dev/null differ diff --git a/static/icons/060042F9.png b/static/icons/060042F9.png deleted file mode 100755 index aa3ba800..00000000 Binary files a/static/icons/060042F9.png and /dev/null differ diff --git a/static/icons/060042FB.png b/static/icons/060042FB.png deleted file mode 100755 index 1af28664..00000000 Binary files a/static/icons/060042FB.png and /dev/null differ diff --git a/static/icons/060042FD.png b/static/icons/060042FD.png deleted file mode 100755 index 3ee9d095..00000000 Binary files a/static/icons/060042FD.png and /dev/null differ diff --git a/static/icons/060042FF.png b/static/icons/060042FF.png deleted file mode 100755 index e4cea7e2..00000000 Binary files a/static/icons/060042FF.png and /dev/null differ diff --git a/static/icons/06004302.png b/static/icons/06004302.png deleted file mode 100755 index 81f9728c..00000000 Binary files a/static/icons/06004302.png and /dev/null differ diff --git a/static/icons/06004304.png b/static/icons/06004304.png deleted file mode 100755 index a219bb16..00000000 Binary files a/static/icons/06004304.png and /dev/null differ diff --git a/static/icons/06004306.png b/static/icons/06004306.png deleted file mode 100755 index 76824ca1..00000000 Binary files a/static/icons/06004306.png and /dev/null differ diff --git a/static/icons/06004308.png b/static/icons/06004308.png deleted file mode 100755 index 788412cd..00000000 Binary files a/static/icons/06004308.png and /dev/null differ diff --git a/static/icons/0600430A.png b/static/icons/0600430A.png deleted file mode 100755 index a11aad5f..00000000 Binary files a/static/icons/0600430A.png and /dev/null differ diff --git a/static/icons/0600430D.png b/static/icons/0600430D.png deleted file mode 100755 index 0435bc4b..00000000 Binary files a/static/icons/0600430D.png and /dev/null differ diff --git a/static/icons/0600430F.png b/static/icons/0600430F.png deleted file mode 100755 index 1cdd40f9..00000000 Binary files a/static/icons/0600430F.png and /dev/null differ diff --git a/static/icons/06004311.png b/static/icons/06004311.png deleted file mode 100755 index 98a790f5..00000000 Binary files a/static/icons/06004311.png and /dev/null differ diff --git a/static/icons/06004313.png b/static/icons/06004313.png deleted file mode 100755 index c73d7ba8..00000000 Binary files a/static/icons/06004313.png and /dev/null differ diff --git a/static/icons/06004315.png b/static/icons/06004315.png deleted file mode 100755 index 2ab4432e..00000000 Binary files a/static/icons/06004315.png and /dev/null differ diff --git a/static/icons/06004317.png b/static/icons/06004317.png deleted file mode 100755 index a3f6de32..00000000 Binary files a/static/icons/06004317.png and /dev/null differ diff --git a/static/icons/06004319.png b/static/icons/06004319.png deleted file mode 100755 index cc9f2764..00000000 Binary files a/static/icons/06004319.png and /dev/null differ diff --git a/static/icons/0600431B.png b/static/icons/0600431B.png deleted file mode 100755 index 617e34ee..00000000 Binary files a/static/icons/0600431B.png and /dev/null differ diff --git a/static/icons/0600431D.png b/static/icons/0600431D.png deleted file mode 100755 index 91ef088b..00000000 Binary files a/static/icons/0600431D.png and /dev/null differ diff --git a/static/icons/0600431E.png b/static/icons/0600431E.png deleted file mode 100755 index 7de30925..00000000 Binary files a/static/icons/0600431E.png and /dev/null differ diff --git a/static/icons/06004321.png b/static/icons/06004321.png deleted file mode 100755 index 244c67df..00000000 Binary files a/static/icons/06004321.png and /dev/null differ diff --git a/static/icons/06004322.png b/static/icons/06004322.png deleted file mode 100755 index 0a9eb379..00000000 Binary files a/static/icons/06004322.png and /dev/null differ diff --git a/static/icons/06004323.png b/static/icons/06004323.png deleted file mode 100755 index fc6bdf25..00000000 Binary files a/static/icons/06004323.png and /dev/null differ diff --git a/static/icons/06004324.png b/static/icons/06004324.png deleted file mode 100755 index 2fb626c9..00000000 Binary files a/static/icons/06004324.png and /dev/null differ diff --git a/static/icons/06004325.png b/static/icons/06004325.png deleted file mode 100755 index 83db1616..00000000 Binary files a/static/icons/06004325.png and /dev/null differ diff --git a/static/icons/06004326.png b/static/icons/06004326.png deleted file mode 100755 index 031713aa..00000000 Binary files a/static/icons/06004326.png and /dev/null differ diff --git a/static/icons/06004327.png b/static/icons/06004327.png deleted file mode 100755 index 2329758d..00000000 Binary files a/static/icons/06004327.png and /dev/null differ diff --git a/static/icons/06004328.png b/static/icons/06004328.png deleted file mode 100755 index 8a152fd9..00000000 Binary files a/static/icons/06004328.png and /dev/null differ diff --git a/static/icons/0600432D.png b/static/icons/0600432D.png deleted file mode 100755 index 83b9cf17..00000000 Binary files a/static/icons/0600432D.png and /dev/null differ diff --git a/static/icons/0600432E.png b/static/icons/0600432E.png deleted file mode 100755 index 8e90f927..00000000 Binary files a/static/icons/0600432E.png and /dev/null differ diff --git a/static/icons/0600432F.png b/static/icons/0600432F.png deleted file mode 100755 index 813bee97..00000000 Binary files a/static/icons/0600432F.png and /dev/null differ diff --git a/static/icons/06004330.png b/static/icons/06004330.png deleted file mode 100755 index 6c52dee4..00000000 Binary files a/static/icons/06004330.png and /dev/null differ diff --git a/static/icons/06004331.png b/static/icons/06004331.png deleted file mode 100755 index a79719a6..00000000 Binary files a/static/icons/06004331.png and /dev/null differ diff --git a/static/icons/06004332.png b/static/icons/06004332.png deleted file mode 100755 index 275b08b4..00000000 Binary files a/static/icons/06004332.png and /dev/null differ diff --git a/static/icons/06004333.png b/static/icons/06004333.png deleted file mode 100755 index c045161c..00000000 Binary files a/static/icons/06004333.png and /dev/null differ diff --git a/static/icons/06004334.png b/static/icons/06004334.png deleted file mode 100755 index a87fd3d6..00000000 Binary files a/static/icons/06004334.png and /dev/null differ diff --git a/static/icons/06004335.png b/static/icons/06004335.png deleted file mode 100755 index 571b0c3e..00000000 Binary files a/static/icons/06004335.png and /dev/null differ diff --git a/static/icons/06004336.png b/static/icons/06004336.png deleted file mode 100755 index ea21f96b..00000000 Binary files a/static/icons/06004336.png and /dev/null differ diff --git a/static/icons/06004337.png b/static/icons/06004337.png deleted file mode 100755 index f8752b54..00000000 Binary files a/static/icons/06004337.png and /dev/null differ diff --git a/static/icons/06004338.png b/static/icons/06004338.png deleted file mode 100755 index ebdcdd24..00000000 Binary files a/static/icons/06004338.png and /dev/null differ diff --git a/static/icons/06004339.png b/static/icons/06004339.png deleted file mode 100755 index 14035e03..00000000 Binary files a/static/icons/06004339.png and /dev/null differ diff --git a/static/icons/0600433A.png b/static/icons/0600433A.png deleted file mode 100755 index 6e59bbee..00000000 Binary files a/static/icons/0600433A.png and /dev/null differ diff --git a/static/icons/0600433B.png b/static/icons/0600433B.png deleted file mode 100755 index 2652dbee..00000000 Binary files a/static/icons/0600433B.png and /dev/null differ diff --git a/static/icons/0600433C.png b/static/icons/0600433C.png deleted file mode 100755 index c53445d1..00000000 Binary files a/static/icons/0600433C.png and /dev/null differ diff --git a/static/icons/0600433F.png b/static/icons/0600433F.png deleted file mode 100755 index ce9d939c..00000000 Binary files a/static/icons/0600433F.png and /dev/null differ diff --git a/static/icons/06004348.png b/static/icons/06004348.png deleted file mode 100755 index 37efb993..00000000 Binary files a/static/icons/06004348.png and /dev/null differ diff --git a/static/icons/06004349.png b/static/icons/06004349.png deleted file mode 100755 index 533e608a..00000000 Binary files a/static/icons/06004349.png and /dev/null differ diff --git a/static/icons/0600434A.png b/static/icons/0600434A.png deleted file mode 100755 index 6f38c990..00000000 Binary files a/static/icons/0600434A.png and /dev/null differ diff --git a/static/icons/0600436B.png b/static/icons/0600436B.png deleted file mode 100755 index 6e65cfbc..00000000 Binary files a/static/icons/0600436B.png and /dev/null differ diff --git a/static/icons/0600436E.png b/static/icons/0600436E.png deleted file mode 100755 index bcb98bfd..00000000 Binary files a/static/icons/0600436E.png and /dev/null differ diff --git a/static/icons/0600436F.png b/static/icons/0600436F.png deleted file mode 100755 index 33b42428..00000000 Binary files a/static/icons/0600436F.png and /dev/null differ diff --git a/static/icons/06004370.png b/static/icons/06004370.png deleted file mode 100755 index e55ae8cd..00000000 Binary files a/static/icons/06004370.png and /dev/null differ diff --git a/static/icons/06004372.png b/static/icons/06004372.png deleted file mode 100755 index cddcbc20..00000000 Binary files a/static/icons/06004372.png and /dev/null differ diff --git a/static/icons/06004374.png b/static/icons/06004374.png deleted file mode 100755 index 51cb3f90..00000000 Binary files a/static/icons/06004374.png and /dev/null differ diff --git a/static/icons/06004376.png b/static/icons/06004376.png deleted file mode 100755 index f680deb7..00000000 Binary files a/static/icons/06004376.png and /dev/null differ diff --git a/static/icons/06004378.png b/static/icons/06004378.png deleted file mode 100755 index e3614a0c..00000000 Binary files a/static/icons/06004378.png and /dev/null differ diff --git a/static/icons/0600437A.png b/static/icons/0600437A.png deleted file mode 100755 index 7790df08..00000000 Binary files a/static/icons/0600437A.png and /dev/null differ diff --git a/static/icons/0600437C.png b/static/icons/0600437C.png deleted file mode 100755 index 6773f4b7..00000000 Binary files a/static/icons/0600437C.png and /dev/null differ diff --git a/static/icons/0600437E.png b/static/icons/0600437E.png deleted file mode 100755 index dc1259f3..00000000 Binary files a/static/icons/0600437E.png and /dev/null differ diff --git a/static/icons/06004381.png b/static/icons/06004381.png deleted file mode 100755 index ffddf8d8..00000000 Binary files a/static/icons/06004381.png and /dev/null differ diff --git a/static/icons/06004383.png b/static/icons/06004383.png deleted file mode 100755 index d5b47178..00000000 Binary files a/static/icons/06004383.png and /dev/null differ diff --git a/static/icons/06004385.png b/static/icons/06004385.png deleted file mode 100755 index 1beaad91..00000000 Binary files a/static/icons/06004385.png and /dev/null differ diff --git a/static/icons/06004387.png b/static/icons/06004387.png deleted file mode 100755 index efe27376..00000000 Binary files a/static/icons/06004387.png and /dev/null differ diff --git a/static/icons/06004389.png b/static/icons/06004389.png deleted file mode 100755 index d9c2ba34..00000000 Binary files a/static/icons/06004389.png and /dev/null differ diff --git a/static/icons/0600438B.png b/static/icons/0600438B.png deleted file mode 100755 index c41fc452..00000000 Binary files a/static/icons/0600438B.png and /dev/null differ diff --git a/static/icons/0600438D.png b/static/icons/0600438D.png deleted file mode 100755 index cb0ab34d..00000000 Binary files a/static/icons/0600438D.png and /dev/null differ diff --git a/static/icons/0600438F.png b/static/icons/0600438F.png deleted file mode 100755 index 7ddab2e9..00000000 Binary files a/static/icons/0600438F.png and /dev/null differ diff --git a/static/icons/06004392.png b/static/icons/06004392.png deleted file mode 100755 index 12029f2a..00000000 Binary files a/static/icons/06004392.png and /dev/null differ diff --git a/static/icons/060043B9.png b/static/icons/060043B9.png deleted file mode 100755 index 159aa12a..00000000 Binary files a/static/icons/060043B9.png and /dev/null differ diff --git a/static/icons/060043BB.png b/static/icons/060043BB.png deleted file mode 100755 index 146f7355..00000000 Binary files a/static/icons/060043BB.png and /dev/null differ diff --git a/static/icons/060043BD.png b/static/icons/060043BD.png deleted file mode 100755 index 3ff2a251..00000000 Binary files a/static/icons/060043BD.png and /dev/null differ diff --git a/static/icons/060043BF.png b/static/icons/060043BF.png deleted file mode 100755 index e1aa78f5..00000000 Binary files a/static/icons/060043BF.png and /dev/null differ diff --git a/static/icons/060043C7.png b/static/icons/060043C7.png deleted file mode 100755 index d91306d4..00000000 Binary files a/static/icons/060043C7.png and /dev/null differ diff --git a/static/icons/060043C9.png b/static/icons/060043C9.png deleted file mode 100755 index 959c1bef..00000000 Binary files a/static/icons/060043C9.png and /dev/null differ diff --git a/static/icons/060043CB.png b/static/icons/060043CB.png deleted file mode 100755 index 9d356829..00000000 Binary files a/static/icons/060043CB.png and /dev/null differ diff --git a/static/icons/060043CD.png b/static/icons/060043CD.png deleted file mode 100755 index 330ad1e0..00000000 Binary files a/static/icons/060043CD.png and /dev/null differ diff --git a/static/icons/060043D3.png b/static/icons/060043D3.png deleted file mode 100755 index 74ff6f68..00000000 Binary files a/static/icons/060043D3.png and /dev/null differ diff --git a/static/icons/060043E8.png b/static/icons/060043E8.png deleted file mode 100755 index 4b974a18..00000000 Binary files a/static/icons/060043E8.png and /dev/null differ diff --git a/static/icons/060043E9.png b/static/icons/060043E9.png deleted file mode 100755 index 1f730863..00000000 Binary files a/static/icons/060043E9.png and /dev/null differ diff --git a/static/icons/060043EA.png b/static/icons/060043EA.png deleted file mode 100755 index b6b02567..00000000 Binary files a/static/icons/060043EA.png and /dev/null differ diff --git a/static/icons/060043ED.png b/static/icons/060043ED.png deleted file mode 100755 index 47d682cd..00000000 Binary files a/static/icons/060043ED.png and /dev/null differ diff --git a/static/icons/060043EF.png b/static/icons/060043EF.png deleted file mode 100755 index 76569c62..00000000 Binary files a/static/icons/060043EF.png and /dev/null differ diff --git a/static/icons/060043F4.png b/static/icons/060043F4.png deleted file mode 100755 index a3a6e66b..00000000 Binary files a/static/icons/060043F4.png and /dev/null differ diff --git a/static/icons/060043F5.png b/static/icons/060043F5.png deleted file mode 100755 index 35237e62..00000000 Binary files a/static/icons/060043F5.png and /dev/null differ diff --git a/static/icons/060043F6.png b/static/icons/060043F6.png deleted file mode 100755 index 1da02b94..00000000 Binary files a/static/icons/060043F6.png and /dev/null differ diff --git a/static/icons/060043F7.png b/static/icons/060043F7.png deleted file mode 100755 index 39724171..00000000 Binary files a/static/icons/060043F7.png and /dev/null differ diff --git a/static/icons/060043F8.png b/static/icons/060043F8.png deleted file mode 100755 index c7cafc89..00000000 Binary files a/static/icons/060043F8.png and /dev/null differ diff --git a/static/icons/060043F9.png b/static/icons/060043F9.png deleted file mode 100755 index 09b6f80b..00000000 Binary files a/static/icons/060043F9.png and /dev/null differ diff --git a/static/icons/060043FA.png b/static/icons/060043FA.png deleted file mode 100755 index c57435bf..00000000 Binary files a/static/icons/060043FA.png and /dev/null differ diff --git a/static/icons/060043FB.png b/static/icons/060043FB.png deleted file mode 100755 index a5190ff7..00000000 Binary files a/static/icons/060043FB.png and /dev/null differ diff --git a/static/icons/060043FC.png b/static/icons/060043FC.png deleted file mode 100755 index 9aba79c3..00000000 Binary files a/static/icons/060043FC.png and /dev/null differ diff --git a/static/icons/060043FD.png b/static/icons/060043FD.png deleted file mode 100755 index 3596aff0..00000000 Binary files a/static/icons/060043FD.png and /dev/null differ diff --git a/static/icons/060043FE.png b/static/icons/060043FE.png deleted file mode 100755 index c128f088..00000000 Binary files a/static/icons/060043FE.png and /dev/null differ diff --git a/static/icons/060043FF.png b/static/icons/060043FF.png deleted file mode 100755 index 02ed559f..00000000 Binary files a/static/icons/060043FF.png and /dev/null differ diff --git a/static/icons/06004400.png b/static/icons/06004400.png deleted file mode 100755 index 7e73dd78..00000000 Binary files a/static/icons/06004400.png and /dev/null differ diff --git a/static/icons/06004401.png b/static/icons/06004401.png deleted file mode 100755 index 4e473f24..00000000 Binary files a/static/icons/06004401.png and /dev/null differ diff --git a/static/icons/06004402.png b/static/icons/06004402.png deleted file mode 100755 index 6af86776..00000000 Binary files a/static/icons/06004402.png and /dev/null differ diff --git a/static/icons/06004403.png b/static/icons/06004403.png deleted file mode 100755 index 76992c16..00000000 Binary files a/static/icons/06004403.png and /dev/null differ diff --git a/static/icons/06004404.png b/static/icons/06004404.png deleted file mode 100755 index b939a438..00000000 Binary files a/static/icons/06004404.png and /dev/null differ diff --git a/static/icons/06004405.png b/static/icons/06004405.png deleted file mode 100755 index f5f92d97..00000000 Binary files a/static/icons/06004405.png and /dev/null differ diff --git a/static/icons/06004406.png b/static/icons/06004406.png deleted file mode 100755 index 7c4f98d0..00000000 Binary files a/static/icons/06004406.png and /dev/null differ diff --git a/static/icons/06004407.png b/static/icons/06004407.png deleted file mode 100755 index 6fbf11e1..00000000 Binary files a/static/icons/06004407.png and /dev/null differ diff --git a/static/icons/06004408.png b/static/icons/06004408.png deleted file mode 100755 index b46b5cfd..00000000 Binary files a/static/icons/06004408.png and /dev/null differ diff --git a/static/icons/06004409.png b/static/icons/06004409.png deleted file mode 100755 index 618b8ace..00000000 Binary files a/static/icons/06004409.png and /dev/null differ diff --git a/static/icons/0600440A.png b/static/icons/0600440A.png deleted file mode 100755 index 57258fd5..00000000 Binary files a/static/icons/0600440A.png and /dev/null differ diff --git a/static/icons/06004417.png b/static/icons/06004417.png deleted file mode 100755 index e500e03e..00000000 Binary files a/static/icons/06004417.png and /dev/null differ diff --git a/static/icons/06004419.png b/static/icons/06004419.png deleted file mode 100755 index 131871b3..00000000 Binary files a/static/icons/06004419.png and /dev/null differ diff --git a/static/icons/0600441B.png b/static/icons/0600441B.png deleted file mode 100755 index c0f502d9..00000000 Binary files a/static/icons/0600441B.png and /dev/null differ diff --git a/static/icons/0600441D.png b/static/icons/0600441D.png deleted file mode 100755 index 9c5e054e..00000000 Binary files a/static/icons/0600441D.png and /dev/null differ diff --git a/static/icons/0600441F.png b/static/icons/0600441F.png deleted file mode 100755 index 6e666f29..00000000 Binary files a/static/icons/0600441F.png and /dev/null differ diff --git a/static/icons/06004421.png b/static/icons/06004421.png deleted file mode 100755 index 64e1b5c2..00000000 Binary files a/static/icons/06004421.png and /dev/null differ diff --git a/static/icons/06004423.png b/static/icons/06004423.png deleted file mode 100755 index bcac3614..00000000 Binary files a/static/icons/06004423.png and /dev/null differ diff --git a/static/icons/06004425.png b/static/icons/06004425.png deleted file mode 100755 index 291acc92..00000000 Binary files a/static/icons/06004425.png and /dev/null differ diff --git a/static/icons/06004427.png b/static/icons/06004427.png deleted file mode 100755 index 80bb431a..00000000 Binary files a/static/icons/06004427.png and /dev/null differ diff --git a/static/icons/06004429.png b/static/icons/06004429.png deleted file mode 100755 index bd4a1767..00000000 Binary files a/static/icons/06004429.png and /dev/null differ diff --git a/static/icons/0600442B.png b/static/icons/0600442B.png deleted file mode 100755 index 07e85634..00000000 Binary files a/static/icons/0600442B.png and /dev/null differ diff --git a/static/icons/0600442D.png b/static/icons/0600442D.png deleted file mode 100755 index 255cdbf9..00000000 Binary files a/static/icons/0600442D.png and /dev/null differ diff --git a/static/icons/0600442F.png b/static/icons/0600442F.png deleted file mode 100755 index ae589821..00000000 Binary files a/static/icons/0600442F.png and /dev/null differ diff --git a/static/icons/06004431.png b/static/icons/06004431.png deleted file mode 100755 index 59aef83c..00000000 Binary files a/static/icons/06004431.png and /dev/null differ diff --git a/static/icons/06004433.png b/static/icons/06004433.png deleted file mode 100755 index 6effc9e7..00000000 Binary files a/static/icons/06004433.png and /dev/null differ diff --git a/static/icons/06004435.png b/static/icons/06004435.png deleted file mode 100755 index e5d2fb87..00000000 Binary files a/static/icons/06004435.png and /dev/null differ diff --git a/static/icons/06004437.png b/static/icons/06004437.png deleted file mode 100755 index fd595051..00000000 Binary files a/static/icons/06004437.png and /dev/null differ diff --git a/static/icons/06004438.png b/static/icons/06004438.png deleted file mode 100755 index 38012862..00000000 Binary files a/static/icons/06004438.png and /dev/null differ diff --git a/static/icons/0600443A.png b/static/icons/0600443A.png deleted file mode 100755 index 467197ac..00000000 Binary files a/static/icons/0600443A.png and /dev/null differ diff --git a/static/icons/0600443C.png b/static/icons/0600443C.png deleted file mode 100755 index a6596c78..00000000 Binary files a/static/icons/0600443C.png and /dev/null differ diff --git a/static/icons/0600443E.png b/static/icons/0600443E.png deleted file mode 100755 index 32609e41..00000000 Binary files a/static/icons/0600443E.png and /dev/null differ diff --git a/static/icons/06004440.png b/static/icons/06004440.png deleted file mode 100755 index 81936d7e..00000000 Binary files a/static/icons/06004440.png and /dev/null differ diff --git a/static/icons/06004442.png b/static/icons/06004442.png deleted file mode 100755 index a2fa9426..00000000 Binary files a/static/icons/06004442.png and /dev/null differ diff --git a/static/icons/06004444.png b/static/icons/06004444.png deleted file mode 100755 index 4c3d9ac7..00000000 Binary files a/static/icons/06004444.png and /dev/null differ diff --git a/static/icons/06004446.png b/static/icons/06004446.png deleted file mode 100755 index b5873ea7..00000000 Binary files a/static/icons/06004446.png and /dev/null differ diff --git a/static/icons/06004448.png b/static/icons/06004448.png deleted file mode 100755 index bf4e2113..00000000 Binary files a/static/icons/06004448.png and /dev/null differ diff --git a/static/icons/0600444A.png b/static/icons/0600444A.png deleted file mode 100755 index 7058c455..00000000 Binary files a/static/icons/0600444A.png and /dev/null differ diff --git a/static/icons/0600444C.png b/static/icons/0600444C.png deleted file mode 100755 index fa8d5ed7..00000000 Binary files a/static/icons/0600444C.png and /dev/null differ diff --git a/static/icons/0600444F.png b/static/icons/0600444F.png deleted file mode 100755 index 37675bdc..00000000 Binary files a/static/icons/0600444F.png and /dev/null differ diff --git a/static/icons/06004451.png b/static/icons/06004451.png deleted file mode 100755 index 774dac18..00000000 Binary files a/static/icons/06004451.png and /dev/null differ diff --git a/static/icons/06004453.png b/static/icons/06004453.png deleted file mode 100755 index f1b08baa..00000000 Binary files a/static/icons/06004453.png and /dev/null differ diff --git a/static/icons/06004455.png b/static/icons/06004455.png deleted file mode 100755 index 97ece1b0..00000000 Binary files a/static/icons/06004455.png and /dev/null differ diff --git a/static/icons/06004457.png b/static/icons/06004457.png deleted file mode 100755 index 32f0d7ee..00000000 Binary files a/static/icons/06004457.png and /dev/null differ diff --git a/static/icons/06004459.png b/static/icons/06004459.png deleted file mode 100755 index da233d17..00000000 Binary files a/static/icons/06004459.png and /dev/null differ diff --git a/static/icons/0600445B.png b/static/icons/0600445B.png deleted file mode 100755 index 9e0e0bb7..00000000 Binary files a/static/icons/0600445B.png and /dev/null differ diff --git a/static/icons/0600445D.png b/static/icons/0600445D.png deleted file mode 100755 index 578eeaa7..00000000 Binary files a/static/icons/0600445D.png and /dev/null differ diff --git a/static/icons/0600445F.png b/static/icons/0600445F.png deleted file mode 100755 index 7d367f1a..00000000 Binary files a/static/icons/0600445F.png and /dev/null differ diff --git a/static/icons/06004461.png b/static/icons/06004461.png deleted file mode 100755 index 24f1b246..00000000 Binary files a/static/icons/06004461.png and /dev/null differ diff --git a/static/icons/06004463.png b/static/icons/06004463.png deleted file mode 100755 index 8ec2d6cd..00000000 Binary files a/static/icons/06004463.png and /dev/null differ diff --git a/static/icons/06004465.png b/static/icons/06004465.png deleted file mode 100755 index 0a2cfdb2..00000000 Binary files a/static/icons/06004465.png and /dev/null differ diff --git a/static/icons/06004467.png b/static/icons/06004467.png deleted file mode 100755 index 62559941..00000000 Binary files a/static/icons/06004467.png and /dev/null differ diff --git a/static/icons/06004469.png b/static/icons/06004469.png deleted file mode 100755 index 5fdbdd55..00000000 Binary files a/static/icons/06004469.png and /dev/null differ diff --git a/static/icons/0600446B.png b/static/icons/0600446B.png deleted file mode 100755 index 64fe51ad..00000000 Binary files a/static/icons/0600446B.png and /dev/null differ diff --git a/static/icons/0600446D.png b/static/icons/0600446D.png deleted file mode 100755 index 97862339..00000000 Binary files a/static/icons/0600446D.png and /dev/null differ diff --git a/static/icons/0600446F.png b/static/icons/0600446F.png deleted file mode 100755 index 52d17975..00000000 Binary files a/static/icons/0600446F.png and /dev/null differ diff --git a/static/icons/06004471.png b/static/icons/06004471.png deleted file mode 100755 index 581291a5..00000000 Binary files a/static/icons/06004471.png and /dev/null differ diff --git a/static/icons/06004473.png b/static/icons/06004473.png deleted file mode 100755 index a1e73904..00000000 Binary files a/static/icons/06004473.png and /dev/null differ diff --git a/static/icons/06004475.png b/static/icons/06004475.png deleted file mode 100755 index 02bef662..00000000 Binary files a/static/icons/06004475.png and /dev/null differ diff --git a/static/icons/06004477.png b/static/icons/06004477.png deleted file mode 100755 index 48f50e39..00000000 Binary files a/static/icons/06004477.png and /dev/null differ diff --git a/static/icons/06004479.png b/static/icons/06004479.png deleted file mode 100755 index ec0ca884..00000000 Binary files a/static/icons/06004479.png and /dev/null differ diff --git a/static/icons/0600447B.png b/static/icons/0600447B.png deleted file mode 100755 index 1cad1e74..00000000 Binary files a/static/icons/0600447B.png and /dev/null differ diff --git a/static/icons/0600447D.png b/static/icons/0600447D.png deleted file mode 100755 index 178b139f..00000000 Binary files a/static/icons/0600447D.png and /dev/null differ diff --git a/static/icons/0600447F.png b/static/icons/0600447F.png deleted file mode 100755 index 6966d4f0..00000000 Binary files a/static/icons/0600447F.png and /dev/null differ diff --git a/static/icons/06004481.png b/static/icons/06004481.png deleted file mode 100755 index 3929f7f0..00000000 Binary files a/static/icons/06004481.png and /dev/null differ diff --git a/static/icons/06004483.png b/static/icons/06004483.png deleted file mode 100755 index 8888347e..00000000 Binary files a/static/icons/06004483.png and /dev/null differ diff --git a/static/icons/06004485.png b/static/icons/06004485.png deleted file mode 100755 index 70b116da..00000000 Binary files a/static/icons/06004485.png and /dev/null differ diff --git a/static/icons/06004487.png b/static/icons/06004487.png deleted file mode 100755 index 2ab0efac..00000000 Binary files a/static/icons/06004487.png and /dev/null differ diff --git a/static/icons/06004489.png b/static/icons/06004489.png deleted file mode 100755 index d2f6e6df..00000000 Binary files a/static/icons/06004489.png and /dev/null differ diff --git a/static/icons/0600448B.png b/static/icons/0600448B.png deleted file mode 100755 index 0b952ef5..00000000 Binary files a/static/icons/0600448B.png and /dev/null differ diff --git a/static/icons/0600448D.png b/static/icons/0600448D.png deleted file mode 100755 index d9721d10..00000000 Binary files a/static/icons/0600448D.png and /dev/null differ diff --git a/static/icons/0600448E.png b/static/icons/0600448E.png deleted file mode 100755 index b04108a0..00000000 Binary files a/static/icons/0600448E.png and /dev/null differ diff --git a/static/icons/0600448F.png b/static/icons/0600448F.png deleted file mode 100755 index ab355657..00000000 Binary files a/static/icons/0600448F.png and /dev/null differ diff --git a/static/icons/06004491.png b/static/icons/06004491.png deleted file mode 100755 index 02ed24ff..00000000 Binary files a/static/icons/06004491.png and /dev/null differ diff --git a/static/icons/06004493.png b/static/icons/06004493.png deleted file mode 100755 index 2741e9b9..00000000 Binary files a/static/icons/06004493.png and /dev/null differ diff --git a/static/icons/06004495.png b/static/icons/06004495.png deleted file mode 100755 index 9979bc1f..00000000 Binary files a/static/icons/06004495.png and /dev/null differ diff --git a/static/icons/06004497.png b/static/icons/06004497.png deleted file mode 100755 index c06e3f68..00000000 Binary files a/static/icons/06004497.png and /dev/null differ diff --git a/static/icons/06004499.png b/static/icons/06004499.png deleted file mode 100755 index 86369cdd..00000000 Binary files a/static/icons/06004499.png and /dev/null differ diff --git a/static/icons/060044A6.png b/static/icons/060044A6.png deleted file mode 100755 index edd40872..00000000 Binary files a/static/icons/060044A6.png and /dev/null differ diff --git a/static/icons/060044A8.png b/static/icons/060044A8.png deleted file mode 100755 index fc4b25a6..00000000 Binary files a/static/icons/060044A8.png and /dev/null differ diff --git a/static/icons/060044AA.png b/static/icons/060044AA.png deleted file mode 100755 index bc762e44..00000000 Binary files a/static/icons/060044AA.png and /dev/null differ diff --git a/static/icons/060044AC.png b/static/icons/060044AC.png deleted file mode 100755 index 6fcdc550..00000000 Binary files a/static/icons/060044AC.png and /dev/null differ diff --git a/static/icons/060044AE.png b/static/icons/060044AE.png deleted file mode 100755 index 4dc076af..00000000 Binary files a/static/icons/060044AE.png and /dev/null differ diff --git a/static/icons/060044B0.png b/static/icons/060044B0.png deleted file mode 100755 index 03fcb689..00000000 Binary files a/static/icons/060044B0.png and /dev/null differ diff --git a/static/icons/060044B2.png b/static/icons/060044B2.png deleted file mode 100755 index 7a573f47..00000000 Binary files a/static/icons/060044B2.png and /dev/null differ diff --git a/static/icons/060044B4.png b/static/icons/060044B4.png deleted file mode 100755 index 0601b54f..00000000 Binary files a/static/icons/060044B4.png and /dev/null differ diff --git a/static/icons/060044B6.png b/static/icons/060044B6.png deleted file mode 100755 index dcbff05c..00000000 Binary files a/static/icons/060044B6.png and /dev/null differ diff --git a/static/icons/060044B8.png b/static/icons/060044B8.png deleted file mode 100755 index 4355eb80..00000000 Binary files a/static/icons/060044B8.png and /dev/null differ diff --git a/static/icons/060044BA.png b/static/icons/060044BA.png deleted file mode 100755 index fca42b78..00000000 Binary files a/static/icons/060044BA.png and /dev/null differ diff --git a/static/icons/060044BC.png b/static/icons/060044BC.png deleted file mode 100755 index adf73fbb..00000000 Binary files a/static/icons/060044BC.png and /dev/null differ diff --git a/static/icons/060044BE.png b/static/icons/060044BE.png deleted file mode 100755 index 0b4e5dca..00000000 Binary files a/static/icons/060044BE.png and /dev/null differ diff --git a/static/icons/060044C0.png b/static/icons/060044C0.png deleted file mode 100755 index 8f129263..00000000 Binary files a/static/icons/060044C0.png and /dev/null differ diff --git a/static/icons/060044C2.png b/static/icons/060044C2.png deleted file mode 100755 index 3c788349..00000000 Binary files a/static/icons/060044C2.png and /dev/null differ diff --git a/static/icons/060044C4.png b/static/icons/060044C4.png deleted file mode 100755 index 4ab404d9..00000000 Binary files a/static/icons/060044C4.png and /dev/null differ diff --git a/static/icons/060044C6.png b/static/icons/060044C6.png deleted file mode 100755 index 54ac043e..00000000 Binary files a/static/icons/060044C6.png and /dev/null differ diff --git a/static/icons/060044C8.png b/static/icons/060044C8.png deleted file mode 100755 index a586a52b..00000000 Binary files a/static/icons/060044C8.png and /dev/null differ diff --git a/static/icons/060044CA.png b/static/icons/060044CA.png deleted file mode 100755 index 77e695f8..00000000 Binary files a/static/icons/060044CA.png and /dev/null differ diff --git a/static/icons/060044CC.png b/static/icons/060044CC.png deleted file mode 100755 index 1a8fbb05..00000000 Binary files a/static/icons/060044CC.png and /dev/null differ diff --git a/static/icons/060044CE.png b/static/icons/060044CE.png deleted file mode 100755 index acbae585..00000000 Binary files a/static/icons/060044CE.png and /dev/null differ diff --git a/static/icons/060044D0.png b/static/icons/060044D0.png deleted file mode 100755 index 0412b273..00000000 Binary files a/static/icons/060044D0.png and /dev/null differ diff --git a/static/icons/060044D2.png b/static/icons/060044D2.png deleted file mode 100755 index b548dea8..00000000 Binary files a/static/icons/060044D2.png and /dev/null differ diff --git a/static/icons/060044D4.png b/static/icons/060044D4.png deleted file mode 100755 index 93487a09..00000000 Binary files a/static/icons/060044D4.png and /dev/null differ diff --git a/static/icons/060044D6.png b/static/icons/060044D6.png deleted file mode 100755 index 47a61a24..00000000 Binary files a/static/icons/060044D6.png and /dev/null differ diff --git a/static/icons/060044D8.png b/static/icons/060044D8.png deleted file mode 100755 index c2572f70..00000000 Binary files a/static/icons/060044D8.png and /dev/null differ diff --git a/static/icons/060044DA.png b/static/icons/060044DA.png deleted file mode 100755 index 0aa325f2..00000000 Binary files a/static/icons/060044DA.png and /dev/null differ diff --git a/static/icons/060044DC.png b/static/icons/060044DC.png deleted file mode 100755 index 56ef3c03..00000000 Binary files a/static/icons/060044DC.png and /dev/null differ diff --git a/static/icons/060044DE.png b/static/icons/060044DE.png deleted file mode 100755 index 43ac6260..00000000 Binary files a/static/icons/060044DE.png and /dev/null differ diff --git a/static/icons/060044E0.png b/static/icons/060044E0.png deleted file mode 100755 index 3fc679ff..00000000 Binary files a/static/icons/060044E0.png and /dev/null differ diff --git a/static/icons/060044E2.png b/static/icons/060044E2.png deleted file mode 100755 index 4380dcfd..00000000 Binary files a/static/icons/060044E2.png and /dev/null differ diff --git a/static/icons/060044E4.png b/static/icons/060044E4.png deleted file mode 100755 index b232f6d3..00000000 Binary files a/static/icons/060044E4.png and /dev/null differ diff --git a/static/icons/060044E6.png b/static/icons/060044E6.png deleted file mode 100755 index 80d50dd5..00000000 Binary files a/static/icons/060044E6.png and /dev/null differ diff --git a/static/icons/060044E8.png b/static/icons/060044E8.png deleted file mode 100755 index 7091a432..00000000 Binary files a/static/icons/060044E8.png and /dev/null differ diff --git a/static/icons/060044EA.png b/static/icons/060044EA.png deleted file mode 100755 index 2044b2a1..00000000 Binary files a/static/icons/060044EA.png and /dev/null differ diff --git a/static/icons/060044EC.png b/static/icons/060044EC.png deleted file mode 100755 index 50bbb02e..00000000 Binary files a/static/icons/060044EC.png and /dev/null differ diff --git a/static/icons/060044EE.png b/static/icons/060044EE.png deleted file mode 100755 index 39b5c2e2..00000000 Binary files a/static/icons/060044EE.png and /dev/null differ diff --git a/static/icons/060044F0.png b/static/icons/060044F0.png deleted file mode 100755 index 34c5b3f4..00000000 Binary files a/static/icons/060044F0.png and /dev/null differ diff --git a/static/icons/060044F2.png b/static/icons/060044F2.png deleted file mode 100755 index fcf781f2..00000000 Binary files a/static/icons/060044F2.png and /dev/null differ diff --git a/static/icons/060044F4.png b/static/icons/060044F4.png deleted file mode 100755 index 31b08226..00000000 Binary files a/static/icons/060044F4.png and /dev/null differ diff --git a/static/icons/060044F6.png b/static/icons/060044F6.png deleted file mode 100755 index fb552b7e..00000000 Binary files a/static/icons/060044F6.png and /dev/null differ diff --git a/static/icons/060044F8.png b/static/icons/060044F8.png deleted file mode 100755 index 5818c21b..00000000 Binary files a/static/icons/060044F8.png and /dev/null differ diff --git a/static/icons/060044FA.png b/static/icons/060044FA.png deleted file mode 100755 index 06788a03..00000000 Binary files a/static/icons/060044FA.png and /dev/null differ diff --git a/static/icons/060044FC.png b/static/icons/060044FC.png deleted file mode 100755 index 6b7d874f..00000000 Binary files a/static/icons/060044FC.png and /dev/null differ diff --git a/static/icons/060044FE.png b/static/icons/060044FE.png deleted file mode 100755 index 835ba9d1..00000000 Binary files a/static/icons/060044FE.png and /dev/null differ diff --git a/static/icons/06004500.png b/static/icons/06004500.png deleted file mode 100755 index 4369e5ea..00000000 Binary files a/static/icons/06004500.png and /dev/null differ diff --git a/static/icons/06004502.png b/static/icons/06004502.png deleted file mode 100755 index 4e7fc60a..00000000 Binary files a/static/icons/06004502.png and /dev/null differ diff --git a/static/icons/06004504.png b/static/icons/06004504.png deleted file mode 100755 index 3cec3025..00000000 Binary files a/static/icons/06004504.png and /dev/null differ diff --git a/static/icons/06004506.png b/static/icons/06004506.png deleted file mode 100755 index 77b4aef6..00000000 Binary files a/static/icons/06004506.png and /dev/null differ diff --git a/static/icons/06004508.png b/static/icons/06004508.png deleted file mode 100755 index 9df2decd..00000000 Binary files a/static/icons/06004508.png and /dev/null differ diff --git a/static/icons/0600450A.png b/static/icons/0600450A.png deleted file mode 100755 index 4e8a2b36..00000000 Binary files a/static/icons/0600450A.png and /dev/null differ diff --git a/static/icons/0600450C.png b/static/icons/0600450C.png deleted file mode 100755 index 0583cc5c..00000000 Binary files a/static/icons/0600450C.png and /dev/null differ diff --git a/static/icons/0600450E.png b/static/icons/0600450E.png deleted file mode 100755 index 14285bf0..00000000 Binary files a/static/icons/0600450E.png and /dev/null differ diff --git a/static/icons/06004510.png b/static/icons/06004510.png deleted file mode 100755 index 5fc15981..00000000 Binary files a/static/icons/06004510.png and /dev/null differ diff --git a/static/icons/06004512.png b/static/icons/06004512.png deleted file mode 100755 index 39130698..00000000 Binary files a/static/icons/06004512.png and /dev/null differ diff --git a/static/icons/06004518.png b/static/icons/06004518.png deleted file mode 100755 index 0c38796e..00000000 Binary files a/static/icons/06004518.png and /dev/null differ diff --git a/static/icons/0600451A.png b/static/icons/0600451A.png deleted file mode 100755 index 4f467775..00000000 Binary files a/static/icons/0600451A.png and /dev/null differ diff --git a/static/icons/0600451C.png b/static/icons/0600451C.png deleted file mode 100755 index afc835e3..00000000 Binary files a/static/icons/0600451C.png and /dev/null differ diff --git a/static/icons/0600451E.png b/static/icons/0600451E.png deleted file mode 100755 index 6e101179..00000000 Binary files a/static/icons/0600451E.png and /dev/null differ diff --git a/static/icons/06004520.png b/static/icons/06004520.png deleted file mode 100755 index caac18e6..00000000 Binary files a/static/icons/06004520.png and /dev/null differ diff --git a/static/icons/06004522.png b/static/icons/06004522.png deleted file mode 100755 index e564c615..00000000 Binary files a/static/icons/06004522.png and /dev/null differ diff --git a/static/icons/06004524.png b/static/icons/06004524.png deleted file mode 100755 index 5b1d5310..00000000 Binary files a/static/icons/06004524.png and /dev/null differ diff --git a/static/icons/06004527.png b/static/icons/06004527.png deleted file mode 100755 index bd832967..00000000 Binary files a/static/icons/06004527.png and /dev/null differ diff --git a/static/icons/0600452A.png b/static/icons/0600452A.png deleted file mode 100755 index a840f28b..00000000 Binary files a/static/icons/0600452A.png and /dev/null differ diff --git a/static/icons/0600452C.png b/static/icons/0600452C.png deleted file mode 100755 index 02a7969f..00000000 Binary files a/static/icons/0600452C.png and /dev/null differ diff --git a/static/icons/0600452E.png b/static/icons/0600452E.png deleted file mode 100755 index a96a46be..00000000 Binary files a/static/icons/0600452E.png and /dev/null differ diff --git a/static/icons/06004531.png b/static/icons/06004531.png deleted file mode 100755 index fed24592..00000000 Binary files a/static/icons/06004531.png and /dev/null differ diff --git a/static/icons/06004533.png b/static/icons/06004533.png deleted file mode 100755 index f89b4bff..00000000 Binary files a/static/icons/06004533.png and /dev/null differ diff --git a/static/icons/06004535.png b/static/icons/06004535.png deleted file mode 100755 index 69e8e6d2..00000000 Binary files a/static/icons/06004535.png and /dev/null differ diff --git a/static/icons/06004537.png b/static/icons/06004537.png deleted file mode 100755 index 1c521a51..00000000 Binary files a/static/icons/06004537.png and /dev/null differ diff --git a/static/icons/06004539.png b/static/icons/06004539.png deleted file mode 100755 index ea13e78b..00000000 Binary files a/static/icons/06004539.png and /dev/null differ diff --git a/static/icons/0600453A.png b/static/icons/0600453A.png deleted file mode 100755 index 05cf839a..00000000 Binary files a/static/icons/0600453A.png and /dev/null differ diff --git a/static/icons/0600453B.png b/static/icons/0600453B.png deleted file mode 100755 index 409f5671..00000000 Binary files a/static/icons/0600453B.png and /dev/null differ diff --git a/static/icons/0600453D.png b/static/icons/0600453D.png deleted file mode 100755 index c7cb9220..00000000 Binary files a/static/icons/0600453D.png and /dev/null differ diff --git a/static/icons/0600453F.png b/static/icons/0600453F.png deleted file mode 100755 index 9fc239c6..00000000 Binary files a/static/icons/0600453F.png and /dev/null differ diff --git a/static/icons/06004541.png b/static/icons/06004541.png deleted file mode 100755 index 56ebb370..00000000 Binary files a/static/icons/06004541.png and /dev/null differ diff --git a/static/icons/06004543.png b/static/icons/06004543.png deleted file mode 100755 index 739ed874..00000000 Binary files a/static/icons/06004543.png and /dev/null differ diff --git a/static/icons/06004545.png b/static/icons/06004545.png deleted file mode 100755 index 9d515c96..00000000 Binary files a/static/icons/06004545.png and /dev/null differ diff --git a/static/icons/06004546.png b/static/icons/06004546.png deleted file mode 100755 index cdd95020..00000000 Binary files a/static/icons/06004546.png and /dev/null differ diff --git a/static/icons/06004547.png b/static/icons/06004547.png deleted file mode 100755 index d3eb5265..00000000 Binary files a/static/icons/06004547.png and /dev/null differ diff --git a/static/icons/06004548.png b/static/icons/06004548.png deleted file mode 100755 index 35aa8d82..00000000 Binary files a/static/icons/06004548.png and /dev/null differ diff --git a/static/icons/0600454A.png b/static/icons/0600454A.png deleted file mode 100755 index e3e9a73f..00000000 Binary files a/static/icons/0600454A.png and /dev/null differ diff --git a/static/icons/0600454C.png b/static/icons/0600454C.png deleted file mode 100755 index 63fb8c9b..00000000 Binary files a/static/icons/0600454C.png and /dev/null differ diff --git a/static/icons/0600454E.png b/static/icons/0600454E.png deleted file mode 100755 index dcfd1dbf..00000000 Binary files a/static/icons/0600454E.png and /dev/null differ diff --git a/static/icons/06004550.png b/static/icons/06004550.png deleted file mode 100755 index 7f678b82..00000000 Binary files a/static/icons/06004550.png and /dev/null differ diff --git a/static/icons/06004551.png b/static/icons/06004551.png deleted file mode 100755 index 5a5ad4db..00000000 Binary files a/static/icons/06004551.png and /dev/null differ diff --git a/static/icons/06004553.png b/static/icons/06004553.png deleted file mode 100755 index 06fb31a8..00000000 Binary files a/static/icons/06004553.png and /dev/null differ diff --git a/static/icons/0600458C.png b/static/icons/0600458C.png deleted file mode 100755 index d0b79b00..00000000 Binary files a/static/icons/0600458C.png and /dev/null differ diff --git a/static/icons/060045B2.png b/static/icons/060045B2.png deleted file mode 100755 index 7a4630d2..00000000 Binary files a/static/icons/060045B2.png and /dev/null differ diff --git a/static/icons/060045B6.png b/static/icons/060045B6.png deleted file mode 100755 index f813dc60..00000000 Binary files a/static/icons/060045B6.png and /dev/null differ diff --git a/static/icons/060045C1.png b/static/icons/060045C1.png deleted file mode 100755 index 9e71063d..00000000 Binary files a/static/icons/060045C1.png and /dev/null differ diff --git a/static/icons/06004625.png b/static/icons/06004625.png deleted file mode 100755 index b0fdc946..00000000 Binary files a/static/icons/06004625.png and /dev/null differ diff --git a/static/icons/06004627.png b/static/icons/06004627.png deleted file mode 100755 index 5aa7bea6..00000000 Binary files a/static/icons/06004627.png and /dev/null differ diff --git a/static/icons/06004635.png b/static/icons/06004635.png deleted file mode 100755 index 4b3c9804..00000000 Binary files a/static/icons/06004635.png and /dev/null differ diff --git a/static/icons/06004637.png b/static/icons/06004637.png deleted file mode 100755 index 71d78a51..00000000 Binary files a/static/icons/06004637.png and /dev/null differ diff --git a/static/icons/06004638.png b/static/icons/06004638.png deleted file mode 100755 index ee11c449..00000000 Binary files a/static/icons/06004638.png and /dev/null differ diff --git a/static/icons/0600463A.png b/static/icons/0600463A.png deleted file mode 100755 index a08aafb4..00000000 Binary files a/static/icons/0600463A.png and /dev/null differ diff --git a/static/icons/06004658.png b/static/icons/06004658.png deleted file mode 100755 index e02a1d43..00000000 Binary files a/static/icons/06004658.png and /dev/null differ diff --git a/static/icons/06004677.png b/static/icons/06004677.png deleted file mode 100755 index 7e87e5ff..00000000 Binary files a/static/icons/06004677.png and /dev/null differ diff --git a/static/icons/06004679.png b/static/icons/06004679.png deleted file mode 100755 index ad04e0b7..00000000 Binary files a/static/icons/06004679.png and /dev/null differ diff --git a/static/icons/060046CF.png b/static/icons/060046CF.png deleted file mode 100755 index f1783d06..00000000 Binary files a/static/icons/060046CF.png and /dev/null differ diff --git a/static/icons/060046EB.png b/static/icons/060046EB.png deleted file mode 100755 index c47f3b50..00000000 Binary files a/static/icons/060046EB.png and /dev/null differ diff --git a/static/icons/060046F8.png b/static/icons/060046F8.png deleted file mode 100755 index 93b85fdb..00000000 Binary files a/static/icons/060046F8.png and /dev/null differ diff --git a/static/icons/060046FF.png b/static/icons/060046FF.png deleted file mode 100755 index d3eb800b..00000000 Binary files a/static/icons/060046FF.png and /dev/null differ diff --git a/static/icons/06004701.png b/static/icons/06004701.png deleted file mode 100755 index d75e7484..00000000 Binary files a/static/icons/06004701.png and /dev/null differ diff --git a/static/icons/06004705.png b/static/icons/06004705.png deleted file mode 100755 index b2f51d6d..00000000 Binary files a/static/icons/06004705.png and /dev/null differ diff --git a/static/icons/06004707.png b/static/icons/06004707.png deleted file mode 100755 index 4defe0c7..00000000 Binary files a/static/icons/06004707.png and /dev/null differ diff --git a/static/icons/06004709.png b/static/icons/06004709.png deleted file mode 100755 index 95d60fed..00000000 Binary files a/static/icons/06004709.png and /dev/null differ diff --git a/static/icons/06004711.png b/static/icons/06004711.png deleted file mode 100755 index 3d80b014..00000000 Binary files a/static/icons/06004711.png and /dev/null differ diff --git a/static/icons/06004713.png b/static/icons/06004713.png deleted file mode 100755 index ff3985af..00000000 Binary files a/static/icons/06004713.png and /dev/null differ diff --git a/static/icons/0600471E.png b/static/icons/0600471E.png deleted file mode 100755 index 6bb3e211..00000000 Binary files a/static/icons/0600471E.png and /dev/null differ diff --git a/static/icons/0600471F.png b/static/icons/0600471F.png deleted file mode 100755 index 5c619bd6..00000000 Binary files a/static/icons/0600471F.png and /dev/null differ diff --git a/static/icons/06004727.png b/static/icons/06004727.png deleted file mode 100755 index 20c3d4ff..00000000 Binary files a/static/icons/06004727.png and /dev/null differ diff --git a/static/icons/06004729.png b/static/icons/06004729.png deleted file mode 100755 index 71de00e2..00000000 Binary files a/static/icons/06004729.png and /dev/null differ diff --git a/static/icons/0600472B.png b/static/icons/0600472B.png deleted file mode 100755 index 3eb58335..00000000 Binary files a/static/icons/0600472B.png and /dev/null differ diff --git a/static/icons/06004749.png b/static/icons/06004749.png deleted file mode 100755 index 1ffa73c9..00000000 Binary files a/static/icons/06004749.png and /dev/null differ diff --git a/static/icons/0600474B.png b/static/icons/0600474B.png deleted file mode 100755 index cc54d3a3..00000000 Binary files a/static/icons/0600474B.png and /dev/null differ diff --git a/static/icons/0600474D.png b/static/icons/0600474D.png deleted file mode 100755 index d5e98fc9..00000000 Binary files a/static/icons/0600474D.png and /dev/null differ diff --git a/static/icons/0600474F.png b/static/icons/0600474F.png deleted file mode 100755 index 8413c04c..00000000 Binary files a/static/icons/0600474F.png and /dev/null differ diff --git a/static/icons/06004751.png b/static/icons/06004751.png deleted file mode 100755 index 81431587..00000000 Binary files a/static/icons/06004751.png and /dev/null differ diff --git a/static/icons/06004753.png b/static/icons/06004753.png deleted file mode 100755 index eaef6bc5..00000000 Binary files a/static/icons/06004753.png and /dev/null differ diff --git a/static/icons/06004756.png b/static/icons/06004756.png deleted file mode 100755 index 0a68d9cf..00000000 Binary files a/static/icons/06004756.png and /dev/null differ diff --git a/static/icons/06004759.png b/static/icons/06004759.png deleted file mode 100755 index cb4ec09f..00000000 Binary files a/static/icons/06004759.png and /dev/null differ diff --git a/static/icons/0600475B.png b/static/icons/0600475B.png deleted file mode 100755 index a67087eb..00000000 Binary files a/static/icons/0600475B.png and /dev/null differ diff --git a/static/icons/0600475E.png b/static/icons/0600475E.png deleted file mode 100755 index 68605e7a..00000000 Binary files a/static/icons/0600475E.png and /dev/null differ diff --git a/static/icons/06004760.png b/static/icons/06004760.png deleted file mode 100755 index 94a5a78e..00000000 Binary files a/static/icons/06004760.png and /dev/null differ diff --git a/static/icons/0600476A.png b/static/icons/0600476A.png deleted file mode 100755 index f1c4dd3c..00000000 Binary files a/static/icons/0600476A.png and /dev/null differ diff --git a/static/icons/0600476C.png b/static/icons/0600476C.png deleted file mode 100755 index 87ef5bf4..00000000 Binary files a/static/icons/0600476C.png and /dev/null differ diff --git a/static/icons/0600476E.png b/static/icons/0600476E.png deleted file mode 100755 index 926a86f5..00000000 Binary files a/static/icons/0600476E.png and /dev/null differ diff --git a/static/icons/0600477E.png b/static/icons/0600477E.png deleted file mode 100755 index 3c4e77d5..00000000 Binary files a/static/icons/0600477E.png and /dev/null differ diff --git a/static/icons/06004780.png b/static/icons/06004780.png deleted file mode 100755 index 49b8a4a9..00000000 Binary files a/static/icons/06004780.png and /dev/null differ diff --git a/static/icons/06004782.png b/static/icons/06004782.png deleted file mode 100755 index 5b953df7..00000000 Binary files a/static/icons/06004782.png and /dev/null differ diff --git a/static/icons/06004784.png b/static/icons/06004784.png deleted file mode 100755 index d0b46818..00000000 Binary files a/static/icons/06004784.png and /dev/null differ diff --git a/static/icons/06004786.png b/static/icons/06004786.png deleted file mode 100755 index 5c3075d6..00000000 Binary files a/static/icons/06004786.png and /dev/null differ diff --git a/static/icons/06004798.png b/static/icons/06004798.png deleted file mode 100755 index afcfda5b..00000000 Binary files a/static/icons/06004798.png and /dev/null differ diff --git a/static/icons/060047A4.png b/static/icons/060047A4.png deleted file mode 100755 index 630f924e..00000000 Binary files a/static/icons/060047A4.png and /dev/null differ diff --git a/static/icons/060047A6.png b/static/icons/060047A6.png deleted file mode 100755 index 706399ae..00000000 Binary files a/static/icons/060047A6.png and /dev/null differ diff --git a/static/icons/060047C0.png b/static/icons/060047C0.png deleted file mode 100755 index 0dd02e01..00000000 Binary files a/static/icons/060047C0.png and /dev/null differ diff --git a/static/icons/060047D8.png b/static/icons/060047D8.png deleted file mode 100755 index 387ca606..00000000 Binary files a/static/icons/060047D8.png and /dev/null differ diff --git a/static/icons/060047DC.png b/static/icons/060047DC.png deleted file mode 100755 index 82dec57a..00000000 Binary files a/static/icons/060047DC.png and /dev/null differ diff --git a/static/icons/060047E0.png b/static/icons/060047E0.png deleted file mode 100755 index 1ac02c00..00000000 Binary files a/static/icons/060047E0.png and /dev/null differ diff --git a/static/icons/060047E2.png b/static/icons/060047E2.png deleted file mode 100755 index 69768ff1..00000000 Binary files a/static/icons/060047E2.png and /dev/null differ diff --git a/static/icons/0600480F.png b/static/icons/0600480F.png deleted file mode 100755 index a4d17e6a..00000000 Binary files a/static/icons/0600480F.png and /dev/null differ diff --git a/static/icons/06004812.png b/static/icons/06004812.png deleted file mode 100755 index cc8fa4ec..00000000 Binary files a/static/icons/06004812.png and /dev/null differ diff --git a/static/icons/06004814.png b/static/icons/06004814.png deleted file mode 100755 index 6ad1ef22..00000000 Binary files a/static/icons/06004814.png and /dev/null differ diff --git a/static/icons/06004816.png b/static/icons/06004816.png deleted file mode 100755 index 98825f8f..00000000 Binary files a/static/icons/06004816.png and /dev/null differ diff --git a/static/icons/06004818.png b/static/icons/06004818.png deleted file mode 100755 index bef332d2..00000000 Binary files a/static/icons/06004818.png and /dev/null differ diff --git a/static/icons/0600481A.png b/static/icons/0600481A.png deleted file mode 100755 index 06381397..00000000 Binary files a/static/icons/0600481A.png and /dev/null differ diff --git a/static/icons/0600481C.png b/static/icons/0600481C.png deleted file mode 100755 index 3ceb7281..00000000 Binary files a/static/icons/0600481C.png and /dev/null differ diff --git a/static/icons/0600481E.png b/static/icons/0600481E.png deleted file mode 100755 index 705458d2..00000000 Binary files a/static/icons/0600481E.png and /dev/null differ diff --git a/static/icons/06004820.png b/static/icons/06004820.png deleted file mode 100755 index ba6375b6..00000000 Binary files a/static/icons/06004820.png and /dev/null differ diff --git a/static/icons/06004823.png b/static/icons/06004823.png deleted file mode 100755 index cf5d7db8..00000000 Binary files a/static/icons/06004823.png and /dev/null differ diff --git a/static/icons/06004825.png b/static/icons/06004825.png deleted file mode 100755 index 3bd54404..00000000 Binary files a/static/icons/06004825.png and /dev/null differ diff --git a/static/icons/06004827.png b/static/icons/06004827.png deleted file mode 100755 index 55965f6f..00000000 Binary files a/static/icons/06004827.png and /dev/null differ diff --git a/static/icons/06004829.png b/static/icons/06004829.png deleted file mode 100755 index 2b1bc884..00000000 Binary files a/static/icons/06004829.png and /dev/null differ diff --git a/static/icons/0600482B.png b/static/icons/0600482B.png deleted file mode 100755 index b763eabf..00000000 Binary files a/static/icons/0600482B.png and /dev/null differ diff --git a/static/icons/0600482D.png b/static/icons/0600482D.png deleted file mode 100755 index 148bb73d..00000000 Binary files a/static/icons/0600482D.png and /dev/null differ diff --git a/static/icons/0600482F.png b/static/icons/0600482F.png deleted file mode 100755 index 61108149..00000000 Binary files a/static/icons/0600482F.png and /dev/null differ diff --git a/static/icons/06004831.png b/static/icons/06004831.png deleted file mode 100755 index 6b3ac85a..00000000 Binary files a/static/icons/06004831.png and /dev/null differ diff --git a/static/icons/06004833.png b/static/icons/06004833.png deleted file mode 100755 index f443b5fd..00000000 Binary files a/static/icons/06004833.png and /dev/null differ diff --git a/static/icons/06004835.png b/static/icons/06004835.png deleted file mode 100755 index 5548d22b..00000000 Binary files a/static/icons/06004835.png and /dev/null differ diff --git a/static/icons/06004837.png b/static/icons/06004837.png deleted file mode 100755 index e9b0761c..00000000 Binary files a/static/icons/06004837.png and /dev/null differ diff --git a/static/icons/06004839.png b/static/icons/06004839.png deleted file mode 100755 index 7cca8945..00000000 Binary files a/static/icons/06004839.png and /dev/null differ diff --git a/static/icons/06004845.png b/static/icons/06004845.png deleted file mode 100755 index c7d82ef3..00000000 Binary files a/static/icons/06004845.png and /dev/null differ diff --git a/static/icons/06004847.png b/static/icons/06004847.png deleted file mode 100755 index 55cdf90a..00000000 Binary files a/static/icons/06004847.png and /dev/null differ diff --git a/static/icons/06004849.png b/static/icons/06004849.png deleted file mode 100755 index a5062654..00000000 Binary files a/static/icons/06004849.png and /dev/null differ diff --git a/static/icons/0600484B.png b/static/icons/0600484B.png deleted file mode 100755 index 05abf087..00000000 Binary files a/static/icons/0600484B.png and /dev/null differ diff --git a/static/icons/0600484D.png b/static/icons/0600484D.png deleted file mode 100755 index a7eec602..00000000 Binary files a/static/icons/0600484D.png and /dev/null differ diff --git a/static/icons/06004850.png b/static/icons/06004850.png deleted file mode 100755 index 8e8f3539..00000000 Binary files a/static/icons/06004850.png and /dev/null differ diff --git a/static/icons/06004852.png b/static/icons/06004852.png deleted file mode 100755 index 2b901e28..00000000 Binary files a/static/icons/06004852.png and /dev/null differ diff --git a/static/icons/06004854.png b/static/icons/06004854.png deleted file mode 100755 index 613d3a63..00000000 Binary files a/static/icons/06004854.png and /dev/null differ diff --git a/static/icons/06004856.png b/static/icons/06004856.png deleted file mode 100755 index 40bfe7e8..00000000 Binary files a/static/icons/06004856.png and /dev/null differ diff --git a/static/icons/06004859.png b/static/icons/06004859.png deleted file mode 100755 index 04a3601a..00000000 Binary files a/static/icons/06004859.png and /dev/null differ diff --git a/static/icons/0600485B.png b/static/icons/0600485B.png deleted file mode 100755 index 7933480f..00000000 Binary files a/static/icons/0600485B.png and /dev/null differ diff --git a/static/icons/0600485E.png b/static/icons/0600485E.png deleted file mode 100755 index 32452cba..00000000 Binary files a/static/icons/0600485E.png and /dev/null differ diff --git a/static/icons/06004860.png b/static/icons/06004860.png deleted file mode 100755 index 869999ee..00000000 Binary files a/static/icons/06004860.png and /dev/null differ diff --git a/static/icons/06004862.png b/static/icons/06004862.png deleted file mode 100755 index cce94de1..00000000 Binary files a/static/icons/06004862.png and /dev/null differ diff --git a/static/icons/06004867.png b/static/icons/06004867.png deleted file mode 100755 index 5be0bffb..00000000 Binary files a/static/icons/06004867.png and /dev/null differ diff --git a/static/icons/0600486B.png b/static/icons/0600486B.png deleted file mode 100755 index a2f4074a..00000000 Binary files a/static/icons/0600486B.png and /dev/null differ diff --git a/static/icons/0600486D.png b/static/icons/0600486D.png deleted file mode 100755 index e741926c..00000000 Binary files a/static/icons/0600486D.png and /dev/null differ diff --git a/static/icons/0600486F.png b/static/icons/0600486F.png deleted file mode 100755 index 657e40b3..00000000 Binary files a/static/icons/0600486F.png and /dev/null differ diff --git a/static/icons/06004871.png b/static/icons/06004871.png deleted file mode 100755 index 492ab893..00000000 Binary files a/static/icons/06004871.png and /dev/null differ diff --git a/static/icons/06004873.png b/static/icons/06004873.png deleted file mode 100755 index 0ca9de94..00000000 Binary files a/static/icons/06004873.png and /dev/null differ diff --git a/static/icons/06004875.png b/static/icons/06004875.png deleted file mode 100755 index a6daad26..00000000 Binary files a/static/icons/06004875.png and /dev/null differ diff --git a/static/icons/06004877.png b/static/icons/06004877.png deleted file mode 100755 index 8a83681b..00000000 Binary files a/static/icons/06004877.png and /dev/null differ diff --git a/static/icons/06004879.png b/static/icons/06004879.png deleted file mode 100755 index 96de6df4..00000000 Binary files a/static/icons/06004879.png and /dev/null differ diff --git a/static/icons/0600487B.png b/static/icons/0600487B.png deleted file mode 100755 index 795113e5..00000000 Binary files a/static/icons/0600487B.png and /dev/null differ diff --git a/static/icons/0600487D.png b/static/icons/0600487D.png deleted file mode 100755 index 6bfbd761..00000000 Binary files a/static/icons/0600487D.png and /dev/null differ diff --git a/static/icons/0600487F.png b/static/icons/0600487F.png deleted file mode 100755 index a719ce5f..00000000 Binary files a/static/icons/0600487F.png and /dev/null differ diff --git a/static/icons/06004881.png b/static/icons/06004881.png deleted file mode 100755 index 4dbb370e..00000000 Binary files a/static/icons/06004881.png and /dev/null differ diff --git a/static/icons/06004883.png b/static/icons/06004883.png deleted file mode 100755 index b838ca2c..00000000 Binary files a/static/icons/06004883.png and /dev/null differ diff --git a/static/icons/06004885.png b/static/icons/06004885.png deleted file mode 100755 index 8e7ac1c3..00000000 Binary files a/static/icons/06004885.png and /dev/null differ diff --git a/static/icons/06004889.png b/static/icons/06004889.png deleted file mode 100755 index 5cf4a4d0..00000000 Binary files a/static/icons/06004889.png and /dev/null differ diff --git a/static/icons/0600488B.png b/static/icons/0600488B.png deleted file mode 100755 index 2ce6b8f3..00000000 Binary files a/static/icons/0600488B.png and /dev/null differ diff --git a/static/icons/0600488D.png b/static/icons/0600488D.png deleted file mode 100755 index 05079140..00000000 Binary files a/static/icons/0600488D.png and /dev/null differ diff --git a/static/icons/0600488F.png b/static/icons/0600488F.png deleted file mode 100755 index 830689b7..00000000 Binary files a/static/icons/0600488F.png and /dev/null differ diff --git a/static/icons/06004891.png b/static/icons/06004891.png deleted file mode 100755 index e859d64d..00000000 Binary files a/static/icons/06004891.png and /dev/null differ diff --git a/static/icons/06004894.png b/static/icons/06004894.png deleted file mode 100755 index 19748997..00000000 Binary files a/static/icons/06004894.png and /dev/null differ diff --git a/static/icons/06004896.png b/static/icons/06004896.png deleted file mode 100755 index 6c2299a0..00000000 Binary files a/static/icons/06004896.png and /dev/null differ diff --git a/static/icons/06004898.png b/static/icons/06004898.png deleted file mode 100755 index a01c0fef..00000000 Binary files a/static/icons/06004898.png and /dev/null differ diff --git a/static/icons/0600489E.png b/static/icons/0600489E.png deleted file mode 100755 index 7cb364fd..00000000 Binary files a/static/icons/0600489E.png and /dev/null differ diff --git a/static/icons/060048A0.png b/static/icons/060048A0.png deleted file mode 100755 index 14b21f76..00000000 Binary files a/static/icons/060048A0.png and /dev/null differ diff --git a/static/icons/060048A2.png b/static/icons/060048A2.png deleted file mode 100755 index 49f35da2..00000000 Binary files a/static/icons/060048A2.png and /dev/null differ diff --git a/static/icons/060048A4.png b/static/icons/060048A4.png deleted file mode 100755 index 88a374e8..00000000 Binary files a/static/icons/060048A4.png and /dev/null differ diff --git a/static/icons/060048A6.png b/static/icons/060048A6.png deleted file mode 100755 index bc459563..00000000 Binary files a/static/icons/060048A6.png and /dev/null differ diff --git a/static/icons/060048A8.png b/static/icons/060048A8.png deleted file mode 100755 index 81ca9c75..00000000 Binary files a/static/icons/060048A8.png and /dev/null differ diff --git a/static/icons/060048AA.png b/static/icons/060048AA.png deleted file mode 100755 index d3453775..00000000 Binary files a/static/icons/060048AA.png and /dev/null differ diff --git a/static/icons/060048AC.png b/static/icons/060048AC.png deleted file mode 100755 index 3a5422ce..00000000 Binary files a/static/icons/060048AC.png and /dev/null differ diff --git a/static/icons/060048AE.png b/static/icons/060048AE.png deleted file mode 100755 index 47321583..00000000 Binary files a/static/icons/060048AE.png and /dev/null differ diff --git a/static/icons/060048B0.png b/static/icons/060048B0.png deleted file mode 100755 index f6732e98..00000000 Binary files a/static/icons/060048B0.png and /dev/null differ diff --git a/static/icons/060048B4.png b/static/icons/060048B4.png deleted file mode 100755 index 7a05b071..00000000 Binary files a/static/icons/060048B4.png and /dev/null differ diff --git a/static/icons/060048B6.png b/static/icons/060048B6.png deleted file mode 100755 index 0375eca4..00000000 Binary files a/static/icons/060048B6.png and /dev/null differ diff --git a/static/icons/060048B8.png b/static/icons/060048B8.png deleted file mode 100755 index 530097e0..00000000 Binary files a/static/icons/060048B8.png and /dev/null differ diff --git a/static/icons/060048BA.png b/static/icons/060048BA.png deleted file mode 100755 index ad67c691..00000000 Binary files a/static/icons/060048BA.png and /dev/null differ diff --git a/static/icons/060048BD.png b/static/icons/060048BD.png deleted file mode 100755 index ae5b23e5..00000000 Binary files a/static/icons/060048BD.png and /dev/null differ diff --git a/static/icons/060048BF.png b/static/icons/060048BF.png deleted file mode 100755 index fc09cedb..00000000 Binary files a/static/icons/060048BF.png and /dev/null differ diff --git a/static/icons/060048C1.png b/static/icons/060048C1.png deleted file mode 100755 index 203ee682..00000000 Binary files a/static/icons/060048C1.png and /dev/null differ diff --git a/static/icons/060048C3.png b/static/icons/060048C3.png deleted file mode 100755 index cd377963..00000000 Binary files a/static/icons/060048C3.png and /dev/null differ diff --git a/static/icons/060048C5.png b/static/icons/060048C5.png deleted file mode 100755 index 04c5148f..00000000 Binary files a/static/icons/060048C5.png and /dev/null differ diff --git a/static/icons/060048C7.png b/static/icons/060048C7.png deleted file mode 100755 index 0c79dbb8..00000000 Binary files a/static/icons/060048C7.png and /dev/null differ diff --git a/static/icons/060048C9.png b/static/icons/060048C9.png deleted file mode 100755 index e2e19724..00000000 Binary files a/static/icons/060048C9.png and /dev/null differ diff --git a/static/icons/060048CC.png b/static/icons/060048CC.png deleted file mode 100755 index bb3b0ef4..00000000 Binary files a/static/icons/060048CC.png and /dev/null differ diff --git a/static/icons/060048CE.png b/static/icons/060048CE.png deleted file mode 100755 index 922336cd..00000000 Binary files a/static/icons/060048CE.png and /dev/null differ diff --git a/static/icons/060048E1.png b/static/icons/060048E1.png deleted file mode 100755 index a00a07a0..00000000 Binary files a/static/icons/060048E1.png and /dev/null differ diff --git a/static/icons/060048E3.png b/static/icons/060048E3.png deleted file mode 100755 index 6b06c83b..00000000 Binary files a/static/icons/060048E3.png and /dev/null differ diff --git a/static/icons/060048E5.png b/static/icons/060048E5.png deleted file mode 100755 index 6867e9c4..00000000 Binary files a/static/icons/060048E5.png and /dev/null differ diff --git a/static/icons/060048E7.png b/static/icons/060048E7.png deleted file mode 100755 index 417caf62..00000000 Binary files a/static/icons/060048E7.png and /dev/null differ diff --git a/static/icons/060048E9.png b/static/icons/060048E9.png deleted file mode 100755 index ac4a47fa..00000000 Binary files a/static/icons/060048E9.png and /dev/null differ diff --git a/static/icons/060048F0.png b/static/icons/060048F0.png deleted file mode 100755 index ad2145fe..00000000 Binary files a/static/icons/060048F0.png and /dev/null differ diff --git a/static/icons/060048F2.png b/static/icons/060048F2.png deleted file mode 100755 index a836a4ad..00000000 Binary files a/static/icons/060048F2.png and /dev/null differ diff --git a/static/icons/060048F4.png b/static/icons/060048F4.png deleted file mode 100755 index 33f359f6..00000000 Binary files a/static/icons/060048F4.png and /dev/null differ diff --git a/static/icons/060048F6.png b/static/icons/060048F6.png deleted file mode 100755 index 2362826d..00000000 Binary files a/static/icons/060048F6.png and /dev/null differ diff --git a/static/icons/060048F8.png b/static/icons/060048F8.png deleted file mode 100755 index e4a9dfb0..00000000 Binary files a/static/icons/060048F8.png and /dev/null differ diff --git a/static/icons/060048FA.png b/static/icons/060048FA.png deleted file mode 100755 index 28787b42..00000000 Binary files a/static/icons/060048FA.png and /dev/null differ diff --git a/static/icons/060048FC.png b/static/icons/060048FC.png deleted file mode 100755 index 6505074e..00000000 Binary files a/static/icons/060048FC.png and /dev/null differ diff --git a/static/icons/06004908.png b/static/icons/06004908.png deleted file mode 100755 index 7db246b5..00000000 Binary files a/static/icons/06004908.png and /dev/null differ diff --git a/static/icons/0600490A.png b/static/icons/0600490A.png deleted file mode 100755 index 3256335d..00000000 Binary files a/static/icons/0600490A.png and /dev/null differ diff --git a/static/icons/0600490C.png b/static/icons/0600490C.png deleted file mode 100755 index 9b08aef7..00000000 Binary files a/static/icons/0600490C.png and /dev/null differ diff --git a/static/icons/0600490E.png b/static/icons/0600490E.png deleted file mode 100755 index d75c0936..00000000 Binary files a/static/icons/0600490E.png and /dev/null differ diff --git a/static/icons/06004911.png b/static/icons/06004911.png deleted file mode 100755 index 56557811..00000000 Binary files a/static/icons/06004911.png and /dev/null differ diff --git a/static/icons/06004914.png b/static/icons/06004914.png deleted file mode 100755 index 5ef6641d..00000000 Binary files a/static/icons/06004914.png and /dev/null differ diff --git a/static/icons/06004916.png b/static/icons/06004916.png deleted file mode 100755 index 0c2ac236..00000000 Binary files a/static/icons/06004916.png and /dev/null differ diff --git a/static/icons/0600491A.png b/static/icons/0600491A.png deleted file mode 100755 index f81a41f3..00000000 Binary files a/static/icons/0600491A.png and /dev/null differ diff --git a/static/icons/0600492A.png b/static/icons/0600492A.png deleted file mode 100755 index a6e320e7..00000000 Binary files a/static/icons/0600492A.png and /dev/null differ diff --git a/static/icons/060049E6.png b/static/icons/060049E6.png deleted file mode 100755 index 50330f5b..00000000 Binary files a/static/icons/060049E6.png and /dev/null differ diff --git a/static/icons/060049E8.png b/static/icons/060049E8.png deleted file mode 100755 index 9693eef6..00000000 Binary files a/static/icons/060049E8.png and /dev/null differ diff --git a/static/icons/06004A40.png b/static/icons/06004A40.png deleted file mode 100755 index d3bc8340..00000000 Binary files a/static/icons/06004A40.png and /dev/null differ diff --git a/static/icons/06004A41.png b/static/icons/06004A41.png deleted file mode 100755 index 2b302c32..00000000 Binary files a/static/icons/06004A41.png and /dev/null differ diff --git a/static/icons/06004A42.png b/static/icons/06004A42.png deleted file mode 100755 index 2f285952..00000000 Binary files a/static/icons/06004A42.png and /dev/null differ diff --git a/static/icons/06004A43.png b/static/icons/06004A43.png deleted file mode 100755 index 19203b50..00000000 Binary files a/static/icons/06004A43.png and /dev/null differ diff --git a/static/icons/06004A44.png b/static/icons/06004A44.png deleted file mode 100755 index cf313ad3..00000000 Binary files a/static/icons/06004A44.png and /dev/null differ diff --git a/static/icons/06004A45.png b/static/icons/06004A45.png deleted file mode 100755 index 76baebfa..00000000 Binary files a/static/icons/06004A45.png and /dev/null differ diff --git a/static/icons/06004A46.png b/static/icons/06004A46.png deleted file mode 100755 index 19ee3909..00000000 Binary files a/static/icons/06004A46.png and /dev/null differ diff --git a/static/icons/06004A47.png b/static/icons/06004A47.png deleted file mode 100755 index 7910b45b..00000000 Binary files a/static/icons/06004A47.png and /dev/null differ diff --git a/static/icons/06004A48.png b/static/icons/06004A48.png deleted file mode 100755 index f0f8979e..00000000 Binary files a/static/icons/06004A48.png and /dev/null differ diff --git a/static/icons/06004A49.png b/static/icons/06004A49.png deleted file mode 100755 index 3a5b69f3..00000000 Binary files a/static/icons/06004A49.png and /dev/null differ diff --git a/static/icons/06004A4A.png b/static/icons/06004A4A.png deleted file mode 100755 index 26a2c9dc..00000000 Binary files a/static/icons/06004A4A.png and /dev/null differ diff --git a/static/icons/06004A4B.png b/static/icons/06004A4B.png deleted file mode 100755 index e78e8130..00000000 Binary files a/static/icons/06004A4B.png and /dev/null differ diff --git a/static/icons/06004A4C.png b/static/icons/06004A4C.png deleted file mode 100755 index d3407c3a..00000000 Binary files a/static/icons/06004A4C.png and /dev/null differ diff --git a/static/icons/06004A4D.png b/static/icons/06004A4D.png deleted file mode 100755 index 7fd7b38c..00000000 Binary files a/static/icons/06004A4D.png and /dev/null differ diff --git a/static/icons/06004A4E.png b/static/icons/06004A4E.png deleted file mode 100755 index 44f9630c..00000000 Binary files a/static/icons/06004A4E.png and /dev/null differ diff --git a/static/icons/06004A4F.png b/static/icons/06004A4F.png deleted file mode 100755 index ca81077d..00000000 Binary files a/static/icons/06004A4F.png and /dev/null differ diff --git a/static/icons/06004A50.png b/static/icons/06004A50.png deleted file mode 100755 index aebcab17..00000000 Binary files a/static/icons/06004A50.png and /dev/null differ diff --git a/static/icons/06004A51.png b/static/icons/06004A51.png deleted file mode 100755 index 5520b61f..00000000 Binary files a/static/icons/06004A51.png and /dev/null differ diff --git a/static/icons/06004A52.png b/static/icons/06004A52.png deleted file mode 100755 index df3fc600..00000000 Binary files a/static/icons/06004A52.png and /dev/null differ diff --git a/static/icons/06004A53.png b/static/icons/06004A53.png deleted file mode 100755 index 2f1fe160..00000000 Binary files a/static/icons/06004A53.png and /dev/null differ diff --git a/static/icons/06004A54.png b/static/icons/06004A54.png deleted file mode 100755 index 0490b583..00000000 Binary files a/static/icons/06004A54.png and /dev/null differ diff --git a/static/icons/06004A55.png b/static/icons/06004A55.png deleted file mode 100755 index 313fa290..00000000 Binary files a/static/icons/06004A55.png and /dev/null differ diff --git a/static/icons/06004A56.png b/static/icons/06004A56.png deleted file mode 100755 index 470f4029..00000000 Binary files a/static/icons/06004A56.png and /dev/null differ diff --git a/static/icons/06004A57.png b/static/icons/06004A57.png deleted file mode 100755 index e03f584f..00000000 Binary files a/static/icons/06004A57.png and /dev/null differ diff --git a/static/icons/06004A58.png b/static/icons/06004A58.png deleted file mode 100755 index e48536ef..00000000 Binary files a/static/icons/06004A58.png and /dev/null differ diff --git a/static/icons/06004A59.png b/static/icons/06004A59.png deleted file mode 100755 index bc481603..00000000 Binary files a/static/icons/06004A59.png and /dev/null differ diff --git a/static/icons/06004A5A.png b/static/icons/06004A5A.png deleted file mode 100755 index c5c6f298..00000000 Binary files a/static/icons/06004A5A.png and /dev/null differ diff --git a/static/icons/06004A5B.png b/static/icons/06004A5B.png deleted file mode 100755 index 8f57ffca..00000000 Binary files a/static/icons/06004A5B.png and /dev/null differ diff --git a/static/icons/06004A5C.png b/static/icons/06004A5C.png deleted file mode 100755 index e3d6bdf1..00000000 Binary files a/static/icons/06004A5C.png and /dev/null differ diff --git a/static/icons/06004A60.png b/static/icons/06004A60.png deleted file mode 100755 index 82cab845..00000000 Binary files a/static/icons/06004A60.png and /dev/null differ diff --git a/static/icons/06004A61.png b/static/icons/06004A61.png deleted file mode 100755 index f87a83f2..00000000 Binary files a/static/icons/06004A61.png and /dev/null differ diff --git a/static/icons/06004A62.png b/static/icons/06004A62.png deleted file mode 100755 index e0a47530..00000000 Binary files a/static/icons/06004A62.png and /dev/null differ diff --git a/static/icons/06004A63.png b/static/icons/06004A63.png deleted file mode 100755 index f59a1cf5..00000000 Binary files a/static/icons/06004A63.png and /dev/null differ diff --git a/static/icons/06004A64.png b/static/icons/06004A64.png deleted file mode 100755 index e0a47530..00000000 Binary files a/static/icons/06004A64.png and /dev/null differ diff --git a/static/icons/06004A65.png b/static/icons/06004A65.png deleted file mode 100755 index 6d2f08d1..00000000 Binary files a/static/icons/06004A65.png and /dev/null differ diff --git a/static/icons/06004A66.png b/static/icons/06004A66.png deleted file mode 100755 index c9de5c2c..00000000 Binary files a/static/icons/06004A66.png and /dev/null differ diff --git a/static/icons/06004A67.png b/static/icons/06004A67.png deleted file mode 100755 index 92c26259..00000000 Binary files a/static/icons/06004A67.png and /dev/null differ diff --git a/static/icons/06004A68.png b/static/icons/06004A68.png deleted file mode 100755 index 0ec46387..00000000 Binary files a/static/icons/06004A68.png and /dev/null differ diff --git a/static/icons/06004A69.png b/static/icons/06004A69.png deleted file mode 100755 index 48559056..00000000 Binary files a/static/icons/06004A69.png and /dev/null differ diff --git a/static/icons/06004A6A.png b/static/icons/06004A6A.png deleted file mode 100755 index fb409086..00000000 Binary files a/static/icons/06004A6A.png and /dev/null differ diff --git a/static/icons/06004A6B.png b/static/icons/06004A6B.png deleted file mode 100755 index b22b13fa..00000000 Binary files a/static/icons/06004A6B.png and /dev/null differ diff --git a/static/icons/06004A6C.png b/static/icons/06004A6C.png deleted file mode 100755 index aa90d7f4..00000000 Binary files a/static/icons/06004A6C.png and /dev/null differ diff --git a/static/icons/06004A6D.png b/static/icons/06004A6D.png deleted file mode 100755 index e637ffb3..00000000 Binary files a/static/icons/06004A6D.png and /dev/null differ diff --git a/static/icons/06004A6E.png b/static/icons/06004A6E.png deleted file mode 100755 index 071baa9a..00000000 Binary files a/static/icons/06004A6E.png and /dev/null differ diff --git a/static/icons/06004A6F.png b/static/icons/06004A6F.png deleted file mode 100755 index cd38205c..00000000 Binary files a/static/icons/06004A6F.png and /dev/null differ diff --git a/static/icons/06004A70.png b/static/icons/06004A70.png deleted file mode 100755 index 166ba6e0..00000000 Binary files a/static/icons/06004A70.png and /dev/null differ diff --git a/static/icons/06004A71.png b/static/icons/06004A71.png deleted file mode 100755 index 13e81690..00000000 Binary files a/static/icons/06004A71.png and /dev/null differ diff --git a/static/icons/06004A72.png b/static/icons/06004A72.png deleted file mode 100755 index 4a97af20..00000000 Binary files a/static/icons/06004A72.png and /dev/null differ diff --git a/static/icons/06004A73.png b/static/icons/06004A73.png deleted file mode 100755 index 12aa667d..00000000 Binary files a/static/icons/06004A73.png and /dev/null differ diff --git a/static/icons/06004A74.png b/static/icons/06004A74.png deleted file mode 100755 index 15f5299e..00000000 Binary files a/static/icons/06004A74.png and /dev/null differ diff --git a/static/icons/06004A75.png b/static/icons/06004A75.png deleted file mode 100755 index fadf2a2e..00000000 Binary files a/static/icons/06004A75.png and /dev/null differ diff --git a/static/icons/06004A76.png b/static/icons/06004A76.png deleted file mode 100755 index cf1d1cd9..00000000 Binary files a/static/icons/06004A76.png and /dev/null differ diff --git a/static/icons/06004A77.png b/static/icons/06004A77.png deleted file mode 100755 index 11a256ab..00000000 Binary files a/static/icons/06004A77.png and /dev/null differ diff --git a/static/icons/06004A78.png b/static/icons/06004A78.png deleted file mode 100755 index b810d86e..00000000 Binary files a/static/icons/06004A78.png and /dev/null differ diff --git a/static/icons/06004A79.png b/static/icons/06004A79.png deleted file mode 100755 index c9dab774..00000000 Binary files a/static/icons/06004A79.png and /dev/null differ diff --git a/static/icons/06004A7A.png b/static/icons/06004A7A.png deleted file mode 100755 index c87cdde8..00000000 Binary files a/static/icons/06004A7A.png and /dev/null differ diff --git a/static/icons/06004A7B.png b/static/icons/06004A7B.png deleted file mode 100755 index 3c57012d..00000000 Binary files a/static/icons/06004A7B.png and /dev/null differ diff --git a/static/icons/06004A83.png b/static/icons/06004A83.png deleted file mode 100755 index 406de2b9..00000000 Binary files a/static/icons/06004A83.png and /dev/null differ diff --git a/static/icons/06004A84.png b/static/icons/06004A84.png deleted file mode 100755 index adc43777..00000000 Binary files a/static/icons/06004A84.png and /dev/null differ diff --git a/static/icons/06004A85.png b/static/icons/06004A85.png deleted file mode 100755 index 3857501d..00000000 Binary files a/static/icons/06004A85.png and /dev/null differ diff --git a/static/icons/06004A86.png b/static/icons/06004A86.png deleted file mode 100755 index e5d696df..00000000 Binary files a/static/icons/06004A86.png and /dev/null differ diff --git a/static/icons/06004A87.png b/static/icons/06004A87.png deleted file mode 100755 index adec2d80..00000000 Binary files a/static/icons/06004A87.png and /dev/null differ diff --git a/static/icons/06004A88.png b/static/icons/06004A88.png deleted file mode 100755 index c64efcf1..00000000 Binary files a/static/icons/06004A88.png and /dev/null differ diff --git a/static/icons/06004A89.png b/static/icons/06004A89.png deleted file mode 100755 index 5b0bb6c1..00000000 Binary files a/static/icons/06004A89.png and /dev/null differ diff --git a/static/icons/06004A8A.png b/static/icons/06004A8A.png deleted file mode 100755 index f8f6e1ee..00000000 Binary files a/static/icons/06004A8A.png and /dev/null differ diff --git a/static/icons/06004A8B.png b/static/icons/06004A8B.png deleted file mode 100755 index 0f92533d..00000000 Binary files a/static/icons/06004A8B.png and /dev/null differ diff --git a/static/icons/06004A8C.png b/static/icons/06004A8C.png deleted file mode 100755 index 26d4dcd9..00000000 Binary files a/static/icons/06004A8C.png and /dev/null differ diff --git a/static/icons/06004A8D.png b/static/icons/06004A8D.png deleted file mode 100755 index d7795877..00000000 Binary files a/static/icons/06004A8D.png and /dev/null differ diff --git a/static/icons/06004A8E.png b/static/icons/06004A8E.png deleted file mode 100755 index b1217d86..00000000 Binary files a/static/icons/06004A8E.png and /dev/null differ diff --git a/static/icons/06004A8F.png b/static/icons/06004A8F.png deleted file mode 100755 index 3f2d6282..00000000 Binary files a/static/icons/06004A8F.png and /dev/null differ diff --git a/static/icons/06004A90.png b/static/icons/06004A90.png deleted file mode 100755 index c5c4206e..00000000 Binary files a/static/icons/06004A90.png and /dev/null differ diff --git a/static/icons/06004A91.png b/static/icons/06004A91.png deleted file mode 100755 index f2170d79..00000000 Binary files a/static/icons/06004A91.png and /dev/null differ diff --git a/static/icons/06004A92.png b/static/icons/06004A92.png deleted file mode 100755 index cea751f4..00000000 Binary files a/static/icons/06004A92.png and /dev/null differ diff --git a/static/icons/06004A93.png b/static/icons/06004A93.png deleted file mode 100755 index 1954c0fb..00000000 Binary files a/static/icons/06004A93.png and /dev/null differ diff --git a/static/icons/06004A94.png b/static/icons/06004A94.png deleted file mode 100755 index 5303971f..00000000 Binary files a/static/icons/06004A94.png and /dev/null differ diff --git a/static/icons/06004A95.png b/static/icons/06004A95.png deleted file mode 100755 index d9b872b5..00000000 Binary files a/static/icons/06004A95.png and /dev/null differ diff --git a/static/icons/06004A96.png b/static/icons/06004A96.png deleted file mode 100755 index a9ed1939..00000000 Binary files a/static/icons/06004A96.png and /dev/null differ diff --git a/static/icons/06004A97.png b/static/icons/06004A97.png deleted file mode 100755 index e0dbe830..00000000 Binary files a/static/icons/06004A97.png and /dev/null differ diff --git a/static/icons/06004A98.png b/static/icons/06004A98.png deleted file mode 100755 index 2f9ba1c9..00000000 Binary files a/static/icons/06004A98.png and /dev/null differ diff --git a/static/icons/06004A99.png b/static/icons/06004A99.png deleted file mode 100755 index 490df491..00000000 Binary files a/static/icons/06004A99.png and /dev/null differ diff --git a/static/icons/06004A9A.png b/static/icons/06004A9A.png deleted file mode 100755 index e89941db..00000000 Binary files a/static/icons/06004A9A.png and /dev/null differ diff --git a/static/icons/06004A9B.png b/static/icons/06004A9B.png deleted file mode 100755 index 3853dc1b..00000000 Binary files a/static/icons/06004A9B.png and /dev/null differ diff --git a/static/icons/06004A9C.png b/static/icons/06004A9C.png deleted file mode 100755 index ff71dcfa..00000000 Binary files a/static/icons/06004A9C.png and /dev/null differ diff --git a/static/icons/06004A9D.png b/static/icons/06004A9D.png deleted file mode 100755 index ed0dbe5a..00000000 Binary files a/static/icons/06004A9D.png and /dev/null differ diff --git a/static/icons/06004A9E.png b/static/icons/06004A9E.png deleted file mode 100755 index fe194cd5..00000000 Binary files a/static/icons/06004A9E.png and /dev/null differ diff --git a/static/icons/06004AA6.png b/static/icons/06004AA6.png deleted file mode 100755 index 2f7ac34d..00000000 Binary files a/static/icons/06004AA6.png and /dev/null differ diff --git a/static/icons/06004AA7.png b/static/icons/06004AA7.png deleted file mode 100755 index a8a358c9..00000000 Binary files a/static/icons/06004AA7.png and /dev/null differ diff --git a/static/icons/06004AA8.png b/static/icons/06004AA8.png deleted file mode 100755 index 40f531f8..00000000 Binary files a/static/icons/06004AA8.png and /dev/null differ diff --git a/static/icons/06004AA9.png b/static/icons/06004AA9.png deleted file mode 100755 index 220dc4b4..00000000 Binary files a/static/icons/06004AA9.png and /dev/null differ diff --git a/static/icons/06004AAA.png b/static/icons/06004AAA.png deleted file mode 100755 index 578dffa6..00000000 Binary files a/static/icons/06004AAA.png and /dev/null differ diff --git a/static/icons/06004AAB.png b/static/icons/06004AAB.png deleted file mode 100755 index c018b24a..00000000 Binary files a/static/icons/06004AAB.png and /dev/null differ diff --git a/static/icons/06004AAC.png b/static/icons/06004AAC.png deleted file mode 100755 index f3bc884c..00000000 Binary files a/static/icons/06004AAC.png and /dev/null differ diff --git a/static/icons/06004AAD.png b/static/icons/06004AAD.png deleted file mode 100755 index 07814231..00000000 Binary files a/static/icons/06004AAD.png and /dev/null differ diff --git a/static/icons/06004AAE.png b/static/icons/06004AAE.png deleted file mode 100755 index 30f5103f..00000000 Binary files a/static/icons/06004AAE.png and /dev/null differ diff --git a/static/icons/06004AAF.png b/static/icons/06004AAF.png deleted file mode 100755 index 43aadb32..00000000 Binary files a/static/icons/06004AAF.png and /dev/null differ diff --git a/static/icons/06004AB0.png b/static/icons/06004AB0.png deleted file mode 100755 index f635dbbb..00000000 Binary files a/static/icons/06004AB0.png and /dev/null differ diff --git a/static/icons/06004AB1.png b/static/icons/06004AB1.png deleted file mode 100755 index 5919a20c..00000000 Binary files a/static/icons/06004AB1.png and /dev/null differ diff --git a/static/icons/06004AB2.png b/static/icons/06004AB2.png deleted file mode 100755 index d61a4c0a..00000000 Binary files a/static/icons/06004AB2.png and /dev/null differ diff --git a/static/icons/06004AB3.png b/static/icons/06004AB3.png deleted file mode 100755 index db8f9dff..00000000 Binary files a/static/icons/06004AB3.png and /dev/null differ diff --git a/static/icons/06004AB4.png b/static/icons/06004AB4.png deleted file mode 100755 index 29ec69d9..00000000 Binary files a/static/icons/06004AB4.png and /dev/null differ diff --git a/static/icons/06004AB5.png b/static/icons/06004AB5.png deleted file mode 100755 index b2ad2192..00000000 Binary files a/static/icons/06004AB5.png and /dev/null differ diff --git a/static/icons/06004AB6.png b/static/icons/06004AB6.png deleted file mode 100755 index 32498800..00000000 Binary files a/static/icons/06004AB6.png and /dev/null differ diff --git a/static/icons/06004AB7.png b/static/icons/06004AB7.png deleted file mode 100755 index db9f6a80..00000000 Binary files a/static/icons/06004AB7.png and /dev/null differ diff --git a/static/icons/06004AB8.png b/static/icons/06004AB8.png deleted file mode 100755 index a4d45aa6..00000000 Binary files a/static/icons/06004AB8.png and /dev/null differ diff --git a/static/icons/06004AB9.png b/static/icons/06004AB9.png deleted file mode 100755 index 1349f208..00000000 Binary files a/static/icons/06004AB9.png and /dev/null differ diff --git a/static/icons/06004ABA.png b/static/icons/06004ABA.png deleted file mode 100755 index a85d3881..00000000 Binary files a/static/icons/06004ABA.png and /dev/null differ diff --git a/static/icons/06004ABB.png b/static/icons/06004ABB.png deleted file mode 100755 index 6cdcf685..00000000 Binary files a/static/icons/06004ABB.png and /dev/null differ diff --git a/static/icons/06004ABC.png b/static/icons/06004ABC.png deleted file mode 100755 index 0d83485d..00000000 Binary files a/static/icons/06004ABC.png and /dev/null differ diff --git a/static/icons/06004ABD.png b/static/icons/06004ABD.png deleted file mode 100755 index 1d0f6fcb..00000000 Binary files a/static/icons/06004ABD.png and /dev/null differ diff --git a/static/icons/06004ABE.png b/static/icons/06004ABE.png deleted file mode 100755 index b37527e7..00000000 Binary files a/static/icons/06004ABE.png and /dev/null differ diff --git a/static/icons/06004ABF.png b/static/icons/06004ABF.png deleted file mode 100755 index 899429d2..00000000 Binary files a/static/icons/06004ABF.png and /dev/null differ diff --git a/static/icons/06004AC0.png b/static/icons/06004AC0.png deleted file mode 100755 index f00a5e8f..00000000 Binary files a/static/icons/06004AC0.png and /dev/null differ diff --git a/static/icons/06004AC1.png b/static/icons/06004AC1.png deleted file mode 100755 index b7e907be..00000000 Binary files a/static/icons/06004AC1.png and /dev/null differ diff --git a/static/icons/06004AC4.png b/static/icons/06004AC4.png deleted file mode 100755 index 4de99723..00000000 Binary files a/static/icons/06004AC4.png and /dev/null differ diff --git a/static/icons/06004AC5.png b/static/icons/06004AC5.png deleted file mode 100755 index 6d54157d..00000000 Binary files a/static/icons/06004AC5.png and /dev/null differ diff --git a/static/icons/06004AC6.png b/static/icons/06004AC6.png deleted file mode 100755 index f571d119..00000000 Binary files a/static/icons/06004AC6.png and /dev/null differ diff --git a/static/icons/06004AC7.png b/static/icons/06004AC7.png deleted file mode 100755 index fb90a5bc..00000000 Binary files a/static/icons/06004AC7.png and /dev/null differ diff --git a/static/icons/06004AC8.png b/static/icons/06004AC8.png deleted file mode 100755 index 5b13a386..00000000 Binary files a/static/icons/06004AC8.png and /dev/null differ diff --git a/static/icons/06004AC9.png b/static/icons/06004AC9.png deleted file mode 100755 index ee58dcca..00000000 Binary files a/static/icons/06004AC9.png and /dev/null differ diff --git a/static/icons/06004ACA.png b/static/icons/06004ACA.png deleted file mode 100755 index a885e1ad..00000000 Binary files a/static/icons/06004ACA.png and /dev/null differ diff --git a/static/icons/06004ACB.png b/static/icons/06004ACB.png deleted file mode 100755 index 70cb69b3..00000000 Binary files a/static/icons/06004ACB.png and /dev/null differ diff --git a/static/icons/06004ACC.png b/static/icons/06004ACC.png deleted file mode 100755 index 6b8c91c5..00000000 Binary files a/static/icons/06004ACC.png and /dev/null differ diff --git a/static/icons/06004ACD.png b/static/icons/06004ACD.png deleted file mode 100755 index b73492dc..00000000 Binary files a/static/icons/06004ACD.png and /dev/null differ diff --git a/static/icons/06004ACE.png b/static/icons/06004ACE.png deleted file mode 100755 index 155bec98..00000000 Binary files a/static/icons/06004ACE.png and /dev/null differ diff --git a/static/icons/06004ACF.png b/static/icons/06004ACF.png deleted file mode 100755 index d877cb54..00000000 Binary files a/static/icons/06004ACF.png and /dev/null differ diff --git a/static/icons/06004AD0.png b/static/icons/06004AD0.png deleted file mode 100755 index 6d787393..00000000 Binary files a/static/icons/06004AD0.png and /dev/null differ diff --git a/static/icons/06004AD1.png b/static/icons/06004AD1.png deleted file mode 100755 index 8ecd37b1..00000000 Binary files a/static/icons/06004AD1.png and /dev/null differ diff --git a/static/icons/06004AD2.png b/static/icons/06004AD2.png deleted file mode 100755 index 81cae0b4..00000000 Binary files a/static/icons/06004AD2.png and /dev/null differ diff --git a/static/icons/06004AD3.png b/static/icons/06004AD3.png deleted file mode 100755 index 089844d5..00000000 Binary files a/static/icons/06004AD3.png and /dev/null differ diff --git a/static/icons/06004AD4.png b/static/icons/06004AD4.png deleted file mode 100755 index e108f6ce..00000000 Binary files a/static/icons/06004AD4.png and /dev/null differ diff --git a/static/icons/06004AD5.png b/static/icons/06004AD5.png deleted file mode 100755 index cb3939df..00000000 Binary files a/static/icons/06004AD5.png and /dev/null differ diff --git a/static/icons/06004AD6.png b/static/icons/06004AD6.png deleted file mode 100755 index b38898bb..00000000 Binary files a/static/icons/06004AD6.png and /dev/null differ diff --git a/static/icons/06004AD7.png b/static/icons/06004AD7.png deleted file mode 100755 index dfc85c19..00000000 Binary files a/static/icons/06004AD7.png and /dev/null differ diff --git a/static/icons/06004AD8.png b/static/icons/06004AD8.png deleted file mode 100755 index 3586ac7c..00000000 Binary files a/static/icons/06004AD8.png and /dev/null differ diff --git a/static/icons/06004AD9.png b/static/icons/06004AD9.png deleted file mode 100755 index bc74875d..00000000 Binary files a/static/icons/06004AD9.png and /dev/null differ diff --git a/static/icons/06004ADA.png b/static/icons/06004ADA.png deleted file mode 100755 index def4eaca..00000000 Binary files a/static/icons/06004ADA.png and /dev/null differ diff --git a/static/icons/06004ADB.png b/static/icons/06004ADB.png deleted file mode 100755 index fe602979..00000000 Binary files a/static/icons/06004ADB.png and /dev/null differ diff --git a/static/icons/06004ADC.png b/static/icons/06004ADC.png deleted file mode 100755 index 5b363f82..00000000 Binary files a/static/icons/06004ADC.png and /dev/null differ diff --git a/static/icons/06004ADD.png b/static/icons/06004ADD.png deleted file mode 100755 index 9cafb851..00000000 Binary files a/static/icons/06004ADD.png and /dev/null differ diff --git a/static/icons/06004ADE.png b/static/icons/06004ADE.png deleted file mode 100755 index e5159749..00000000 Binary files a/static/icons/06004ADE.png and /dev/null differ diff --git a/static/icons/06004ADF.png b/static/icons/06004ADF.png deleted file mode 100755 index 424d4ba0..00000000 Binary files a/static/icons/06004ADF.png and /dev/null differ diff --git a/static/icons/06004B91.png b/static/icons/06004B91.png deleted file mode 100755 index 5c97c4ba..00000000 Binary files a/static/icons/06004B91.png and /dev/null differ diff --git a/static/icons/06004B92.png b/static/icons/06004B92.png deleted file mode 100755 index 31458dec..00000000 Binary files a/static/icons/06004B92.png and /dev/null differ diff --git a/static/icons/06004B93.png b/static/icons/06004B93.png deleted file mode 100755 index f62ed2f2..00000000 Binary files a/static/icons/06004B93.png and /dev/null differ diff --git a/static/icons/06004C3B.png b/static/icons/06004C3B.png deleted file mode 100755 index 98b59790..00000000 Binary files a/static/icons/06004C3B.png and /dev/null differ diff --git a/static/icons/06004C3C.png b/static/icons/06004C3C.png deleted file mode 100755 index 3144fff1..00000000 Binary files a/static/icons/06004C3C.png and /dev/null differ diff --git a/static/icons/06004C3D.png b/static/icons/06004C3D.png deleted file mode 100755 index 5d93b6f7..00000000 Binary files a/static/icons/06004C3D.png and /dev/null differ diff --git a/static/icons/06004C3E.png b/static/icons/06004C3E.png deleted file mode 100755 index 2cf12ef9..00000000 Binary files a/static/icons/06004C3E.png and /dev/null differ diff --git a/static/icons/06004C3F.png b/static/icons/06004C3F.png deleted file mode 100755 index ca21c619..00000000 Binary files a/static/icons/06004C3F.png and /dev/null differ diff --git a/static/icons/06004C40.png b/static/icons/06004C40.png deleted file mode 100755 index 6cd553bd..00000000 Binary files a/static/icons/06004C40.png and /dev/null differ diff --git a/static/icons/06004C41.png b/static/icons/06004C41.png deleted file mode 100755 index e5dc68db..00000000 Binary files a/static/icons/06004C41.png and /dev/null differ diff --git a/static/icons/06004C42.png b/static/icons/06004C42.png deleted file mode 100755 index 06f6d11b..00000000 Binary files a/static/icons/06004C42.png and /dev/null differ diff --git a/static/icons/06004C43.png b/static/icons/06004C43.png deleted file mode 100755 index 9da51792..00000000 Binary files a/static/icons/06004C43.png and /dev/null differ diff --git a/static/icons/06004C44.png b/static/icons/06004C44.png deleted file mode 100755 index fdd32dac..00000000 Binary files a/static/icons/06004C44.png and /dev/null differ diff --git a/static/icons/06004C45.png b/static/icons/06004C45.png deleted file mode 100755 index 53720f62..00000000 Binary files a/static/icons/06004C45.png and /dev/null differ diff --git a/static/icons/06004C46.png b/static/icons/06004C46.png deleted file mode 100755 index 4ebc837b..00000000 Binary files a/static/icons/06004C46.png and /dev/null differ diff --git a/static/icons/06004C47.png b/static/icons/06004C47.png deleted file mode 100755 index 726f9070..00000000 Binary files a/static/icons/06004C47.png and /dev/null differ diff --git a/static/icons/06004C48.png b/static/icons/06004C48.png deleted file mode 100755 index 53551a18..00000000 Binary files a/static/icons/06004C48.png and /dev/null differ diff --git a/static/icons/06004C49.png b/static/icons/06004C49.png deleted file mode 100755 index 39fc55b1..00000000 Binary files a/static/icons/06004C49.png and /dev/null differ diff --git a/static/icons/06004C4A.png b/static/icons/06004C4A.png deleted file mode 100755 index 3454bb86..00000000 Binary files a/static/icons/06004C4A.png and /dev/null differ diff --git a/static/icons/06004C4B.png b/static/icons/06004C4B.png deleted file mode 100755 index 42ab3ed2..00000000 Binary files a/static/icons/06004C4B.png and /dev/null differ diff --git a/static/icons/06004C4C.png b/static/icons/06004C4C.png deleted file mode 100755 index 138e27ae..00000000 Binary files a/static/icons/06004C4C.png and /dev/null differ diff --git a/static/icons/06004C4D.png b/static/icons/06004C4D.png deleted file mode 100755 index e7c424cb..00000000 Binary files a/static/icons/06004C4D.png and /dev/null differ diff --git a/static/icons/06004C4E.png b/static/icons/06004C4E.png deleted file mode 100755 index 7ab613e0..00000000 Binary files a/static/icons/06004C4E.png and /dev/null differ diff --git a/static/icons/06004C5F.png b/static/icons/06004C5F.png deleted file mode 100755 index 00419dab..00000000 Binary files a/static/icons/06004C5F.png and /dev/null differ diff --git a/static/icons/06004C60.png b/static/icons/06004C60.png deleted file mode 100755 index 77995d7a..00000000 Binary files a/static/icons/06004C60.png and /dev/null differ diff --git a/static/icons/06004C61.png b/static/icons/06004C61.png deleted file mode 100755 index 77995d7a..00000000 Binary files a/static/icons/06004C61.png and /dev/null differ diff --git a/static/icons/06004C62.png b/static/icons/06004C62.png deleted file mode 100755 index 77995d7a..00000000 Binary files a/static/icons/06004C62.png and /dev/null differ diff --git a/static/icons/06004C63.png b/static/icons/06004C63.png deleted file mode 100755 index a3087244..00000000 Binary files a/static/icons/06004C63.png and /dev/null differ diff --git a/static/icons/06004C64.png b/static/icons/06004C64.png deleted file mode 100755 index deb453f5..00000000 Binary files a/static/icons/06004C64.png and /dev/null differ diff --git a/static/icons/06004C65.png b/static/icons/06004C65.png deleted file mode 100755 index 1517e0fe..00000000 Binary files a/static/icons/06004C65.png and /dev/null differ diff --git a/static/icons/06004C66.png b/static/icons/06004C66.png deleted file mode 100755 index 7dc0fce2..00000000 Binary files a/static/icons/06004C66.png and /dev/null differ diff --git a/static/icons/06004C67.png b/static/icons/06004C67.png deleted file mode 100755 index 8d54be68..00000000 Binary files a/static/icons/06004C67.png and /dev/null differ diff --git a/static/icons/06004C68.png b/static/icons/06004C68.png deleted file mode 100755 index ae47765b..00000000 Binary files a/static/icons/06004C68.png and /dev/null differ diff --git a/static/icons/06004C69.png b/static/icons/06004C69.png deleted file mode 100755 index e4bdbf20..00000000 Binary files a/static/icons/06004C69.png and /dev/null differ diff --git a/static/icons/06004C6A.png b/static/icons/06004C6A.png deleted file mode 100755 index abb7e99c..00000000 Binary files a/static/icons/06004C6A.png and /dev/null differ diff --git a/static/icons/06004C6B.png b/static/icons/06004C6B.png deleted file mode 100755 index 4680faeb..00000000 Binary files a/static/icons/06004C6B.png and /dev/null differ diff --git a/static/icons/06004C6C.png b/static/icons/06004C6C.png deleted file mode 100755 index c44a2343..00000000 Binary files a/static/icons/06004C6C.png and /dev/null differ diff --git a/static/icons/06004C6D.png b/static/icons/06004C6D.png deleted file mode 100755 index 06c946f1..00000000 Binary files a/static/icons/06004C6D.png and /dev/null differ diff --git a/static/icons/06004C6E.png b/static/icons/06004C6E.png deleted file mode 100755 index 1627be3a..00000000 Binary files a/static/icons/06004C6E.png and /dev/null differ diff --git a/static/icons/06004C6F.png b/static/icons/06004C6F.png deleted file mode 100755 index 6aea97af..00000000 Binary files a/static/icons/06004C6F.png and /dev/null differ diff --git a/static/icons/06004C70.png b/static/icons/06004C70.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C70.png and /dev/null differ diff --git a/static/icons/06004C71.png b/static/icons/06004C71.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C71.png and /dev/null differ diff --git a/static/icons/06004C72.png b/static/icons/06004C72.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C72.png and /dev/null differ diff --git a/static/icons/06004C73.png b/static/icons/06004C73.png deleted file mode 100755 index 0176d97f..00000000 Binary files a/static/icons/06004C73.png and /dev/null differ diff --git a/static/icons/06004C74.png b/static/icons/06004C74.png deleted file mode 100755 index ec27ccda..00000000 Binary files a/static/icons/06004C74.png and /dev/null differ diff --git a/static/icons/06004C75.png b/static/icons/06004C75.png deleted file mode 100755 index e7ba1e17..00000000 Binary files a/static/icons/06004C75.png and /dev/null differ diff --git a/static/icons/06004C76.png b/static/icons/06004C76.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C76.png and /dev/null differ diff --git a/static/icons/06004C77.png b/static/icons/06004C77.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C77.png and /dev/null differ diff --git a/static/icons/06004C78.png b/static/icons/06004C78.png deleted file mode 100755 index 4a03c75d..00000000 Binary files a/static/icons/06004C78.png and /dev/null differ diff --git a/static/icons/06004C79.png b/static/icons/06004C79.png deleted file mode 100755 index 2e074906..00000000 Binary files a/static/icons/06004C79.png and /dev/null differ diff --git a/static/icons/06004C7A.png b/static/icons/06004C7A.png deleted file mode 100755 index de551df3..00000000 Binary files a/static/icons/06004C7A.png and /dev/null differ diff --git a/static/icons/06004C7B.png b/static/icons/06004C7B.png deleted file mode 100755 index 531dc93e..00000000 Binary files a/static/icons/06004C7B.png and /dev/null differ diff --git a/static/icons/06004C7C.png b/static/icons/06004C7C.png deleted file mode 100755 index 185136be..00000000 Binary files a/static/icons/06004C7C.png and /dev/null differ diff --git a/static/icons/06004C7D.png b/static/icons/06004C7D.png deleted file mode 100755 index 3baa1cac..00000000 Binary files a/static/icons/06004C7D.png and /dev/null differ diff --git a/static/icons/06004C7E.png b/static/icons/06004C7E.png deleted file mode 100755 index eb6243df..00000000 Binary files a/static/icons/06004C7E.png and /dev/null differ diff --git a/static/icons/06004C7F.png b/static/icons/06004C7F.png deleted file mode 100755 index 6df47850..00000000 Binary files a/static/icons/06004C7F.png and /dev/null differ diff --git a/static/icons/06004C80.png b/static/icons/06004C80.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C80.png and /dev/null differ diff --git a/static/icons/06004C81.png b/static/icons/06004C81.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C81.png and /dev/null differ diff --git a/static/icons/06004C82.png b/static/icons/06004C82.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C82.png and /dev/null differ diff --git a/static/icons/06004C83.png b/static/icons/06004C83.png deleted file mode 100755 index ba9fcaa1..00000000 Binary files a/static/icons/06004C83.png and /dev/null differ diff --git a/static/icons/06004C84.png b/static/icons/06004C84.png deleted file mode 100755 index 85cd9584..00000000 Binary files a/static/icons/06004C84.png and /dev/null differ diff --git a/static/icons/06004C85.png b/static/icons/06004C85.png deleted file mode 100755 index dd68df75..00000000 Binary files a/static/icons/06004C85.png and /dev/null differ diff --git a/static/icons/06004C86.png b/static/icons/06004C86.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C86.png and /dev/null differ diff --git a/static/icons/06004C87.png b/static/icons/06004C87.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C87.png and /dev/null differ diff --git a/static/icons/06004C88.png b/static/icons/06004C88.png deleted file mode 100755 index 3a5b4a29..00000000 Binary files a/static/icons/06004C88.png and /dev/null differ diff --git a/static/icons/06004C89.png b/static/icons/06004C89.png deleted file mode 100755 index 9f770f05..00000000 Binary files a/static/icons/06004C89.png and /dev/null differ diff --git a/static/icons/06004C8A.png b/static/icons/06004C8A.png deleted file mode 100755 index 7b5dea33..00000000 Binary files a/static/icons/06004C8A.png and /dev/null differ diff --git a/static/icons/06004C8B.png b/static/icons/06004C8B.png deleted file mode 100755 index b1754f6b..00000000 Binary files a/static/icons/06004C8B.png and /dev/null differ diff --git a/static/icons/06004C8C.png b/static/icons/06004C8C.png deleted file mode 100755 index 63767d90..00000000 Binary files a/static/icons/06004C8C.png and /dev/null differ diff --git a/static/icons/06004C8D.png b/static/icons/06004C8D.png deleted file mode 100755 index 915aa9aa..00000000 Binary files a/static/icons/06004C8D.png and /dev/null differ diff --git a/static/icons/06004C8E.png b/static/icons/06004C8E.png deleted file mode 100755 index c0d06fdc..00000000 Binary files a/static/icons/06004C8E.png and /dev/null differ diff --git a/static/icons/06004C8F.png b/static/icons/06004C8F.png deleted file mode 100755 index 12c559f4..00000000 Binary files a/static/icons/06004C8F.png and /dev/null differ diff --git a/static/icons/06004C90.png b/static/icons/06004C90.png deleted file mode 100755 index 18279da9..00000000 Binary files a/static/icons/06004C90.png and /dev/null differ diff --git a/static/icons/06004C91.png b/static/icons/06004C91.png deleted file mode 100755 index cc396029..00000000 Binary files a/static/icons/06004C91.png and /dev/null differ diff --git a/static/icons/06004C92.png b/static/icons/06004C92.png deleted file mode 100755 index 8836786f..00000000 Binary files a/static/icons/06004C92.png and /dev/null differ diff --git a/static/icons/06004C93.png b/static/icons/06004C93.png deleted file mode 100755 index bd849862..00000000 Binary files a/static/icons/06004C93.png and /dev/null differ diff --git a/static/icons/06004C94.png b/static/icons/06004C94.png deleted file mode 100755 index e8378fb0..00000000 Binary files a/static/icons/06004C94.png and /dev/null differ diff --git a/static/icons/06004C95.png b/static/icons/06004C95.png deleted file mode 100755 index 3c21322b..00000000 Binary files a/static/icons/06004C95.png and /dev/null differ diff --git a/static/icons/06004C96.png b/static/icons/06004C96.png deleted file mode 100755 index a46a92df..00000000 Binary files a/static/icons/06004C96.png and /dev/null differ diff --git a/static/icons/06004C97.png b/static/icons/06004C97.png deleted file mode 100755 index fd52468a..00000000 Binary files a/static/icons/06004C97.png and /dev/null differ diff --git a/static/icons/06004C98.png b/static/icons/06004C98.png deleted file mode 100755 index 79694c56..00000000 Binary files a/static/icons/06004C98.png and /dev/null differ diff --git a/static/icons/06004C99.png b/static/icons/06004C99.png deleted file mode 100755 index d353a69c..00000000 Binary files a/static/icons/06004C99.png and /dev/null differ diff --git a/static/icons/06004C9A.png b/static/icons/06004C9A.png deleted file mode 100755 index 4d349cb7..00000000 Binary files a/static/icons/06004C9A.png and /dev/null differ diff --git a/static/icons/06004C9B.png b/static/icons/06004C9B.png deleted file mode 100755 index 67418cf5..00000000 Binary files a/static/icons/06004C9B.png and /dev/null differ diff --git a/static/icons/06004C9C.png b/static/icons/06004C9C.png deleted file mode 100755 index 60826c95..00000000 Binary files a/static/icons/06004C9C.png and /dev/null differ diff --git a/static/icons/06004C9D.png b/static/icons/06004C9D.png deleted file mode 100755 index f7e7d7a3..00000000 Binary files a/static/icons/06004C9D.png and /dev/null differ diff --git a/static/icons/06004C9E.png b/static/icons/06004C9E.png deleted file mode 100755 index 0798a81f..00000000 Binary files a/static/icons/06004C9E.png and /dev/null differ diff --git a/static/icons/06004C9F.png b/static/icons/06004C9F.png deleted file mode 100755 index f1f81088..00000000 Binary files a/static/icons/06004C9F.png and /dev/null differ diff --git a/static/icons/06004CA0.png b/static/icons/06004CA0.png deleted file mode 100755 index b5356c92..00000000 Binary files a/static/icons/06004CA0.png and /dev/null differ diff --git a/static/icons/06004CA1.png b/static/icons/06004CA1.png deleted file mode 100755 index 7df5c454..00000000 Binary files a/static/icons/06004CA1.png and /dev/null differ diff --git a/static/icons/06004CA2.png b/static/icons/06004CA2.png deleted file mode 100755 index 5726828c..00000000 Binary files a/static/icons/06004CA2.png and /dev/null differ diff --git a/static/icons/06004CA3.png b/static/icons/06004CA3.png deleted file mode 100755 index 9b57fdd1..00000000 Binary files a/static/icons/06004CA3.png and /dev/null differ diff --git a/static/icons/06004CA4.png b/static/icons/06004CA4.png deleted file mode 100755 index 5b680fc9..00000000 Binary files a/static/icons/06004CA4.png and /dev/null differ diff --git a/static/icons/06004CA5.png b/static/icons/06004CA5.png deleted file mode 100755 index ebbdae16..00000000 Binary files a/static/icons/06004CA5.png and /dev/null differ diff --git a/static/icons/06004CA6.png b/static/icons/06004CA6.png deleted file mode 100755 index e5af50ae..00000000 Binary files a/static/icons/06004CA6.png and /dev/null differ diff --git a/static/icons/06004CA7.png b/static/icons/06004CA7.png deleted file mode 100755 index f240094e..00000000 Binary files a/static/icons/06004CA7.png and /dev/null differ diff --git a/static/icons/06004CA8.png b/static/icons/06004CA8.png deleted file mode 100755 index 7588fd53..00000000 Binary files a/static/icons/06004CA8.png and /dev/null differ diff --git a/static/icons/06004CA9.png b/static/icons/06004CA9.png deleted file mode 100755 index 85f8efac..00000000 Binary files a/static/icons/06004CA9.png and /dev/null differ diff --git a/static/icons/06004CAA.png b/static/icons/06004CAA.png deleted file mode 100755 index fd753e6d..00000000 Binary files a/static/icons/06004CAA.png and /dev/null differ diff --git a/static/icons/06004CAB.png b/static/icons/06004CAB.png deleted file mode 100755 index 08478908..00000000 Binary files a/static/icons/06004CAB.png and /dev/null differ diff --git a/static/icons/06004CAC.png b/static/icons/06004CAC.png deleted file mode 100755 index 08f2df95..00000000 Binary files a/static/icons/06004CAC.png and /dev/null differ diff --git a/static/icons/06004CAD.png b/static/icons/06004CAD.png deleted file mode 100755 index 6e517e79..00000000 Binary files a/static/icons/06004CAD.png and /dev/null differ diff --git a/static/icons/06004CAE.png b/static/icons/06004CAE.png deleted file mode 100755 index 58e544b4..00000000 Binary files a/static/icons/06004CAE.png and /dev/null differ diff --git a/static/icons/06004CAF.png b/static/icons/06004CAF.png deleted file mode 100755 index 2d69fc1f..00000000 Binary files a/static/icons/06004CAF.png and /dev/null differ diff --git a/static/icons/06004CB0.png b/static/icons/06004CB0.png deleted file mode 100755 index 2449f43d..00000000 Binary files a/static/icons/06004CB0.png and /dev/null differ diff --git a/static/icons/06004CB1.png b/static/icons/06004CB1.png deleted file mode 100755 index a850a0d7..00000000 Binary files a/static/icons/06004CB1.png and /dev/null differ diff --git a/static/icons/06004CB2.png b/static/icons/06004CB2.png deleted file mode 100755 index 68aff885..00000000 Binary files a/static/icons/06004CB2.png and /dev/null differ diff --git a/static/icons/06004CB3.png b/static/icons/06004CB3.png deleted file mode 100755 index ff6b36b7..00000000 Binary files a/static/icons/06004CB3.png and /dev/null differ diff --git a/static/icons/06004CB5.png b/static/icons/06004CB5.png deleted file mode 100755 index c793476c..00000000 Binary files a/static/icons/06004CB5.png and /dev/null differ diff --git a/static/icons/06004CB6.png b/static/icons/06004CB6.png deleted file mode 100755 index b7629f9e..00000000 Binary files a/static/icons/06004CB6.png and /dev/null differ diff --git a/static/icons/06004CB7.png b/static/icons/06004CB7.png deleted file mode 100755 index 2fe691c4..00000000 Binary files a/static/icons/06004CB7.png and /dev/null differ diff --git a/static/icons/06004CB8.png b/static/icons/06004CB8.png deleted file mode 100755 index a9ff8288..00000000 Binary files a/static/icons/06004CB8.png and /dev/null differ diff --git a/static/icons/06004CB9.png b/static/icons/06004CB9.png deleted file mode 100755 index c6a071d7..00000000 Binary files a/static/icons/06004CB9.png and /dev/null differ diff --git a/static/icons/06004CBA.png b/static/icons/06004CBA.png deleted file mode 100755 index 6991148f..00000000 Binary files a/static/icons/06004CBA.png and /dev/null differ diff --git a/static/icons/06004CBB.png b/static/icons/06004CBB.png deleted file mode 100755 index 5a75494a..00000000 Binary files a/static/icons/06004CBB.png and /dev/null differ diff --git a/static/icons/06004CBC.png b/static/icons/06004CBC.png deleted file mode 100755 index 00bec772..00000000 Binary files a/static/icons/06004CBC.png and /dev/null differ diff --git a/static/icons/06004CBD.png b/static/icons/06004CBD.png deleted file mode 100755 index 028656e9..00000000 Binary files a/static/icons/06004CBD.png and /dev/null differ diff --git a/static/icons/06004CBE.png b/static/icons/06004CBE.png deleted file mode 100755 index aba4ae0d..00000000 Binary files a/static/icons/06004CBE.png and /dev/null differ diff --git a/static/icons/06004CBF.png b/static/icons/06004CBF.png deleted file mode 100755 index 9b8e7fb4..00000000 Binary files a/static/icons/06004CBF.png and /dev/null differ diff --git a/static/icons/06004CC0.png b/static/icons/06004CC0.png deleted file mode 100755 index fb093f29..00000000 Binary files a/static/icons/06004CC0.png and /dev/null differ diff --git a/static/icons/06004CC1.png b/static/icons/06004CC1.png deleted file mode 100755 index ffbe4d26..00000000 Binary files a/static/icons/06004CC1.png and /dev/null differ diff --git a/static/icons/06004CC2.png b/static/icons/06004CC2.png deleted file mode 100755 index 99fd8c35..00000000 Binary files a/static/icons/06004CC2.png and /dev/null differ diff --git a/static/icons/06004CC3.png b/static/icons/06004CC3.png deleted file mode 100755 index 31ba2c38..00000000 Binary files a/static/icons/06004CC3.png and /dev/null differ diff --git a/static/icons/06004CC4.png b/static/icons/06004CC4.png deleted file mode 100755 index 5445e1bb..00000000 Binary files a/static/icons/06004CC4.png and /dev/null differ diff --git a/static/icons/06004CC5.png b/static/icons/06004CC5.png deleted file mode 100755 index 75b70dac..00000000 Binary files a/static/icons/06004CC5.png and /dev/null differ diff --git a/static/icons/06004CC6.png b/static/icons/06004CC6.png deleted file mode 100755 index 49db8b16..00000000 Binary files a/static/icons/06004CC6.png and /dev/null differ diff --git a/static/icons/06004CC7.png b/static/icons/06004CC7.png deleted file mode 100755 index 0afa6d7e..00000000 Binary files a/static/icons/06004CC7.png and /dev/null differ diff --git a/static/icons/06004CC8.png b/static/icons/06004CC8.png deleted file mode 100755 index 182415ee..00000000 Binary files a/static/icons/06004CC8.png and /dev/null differ diff --git a/static/icons/06004CC9.png b/static/icons/06004CC9.png deleted file mode 100755 index 489f3329..00000000 Binary files a/static/icons/06004CC9.png and /dev/null differ diff --git a/static/icons/06004CCA.png b/static/icons/06004CCA.png deleted file mode 100755 index da320a86..00000000 Binary files a/static/icons/06004CCA.png and /dev/null differ diff --git a/static/icons/06004CDA.png b/static/icons/06004CDA.png deleted file mode 100755 index b10e1572..00000000 Binary files a/static/icons/06004CDA.png and /dev/null differ diff --git a/static/icons/06004CDB.png b/static/icons/06004CDB.png deleted file mode 100755 index 604ec430..00000000 Binary files a/static/icons/06004CDB.png and /dev/null differ diff --git a/static/icons/06004CDC.png b/static/icons/06004CDC.png deleted file mode 100755 index 91658014..00000000 Binary files a/static/icons/06004CDC.png and /dev/null differ diff --git a/static/icons/06004CDD.png b/static/icons/06004CDD.png deleted file mode 100755 index 45196489..00000000 Binary files a/static/icons/06004CDD.png and /dev/null differ diff --git a/static/icons/06004CDE.png b/static/icons/06004CDE.png deleted file mode 100755 index 6b355ae6..00000000 Binary files a/static/icons/06004CDE.png and /dev/null differ diff --git a/static/icons/06004CDF.png b/static/icons/06004CDF.png deleted file mode 100755 index 59203892..00000000 Binary files a/static/icons/06004CDF.png and /dev/null differ diff --git a/static/icons/06004CE4.png b/static/icons/06004CE4.png deleted file mode 100755 index 155218fb..00000000 Binary files a/static/icons/06004CE4.png and /dev/null differ diff --git a/static/icons/06004CE5.png b/static/icons/06004CE5.png deleted file mode 100755 index 910c8ce3..00000000 Binary files a/static/icons/06004CE5.png and /dev/null differ diff --git a/static/icons/06004CE6.png b/static/icons/06004CE6.png deleted file mode 100755 index 8c2522e6..00000000 Binary files a/static/icons/06004CE6.png and /dev/null differ diff --git a/static/icons/06004CE7.png b/static/icons/06004CE7.png deleted file mode 100755 index bf0db2fc..00000000 Binary files a/static/icons/06004CE7.png and /dev/null differ diff --git a/static/icons/06004CE8.png b/static/icons/06004CE8.png deleted file mode 100755 index b064cf43..00000000 Binary files a/static/icons/06004CE8.png and /dev/null differ diff --git a/static/icons/06004CE9.png b/static/icons/06004CE9.png deleted file mode 100755 index eb8e25fd..00000000 Binary files a/static/icons/06004CE9.png and /dev/null differ diff --git a/static/icons/06004CEA.png b/static/icons/06004CEA.png deleted file mode 100755 index bcd59e31..00000000 Binary files a/static/icons/06004CEA.png and /dev/null differ diff --git a/static/icons/06004CEB.png b/static/icons/06004CEB.png deleted file mode 100755 index 5c8afb2d..00000000 Binary files a/static/icons/06004CEB.png and /dev/null differ diff --git a/static/icons/06004CEC.png b/static/icons/06004CEC.png deleted file mode 100755 index d1832ef6..00000000 Binary files a/static/icons/06004CEC.png and /dev/null differ diff --git a/static/icons/06004CED.png b/static/icons/06004CED.png deleted file mode 100755 index 1056e0d9..00000000 Binary files a/static/icons/06004CED.png and /dev/null differ diff --git a/static/icons/06004CEE.png b/static/icons/06004CEE.png deleted file mode 100755 index 72721784..00000000 Binary files a/static/icons/06004CEE.png and /dev/null differ diff --git a/static/icons/06004CEF.png b/static/icons/06004CEF.png deleted file mode 100755 index c757a39f..00000000 Binary files a/static/icons/06004CEF.png and /dev/null differ diff --git a/static/icons/06004CF0.png b/static/icons/06004CF0.png deleted file mode 100755 index 3a4bb6ef..00000000 Binary files a/static/icons/06004CF0.png and /dev/null differ diff --git a/static/icons/06004CF1.png b/static/icons/06004CF1.png deleted file mode 100755 index 83bc7ff4..00000000 Binary files a/static/icons/06004CF1.png and /dev/null differ diff --git a/static/icons/06004CF2.png b/static/icons/06004CF2.png deleted file mode 100755 index 6d0ddc2e..00000000 Binary files a/static/icons/06004CF2.png and /dev/null differ diff --git a/static/icons/06004CF3.png b/static/icons/06004CF3.png deleted file mode 100755 index 8b9a18c4..00000000 Binary files a/static/icons/06004CF3.png and /dev/null differ diff --git a/static/icons/06004CF4.png b/static/icons/06004CF4.png deleted file mode 100755 index 08d75a1e..00000000 Binary files a/static/icons/06004CF4.png and /dev/null differ diff --git a/static/icons/06004CF5.png b/static/icons/06004CF5.png deleted file mode 100755 index 3892298c..00000000 Binary files a/static/icons/06004CF5.png and /dev/null differ diff --git a/static/icons/06004CF6.png b/static/icons/06004CF6.png deleted file mode 100755 index cfe87fcd..00000000 Binary files a/static/icons/06004CF6.png and /dev/null differ diff --git a/static/icons/06004CF7.png b/static/icons/06004CF7.png deleted file mode 100755 index 0635d2a3..00000000 Binary files a/static/icons/06004CF7.png and /dev/null differ diff --git a/static/icons/06004CF8.png b/static/icons/06004CF8.png deleted file mode 100755 index 2f4a43db..00000000 Binary files a/static/icons/06004CF8.png and /dev/null differ diff --git a/static/icons/06004CF9.png b/static/icons/06004CF9.png deleted file mode 100755 index e6e24c78..00000000 Binary files a/static/icons/06004CF9.png and /dev/null differ diff --git a/static/icons/06004CFA.png b/static/icons/06004CFA.png deleted file mode 100755 index 3af10bac..00000000 Binary files a/static/icons/06004CFA.png and /dev/null differ diff --git a/static/icons/06004CFB.png b/static/icons/06004CFB.png deleted file mode 100755 index eaaab6f6..00000000 Binary files a/static/icons/06004CFB.png and /dev/null differ diff --git a/static/icons/06004CFC.png b/static/icons/06004CFC.png deleted file mode 100755 index f33b9963..00000000 Binary files a/static/icons/06004CFC.png and /dev/null differ diff --git a/static/icons/06004CFD.png b/static/icons/06004CFD.png deleted file mode 100755 index bce98001..00000000 Binary files a/static/icons/06004CFD.png and /dev/null differ diff --git a/static/icons/06004CFE.png b/static/icons/06004CFE.png deleted file mode 100755 index 9553102e..00000000 Binary files a/static/icons/06004CFE.png and /dev/null differ diff --git a/static/icons/06004CFF.png b/static/icons/06004CFF.png deleted file mode 100755 index de2f359a..00000000 Binary files a/static/icons/06004CFF.png and /dev/null differ diff --git a/static/icons/06004D00.png b/static/icons/06004D00.png deleted file mode 100755 index 3174a1f8..00000000 Binary files a/static/icons/06004D00.png and /dev/null differ diff --git a/static/icons/06004D01.png b/static/icons/06004D01.png deleted file mode 100755 index db5987d0..00000000 Binary files a/static/icons/06004D01.png and /dev/null differ diff --git a/static/icons/06004D02.png b/static/icons/06004D02.png deleted file mode 100755 index fcad34ef..00000000 Binary files a/static/icons/06004D02.png and /dev/null differ diff --git a/static/icons/06004D03.png b/static/icons/06004D03.png deleted file mode 100755 index ba01988e..00000000 Binary files a/static/icons/06004D03.png and /dev/null differ diff --git a/static/icons/06004D04.png b/static/icons/06004D04.png deleted file mode 100755 index fcca27d0..00000000 Binary files a/static/icons/06004D04.png and /dev/null differ diff --git a/static/icons/06004D05.png b/static/icons/06004D05.png deleted file mode 100755 index 756f2648..00000000 Binary files a/static/icons/06004D05.png and /dev/null differ diff --git a/static/icons/06004D06.png b/static/icons/06004D06.png deleted file mode 100755 index 406b0d4e..00000000 Binary files a/static/icons/06004D06.png and /dev/null differ diff --git a/static/icons/06004D07.png b/static/icons/06004D07.png deleted file mode 100755 index ed2c7ac2..00000000 Binary files a/static/icons/06004D07.png and /dev/null differ diff --git a/static/icons/06004D08.png b/static/icons/06004D08.png deleted file mode 100755 index 830e80ad..00000000 Binary files a/static/icons/06004D08.png and /dev/null differ diff --git a/static/icons/06004D09.png b/static/icons/06004D09.png deleted file mode 100755 index 2f8bf39e..00000000 Binary files a/static/icons/06004D09.png and /dev/null differ diff --git a/static/icons/06004D0A.png b/static/icons/06004D0A.png deleted file mode 100755 index c145fa83..00000000 Binary files a/static/icons/06004D0A.png and /dev/null differ diff --git a/static/icons/06004D0B.png b/static/icons/06004D0B.png deleted file mode 100755 index fe9b2b80..00000000 Binary files a/static/icons/06004D0B.png and /dev/null differ diff --git a/static/icons/06004D0C.png b/static/icons/06004D0C.png deleted file mode 100755 index ec41a84a..00000000 Binary files a/static/icons/06004D0C.png and /dev/null differ diff --git a/static/icons/06004D0D.png b/static/icons/06004D0D.png deleted file mode 100755 index 484f8f88..00000000 Binary files a/static/icons/06004D0D.png and /dev/null differ diff --git a/static/icons/06004D10.png b/static/icons/06004D10.png deleted file mode 100755 index 50f52cac..00000000 Binary files a/static/icons/06004D10.png and /dev/null differ diff --git a/static/icons/06004D11.png b/static/icons/06004D11.png deleted file mode 100755 index e9c5b76f..00000000 Binary files a/static/icons/06004D11.png and /dev/null differ diff --git a/static/icons/06004D15.png b/static/icons/06004D15.png deleted file mode 100755 index 30112f19..00000000 Binary files a/static/icons/06004D15.png and /dev/null differ diff --git a/static/icons/06004D16.png b/static/icons/06004D16.png deleted file mode 100755 index 4b59eabf..00000000 Binary files a/static/icons/06004D16.png and /dev/null differ diff --git a/static/icons/06004D17.png b/static/icons/06004D17.png deleted file mode 100755 index e893bd92..00000000 Binary files a/static/icons/06004D17.png and /dev/null differ diff --git a/static/icons/06004D18.png b/static/icons/06004D18.png deleted file mode 100755 index f273d0b0..00000000 Binary files a/static/icons/06004D18.png and /dev/null differ diff --git a/static/icons/06004D19.png b/static/icons/06004D19.png deleted file mode 100755 index 49e62afa..00000000 Binary files a/static/icons/06004D19.png and /dev/null differ diff --git a/static/icons/06004D1C.png b/static/icons/06004D1C.png deleted file mode 100755 index 110d09e5..00000000 Binary files a/static/icons/06004D1C.png and /dev/null differ diff --git a/static/icons/06004D1D.png b/static/icons/06004D1D.png deleted file mode 100755 index d0944cb2..00000000 Binary files a/static/icons/06004D1D.png and /dev/null differ diff --git a/static/icons/06004D1E.png b/static/icons/06004D1E.png deleted file mode 100755 index e5d40b4e..00000000 Binary files a/static/icons/06004D1E.png and /dev/null differ diff --git a/static/icons/06004D1F.png b/static/icons/06004D1F.png deleted file mode 100755 index 56bfe8f2..00000000 Binary files a/static/icons/06004D1F.png and /dev/null differ diff --git a/static/icons/06004D20.png b/static/icons/06004D20.png deleted file mode 100755 index a0e02906..00000000 Binary files a/static/icons/06004D20.png and /dev/null differ diff --git a/static/icons/06004D21.png b/static/icons/06004D21.png deleted file mode 100755 index 84088a5c..00000000 Binary files a/static/icons/06004D21.png and /dev/null differ diff --git a/static/icons/06004D22.png b/static/icons/06004D22.png deleted file mode 100755 index a67d8bd1..00000000 Binary files a/static/icons/06004D22.png and /dev/null differ diff --git a/static/icons/06004D23.png b/static/icons/06004D23.png deleted file mode 100755 index eeb29ec8..00000000 Binary files a/static/icons/06004D23.png and /dev/null differ diff --git a/static/icons/06004D24.png b/static/icons/06004D24.png deleted file mode 100755 index a03bc2f5..00000000 Binary files a/static/icons/06004D24.png and /dev/null differ diff --git a/static/icons/06004D25.png b/static/icons/06004D25.png deleted file mode 100755 index d1a79124..00000000 Binary files a/static/icons/06004D25.png and /dev/null differ diff --git a/static/icons/06004D26.png b/static/icons/06004D26.png deleted file mode 100755 index d870f967..00000000 Binary files a/static/icons/06004D26.png and /dev/null differ diff --git a/static/icons/06004D27.png b/static/icons/06004D27.png deleted file mode 100755 index 1cc7276d..00000000 Binary files a/static/icons/06004D27.png and /dev/null differ diff --git a/static/icons/06004D28.png b/static/icons/06004D28.png deleted file mode 100755 index b373bfa2..00000000 Binary files a/static/icons/06004D28.png and /dev/null differ diff --git a/static/icons/06004D29.png b/static/icons/06004D29.png deleted file mode 100755 index 58c0fbea..00000000 Binary files a/static/icons/06004D29.png and /dev/null differ diff --git a/static/icons/06004D2A.png b/static/icons/06004D2A.png deleted file mode 100755 index 0b826ea5..00000000 Binary files a/static/icons/06004D2A.png and /dev/null differ diff --git a/static/icons/06004D2B.png b/static/icons/06004D2B.png deleted file mode 100755 index 549632c1..00000000 Binary files a/static/icons/06004D2B.png and /dev/null differ diff --git a/static/icons/06004D2C.png b/static/icons/06004D2C.png deleted file mode 100755 index 035f241c..00000000 Binary files a/static/icons/06004D2C.png and /dev/null differ diff --git a/static/icons/06004D2D.png b/static/icons/06004D2D.png deleted file mode 100755 index 3d27900c..00000000 Binary files a/static/icons/06004D2D.png and /dev/null differ diff --git a/static/icons/06004D2E.png b/static/icons/06004D2E.png deleted file mode 100755 index 85f38f86..00000000 Binary files a/static/icons/06004D2E.png and /dev/null differ diff --git a/static/icons/06004D2F.png b/static/icons/06004D2F.png deleted file mode 100755 index d5fd9e86..00000000 Binary files a/static/icons/06004D2F.png and /dev/null differ diff --git a/static/icons/06004D30.png b/static/icons/06004D30.png deleted file mode 100755 index e2840187..00000000 Binary files a/static/icons/06004D30.png and /dev/null differ diff --git a/static/icons/06004D31.png b/static/icons/06004D31.png deleted file mode 100755 index 0c1fbeaa..00000000 Binary files a/static/icons/06004D31.png and /dev/null differ diff --git a/static/icons/06004D32.png b/static/icons/06004D32.png deleted file mode 100755 index 3184753e..00000000 Binary files a/static/icons/06004D32.png and /dev/null differ diff --git a/static/icons/06004D33.png b/static/icons/06004D33.png deleted file mode 100755 index 5f0d5579..00000000 Binary files a/static/icons/06004D33.png and /dev/null differ diff --git a/static/icons/06004D34.png b/static/icons/06004D34.png deleted file mode 100755 index 46ff3ff1..00000000 Binary files a/static/icons/06004D34.png and /dev/null differ diff --git a/static/icons/06004D35.png b/static/icons/06004D35.png deleted file mode 100755 index ad52ede4..00000000 Binary files a/static/icons/06004D35.png and /dev/null differ diff --git a/static/icons/06004D36.png b/static/icons/06004D36.png deleted file mode 100755 index 54a9a0ef..00000000 Binary files a/static/icons/06004D36.png and /dev/null differ diff --git a/static/icons/06004D37.png b/static/icons/06004D37.png deleted file mode 100755 index ffd2628a..00000000 Binary files a/static/icons/06004D37.png and /dev/null differ diff --git a/static/icons/06004D38.png b/static/icons/06004D38.png deleted file mode 100755 index 91420673..00000000 Binary files a/static/icons/06004D38.png and /dev/null differ diff --git a/static/icons/06004D39.png b/static/icons/06004D39.png deleted file mode 100755 index d7676fbe..00000000 Binary files a/static/icons/06004D39.png and /dev/null differ diff --git a/static/icons/06004D3A.png b/static/icons/06004D3A.png deleted file mode 100755 index a6684341..00000000 Binary files a/static/icons/06004D3A.png and /dev/null differ diff --git a/static/icons/06004D3B.png b/static/icons/06004D3B.png deleted file mode 100755 index 071ff1ad..00000000 Binary files a/static/icons/06004D3B.png and /dev/null differ diff --git a/static/icons/06004D3C.png b/static/icons/06004D3C.png deleted file mode 100755 index d73089ae..00000000 Binary files a/static/icons/06004D3C.png and /dev/null differ diff --git a/static/icons/06004D3D.png b/static/icons/06004D3D.png deleted file mode 100755 index bc7901ea..00000000 Binary files a/static/icons/06004D3D.png and /dev/null differ diff --git a/static/icons/06004D3E.png b/static/icons/06004D3E.png deleted file mode 100755 index d67690ef..00000000 Binary files a/static/icons/06004D3E.png and /dev/null differ diff --git a/static/icons/06004D3F.png b/static/icons/06004D3F.png deleted file mode 100755 index ec24684e..00000000 Binary files a/static/icons/06004D3F.png and /dev/null differ diff --git a/static/icons/06004D40.png b/static/icons/06004D40.png deleted file mode 100755 index 821c3c67..00000000 Binary files a/static/icons/06004D40.png and /dev/null differ diff --git a/static/icons/06004D41.png b/static/icons/06004D41.png deleted file mode 100755 index 1a7476ed..00000000 Binary files a/static/icons/06004D41.png and /dev/null differ diff --git a/static/icons/06004D42.png b/static/icons/06004D42.png deleted file mode 100755 index 87ec34b8..00000000 Binary files a/static/icons/06004D42.png and /dev/null differ diff --git a/static/icons/06004D43.png b/static/icons/06004D43.png deleted file mode 100755 index 2ae22bdd..00000000 Binary files a/static/icons/06004D43.png and /dev/null differ diff --git a/static/icons/06004D44.png b/static/icons/06004D44.png deleted file mode 100755 index 3924bfd7..00000000 Binary files a/static/icons/06004D44.png and /dev/null differ diff --git a/static/icons/06004D45.png b/static/icons/06004D45.png deleted file mode 100755 index a287c4a7..00000000 Binary files a/static/icons/06004D45.png and /dev/null differ diff --git a/static/icons/06004D46.png b/static/icons/06004D46.png deleted file mode 100755 index 807521a3..00000000 Binary files a/static/icons/06004D46.png and /dev/null differ diff --git a/static/icons/06004D47.png b/static/icons/06004D47.png deleted file mode 100755 index fc295144..00000000 Binary files a/static/icons/06004D47.png and /dev/null differ diff --git a/static/icons/06004D48.png b/static/icons/06004D48.png deleted file mode 100755 index e0b9a505..00000000 Binary files a/static/icons/06004D48.png and /dev/null differ diff --git a/static/icons/06004D49.png b/static/icons/06004D49.png deleted file mode 100755 index a5dba701..00000000 Binary files a/static/icons/06004D49.png and /dev/null differ diff --git a/static/icons/06004D4A.png b/static/icons/06004D4A.png deleted file mode 100755 index b7d35198..00000000 Binary files a/static/icons/06004D4A.png and /dev/null differ diff --git a/static/icons/06004D4B.png b/static/icons/06004D4B.png deleted file mode 100755 index 6ccc0c39..00000000 Binary files a/static/icons/06004D4B.png and /dev/null differ diff --git a/static/icons/06004D4C.png b/static/icons/06004D4C.png deleted file mode 100755 index 699c627a..00000000 Binary files a/static/icons/06004D4C.png and /dev/null differ diff --git a/static/icons/06004D4D.png b/static/icons/06004D4D.png deleted file mode 100755 index 6b2d8a03..00000000 Binary files a/static/icons/06004D4D.png and /dev/null differ diff --git a/static/icons/06004D4E.png b/static/icons/06004D4E.png deleted file mode 100755 index 85f7b637..00000000 Binary files a/static/icons/06004D4E.png and /dev/null differ diff --git a/static/icons/06004D4F.png b/static/icons/06004D4F.png deleted file mode 100755 index 2e7eec7b..00000000 Binary files a/static/icons/06004D4F.png and /dev/null differ diff --git a/static/icons/06004D50.png b/static/icons/06004D50.png deleted file mode 100755 index 80c18307..00000000 Binary files a/static/icons/06004D50.png and /dev/null differ diff --git a/static/icons/06004D51.png b/static/icons/06004D51.png deleted file mode 100755 index 63f76368..00000000 Binary files a/static/icons/06004D51.png and /dev/null differ diff --git a/static/icons/06004D52.png b/static/icons/06004D52.png deleted file mode 100755 index 96ac1a30..00000000 Binary files a/static/icons/06004D52.png and /dev/null differ diff --git a/static/icons/06004D53.png b/static/icons/06004D53.png deleted file mode 100755 index e9a5c162..00000000 Binary files a/static/icons/06004D53.png and /dev/null differ diff --git a/static/icons/06004D54.png b/static/icons/06004D54.png deleted file mode 100755 index ba8f7306..00000000 Binary files a/static/icons/06004D54.png and /dev/null differ diff --git a/static/icons/06004D55.png b/static/icons/06004D55.png deleted file mode 100755 index 54163f55..00000000 Binary files a/static/icons/06004D55.png and /dev/null differ diff --git a/static/icons/06004D56.png b/static/icons/06004D56.png deleted file mode 100755 index 4d7a74c2..00000000 Binary files a/static/icons/06004D56.png and /dev/null differ diff --git a/static/icons/06004D57.png b/static/icons/06004D57.png deleted file mode 100755 index a9e2fe0a..00000000 Binary files a/static/icons/06004D57.png and /dev/null differ diff --git a/static/icons/06004D58.png b/static/icons/06004D58.png deleted file mode 100755 index 8d22a459..00000000 Binary files a/static/icons/06004D58.png and /dev/null differ diff --git a/static/icons/06004D59.png b/static/icons/06004D59.png deleted file mode 100755 index bd585a59..00000000 Binary files a/static/icons/06004D59.png and /dev/null differ diff --git a/static/icons/06004D5A.png b/static/icons/06004D5A.png deleted file mode 100755 index b8186f28..00000000 Binary files a/static/icons/06004D5A.png and /dev/null differ diff --git a/static/icons/06004D5B.png b/static/icons/06004D5B.png deleted file mode 100755 index 119d23dc..00000000 Binary files a/static/icons/06004D5B.png and /dev/null differ diff --git a/static/icons/06004D5C.png b/static/icons/06004D5C.png deleted file mode 100755 index 03f545f9..00000000 Binary files a/static/icons/06004D5C.png and /dev/null differ diff --git a/static/icons/06004D5D.png b/static/icons/06004D5D.png deleted file mode 100755 index ae5659fb..00000000 Binary files a/static/icons/06004D5D.png and /dev/null differ diff --git a/static/icons/06004D5E.png b/static/icons/06004D5E.png deleted file mode 100755 index fdc04b65..00000000 Binary files a/static/icons/06004D5E.png and /dev/null differ diff --git a/static/icons/06004D5F.png b/static/icons/06004D5F.png deleted file mode 100755 index b503dd84..00000000 Binary files a/static/icons/06004D5F.png and /dev/null differ diff --git a/static/icons/06004D60.png b/static/icons/06004D60.png deleted file mode 100755 index 5456ea48..00000000 Binary files a/static/icons/06004D60.png and /dev/null differ diff --git a/static/icons/06004D61.png b/static/icons/06004D61.png deleted file mode 100755 index 67a23fb2..00000000 Binary files a/static/icons/06004D61.png and /dev/null differ diff --git a/static/icons/06004D63.png b/static/icons/06004D63.png deleted file mode 100755 index fb10182a..00000000 Binary files a/static/icons/06004D63.png and /dev/null differ diff --git a/static/icons/06004D64.png b/static/icons/06004D64.png deleted file mode 100755 index b2bd1a59..00000000 Binary files a/static/icons/06004D64.png and /dev/null differ diff --git a/static/icons/06004D65.png b/static/icons/06004D65.png deleted file mode 100755 index 8b0eca64..00000000 Binary files a/static/icons/06004D65.png and /dev/null differ diff --git a/static/icons/06004D66.png b/static/icons/06004D66.png deleted file mode 100755 index d4c7531c..00000000 Binary files a/static/icons/06004D66.png and /dev/null differ diff --git a/static/icons/06004D67.png b/static/icons/06004D67.png deleted file mode 100755 index 6c0f1b36..00000000 Binary files a/static/icons/06004D67.png and /dev/null differ diff --git a/static/icons/06004D68.png b/static/icons/06004D68.png deleted file mode 100755 index 8d9f43e9..00000000 Binary files a/static/icons/06004D68.png and /dev/null differ diff --git a/static/icons/06004D69.png b/static/icons/06004D69.png deleted file mode 100755 index 948ecd4f..00000000 Binary files a/static/icons/06004D69.png and /dev/null differ diff --git a/static/icons/06004D6A.png b/static/icons/06004D6A.png deleted file mode 100755 index 6857ea4d..00000000 Binary files a/static/icons/06004D6A.png and /dev/null differ diff --git a/static/icons/06004D6B.png b/static/icons/06004D6B.png deleted file mode 100755 index 88eaa943..00000000 Binary files a/static/icons/06004D6B.png and /dev/null differ diff --git a/static/icons/06004D6C.png b/static/icons/06004D6C.png deleted file mode 100755 index 4b17b826..00000000 Binary files a/static/icons/06004D6C.png and /dev/null differ diff --git a/static/icons/06004D6D.png b/static/icons/06004D6D.png deleted file mode 100755 index aa9a358f..00000000 Binary files a/static/icons/06004D6D.png and /dev/null differ diff --git a/static/icons/06004D6E.png b/static/icons/06004D6E.png deleted file mode 100755 index a81a8f8b..00000000 Binary files a/static/icons/06004D6E.png and /dev/null differ diff --git a/static/icons/06004D6F.png b/static/icons/06004D6F.png deleted file mode 100755 index 163dd82e..00000000 Binary files a/static/icons/06004D6F.png and /dev/null differ diff --git a/static/icons/06004D70.png b/static/icons/06004D70.png deleted file mode 100755 index e0415f80..00000000 Binary files a/static/icons/06004D70.png and /dev/null differ diff --git a/static/icons/06004D71.png b/static/icons/06004D71.png deleted file mode 100755 index d33b526b..00000000 Binary files a/static/icons/06004D71.png and /dev/null differ diff --git a/static/icons/06004D72.png b/static/icons/06004D72.png deleted file mode 100755 index e6d0f0d7..00000000 Binary files a/static/icons/06004D72.png and /dev/null differ diff --git a/static/icons/06004D73.png b/static/icons/06004D73.png deleted file mode 100755 index 84249b5a..00000000 Binary files a/static/icons/06004D73.png and /dev/null differ diff --git a/static/icons/06004D74.png b/static/icons/06004D74.png deleted file mode 100755 index b052a6de..00000000 Binary files a/static/icons/06004D74.png and /dev/null differ diff --git a/static/icons/06004D75.png b/static/icons/06004D75.png deleted file mode 100755 index 09af1e33..00000000 Binary files a/static/icons/06004D75.png and /dev/null differ diff --git a/static/icons/06004D76.png b/static/icons/06004D76.png deleted file mode 100755 index b5f943f5..00000000 Binary files a/static/icons/06004D76.png and /dev/null differ diff --git a/static/icons/06004D77.png b/static/icons/06004D77.png deleted file mode 100755 index c31e653a..00000000 Binary files a/static/icons/06004D77.png and /dev/null differ diff --git a/static/icons/06004D78.png b/static/icons/06004D78.png deleted file mode 100755 index e451929e..00000000 Binary files a/static/icons/06004D78.png and /dev/null differ diff --git a/static/icons/06004D79.png b/static/icons/06004D79.png deleted file mode 100755 index 5fc6a477..00000000 Binary files a/static/icons/06004D79.png and /dev/null differ diff --git a/static/icons/06004D7A.png b/static/icons/06004D7A.png deleted file mode 100755 index c0df03da..00000000 Binary files a/static/icons/06004D7A.png and /dev/null differ diff --git a/static/icons/06004D7B.png b/static/icons/06004D7B.png deleted file mode 100755 index 2850cb0b..00000000 Binary files a/static/icons/06004D7B.png and /dev/null differ diff --git a/static/icons/06004D7C.png b/static/icons/06004D7C.png deleted file mode 100755 index aa34a224..00000000 Binary files a/static/icons/06004D7C.png and /dev/null differ diff --git a/static/icons/06004D7D.png b/static/icons/06004D7D.png deleted file mode 100755 index 2c8eb011..00000000 Binary files a/static/icons/06004D7D.png and /dev/null differ diff --git a/static/icons/06004D7E.png b/static/icons/06004D7E.png deleted file mode 100755 index 41ba002d..00000000 Binary files a/static/icons/06004D7E.png and /dev/null differ diff --git a/static/icons/06004D7F.png b/static/icons/06004D7F.png deleted file mode 100755 index c2387c08..00000000 Binary files a/static/icons/06004D7F.png and /dev/null differ diff --git a/static/icons/06004D80.png b/static/icons/06004D80.png deleted file mode 100755 index a5b10012..00000000 Binary files a/static/icons/06004D80.png and /dev/null differ diff --git a/static/icons/06004D81.png b/static/icons/06004D81.png deleted file mode 100755 index 8ba1f236..00000000 Binary files a/static/icons/06004D81.png and /dev/null differ diff --git a/static/icons/06004D82.png b/static/icons/06004D82.png deleted file mode 100755 index 27593bec..00000000 Binary files a/static/icons/06004D82.png and /dev/null differ diff --git a/static/icons/06004D83.png b/static/icons/06004D83.png deleted file mode 100755 index ccf5c650..00000000 Binary files a/static/icons/06004D83.png and /dev/null differ diff --git a/static/icons/06004D84.png b/static/icons/06004D84.png deleted file mode 100755 index 857c7d5c..00000000 Binary files a/static/icons/06004D84.png and /dev/null differ diff --git a/static/icons/06004D85.png b/static/icons/06004D85.png deleted file mode 100755 index d395a15d..00000000 Binary files a/static/icons/06004D85.png and /dev/null differ diff --git a/static/icons/06004D86.png b/static/icons/06004D86.png deleted file mode 100755 index ca504dec..00000000 Binary files a/static/icons/06004D86.png and /dev/null differ diff --git a/static/icons/06004D87.png b/static/icons/06004D87.png deleted file mode 100755 index b8cfa44a..00000000 Binary files a/static/icons/06004D87.png and /dev/null differ diff --git a/static/icons/06004D88.png b/static/icons/06004D88.png deleted file mode 100755 index 517c4095..00000000 Binary files a/static/icons/06004D88.png and /dev/null differ diff --git a/static/icons/06004D89.png b/static/icons/06004D89.png deleted file mode 100755 index a7f2c7f4..00000000 Binary files a/static/icons/06004D89.png and /dev/null differ diff --git a/static/icons/06004D8A.png b/static/icons/06004D8A.png deleted file mode 100755 index d18902a1..00000000 Binary files a/static/icons/06004D8A.png and /dev/null differ diff --git a/static/icons/06004D8B.png b/static/icons/06004D8B.png deleted file mode 100755 index 6b047d50..00000000 Binary files a/static/icons/06004D8B.png and /dev/null differ diff --git a/static/icons/06004D8D.png b/static/icons/06004D8D.png deleted file mode 100755 index 41e71c04..00000000 Binary files a/static/icons/06004D8D.png and /dev/null differ diff --git a/static/icons/06004D8E.png b/static/icons/06004D8E.png deleted file mode 100755 index 64da5126..00000000 Binary files a/static/icons/06004D8E.png and /dev/null differ diff --git a/static/icons/06004D92.png b/static/icons/06004D92.png deleted file mode 100755 index 367a377f..00000000 Binary files a/static/icons/06004D92.png and /dev/null differ diff --git a/static/icons/06004D94.png b/static/icons/06004D94.png deleted file mode 100755 index 50383fa8..00000000 Binary files a/static/icons/06004D94.png and /dev/null differ diff --git a/static/icons/06004D98.png b/static/icons/06004D98.png deleted file mode 100755 index c6f282ef..00000000 Binary files a/static/icons/06004D98.png and /dev/null differ diff --git a/static/icons/06004D9B.png b/static/icons/06004D9B.png deleted file mode 100755 index 49809c8a..00000000 Binary files a/static/icons/06004D9B.png and /dev/null differ diff --git a/static/icons/06004D9C.png b/static/icons/06004D9C.png deleted file mode 100755 index 4a2b81d0..00000000 Binary files a/static/icons/06004D9C.png and /dev/null differ diff --git a/static/icons/06004D9E.png b/static/icons/06004D9E.png deleted file mode 100755 index fb172951..00000000 Binary files a/static/icons/06004D9E.png and /dev/null differ diff --git a/static/icons/06004DA0.png b/static/icons/06004DA0.png deleted file mode 100755 index b4826ede..00000000 Binary files a/static/icons/06004DA0.png and /dev/null differ diff --git a/static/icons/06004DBC.png b/static/icons/06004DBC.png deleted file mode 100755 index b3339f66..00000000 Binary files a/static/icons/06004DBC.png and /dev/null differ diff --git a/static/icons/06004DC3.png b/static/icons/06004DC3.png deleted file mode 100755 index c5ee5567..00000000 Binary files a/static/icons/06004DC3.png and /dev/null differ diff --git a/static/icons/06004DC5.png b/static/icons/06004DC5.png deleted file mode 100755 index b3453a6b..00000000 Binary files a/static/icons/06004DC5.png and /dev/null differ diff --git a/static/icons/06004DD7.png b/static/icons/06004DD7.png deleted file mode 100755 index 10cdd730..00000000 Binary files a/static/icons/06004DD7.png and /dev/null differ diff --git a/static/icons/06004DE5.png b/static/icons/06004DE5.png deleted file mode 100755 index 36cc06c0..00000000 Binary files a/static/icons/06004DE5.png and /dev/null differ diff --git a/static/icons/06004E3F.png b/static/icons/06004E3F.png deleted file mode 100755 index a572dee3..00000000 Binary files a/static/icons/06004E3F.png and /dev/null differ diff --git a/static/icons/06004E62.png b/static/icons/06004E62.png deleted file mode 100755 index 4223d24e..00000000 Binary files a/static/icons/06004E62.png and /dev/null differ diff --git a/static/icons/06004E64.png b/static/icons/06004E64.png deleted file mode 100755 index 15e78643..00000000 Binary files a/static/icons/06004E64.png and /dev/null differ diff --git a/static/icons/06004F23.png b/static/icons/06004F23.png deleted file mode 100755 index bbd187ed..00000000 Binary files a/static/icons/06004F23.png and /dev/null differ diff --git a/static/icons/06004F25.png b/static/icons/06004F25.png deleted file mode 100755 index 9e95efee..00000000 Binary files a/static/icons/06004F25.png and /dev/null differ diff --git a/static/icons/06004FF1.png b/static/icons/06004FF1.png deleted file mode 100755 index 005c3438..00000000 Binary files a/static/icons/06004FF1.png and /dev/null differ diff --git a/static/icons/06004FF3.png b/static/icons/06004FF3.png deleted file mode 100755 index b49a5f21..00000000 Binary files a/static/icons/06004FF3.png and /dev/null differ diff --git a/static/icons/06004FF7.png b/static/icons/06004FF7.png deleted file mode 100755 index 42224da8..00000000 Binary files a/static/icons/06004FF7.png and /dev/null differ diff --git a/static/icons/06004FFC.png b/static/icons/06004FFC.png deleted file mode 100755 index 5650e6ff..00000000 Binary files a/static/icons/06004FFC.png and /dev/null differ diff --git a/static/icons/06005008.png b/static/icons/06005008.png deleted file mode 100755 index 71b4ad60..00000000 Binary files a/static/icons/06005008.png and /dev/null differ diff --git a/static/icons/06005017.png b/static/icons/06005017.png deleted file mode 100755 index 53f38964..00000000 Binary files a/static/icons/06005017.png and /dev/null differ diff --git a/static/icons/0600505A.png b/static/icons/0600505A.png deleted file mode 100755 index 493c7598..00000000 Binary files a/static/icons/0600505A.png and /dev/null differ diff --git a/static/icons/0600505C.png b/static/icons/0600505C.png deleted file mode 100755 index 99879838..00000000 Binary files a/static/icons/0600505C.png and /dev/null differ diff --git a/static/icons/0600507D.png b/static/icons/0600507D.png deleted file mode 100755 index 4ab69e21..00000000 Binary files a/static/icons/0600507D.png and /dev/null differ diff --git a/static/icons/0600507F.png b/static/icons/0600507F.png deleted file mode 100755 index ee0c6280..00000000 Binary files a/static/icons/0600507F.png and /dev/null differ diff --git a/static/icons/06005087.png b/static/icons/06005087.png deleted file mode 100755 index 30594d9b..00000000 Binary files a/static/icons/06005087.png and /dev/null differ diff --git a/static/icons/060050A5.png b/static/icons/060050A5.png deleted file mode 100755 index a6bf3cae..00000000 Binary files a/static/icons/060050A5.png and /dev/null differ diff --git a/static/icons/060050A7.png b/static/icons/060050A7.png deleted file mode 100755 index 161910d0..00000000 Binary files a/static/icons/060050A7.png and /dev/null differ diff --git a/static/icons/060050C3.png b/static/icons/060050C3.png deleted file mode 100755 index b1ad0c23..00000000 Binary files a/static/icons/060050C3.png and /dev/null differ diff --git a/static/icons/06005130.png b/static/icons/06005130.png deleted file mode 100755 index 1716ef5c..00000000 Binary files a/static/icons/06005130.png and /dev/null differ diff --git a/static/icons/0600513A.png b/static/icons/0600513A.png deleted file mode 100755 index eee950e4..00000000 Binary files a/static/icons/0600513A.png and /dev/null differ diff --git a/static/icons/06005146.png b/static/icons/06005146.png deleted file mode 100755 index 9802534c..00000000 Binary files a/static/icons/06005146.png and /dev/null differ diff --git a/static/icons/06005147.png b/static/icons/06005147.png deleted file mode 100755 index 1896c009..00000000 Binary files a/static/icons/06005147.png and /dev/null differ diff --git a/static/icons/06005149.png b/static/icons/06005149.png deleted file mode 100755 index f79a24c5..00000000 Binary files a/static/icons/06005149.png and /dev/null differ diff --git a/static/icons/060051A5.png b/static/icons/060051A5.png deleted file mode 100755 index ee030639..00000000 Binary files a/static/icons/060051A5.png and /dev/null differ diff --git a/static/icons/060051AF.png b/static/icons/060051AF.png deleted file mode 100755 index ece2a1d0..00000000 Binary files a/static/icons/060051AF.png and /dev/null differ diff --git a/static/icons/060051E6.png b/static/icons/060051E6.png deleted file mode 100755 index f9d56294..00000000 Binary files a/static/icons/060051E6.png and /dev/null differ diff --git a/static/icons/060051F6.png b/static/icons/060051F6.png deleted file mode 100755 index 045494a2..00000000 Binary files a/static/icons/060051F6.png and /dev/null differ diff --git a/static/icons/060051F8.png b/static/icons/060051F8.png deleted file mode 100755 index 6636d9a9..00000000 Binary files a/static/icons/060051F8.png and /dev/null differ diff --git a/static/icons/060051FA.png b/static/icons/060051FA.png deleted file mode 100755 index 8173ca1a..00000000 Binary files a/static/icons/060051FA.png and /dev/null differ diff --git a/static/icons/0600526A.png b/static/icons/0600526A.png deleted file mode 100755 index 7fb568b8..00000000 Binary files a/static/icons/0600526A.png and /dev/null differ diff --git a/static/icons/0600526C.png b/static/icons/0600526C.png deleted file mode 100755 index e73801f6..00000000 Binary files a/static/icons/0600526C.png and /dev/null differ diff --git a/static/icons/060052A7.png b/static/icons/060052A7.png deleted file mode 100755 index 87dfbbcb..00000000 Binary files a/static/icons/060052A7.png and /dev/null differ diff --git a/static/icons/060052B1.png b/static/icons/060052B1.png deleted file mode 100755 index cad7a356..00000000 Binary files a/static/icons/060052B1.png and /dev/null differ diff --git a/static/icons/060052B3.png b/static/icons/060052B3.png deleted file mode 100755 index 321c40a0..00000000 Binary files a/static/icons/060052B3.png and /dev/null differ diff --git a/static/icons/06005318.png b/static/icons/06005318.png deleted file mode 100755 index 7031b40f..00000000 Binary files a/static/icons/06005318.png and /dev/null differ diff --git a/static/icons/06005339.png b/static/icons/06005339.png deleted file mode 100755 index da1a8705..00000000 Binary files a/static/icons/06005339.png and /dev/null differ diff --git a/static/icons/060053B0.png b/static/icons/060053B0.png deleted file mode 100755 index 74fabab5..00000000 Binary files a/static/icons/060053B0.png and /dev/null differ diff --git a/static/icons/060054D6.png b/static/icons/060054D6.png deleted file mode 100755 index bf6c7c92..00000000 Binary files a/static/icons/060054D6.png and /dev/null differ diff --git a/static/icons/06005585.png b/static/icons/06005585.png deleted file mode 100755 index 3a42c7a4..00000000 Binary files a/static/icons/06005585.png and /dev/null differ diff --git a/static/icons/06005608.png b/static/icons/06005608.png deleted file mode 100755 index db0dc56b..00000000 Binary files a/static/icons/06005608.png and /dev/null differ diff --git a/static/icons/06005642.png b/static/icons/06005642.png deleted file mode 100755 index c78e3c91..00000000 Binary files a/static/icons/06005642.png and /dev/null differ diff --git a/static/icons/060056AA.png b/static/icons/060056AA.png deleted file mode 100755 index 47e4160b..00000000 Binary files a/static/icons/060056AA.png and /dev/null differ diff --git a/static/icons/06005706.png b/static/icons/06005706.png deleted file mode 100755 index 093e6a6e..00000000 Binary files a/static/icons/06005706.png and /dev/null differ diff --git a/static/icons/0600574F.png b/static/icons/0600574F.png deleted file mode 100755 index 7b2779cc..00000000 Binary files a/static/icons/0600574F.png and /dev/null differ diff --git a/static/icons/06005750.png b/static/icons/06005750.png deleted file mode 100755 index 26e7ae6c..00000000 Binary files a/static/icons/06005750.png and /dev/null differ diff --git a/static/icons/06005751.png b/static/icons/06005751.png deleted file mode 100755 index dbd931d7..00000000 Binary files a/static/icons/06005751.png and /dev/null differ diff --git a/static/icons/06005752.png b/static/icons/06005752.png deleted file mode 100755 index efbb7a33..00000000 Binary files a/static/icons/06005752.png and /dev/null differ diff --git a/static/icons/06005753.png b/static/icons/06005753.png deleted file mode 100755 index db71ffd8..00000000 Binary files a/static/icons/06005753.png and /dev/null differ diff --git a/static/icons/06005754.png b/static/icons/06005754.png deleted file mode 100755 index 2cc00871..00000000 Binary files a/static/icons/06005754.png and /dev/null differ diff --git a/static/icons/06005767.png b/static/icons/06005767.png deleted file mode 100755 index 2795c025..00000000 Binary files a/static/icons/06005767.png and /dev/null differ diff --git a/static/icons/0600576A.png b/static/icons/0600576A.png deleted file mode 100755 index 0a6c034c..00000000 Binary files a/static/icons/0600576A.png and /dev/null differ diff --git a/static/icons/0600576B.png b/static/icons/0600576B.png deleted file mode 100755 index 7d63b693..00000000 Binary files a/static/icons/0600576B.png and /dev/null differ diff --git a/static/icons/0600576C.png b/static/icons/0600576C.png deleted file mode 100755 index c7378faf..00000000 Binary files a/static/icons/0600576C.png and /dev/null differ diff --git a/static/icons/0600576D.png b/static/icons/0600576D.png deleted file mode 100755 index 4281f00e..00000000 Binary files a/static/icons/0600576D.png and /dev/null differ diff --git a/static/icons/0600576E.png b/static/icons/0600576E.png deleted file mode 100755 index 29872dca..00000000 Binary files a/static/icons/0600576E.png and /dev/null differ diff --git a/static/icons/0600576F.png b/static/icons/0600576F.png deleted file mode 100755 index cef4121e..00000000 Binary files a/static/icons/0600576F.png and /dev/null differ diff --git a/static/icons/060057E1.png b/static/icons/060057E1.png deleted file mode 100755 index 262bb28d..00000000 Binary files a/static/icons/060057E1.png and /dev/null differ diff --git a/static/icons/060057E5.png b/static/icons/060057E5.png deleted file mode 100755 index 1abc9c8b..00000000 Binary files a/static/icons/060057E5.png and /dev/null differ diff --git a/static/icons/060057E6.png b/static/icons/060057E6.png deleted file mode 100755 index 3e2560e3..00000000 Binary files a/static/icons/060057E6.png and /dev/null differ diff --git a/static/icons/060057E7.png b/static/icons/060057E7.png deleted file mode 100755 index ac8d2f57..00000000 Binary files a/static/icons/060057E7.png and /dev/null differ diff --git a/static/icons/060057E8.png b/static/icons/060057E8.png deleted file mode 100755 index 5d43e443..00000000 Binary files a/static/icons/060057E8.png and /dev/null differ diff --git a/static/icons/060057E9.png b/static/icons/060057E9.png deleted file mode 100755 index ae3592bd..00000000 Binary files a/static/icons/060057E9.png and /dev/null differ diff --git a/static/icons/060057EA.png b/static/icons/060057EA.png deleted file mode 100755 index 5f1852c0..00000000 Binary files a/static/icons/060057EA.png and /dev/null differ diff --git a/static/icons/060057EF.png b/static/icons/060057EF.png deleted file mode 100755 index 80831c29..00000000 Binary files a/static/icons/060057EF.png and /dev/null differ diff --git a/static/icons/060057F0.png b/static/icons/060057F0.png deleted file mode 100755 index be706a22..00000000 Binary files a/static/icons/060057F0.png and /dev/null differ diff --git a/static/icons/060057F1.png b/static/icons/060057F1.png deleted file mode 100755 index cb8c1d42..00000000 Binary files a/static/icons/060057F1.png and /dev/null differ diff --git a/static/icons/060057F2.png b/static/icons/060057F2.png deleted file mode 100755 index 389d7136..00000000 Binary files a/static/icons/060057F2.png and /dev/null differ diff --git a/static/icons/060057F3.png b/static/icons/060057F3.png deleted file mode 100755 index edcda0a4..00000000 Binary files a/static/icons/060057F3.png and /dev/null differ diff --git a/static/icons/060057F4.png b/static/icons/060057F4.png deleted file mode 100755 index 0fa257c4..00000000 Binary files a/static/icons/060057F4.png and /dev/null differ diff --git a/static/icons/060057F5.png b/static/icons/060057F5.png deleted file mode 100755 index adfe0fc5..00000000 Binary files a/static/icons/060057F5.png and /dev/null differ diff --git a/static/icons/060057F6.png b/static/icons/060057F6.png deleted file mode 100755 index 09f534e2..00000000 Binary files a/static/icons/060057F6.png and /dev/null differ diff --git a/static/icons/060057F7.png b/static/icons/060057F7.png deleted file mode 100755 index 97ffd4e3..00000000 Binary files a/static/icons/060057F7.png and /dev/null differ diff --git a/static/icons/060057F8.png b/static/icons/060057F8.png deleted file mode 100755 index a625df47..00000000 Binary files a/static/icons/060057F8.png and /dev/null differ diff --git a/static/icons/060057F9.png b/static/icons/060057F9.png deleted file mode 100755 index 9df2b384..00000000 Binary files a/static/icons/060057F9.png and /dev/null differ diff --git a/static/icons/060057FA.png b/static/icons/060057FA.png deleted file mode 100755 index c5488e0f..00000000 Binary files a/static/icons/060057FA.png and /dev/null differ diff --git a/static/icons/060057FB.png b/static/icons/060057FB.png deleted file mode 100755 index ed23f55f..00000000 Binary files a/static/icons/060057FB.png and /dev/null differ diff --git a/static/icons/060057FC.png b/static/icons/060057FC.png deleted file mode 100755 index a6901f87..00000000 Binary files a/static/icons/060057FC.png and /dev/null differ diff --git a/static/icons/060057FD.png b/static/icons/060057FD.png deleted file mode 100755 index 9be9eccf..00000000 Binary files a/static/icons/060057FD.png and /dev/null differ diff --git a/static/icons/060057FE.png b/static/icons/060057FE.png deleted file mode 100755 index f35f0915..00000000 Binary files a/static/icons/060057FE.png and /dev/null differ diff --git a/static/icons/060057FF.png b/static/icons/060057FF.png deleted file mode 100755 index 262ecb31..00000000 Binary files a/static/icons/060057FF.png and /dev/null differ diff --git a/static/icons/06005800.png b/static/icons/06005800.png deleted file mode 100755 index 2730e0d1..00000000 Binary files a/static/icons/06005800.png and /dev/null differ diff --git a/static/icons/06005801.png b/static/icons/06005801.png deleted file mode 100755 index 07c42fe0..00000000 Binary files a/static/icons/06005801.png and /dev/null differ diff --git a/static/icons/06005802.png b/static/icons/06005802.png deleted file mode 100755 index 56800966..00000000 Binary files a/static/icons/06005802.png and /dev/null differ diff --git a/static/icons/06005803.png b/static/icons/06005803.png deleted file mode 100755 index 5b7c4f0c..00000000 Binary files a/static/icons/06005803.png and /dev/null differ diff --git a/static/icons/06005804.png b/static/icons/06005804.png deleted file mode 100755 index 60f1cd14..00000000 Binary files a/static/icons/06005804.png and /dev/null differ diff --git a/static/icons/06005805.png b/static/icons/06005805.png deleted file mode 100755 index 7c384237..00000000 Binary files a/static/icons/06005805.png and /dev/null differ diff --git a/static/icons/06005806.png b/static/icons/06005806.png deleted file mode 100755 index dc8d92a0..00000000 Binary files a/static/icons/06005806.png and /dev/null differ diff --git a/static/icons/06005807.png b/static/icons/06005807.png deleted file mode 100755 index cae88b8a..00000000 Binary files a/static/icons/06005807.png and /dev/null differ diff --git a/static/icons/06005808.png b/static/icons/06005808.png deleted file mode 100755 index 0b3d0881..00000000 Binary files a/static/icons/06005808.png and /dev/null differ diff --git a/static/icons/06005809.png b/static/icons/06005809.png deleted file mode 100755 index 13d1ffd0..00000000 Binary files a/static/icons/06005809.png and /dev/null differ diff --git a/static/icons/0600580A.png b/static/icons/0600580A.png deleted file mode 100755 index c11e765f..00000000 Binary files a/static/icons/0600580A.png and /dev/null differ diff --git a/static/icons/0600580F.png b/static/icons/0600580F.png deleted file mode 100755 index 50cee3ef..00000000 Binary files a/static/icons/0600580F.png and /dev/null differ diff --git a/static/icons/06005810.png b/static/icons/06005810.png deleted file mode 100755 index 6b855a59..00000000 Binary files a/static/icons/06005810.png and /dev/null differ diff --git a/static/icons/06005811.png b/static/icons/06005811.png deleted file mode 100755 index dc79de98..00000000 Binary files a/static/icons/06005811.png and /dev/null differ diff --git a/static/icons/06005812.png b/static/icons/06005812.png deleted file mode 100755 index 77015445..00000000 Binary files a/static/icons/06005812.png and /dev/null differ diff --git a/static/icons/06005813.png b/static/icons/06005813.png deleted file mode 100755 index c5b7cad7..00000000 Binary files a/static/icons/06005813.png and /dev/null differ diff --git a/static/icons/06005814.png b/static/icons/06005814.png deleted file mode 100755 index 1f51f614..00000000 Binary files a/static/icons/06005814.png and /dev/null differ diff --git a/static/icons/06005815.png b/static/icons/06005815.png deleted file mode 100755 index 58dc7a83..00000000 Binary files a/static/icons/06005815.png and /dev/null differ diff --git a/static/icons/06005816.png b/static/icons/06005816.png deleted file mode 100755 index f9187a46..00000000 Binary files a/static/icons/06005816.png and /dev/null differ diff --git a/static/icons/06005817.png b/static/icons/06005817.png deleted file mode 100755 index 760a2c78..00000000 Binary files a/static/icons/06005817.png and /dev/null differ diff --git a/static/icons/06005818.png b/static/icons/06005818.png deleted file mode 100755 index 27d7a9ff..00000000 Binary files a/static/icons/06005818.png and /dev/null differ diff --git a/static/icons/06005819.png b/static/icons/06005819.png deleted file mode 100755 index d786b167..00000000 Binary files a/static/icons/06005819.png and /dev/null differ diff --git a/static/icons/0600581A.png b/static/icons/0600581A.png deleted file mode 100755 index 95a4f35f..00000000 Binary files a/static/icons/0600581A.png and /dev/null differ diff --git a/static/icons/0600581B.png b/static/icons/0600581B.png deleted file mode 100755 index 4f888107..00000000 Binary files a/static/icons/0600581B.png and /dev/null differ diff --git a/static/icons/0600581C.png b/static/icons/0600581C.png deleted file mode 100755 index 6e653388..00000000 Binary files a/static/icons/0600581C.png and /dev/null differ diff --git a/static/icons/0600581D.png b/static/icons/0600581D.png deleted file mode 100755 index 09df0848..00000000 Binary files a/static/icons/0600581D.png and /dev/null differ diff --git a/static/icons/0600581E.png b/static/icons/0600581E.png deleted file mode 100755 index 8c3daa36..00000000 Binary files a/static/icons/0600581E.png and /dev/null differ diff --git a/static/icons/0600581F.png b/static/icons/0600581F.png deleted file mode 100755 index 2626a322..00000000 Binary files a/static/icons/0600581F.png and /dev/null differ diff --git a/static/icons/06005820.png b/static/icons/06005820.png deleted file mode 100755 index 5d06e116..00000000 Binary files a/static/icons/06005820.png and /dev/null differ diff --git a/static/icons/06005821.png b/static/icons/06005821.png deleted file mode 100755 index 1f8c1912..00000000 Binary files a/static/icons/06005821.png and /dev/null differ diff --git a/static/icons/06005822.png b/static/icons/06005822.png deleted file mode 100755 index 7c42078f..00000000 Binary files a/static/icons/06005822.png and /dev/null differ diff --git a/static/icons/06005823.png b/static/icons/06005823.png deleted file mode 100755 index 2b6b0983..00000000 Binary files a/static/icons/06005823.png and /dev/null differ diff --git a/static/icons/06005824.png b/static/icons/06005824.png deleted file mode 100755 index 74507612..00000000 Binary files a/static/icons/06005824.png and /dev/null differ diff --git a/static/icons/06005825.png b/static/icons/06005825.png deleted file mode 100755 index adcfa2d9..00000000 Binary files a/static/icons/06005825.png and /dev/null differ diff --git a/static/icons/06005826.png b/static/icons/06005826.png deleted file mode 100755 index 1a94d9f5..00000000 Binary files a/static/icons/06005826.png and /dev/null differ diff --git a/static/icons/06005827.png b/static/icons/06005827.png deleted file mode 100755 index a26c11f7..00000000 Binary files a/static/icons/06005827.png and /dev/null differ diff --git a/static/icons/06005828.png b/static/icons/06005828.png deleted file mode 100755 index 6d5abd03..00000000 Binary files a/static/icons/06005828.png and /dev/null differ diff --git a/static/icons/06005829.png b/static/icons/06005829.png deleted file mode 100755 index 4e65f67f..00000000 Binary files a/static/icons/06005829.png and /dev/null differ diff --git a/static/icons/0600582A.png b/static/icons/0600582A.png deleted file mode 100755 index d8306d36..00000000 Binary files a/static/icons/0600582A.png and /dev/null differ diff --git a/static/icons/0600582B.png b/static/icons/0600582B.png deleted file mode 100755 index b538c4f1..00000000 Binary files a/static/icons/0600582B.png and /dev/null differ diff --git a/static/icons/0600582C.png b/static/icons/0600582C.png deleted file mode 100755 index 479eec44..00000000 Binary files a/static/icons/0600582C.png and /dev/null differ diff --git a/static/icons/0600582D.png b/static/icons/0600582D.png deleted file mode 100755 index f8536886..00000000 Binary files a/static/icons/0600582D.png and /dev/null differ diff --git a/static/icons/0600582E.png b/static/icons/0600582E.png deleted file mode 100755 index 6a2d2ee4..00000000 Binary files a/static/icons/0600582E.png and /dev/null differ diff --git a/static/icons/0600582F.png b/static/icons/0600582F.png deleted file mode 100755 index 39651a62..00000000 Binary files a/static/icons/0600582F.png and /dev/null differ diff --git a/static/icons/06005830.png b/static/icons/06005830.png deleted file mode 100755 index 1a251e17..00000000 Binary files a/static/icons/06005830.png and /dev/null differ diff --git a/static/icons/06005831.png b/static/icons/06005831.png deleted file mode 100755 index 23b841d7..00000000 Binary files a/static/icons/06005831.png and /dev/null differ diff --git a/static/icons/06005832.png b/static/icons/06005832.png deleted file mode 100755 index 60b8ede1..00000000 Binary files a/static/icons/06005832.png and /dev/null differ diff --git a/static/icons/06005833.png b/static/icons/06005833.png deleted file mode 100755 index 57b6762f..00000000 Binary files a/static/icons/06005833.png and /dev/null differ diff --git a/static/icons/06005834.png b/static/icons/06005834.png deleted file mode 100755 index 736d67fd..00000000 Binary files a/static/icons/06005834.png and /dev/null differ diff --git a/static/icons/06005835.png b/static/icons/06005835.png deleted file mode 100755 index 496d8715..00000000 Binary files a/static/icons/06005835.png and /dev/null differ diff --git a/static/icons/06005836.png b/static/icons/06005836.png deleted file mode 100755 index 2846e35b..00000000 Binary files a/static/icons/06005836.png and /dev/null differ diff --git a/static/icons/06005837.png b/static/icons/06005837.png deleted file mode 100755 index a93f3cfa..00000000 Binary files a/static/icons/06005837.png and /dev/null differ diff --git a/static/icons/06005838.png b/static/icons/06005838.png deleted file mode 100755 index ad503d7b..00000000 Binary files a/static/icons/06005838.png and /dev/null differ diff --git a/static/icons/06005839.png b/static/icons/06005839.png deleted file mode 100755 index e531b121..00000000 Binary files a/static/icons/06005839.png and /dev/null differ diff --git a/static/icons/0600583A.png b/static/icons/0600583A.png deleted file mode 100755 index 68cb0d7f..00000000 Binary files a/static/icons/0600583A.png and /dev/null differ diff --git a/static/icons/0600583B.png b/static/icons/0600583B.png deleted file mode 100755 index 2f2a1325..00000000 Binary files a/static/icons/0600583B.png and /dev/null differ diff --git a/static/icons/0600583C.png b/static/icons/0600583C.png deleted file mode 100755 index 4deda51e..00000000 Binary files a/static/icons/0600583C.png and /dev/null differ diff --git a/static/icons/0600583D.png b/static/icons/0600583D.png deleted file mode 100755 index c9dd3ebb..00000000 Binary files a/static/icons/0600583D.png and /dev/null differ diff --git a/static/icons/0600583E.png b/static/icons/0600583E.png deleted file mode 100755 index 768d6950..00000000 Binary files a/static/icons/0600583E.png and /dev/null differ diff --git a/static/icons/0600583F.png b/static/icons/0600583F.png deleted file mode 100755 index 6a046dc2..00000000 Binary files a/static/icons/0600583F.png and /dev/null differ diff --git a/static/icons/06005840.png b/static/icons/06005840.png deleted file mode 100755 index 32205372..00000000 Binary files a/static/icons/06005840.png and /dev/null differ diff --git a/static/icons/06005841.png b/static/icons/06005841.png deleted file mode 100755 index e4861628..00000000 Binary files a/static/icons/06005841.png and /dev/null differ diff --git a/static/icons/06005842.png b/static/icons/06005842.png deleted file mode 100755 index 7484d694..00000000 Binary files a/static/icons/06005842.png and /dev/null differ diff --git a/static/icons/06005843.png b/static/icons/06005843.png deleted file mode 100755 index b4cbe162..00000000 Binary files a/static/icons/06005843.png and /dev/null differ diff --git a/static/icons/06005844.png b/static/icons/06005844.png deleted file mode 100755 index 9fb501e2..00000000 Binary files a/static/icons/06005844.png and /dev/null differ diff --git a/static/icons/06005845.png b/static/icons/06005845.png deleted file mode 100755 index 26b55efd..00000000 Binary files a/static/icons/06005845.png and /dev/null differ diff --git a/static/icons/06005846.png b/static/icons/06005846.png deleted file mode 100755 index eed266bd..00000000 Binary files a/static/icons/06005846.png and /dev/null differ diff --git a/static/icons/06005848.png b/static/icons/06005848.png deleted file mode 100755 index a83d1cec..00000000 Binary files a/static/icons/06005848.png and /dev/null differ diff --git a/static/icons/06005849.png b/static/icons/06005849.png deleted file mode 100755 index a7fe7fc3..00000000 Binary files a/static/icons/06005849.png and /dev/null differ diff --git a/static/icons/0600584A.png b/static/icons/0600584A.png deleted file mode 100755 index bbc32ac3..00000000 Binary files a/static/icons/0600584A.png and /dev/null differ diff --git a/static/icons/0600584B.png b/static/icons/0600584B.png deleted file mode 100755 index 7c955bae..00000000 Binary files a/static/icons/0600584B.png and /dev/null differ diff --git a/static/icons/0600584C.png b/static/icons/0600584C.png deleted file mode 100755 index 7fda5d8a..00000000 Binary files a/static/icons/0600584C.png and /dev/null differ diff --git a/static/icons/0600584D.png b/static/icons/0600584D.png deleted file mode 100755 index 71f47b23..00000000 Binary files a/static/icons/0600584D.png and /dev/null differ diff --git a/static/icons/0600584E.png b/static/icons/0600584E.png deleted file mode 100755 index 7ff232b9..00000000 Binary files a/static/icons/0600584E.png and /dev/null differ diff --git a/static/icons/0600584F.png b/static/icons/0600584F.png deleted file mode 100755 index 11b1f65a..00000000 Binary files a/static/icons/0600584F.png and /dev/null differ diff --git a/static/icons/06005850.png b/static/icons/06005850.png deleted file mode 100755 index 1db5115c..00000000 Binary files a/static/icons/06005850.png and /dev/null differ diff --git a/static/icons/06005851.png b/static/icons/06005851.png deleted file mode 100755 index 43bf3dcd..00000000 Binary files a/static/icons/06005851.png and /dev/null differ diff --git a/static/icons/06005852.png b/static/icons/06005852.png deleted file mode 100755 index 72f38ee1..00000000 Binary files a/static/icons/06005852.png and /dev/null differ diff --git a/static/icons/06005853.png b/static/icons/06005853.png deleted file mode 100755 index 839d2c24..00000000 Binary files a/static/icons/06005853.png and /dev/null differ diff --git a/static/icons/06005854.png b/static/icons/06005854.png deleted file mode 100755 index c473c0fb..00000000 Binary files a/static/icons/06005854.png and /dev/null differ diff --git a/static/icons/06005855.png b/static/icons/06005855.png deleted file mode 100755 index efd76d33..00000000 Binary files a/static/icons/06005855.png and /dev/null differ diff --git a/static/icons/06005856.png b/static/icons/06005856.png deleted file mode 100755 index ac49a5c0..00000000 Binary files a/static/icons/06005856.png and /dev/null differ diff --git a/static/icons/06005857.png b/static/icons/06005857.png deleted file mode 100755 index 476bc6cc..00000000 Binary files a/static/icons/06005857.png and /dev/null differ diff --git a/static/icons/06005858.png b/static/icons/06005858.png deleted file mode 100755 index 12263597..00000000 Binary files a/static/icons/06005858.png and /dev/null differ diff --git a/static/icons/06005859.png b/static/icons/06005859.png deleted file mode 100755 index 5de4b2d7..00000000 Binary files a/static/icons/06005859.png and /dev/null differ diff --git a/static/icons/0600585A.png b/static/icons/0600585A.png deleted file mode 100755 index 25e1cf55..00000000 Binary files a/static/icons/0600585A.png and /dev/null differ diff --git a/static/icons/0600585B.png b/static/icons/0600585B.png deleted file mode 100755 index 7e026ed0..00000000 Binary files a/static/icons/0600585B.png and /dev/null differ diff --git a/static/icons/0600585C.png b/static/icons/0600585C.png deleted file mode 100755 index f745c327..00000000 Binary files a/static/icons/0600585C.png and /dev/null differ diff --git a/static/icons/0600585D.png b/static/icons/0600585D.png deleted file mode 100755 index 8b74bf9a..00000000 Binary files a/static/icons/0600585D.png and /dev/null differ diff --git a/static/icons/0600585E.png b/static/icons/0600585E.png deleted file mode 100755 index 5fd7bc77..00000000 Binary files a/static/icons/0600585E.png and /dev/null differ diff --git a/static/icons/0600585F.png b/static/icons/0600585F.png deleted file mode 100755 index 4b25a826..00000000 Binary files a/static/icons/0600585F.png and /dev/null differ diff --git a/static/icons/06005860.png b/static/icons/06005860.png deleted file mode 100755 index 44c6a04f..00000000 Binary files a/static/icons/06005860.png and /dev/null differ diff --git a/static/icons/06005861.png b/static/icons/06005861.png deleted file mode 100755 index b4878d34..00000000 Binary files a/static/icons/06005861.png and /dev/null differ diff --git a/static/icons/06005862.png b/static/icons/06005862.png deleted file mode 100755 index 07d694de..00000000 Binary files a/static/icons/06005862.png and /dev/null differ diff --git a/static/icons/06005863.png b/static/icons/06005863.png deleted file mode 100755 index 3edccccc..00000000 Binary files a/static/icons/06005863.png and /dev/null differ diff --git a/static/icons/06005871.png b/static/icons/06005871.png deleted file mode 100755 index c82e2c87..00000000 Binary files a/static/icons/06005871.png and /dev/null differ diff --git a/static/icons/06005872.png b/static/icons/06005872.png deleted file mode 100755 index f1a42bfc..00000000 Binary files a/static/icons/06005872.png and /dev/null differ diff --git a/static/icons/06005873.png b/static/icons/06005873.png deleted file mode 100755 index a70d6131..00000000 Binary files a/static/icons/06005873.png and /dev/null differ diff --git a/static/icons/06005874.png b/static/icons/06005874.png deleted file mode 100755 index 0d41f41f..00000000 Binary files a/static/icons/06005874.png and /dev/null differ diff --git a/static/icons/06005875.png b/static/icons/06005875.png deleted file mode 100755 index 5cded2a7..00000000 Binary files a/static/icons/06005875.png and /dev/null differ diff --git a/static/icons/06005876.png b/static/icons/06005876.png deleted file mode 100755 index 7c24242f..00000000 Binary files a/static/icons/06005876.png and /dev/null differ diff --git a/static/icons/06005877.png b/static/icons/06005877.png deleted file mode 100755 index 26a1b569..00000000 Binary files a/static/icons/06005877.png and /dev/null differ diff --git a/static/icons/06005878.png b/static/icons/06005878.png deleted file mode 100755 index 52b842c0..00000000 Binary files a/static/icons/06005878.png and /dev/null differ diff --git a/static/icons/06005879.png b/static/icons/06005879.png deleted file mode 100755 index a34e5730..00000000 Binary files a/static/icons/06005879.png and /dev/null differ diff --git a/static/icons/0600587A.png b/static/icons/0600587A.png deleted file mode 100755 index 41777d6b..00000000 Binary files a/static/icons/0600587A.png and /dev/null differ diff --git a/static/icons/0600587B.png b/static/icons/0600587B.png deleted file mode 100755 index 0cf0af4e..00000000 Binary files a/static/icons/0600587B.png and /dev/null differ diff --git a/static/icons/0600587C.png b/static/icons/0600587C.png deleted file mode 100755 index 1fad5acd..00000000 Binary files a/static/icons/0600587C.png and /dev/null differ diff --git a/static/icons/0600587D.png b/static/icons/0600587D.png deleted file mode 100755 index 437cf436..00000000 Binary files a/static/icons/0600587D.png and /dev/null differ diff --git a/static/icons/0600587E.png b/static/icons/0600587E.png deleted file mode 100755 index 253fc7e5..00000000 Binary files a/static/icons/0600587E.png and /dev/null differ diff --git a/static/icons/0600587F.png b/static/icons/0600587F.png deleted file mode 100755 index a4fd9644..00000000 Binary files a/static/icons/0600587F.png and /dev/null differ diff --git a/static/icons/06005880.png b/static/icons/06005880.png deleted file mode 100755 index d9d49ec0..00000000 Binary files a/static/icons/06005880.png and /dev/null differ diff --git a/static/icons/06005881.png b/static/icons/06005881.png deleted file mode 100755 index 622c6a39..00000000 Binary files a/static/icons/06005881.png and /dev/null differ diff --git a/static/icons/06005882.png b/static/icons/06005882.png deleted file mode 100755 index 7c9546ee..00000000 Binary files a/static/icons/06005882.png and /dev/null differ diff --git a/static/icons/06005883.png b/static/icons/06005883.png deleted file mode 100755 index a5a2becb..00000000 Binary files a/static/icons/06005883.png and /dev/null differ diff --git a/static/icons/06005884.png b/static/icons/06005884.png deleted file mode 100755 index ce2d3bae..00000000 Binary files a/static/icons/06005884.png and /dev/null differ diff --git a/static/icons/06005885.png b/static/icons/06005885.png deleted file mode 100755 index 80fc6818..00000000 Binary files a/static/icons/06005885.png and /dev/null differ diff --git a/static/icons/06005886.png b/static/icons/06005886.png deleted file mode 100755 index d80293a1..00000000 Binary files a/static/icons/06005886.png and /dev/null differ diff --git a/static/icons/06005887.png b/static/icons/06005887.png deleted file mode 100755 index d183f4fa..00000000 Binary files a/static/icons/06005887.png and /dev/null differ diff --git a/static/icons/06005888.png b/static/icons/06005888.png deleted file mode 100755 index 20c38fce..00000000 Binary files a/static/icons/06005888.png and /dev/null differ diff --git a/static/icons/06005889.png b/static/icons/06005889.png deleted file mode 100755 index cb57c6e0..00000000 Binary files a/static/icons/06005889.png and /dev/null differ diff --git a/static/icons/0600588A.png b/static/icons/0600588A.png deleted file mode 100755 index a113fcbb..00000000 Binary files a/static/icons/0600588A.png and /dev/null differ diff --git a/static/icons/0600588B.png b/static/icons/0600588B.png deleted file mode 100755 index 37283411..00000000 Binary files a/static/icons/0600588B.png and /dev/null differ diff --git a/static/icons/0600588C.png b/static/icons/0600588C.png deleted file mode 100755 index f05182ac..00000000 Binary files a/static/icons/0600588C.png and /dev/null differ diff --git a/static/icons/0600588E.png b/static/icons/0600588E.png deleted file mode 100755 index e491fb8e..00000000 Binary files a/static/icons/0600588E.png and /dev/null differ diff --git a/static/icons/0600588F.png b/static/icons/0600588F.png deleted file mode 100755 index 5c49200d..00000000 Binary files a/static/icons/0600588F.png and /dev/null differ diff --git a/static/icons/06005890.png b/static/icons/06005890.png deleted file mode 100755 index a987821a..00000000 Binary files a/static/icons/06005890.png and /dev/null differ diff --git a/static/icons/06005891.png b/static/icons/06005891.png deleted file mode 100755 index 18224eb9..00000000 Binary files a/static/icons/06005891.png and /dev/null differ diff --git a/static/icons/06005892.png b/static/icons/06005892.png deleted file mode 100755 index d362e216..00000000 Binary files a/static/icons/06005892.png and /dev/null differ diff --git a/static/icons/06005893.png b/static/icons/06005893.png deleted file mode 100755 index 09c4db7b..00000000 Binary files a/static/icons/06005893.png and /dev/null differ diff --git a/static/icons/06005894.png b/static/icons/06005894.png deleted file mode 100755 index 2cc39709..00000000 Binary files a/static/icons/06005894.png and /dev/null differ diff --git a/static/icons/06005895.png b/static/icons/06005895.png deleted file mode 100755 index af294afe..00000000 Binary files a/static/icons/06005895.png and /dev/null differ diff --git a/static/icons/06005896.png b/static/icons/06005896.png deleted file mode 100755 index d4ab1562..00000000 Binary files a/static/icons/06005896.png and /dev/null differ diff --git a/static/icons/06005897.png b/static/icons/06005897.png deleted file mode 100755 index ccf6033f..00000000 Binary files a/static/icons/06005897.png and /dev/null differ diff --git a/static/icons/06005898.png b/static/icons/06005898.png deleted file mode 100755 index 20cc17d4..00000000 Binary files a/static/icons/06005898.png and /dev/null differ diff --git a/static/icons/06005899.png b/static/icons/06005899.png deleted file mode 100755 index 85f31185..00000000 Binary files a/static/icons/06005899.png and /dev/null differ diff --git a/static/icons/0600589A.png b/static/icons/0600589A.png deleted file mode 100755 index 2ca0d958..00000000 Binary files a/static/icons/0600589A.png and /dev/null differ diff --git a/static/icons/0600589B.png b/static/icons/0600589B.png deleted file mode 100755 index c696eeed..00000000 Binary files a/static/icons/0600589B.png and /dev/null differ diff --git a/static/icons/0600589C.png b/static/icons/0600589C.png deleted file mode 100755 index f7e3b246..00000000 Binary files a/static/icons/0600589C.png and /dev/null differ diff --git a/static/icons/0600589D.png b/static/icons/0600589D.png deleted file mode 100755 index 6e9056c7..00000000 Binary files a/static/icons/0600589D.png and /dev/null differ diff --git a/static/icons/0600589E.png b/static/icons/0600589E.png deleted file mode 100755 index 278167a5..00000000 Binary files a/static/icons/0600589E.png and /dev/null differ diff --git a/static/icons/0600589F.png b/static/icons/0600589F.png deleted file mode 100755 index 0d510a60..00000000 Binary files a/static/icons/0600589F.png and /dev/null differ diff --git a/static/icons/060058A0.png b/static/icons/060058A0.png deleted file mode 100755 index 368b7f00..00000000 Binary files a/static/icons/060058A0.png and /dev/null differ diff --git a/static/icons/060058A1.png b/static/icons/060058A1.png deleted file mode 100755 index f37ee670..00000000 Binary files a/static/icons/060058A1.png and /dev/null differ diff --git a/static/icons/060058A2.png b/static/icons/060058A2.png deleted file mode 100755 index c13cba8b..00000000 Binary files a/static/icons/060058A2.png and /dev/null differ diff --git a/static/icons/060058A3.png b/static/icons/060058A3.png deleted file mode 100755 index 0ce33351..00000000 Binary files a/static/icons/060058A3.png and /dev/null differ diff --git a/static/icons/060058A4.png b/static/icons/060058A4.png deleted file mode 100755 index 872dcc30..00000000 Binary files a/static/icons/060058A4.png and /dev/null differ diff --git a/static/icons/060058A5.png b/static/icons/060058A5.png deleted file mode 100755 index 689c6ccf..00000000 Binary files a/static/icons/060058A5.png and /dev/null differ diff --git a/static/icons/060058A6.png b/static/icons/060058A6.png deleted file mode 100755 index 0c754ba9..00000000 Binary files a/static/icons/060058A6.png and /dev/null differ diff --git a/static/icons/060058A7.png b/static/icons/060058A7.png deleted file mode 100755 index 4913dc00..00000000 Binary files a/static/icons/060058A7.png and /dev/null differ diff --git a/static/icons/060058A8.png b/static/icons/060058A8.png deleted file mode 100755 index 18ef8ca5..00000000 Binary files a/static/icons/060058A8.png and /dev/null differ diff --git a/static/icons/060058A9.png b/static/icons/060058A9.png deleted file mode 100755 index e1f0836a..00000000 Binary files a/static/icons/060058A9.png and /dev/null differ diff --git a/static/icons/060058AD.png b/static/icons/060058AD.png deleted file mode 100755 index a7870f88..00000000 Binary files a/static/icons/060058AD.png and /dev/null differ diff --git a/static/icons/060058AE.png b/static/icons/060058AE.png deleted file mode 100755 index b57f2c94..00000000 Binary files a/static/icons/060058AE.png and /dev/null differ diff --git a/static/icons/060058AF.png b/static/icons/060058AF.png deleted file mode 100755 index cd848955..00000000 Binary files a/static/icons/060058AF.png and /dev/null differ diff --git a/static/icons/060058B0.png b/static/icons/060058B0.png deleted file mode 100755 index 13507c93..00000000 Binary files a/static/icons/060058B0.png and /dev/null differ diff --git a/static/icons/060058B1.png b/static/icons/060058B1.png deleted file mode 100755 index 7df181ec..00000000 Binary files a/static/icons/060058B1.png and /dev/null differ diff --git a/static/icons/060058B2.png b/static/icons/060058B2.png deleted file mode 100755 index 1815a82b..00000000 Binary files a/static/icons/060058B2.png and /dev/null differ diff --git a/static/icons/060058B3.png b/static/icons/060058B3.png deleted file mode 100755 index 3076146c..00000000 Binary files a/static/icons/060058B3.png and /dev/null differ diff --git a/static/icons/060058B4.png b/static/icons/060058B4.png deleted file mode 100755 index 7173f023..00000000 Binary files a/static/icons/060058B4.png and /dev/null differ diff --git a/static/icons/060058B5.png b/static/icons/060058B5.png deleted file mode 100755 index 780b9121..00000000 Binary files a/static/icons/060058B5.png and /dev/null differ diff --git a/static/icons/060058B6.png b/static/icons/060058B6.png deleted file mode 100755 index e91b9f05..00000000 Binary files a/static/icons/060058B6.png and /dev/null differ diff --git a/static/icons/060058B7.png b/static/icons/060058B7.png deleted file mode 100755 index c5bcde6c..00000000 Binary files a/static/icons/060058B7.png and /dev/null differ diff --git a/static/icons/060058B8.png b/static/icons/060058B8.png deleted file mode 100755 index 2223a7bf..00000000 Binary files a/static/icons/060058B8.png and /dev/null differ diff --git a/static/icons/060058B9.png b/static/icons/060058B9.png deleted file mode 100755 index a8bc145c..00000000 Binary files a/static/icons/060058B9.png and /dev/null differ diff --git a/static/icons/060058BA.png b/static/icons/060058BA.png deleted file mode 100755 index 80199b54..00000000 Binary files a/static/icons/060058BA.png and /dev/null differ diff --git a/static/icons/060058BB.png b/static/icons/060058BB.png deleted file mode 100755 index 70c7eea3..00000000 Binary files a/static/icons/060058BB.png and /dev/null differ diff --git a/static/icons/060058BC.png b/static/icons/060058BC.png deleted file mode 100755 index ea11d18e..00000000 Binary files a/static/icons/060058BC.png and /dev/null differ diff --git a/static/icons/060058BD.png b/static/icons/060058BD.png deleted file mode 100755 index ebb635e7..00000000 Binary files a/static/icons/060058BD.png and /dev/null differ diff --git a/static/icons/060058BE.png b/static/icons/060058BE.png deleted file mode 100755 index 83c6afe6..00000000 Binary files a/static/icons/060058BE.png and /dev/null differ diff --git a/static/icons/060058BF.png b/static/icons/060058BF.png deleted file mode 100755 index a9571450..00000000 Binary files a/static/icons/060058BF.png and /dev/null differ diff --git a/static/icons/060058C1.png b/static/icons/060058C1.png deleted file mode 100755 index 4f73d4ce..00000000 Binary files a/static/icons/060058C1.png and /dev/null differ diff --git a/static/icons/060058C2.png b/static/icons/060058C2.png deleted file mode 100755 index 3f2aeaeb..00000000 Binary files a/static/icons/060058C2.png and /dev/null differ diff --git a/static/icons/060058C3.png b/static/icons/060058C3.png deleted file mode 100755 index d1830740..00000000 Binary files a/static/icons/060058C3.png and /dev/null differ diff --git a/static/icons/060058C4.png b/static/icons/060058C4.png deleted file mode 100755 index 02e76f52..00000000 Binary files a/static/icons/060058C4.png and /dev/null differ diff --git a/static/icons/060058C5.png b/static/icons/060058C5.png deleted file mode 100755 index 4fd6b19d..00000000 Binary files a/static/icons/060058C5.png and /dev/null differ diff --git a/static/icons/060058C6.png b/static/icons/060058C6.png deleted file mode 100755 index 00f53ac6..00000000 Binary files a/static/icons/060058C6.png and /dev/null differ diff --git a/static/icons/060058C7.png b/static/icons/060058C7.png deleted file mode 100755 index 7362e821..00000000 Binary files a/static/icons/060058C7.png and /dev/null differ diff --git a/static/icons/060058C8.png b/static/icons/060058C8.png deleted file mode 100755 index a5f7bc84..00000000 Binary files a/static/icons/060058C8.png and /dev/null differ diff --git a/static/icons/060058C9.png b/static/icons/060058C9.png deleted file mode 100755 index 9bc64253..00000000 Binary files a/static/icons/060058C9.png and /dev/null differ diff --git a/static/icons/060058CA.png b/static/icons/060058CA.png deleted file mode 100755 index 2cb55a63..00000000 Binary files a/static/icons/060058CA.png and /dev/null differ diff --git a/static/icons/060058CB.png b/static/icons/060058CB.png deleted file mode 100755 index 67f5be28..00000000 Binary files a/static/icons/060058CB.png and /dev/null differ diff --git a/static/icons/060058CC.png b/static/icons/060058CC.png deleted file mode 100755 index e0934bd1..00000000 Binary files a/static/icons/060058CC.png and /dev/null differ diff --git a/static/icons/060058CD.png b/static/icons/060058CD.png deleted file mode 100755 index a18324de..00000000 Binary files a/static/icons/060058CD.png and /dev/null differ diff --git a/static/icons/060058CE.png b/static/icons/060058CE.png deleted file mode 100755 index 69518060..00000000 Binary files a/static/icons/060058CE.png and /dev/null differ diff --git a/static/icons/060058CF.png b/static/icons/060058CF.png deleted file mode 100755 index 08ce0845..00000000 Binary files a/static/icons/060058CF.png and /dev/null differ diff --git a/static/icons/060058D0.png b/static/icons/060058D0.png deleted file mode 100755 index dfebb552..00000000 Binary files a/static/icons/060058D0.png and /dev/null differ diff --git a/static/icons/060058D1.png b/static/icons/060058D1.png deleted file mode 100755 index 0c5336b5..00000000 Binary files a/static/icons/060058D1.png and /dev/null differ diff --git a/static/icons/060058D2.png b/static/icons/060058D2.png deleted file mode 100755 index 7338f9a0..00000000 Binary files a/static/icons/060058D2.png and /dev/null differ diff --git a/static/icons/060058D3.png b/static/icons/060058D3.png deleted file mode 100755 index 140a92ca..00000000 Binary files a/static/icons/060058D3.png and /dev/null differ diff --git a/static/icons/060058D5.png b/static/icons/060058D5.png deleted file mode 100755 index a0626410..00000000 Binary files a/static/icons/060058D5.png and /dev/null differ diff --git a/static/icons/060058D6.png b/static/icons/060058D6.png deleted file mode 100755 index c23639a4..00000000 Binary files a/static/icons/060058D6.png and /dev/null differ diff --git a/static/icons/060058D7.png b/static/icons/060058D7.png deleted file mode 100755 index 5168296f..00000000 Binary files a/static/icons/060058D7.png and /dev/null differ diff --git a/static/icons/060058D8.png b/static/icons/060058D8.png deleted file mode 100755 index f9949435..00000000 Binary files a/static/icons/060058D8.png and /dev/null differ diff --git a/static/icons/060058D9.png b/static/icons/060058D9.png deleted file mode 100755 index 60f955fe..00000000 Binary files a/static/icons/060058D9.png and /dev/null differ diff --git a/static/icons/060058DA.png b/static/icons/060058DA.png deleted file mode 100755 index 4da6fdd0..00000000 Binary files a/static/icons/060058DA.png and /dev/null differ diff --git a/static/icons/060058DB.png b/static/icons/060058DB.png deleted file mode 100755 index 2a999d3b..00000000 Binary files a/static/icons/060058DB.png and /dev/null differ diff --git a/static/icons/060058DC.png b/static/icons/060058DC.png deleted file mode 100755 index a7225480..00000000 Binary files a/static/icons/060058DC.png and /dev/null differ diff --git a/static/icons/060058DD.png b/static/icons/060058DD.png deleted file mode 100755 index a728a9d5..00000000 Binary files a/static/icons/060058DD.png and /dev/null differ diff --git a/static/icons/060058DE.png b/static/icons/060058DE.png deleted file mode 100755 index 79f84654..00000000 Binary files a/static/icons/060058DE.png and /dev/null differ diff --git a/static/icons/060058DF.png b/static/icons/060058DF.png deleted file mode 100755 index 0c9ee443..00000000 Binary files a/static/icons/060058DF.png and /dev/null differ diff --git a/static/icons/060058E0.png b/static/icons/060058E0.png deleted file mode 100755 index b8e62ea9..00000000 Binary files a/static/icons/060058E0.png and /dev/null differ diff --git a/static/icons/060058E1.png b/static/icons/060058E1.png deleted file mode 100755 index ff8d2b0b..00000000 Binary files a/static/icons/060058E1.png and /dev/null differ diff --git a/static/icons/060058E2.png b/static/icons/060058E2.png deleted file mode 100755 index 316e4bcd..00000000 Binary files a/static/icons/060058E2.png and /dev/null differ diff --git a/static/icons/060058E3.png b/static/icons/060058E3.png deleted file mode 100755 index dae2f802..00000000 Binary files a/static/icons/060058E3.png and /dev/null differ diff --git a/static/icons/060058E4.png b/static/icons/060058E4.png deleted file mode 100755 index d8108686..00000000 Binary files a/static/icons/060058E4.png and /dev/null differ diff --git a/static/icons/060058E5.png b/static/icons/060058E5.png deleted file mode 100755 index c2f5420d..00000000 Binary files a/static/icons/060058E5.png and /dev/null differ diff --git a/static/icons/060058E6.png b/static/icons/060058E6.png deleted file mode 100755 index 03810d51..00000000 Binary files a/static/icons/060058E6.png and /dev/null differ diff --git a/static/icons/060058E7.png b/static/icons/060058E7.png deleted file mode 100755 index 31136dcb..00000000 Binary files a/static/icons/060058E7.png and /dev/null differ diff --git a/static/icons/060058E8.png b/static/icons/060058E8.png deleted file mode 100755 index 5c11980e..00000000 Binary files a/static/icons/060058E8.png and /dev/null differ diff --git a/static/icons/060058E9.png b/static/icons/060058E9.png deleted file mode 100755 index 139ce586..00000000 Binary files a/static/icons/060058E9.png and /dev/null differ diff --git a/static/icons/060058EA.png b/static/icons/060058EA.png deleted file mode 100755 index d5ce641b..00000000 Binary files a/static/icons/060058EA.png and /dev/null differ diff --git a/static/icons/060058EB.png b/static/icons/060058EB.png deleted file mode 100755 index beae80a1..00000000 Binary files a/static/icons/060058EB.png and /dev/null differ diff --git a/static/icons/060058EC.png b/static/icons/060058EC.png deleted file mode 100755 index 05f606d4..00000000 Binary files a/static/icons/060058EC.png and /dev/null differ diff --git a/static/icons/060058ED.png b/static/icons/060058ED.png deleted file mode 100755 index 84629796..00000000 Binary files a/static/icons/060058ED.png and /dev/null differ diff --git a/static/icons/060058EE.png b/static/icons/060058EE.png deleted file mode 100755 index 9a5ee071..00000000 Binary files a/static/icons/060058EE.png and /dev/null differ diff --git a/static/icons/060058EF.png b/static/icons/060058EF.png deleted file mode 100755 index b7020384..00000000 Binary files a/static/icons/060058EF.png and /dev/null differ diff --git a/static/icons/060058F0.png b/static/icons/060058F0.png deleted file mode 100755 index 168b2c0b..00000000 Binary files a/static/icons/060058F0.png and /dev/null differ diff --git a/static/icons/060058F1.png b/static/icons/060058F1.png deleted file mode 100755 index 6306681c..00000000 Binary files a/static/icons/060058F1.png and /dev/null differ diff --git a/static/icons/060058F2.png b/static/icons/060058F2.png deleted file mode 100755 index 8f3fd31a..00000000 Binary files a/static/icons/060058F2.png and /dev/null differ diff --git a/static/icons/060058F3.png b/static/icons/060058F3.png deleted file mode 100755 index 50f89539..00000000 Binary files a/static/icons/060058F3.png and /dev/null differ diff --git a/static/icons/060058F4.png b/static/icons/060058F4.png deleted file mode 100755 index 9b832e14..00000000 Binary files a/static/icons/060058F4.png and /dev/null differ diff --git a/static/icons/060058F5.png b/static/icons/060058F5.png deleted file mode 100755 index 3c2d1359..00000000 Binary files a/static/icons/060058F5.png and /dev/null differ diff --git a/static/icons/060058F6.png b/static/icons/060058F6.png deleted file mode 100755 index 71fb8971..00000000 Binary files a/static/icons/060058F6.png and /dev/null differ diff --git a/static/icons/060058F7.png b/static/icons/060058F7.png deleted file mode 100755 index 24ab66eb..00000000 Binary files a/static/icons/060058F7.png and /dev/null differ diff --git a/static/icons/060058F8.png b/static/icons/060058F8.png deleted file mode 100755 index f23329d2..00000000 Binary files a/static/icons/060058F8.png and /dev/null differ diff --git a/static/icons/060058F9.png b/static/icons/060058F9.png deleted file mode 100755 index 3f92ac00..00000000 Binary files a/static/icons/060058F9.png and /dev/null differ diff --git a/static/icons/060058FA.png b/static/icons/060058FA.png deleted file mode 100755 index 9dda9e0e..00000000 Binary files a/static/icons/060058FA.png and /dev/null differ diff --git a/static/icons/060058FB.png b/static/icons/060058FB.png deleted file mode 100755 index 0cd89860..00000000 Binary files a/static/icons/060058FB.png and /dev/null differ diff --git a/static/icons/060058FC.png b/static/icons/060058FC.png deleted file mode 100755 index 945e5eff..00000000 Binary files a/static/icons/060058FC.png and /dev/null differ diff --git a/static/icons/060058FD.png b/static/icons/060058FD.png deleted file mode 100755 index 39467bdd..00000000 Binary files a/static/icons/060058FD.png and /dev/null differ diff --git a/static/icons/060058FE.png b/static/icons/060058FE.png deleted file mode 100755 index d69ba00f..00000000 Binary files a/static/icons/060058FE.png and /dev/null differ diff --git a/static/icons/060058FF.png b/static/icons/060058FF.png deleted file mode 100755 index 1d4f4688..00000000 Binary files a/static/icons/060058FF.png and /dev/null differ diff --git a/static/icons/06005900.png b/static/icons/06005900.png deleted file mode 100755 index 8eaef85a..00000000 Binary files a/static/icons/06005900.png and /dev/null differ diff --git a/static/icons/06005901.png b/static/icons/06005901.png deleted file mode 100755 index 0496317c..00000000 Binary files a/static/icons/06005901.png and /dev/null differ diff --git a/static/icons/06005902.png b/static/icons/06005902.png deleted file mode 100755 index b0353ae2..00000000 Binary files a/static/icons/06005902.png and /dev/null differ diff --git a/static/icons/06005903.png b/static/icons/06005903.png deleted file mode 100755 index 56ad1feb..00000000 Binary files a/static/icons/06005903.png and /dev/null differ diff --git a/static/icons/06005904.png b/static/icons/06005904.png deleted file mode 100755 index b3018806..00000000 Binary files a/static/icons/06005904.png and /dev/null differ diff --git a/static/icons/06005905.png b/static/icons/06005905.png deleted file mode 100755 index ea765ae4..00000000 Binary files a/static/icons/06005905.png and /dev/null differ diff --git a/static/icons/06005906.png b/static/icons/06005906.png deleted file mode 100755 index 3906f50f..00000000 Binary files a/static/icons/06005906.png and /dev/null differ diff --git a/static/icons/06005907.png b/static/icons/06005907.png deleted file mode 100755 index d3b893f0..00000000 Binary files a/static/icons/06005907.png and /dev/null differ diff --git a/static/icons/06005908.png b/static/icons/06005908.png deleted file mode 100755 index 67f1a05f..00000000 Binary files a/static/icons/06005908.png and /dev/null differ diff --git a/static/icons/06005909.png b/static/icons/06005909.png deleted file mode 100755 index a5bce6f5..00000000 Binary files a/static/icons/06005909.png and /dev/null differ diff --git a/static/icons/0600590A.png b/static/icons/0600590A.png deleted file mode 100755 index 0dc2e539..00000000 Binary files a/static/icons/0600590A.png and /dev/null differ diff --git a/static/icons/0600590B.png b/static/icons/0600590B.png deleted file mode 100755 index cfd8a98a..00000000 Binary files a/static/icons/0600590B.png and /dev/null differ diff --git a/static/icons/0600590C.png b/static/icons/0600590C.png deleted file mode 100755 index f9dd06ff..00000000 Binary files a/static/icons/0600590C.png and /dev/null differ diff --git a/static/icons/0600590E.png b/static/icons/0600590E.png deleted file mode 100755 index c8f4d4ec..00000000 Binary files a/static/icons/0600590E.png and /dev/null differ diff --git a/static/icons/0600590F.png b/static/icons/0600590F.png deleted file mode 100755 index f14f9a48..00000000 Binary files a/static/icons/0600590F.png and /dev/null differ diff --git a/static/icons/06005910.png b/static/icons/06005910.png deleted file mode 100755 index 22035b84..00000000 Binary files a/static/icons/06005910.png and /dev/null differ diff --git a/static/icons/06005911.png b/static/icons/06005911.png deleted file mode 100755 index 0028f9ae..00000000 Binary files a/static/icons/06005911.png and /dev/null differ diff --git a/static/icons/06005912.png b/static/icons/06005912.png deleted file mode 100755 index 6235301f..00000000 Binary files a/static/icons/06005912.png and /dev/null differ diff --git a/static/icons/06005913.png b/static/icons/06005913.png deleted file mode 100755 index a89734b8..00000000 Binary files a/static/icons/06005913.png and /dev/null differ diff --git a/static/icons/06005914.png b/static/icons/06005914.png deleted file mode 100755 index 14d23a29..00000000 Binary files a/static/icons/06005914.png and /dev/null differ diff --git a/static/icons/06005915.png b/static/icons/06005915.png deleted file mode 100755 index cf66af5d..00000000 Binary files a/static/icons/06005915.png and /dev/null differ diff --git a/static/icons/06005916.png b/static/icons/06005916.png deleted file mode 100755 index 0de5a5fe..00000000 Binary files a/static/icons/06005916.png and /dev/null differ diff --git a/static/icons/06005917.png b/static/icons/06005917.png deleted file mode 100755 index fd95967b..00000000 Binary files a/static/icons/06005917.png and /dev/null differ diff --git a/static/icons/06005918.png b/static/icons/06005918.png deleted file mode 100755 index 606bfe77..00000000 Binary files a/static/icons/06005918.png and /dev/null differ diff --git a/static/icons/06005919.png b/static/icons/06005919.png deleted file mode 100755 index 7a6ed150..00000000 Binary files a/static/icons/06005919.png and /dev/null differ diff --git a/static/icons/0600591A.png b/static/icons/0600591A.png deleted file mode 100755 index 0bbc61f5..00000000 Binary files a/static/icons/0600591A.png and /dev/null differ diff --git a/static/icons/0600591B.png b/static/icons/0600591B.png deleted file mode 100755 index 384e4f97..00000000 Binary files a/static/icons/0600591B.png and /dev/null differ diff --git a/static/icons/0600591C.png b/static/icons/0600591C.png deleted file mode 100755 index ee842232..00000000 Binary files a/static/icons/0600591C.png and /dev/null differ diff --git a/static/icons/0600591D.png b/static/icons/0600591D.png deleted file mode 100755 index 4a9607a3..00000000 Binary files a/static/icons/0600591D.png and /dev/null differ diff --git a/static/icons/0600591E.png b/static/icons/0600591E.png deleted file mode 100755 index 4ae297c3..00000000 Binary files a/static/icons/0600591E.png and /dev/null differ diff --git a/static/icons/0600591F.png b/static/icons/0600591F.png deleted file mode 100755 index 2211b3eb..00000000 Binary files a/static/icons/0600591F.png and /dev/null differ diff --git a/static/icons/06005920.png b/static/icons/06005920.png deleted file mode 100755 index 5ec5c7b7..00000000 Binary files a/static/icons/06005920.png and /dev/null differ diff --git a/static/icons/06005921.png b/static/icons/06005921.png deleted file mode 100755 index f5a375f4..00000000 Binary files a/static/icons/06005921.png and /dev/null differ diff --git a/static/icons/06005922.png b/static/icons/06005922.png deleted file mode 100755 index eba8cafa..00000000 Binary files a/static/icons/06005922.png and /dev/null differ diff --git a/static/icons/06005923.png b/static/icons/06005923.png deleted file mode 100755 index c14a7e9b..00000000 Binary files a/static/icons/06005923.png and /dev/null differ diff --git a/static/icons/06005924.png b/static/icons/06005924.png deleted file mode 100755 index 7fa7ca04..00000000 Binary files a/static/icons/06005924.png and /dev/null differ diff --git a/static/icons/06005925.png b/static/icons/06005925.png deleted file mode 100755 index d3aa16f1..00000000 Binary files a/static/icons/06005925.png and /dev/null differ diff --git a/static/icons/06005926.png b/static/icons/06005926.png deleted file mode 100755 index f531e787..00000000 Binary files a/static/icons/06005926.png and /dev/null differ diff --git a/static/icons/06005927.png b/static/icons/06005927.png deleted file mode 100755 index afa881ae..00000000 Binary files a/static/icons/06005927.png and /dev/null differ diff --git a/static/icons/06005928.png b/static/icons/06005928.png deleted file mode 100755 index cb9cf8d7..00000000 Binary files a/static/icons/06005928.png and /dev/null differ diff --git a/static/icons/06005929.png b/static/icons/06005929.png deleted file mode 100755 index 90f27921..00000000 Binary files a/static/icons/06005929.png and /dev/null differ diff --git a/static/icons/0600592A.png b/static/icons/0600592A.png deleted file mode 100755 index 2f5502d6..00000000 Binary files a/static/icons/0600592A.png and /dev/null differ diff --git a/static/icons/0600592B.png b/static/icons/0600592B.png deleted file mode 100755 index 579cbdc4..00000000 Binary files a/static/icons/0600592B.png and /dev/null differ diff --git a/static/icons/0600592C.png b/static/icons/0600592C.png deleted file mode 100755 index abda6602..00000000 Binary files a/static/icons/0600592C.png and /dev/null differ diff --git a/static/icons/0600592D.png b/static/icons/0600592D.png deleted file mode 100755 index c6b66084..00000000 Binary files a/static/icons/0600592D.png and /dev/null differ diff --git a/static/icons/0600592E.png b/static/icons/0600592E.png deleted file mode 100755 index bccf49b6..00000000 Binary files a/static/icons/0600592E.png and /dev/null differ diff --git a/static/icons/0600592F.png b/static/icons/0600592F.png deleted file mode 100755 index 9fd84b9e..00000000 Binary files a/static/icons/0600592F.png and /dev/null differ diff --git a/static/icons/06005930.png b/static/icons/06005930.png deleted file mode 100755 index e391f1b5..00000000 Binary files a/static/icons/06005930.png and /dev/null differ diff --git a/static/icons/06005931.png b/static/icons/06005931.png deleted file mode 100755 index 0370ec63..00000000 Binary files a/static/icons/06005931.png and /dev/null differ diff --git a/static/icons/06005932.png b/static/icons/06005932.png deleted file mode 100755 index e110fb9a..00000000 Binary files a/static/icons/06005932.png and /dev/null differ diff --git a/static/icons/06005933.png b/static/icons/06005933.png deleted file mode 100755 index 8086147c..00000000 Binary files a/static/icons/06005933.png and /dev/null differ diff --git a/static/icons/06005934.png b/static/icons/06005934.png deleted file mode 100755 index 297e4204..00000000 Binary files a/static/icons/06005934.png and /dev/null differ diff --git a/static/icons/06005935.png b/static/icons/06005935.png deleted file mode 100755 index d30a6922..00000000 Binary files a/static/icons/06005935.png and /dev/null differ diff --git a/static/icons/06005936.png b/static/icons/06005936.png deleted file mode 100755 index 3263fd34..00000000 Binary files a/static/icons/06005936.png and /dev/null differ diff --git a/static/icons/06005937.png b/static/icons/06005937.png deleted file mode 100755 index 1bac1c33..00000000 Binary files a/static/icons/06005937.png and /dev/null differ diff --git a/static/icons/06005938.png b/static/icons/06005938.png deleted file mode 100755 index 87500971..00000000 Binary files a/static/icons/06005938.png and /dev/null differ diff --git a/static/icons/06005939.png b/static/icons/06005939.png deleted file mode 100755 index d292a465..00000000 Binary files a/static/icons/06005939.png and /dev/null differ diff --git a/static/icons/0600593A.png b/static/icons/0600593A.png deleted file mode 100755 index 59207f05..00000000 Binary files a/static/icons/0600593A.png and /dev/null differ diff --git a/static/icons/0600593B.png b/static/icons/0600593B.png deleted file mode 100755 index 3e565007..00000000 Binary files a/static/icons/0600593B.png and /dev/null differ diff --git a/static/icons/0600593C.png b/static/icons/0600593C.png deleted file mode 100755 index ec2b8930..00000000 Binary files a/static/icons/0600593C.png and /dev/null differ diff --git a/static/icons/0600593D.png b/static/icons/0600593D.png deleted file mode 100755 index 82f47500..00000000 Binary files a/static/icons/0600593D.png and /dev/null differ diff --git a/static/icons/0600593E.png b/static/icons/0600593E.png deleted file mode 100755 index 23ae2975..00000000 Binary files a/static/icons/0600593E.png and /dev/null differ diff --git a/static/icons/0600593F.png b/static/icons/0600593F.png deleted file mode 100755 index 3bea2d20..00000000 Binary files a/static/icons/0600593F.png and /dev/null differ diff --git a/static/icons/06005940.png b/static/icons/06005940.png deleted file mode 100755 index 3ac4f4af..00000000 Binary files a/static/icons/06005940.png and /dev/null differ diff --git a/static/icons/06005941.png b/static/icons/06005941.png deleted file mode 100755 index dea19d84..00000000 Binary files a/static/icons/06005941.png and /dev/null differ diff --git a/static/icons/06005942.png b/static/icons/06005942.png deleted file mode 100755 index 1bb33f2b..00000000 Binary files a/static/icons/06005942.png and /dev/null differ diff --git a/static/icons/06005943.png b/static/icons/06005943.png deleted file mode 100755 index ec2b8930..00000000 Binary files a/static/icons/06005943.png and /dev/null differ diff --git a/static/icons/06005944.png b/static/icons/06005944.png deleted file mode 100755 index 3fb2381f..00000000 Binary files a/static/icons/06005944.png and /dev/null differ diff --git a/static/icons/06005945.png b/static/icons/06005945.png deleted file mode 100755 index fb0aea3a..00000000 Binary files a/static/icons/06005945.png and /dev/null differ diff --git a/static/icons/06005946.png b/static/icons/06005946.png deleted file mode 100755 index 03396a81..00000000 Binary files a/static/icons/06005946.png and /dev/null differ diff --git a/static/icons/06005947.png b/static/icons/06005947.png deleted file mode 100755 index 6867fc0b..00000000 Binary files a/static/icons/06005947.png and /dev/null differ diff --git a/static/icons/06005948.png b/static/icons/06005948.png deleted file mode 100755 index ed78a228..00000000 Binary files a/static/icons/06005948.png and /dev/null differ diff --git a/static/icons/06005949.png b/static/icons/06005949.png deleted file mode 100755 index 9c6657d1..00000000 Binary files a/static/icons/06005949.png and /dev/null differ diff --git a/static/icons/0600594A.png b/static/icons/0600594A.png deleted file mode 100755 index 7ecbcdd5..00000000 Binary files a/static/icons/0600594A.png and /dev/null differ diff --git a/static/icons/0600594B.png b/static/icons/0600594B.png deleted file mode 100755 index 9eab389a..00000000 Binary files a/static/icons/0600594B.png and /dev/null differ diff --git a/static/icons/0600594C.png b/static/icons/0600594C.png deleted file mode 100755 index b0a9c659..00000000 Binary files a/static/icons/0600594C.png and /dev/null differ diff --git a/static/icons/0600594D.png b/static/icons/0600594D.png deleted file mode 100755 index 4fdc0b48..00000000 Binary files a/static/icons/0600594D.png and /dev/null differ diff --git a/static/icons/0600594E.png b/static/icons/0600594E.png deleted file mode 100755 index a6de15b9..00000000 Binary files a/static/icons/0600594E.png and /dev/null differ diff --git a/static/icons/0600594F.png b/static/icons/0600594F.png deleted file mode 100755 index eec2072f..00000000 Binary files a/static/icons/0600594F.png and /dev/null differ diff --git a/static/icons/06005950.png b/static/icons/06005950.png deleted file mode 100755 index 7e19a8fd..00000000 Binary files a/static/icons/06005950.png and /dev/null differ diff --git a/static/icons/06005951.png b/static/icons/06005951.png deleted file mode 100755 index e313655c..00000000 Binary files a/static/icons/06005951.png and /dev/null differ diff --git a/static/icons/06005952.png b/static/icons/06005952.png deleted file mode 100755 index 42072918..00000000 Binary files a/static/icons/06005952.png and /dev/null differ diff --git a/static/icons/06005953.png b/static/icons/06005953.png deleted file mode 100755 index 9b8cd95a..00000000 Binary files a/static/icons/06005953.png and /dev/null differ diff --git a/static/icons/06005954.png b/static/icons/06005954.png deleted file mode 100755 index 082c157f..00000000 Binary files a/static/icons/06005954.png and /dev/null differ diff --git a/static/icons/06005955.png b/static/icons/06005955.png deleted file mode 100755 index 52d144bf..00000000 Binary files a/static/icons/06005955.png and /dev/null differ diff --git a/static/icons/06005956.png b/static/icons/06005956.png deleted file mode 100755 index 1189b747..00000000 Binary files a/static/icons/06005956.png and /dev/null differ diff --git a/static/icons/06005957.png b/static/icons/06005957.png deleted file mode 100755 index d242c98a..00000000 Binary files a/static/icons/06005957.png and /dev/null differ diff --git a/static/icons/06005958.png b/static/icons/06005958.png deleted file mode 100755 index e12a1859..00000000 Binary files a/static/icons/06005958.png and /dev/null differ diff --git a/static/icons/06005959.png b/static/icons/06005959.png deleted file mode 100755 index 158bc9d0..00000000 Binary files a/static/icons/06005959.png and /dev/null differ diff --git a/static/icons/0600595A.png b/static/icons/0600595A.png deleted file mode 100755 index 7ffb24ea..00000000 Binary files a/static/icons/0600595A.png and /dev/null differ diff --git a/static/icons/0600595B.png b/static/icons/0600595B.png deleted file mode 100755 index 1e9b2454..00000000 Binary files a/static/icons/0600595B.png and /dev/null differ diff --git a/static/icons/0600595C.png b/static/icons/0600595C.png deleted file mode 100755 index a6d2b0a6..00000000 Binary files a/static/icons/0600595C.png and /dev/null differ diff --git a/static/icons/0600595D.png b/static/icons/0600595D.png deleted file mode 100755 index fb82f6a7..00000000 Binary files a/static/icons/0600595D.png and /dev/null differ diff --git a/static/icons/0600595E.png b/static/icons/0600595E.png deleted file mode 100755 index 3737969f..00000000 Binary files a/static/icons/0600595E.png and /dev/null differ diff --git a/static/icons/0600595F.png b/static/icons/0600595F.png deleted file mode 100755 index 111b91fd..00000000 Binary files a/static/icons/0600595F.png and /dev/null differ diff --git a/static/icons/06005960.png b/static/icons/06005960.png deleted file mode 100755 index b8ce9ec9..00000000 Binary files a/static/icons/06005960.png and /dev/null differ diff --git a/static/icons/06005961.png b/static/icons/06005961.png deleted file mode 100755 index be74dc8d..00000000 Binary files a/static/icons/06005961.png and /dev/null differ diff --git a/static/icons/06005962.png b/static/icons/06005962.png deleted file mode 100755 index 16c200a4..00000000 Binary files a/static/icons/06005962.png and /dev/null differ diff --git a/static/icons/06005963.png b/static/icons/06005963.png deleted file mode 100755 index fc244685..00000000 Binary files a/static/icons/06005963.png and /dev/null differ diff --git a/static/icons/06005964.png b/static/icons/06005964.png deleted file mode 100755 index c1ca28e5..00000000 Binary files a/static/icons/06005964.png and /dev/null differ diff --git a/static/icons/06005965.png b/static/icons/06005965.png deleted file mode 100755 index a24768a3..00000000 Binary files a/static/icons/06005965.png and /dev/null differ diff --git a/static/icons/06005966.png b/static/icons/06005966.png deleted file mode 100755 index 2f30992e..00000000 Binary files a/static/icons/06005966.png and /dev/null differ diff --git a/static/icons/06005967.png b/static/icons/06005967.png deleted file mode 100755 index 245b09ab..00000000 Binary files a/static/icons/06005967.png and /dev/null differ diff --git a/static/icons/06005968.png b/static/icons/06005968.png deleted file mode 100755 index d1ebf345..00000000 Binary files a/static/icons/06005968.png and /dev/null differ diff --git a/static/icons/06005969.png b/static/icons/06005969.png deleted file mode 100755 index 9b672d72..00000000 Binary files a/static/icons/06005969.png and /dev/null differ diff --git a/static/icons/0600596A.png b/static/icons/0600596A.png deleted file mode 100755 index d3c1e55f..00000000 Binary files a/static/icons/0600596A.png and /dev/null differ diff --git a/static/icons/0600596B.png b/static/icons/0600596B.png deleted file mode 100755 index 41c581ab..00000000 Binary files a/static/icons/0600596B.png and /dev/null differ diff --git a/static/icons/0600596C.png b/static/icons/0600596C.png deleted file mode 100755 index af56522a..00000000 Binary files a/static/icons/0600596C.png and /dev/null differ diff --git a/static/icons/0600596D.png b/static/icons/0600596D.png deleted file mode 100755 index 0160b115..00000000 Binary files a/static/icons/0600596D.png and /dev/null differ diff --git a/static/icons/0600596E.png b/static/icons/0600596E.png deleted file mode 100755 index f9b80870..00000000 Binary files a/static/icons/0600596E.png and /dev/null differ diff --git a/static/icons/0600596F.png b/static/icons/0600596F.png deleted file mode 100755 index 5f63e09b..00000000 Binary files a/static/icons/0600596F.png and /dev/null differ diff --git a/static/icons/06005970.png b/static/icons/06005970.png deleted file mode 100755 index daccb4b2..00000000 Binary files a/static/icons/06005970.png and /dev/null differ diff --git a/static/icons/06005971.png b/static/icons/06005971.png deleted file mode 100755 index d69c83cf..00000000 Binary files a/static/icons/06005971.png and /dev/null differ diff --git a/static/icons/06005972.png b/static/icons/06005972.png deleted file mode 100755 index 0bd53034..00000000 Binary files a/static/icons/06005972.png and /dev/null differ diff --git a/static/icons/06005973.png b/static/icons/06005973.png deleted file mode 100755 index 8bcb1bf2..00000000 Binary files a/static/icons/06005973.png and /dev/null differ diff --git a/static/icons/06005974.png b/static/icons/06005974.png deleted file mode 100755 index 00fcfb2c..00000000 Binary files a/static/icons/06005974.png and /dev/null differ diff --git a/static/icons/06005975.png b/static/icons/06005975.png deleted file mode 100755 index 75b54986..00000000 Binary files a/static/icons/06005975.png and /dev/null differ diff --git a/static/icons/06005976.png b/static/icons/06005976.png deleted file mode 100755 index 79dc8b96..00000000 Binary files a/static/icons/06005976.png and /dev/null differ diff --git a/static/icons/06005977.png b/static/icons/06005977.png deleted file mode 100755 index 2bb8581b..00000000 Binary files a/static/icons/06005977.png and /dev/null differ diff --git a/static/icons/06005978.png b/static/icons/06005978.png deleted file mode 100755 index 5800caad..00000000 Binary files a/static/icons/06005978.png and /dev/null differ diff --git a/static/icons/06005979.png b/static/icons/06005979.png deleted file mode 100755 index 7ed741fd..00000000 Binary files a/static/icons/06005979.png and /dev/null differ diff --git a/static/icons/0600597A.png b/static/icons/0600597A.png deleted file mode 100755 index e40228be..00000000 Binary files a/static/icons/0600597A.png and /dev/null differ diff --git a/static/icons/0600597B.png b/static/icons/0600597B.png deleted file mode 100755 index ffb79160..00000000 Binary files a/static/icons/0600597B.png and /dev/null differ diff --git a/static/icons/0600597C.png b/static/icons/0600597C.png deleted file mode 100755 index d49ec756..00000000 Binary files a/static/icons/0600597C.png and /dev/null differ diff --git a/static/icons/0600597D.png b/static/icons/0600597D.png deleted file mode 100755 index dd48642c..00000000 Binary files a/static/icons/0600597D.png and /dev/null differ diff --git a/static/icons/0600597E.png b/static/icons/0600597E.png deleted file mode 100755 index 26c54de0..00000000 Binary files a/static/icons/0600597E.png and /dev/null differ diff --git a/static/icons/0600597F.png b/static/icons/0600597F.png deleted file mode 100755 index e32a860b..00000000 Binary files a/static/icons/0600597F.png and /dev/null differ diff --git a/static/icons/06005980.png b/static/icons/06005980.png deleted file mode 100755 index 45861769..00000000 Binary files a/static/icons/06005980.png and /dev/null differ diff --git a/static/icons/06005981.png b/static/icons/06005981.png deleted file mode 100755 index f91d8067..00000000 Binary files a/static/icons/06005981.png and /dev/null differ diff --git a/static/icons/06005982.png b/static/icons/06005982.png deleted file mode 100755 index 1a6bccec..00000000 Binary files a/static/icons/06005982.png and /dev/null differ diff --git a/static/icons/06005983.png b/static/icons/06005983.png deleted file mode 100755 index 6d3f7416..00000000 Binary files a/static/icons/06005983.png and /dev/null differ diff --git a/static/icons/06005984.png b/static/icons/06005984.png deleted file mode 100755 index 967a9c5e..00000000 Binary files a/static/icons/06005984.png and /dev/null differ diff --git a/static/icons/06005985.png b/static/icons/06005985.png deleted file mode 100755 index 4888acf7..00000000 Binary files a/static/icons/06005985.png and /dev/null differ diff --git a/static/icons/06005986.png b/static/icons/06005986.png deleted file mode 100755 index 1e2cb55a..00000000 Binary files a/static/icons/06005986.png and /dev/null differ diff --git a/static/icons/06005987.png b/static/icons/06005987.png deleted file mode 100755 index a7cbe92a..00000000 Binary files a/static/icons/06005987.png and /dev/null differ diff --git a/static/icons/06005988.png b/static/icons/06005988.png deleted file mode 100755 index 9d6de34b..00000000 Binary files a/static/icons/06005988.png and /dev/null differ diff --git a/static/icons/06005989.png b/static/icons/06005989.png deleted file mode 100755 index 9392a401..00000000 Binary files a/static/icons/06005989.png and /dev/null differ diff --git a/static/icons/0600598A.png b/static/icons/0600598A.png deleted file mode 100755 index c5432038..00000000 Binary files a/static/icons/0600598A.png and /dev/null differ diff --git a/static/icons/0600598B.png b/static/icons/0600598B.png deleted file mode 100755 index a6500546..00000000 Binary files a/static/icons/0600598B.png and /dev/null differ diff --git a/static/icons/0600598C.png b/static/icons/0600598C.png deleted file mode 100755 index 2426ee2c..00000000 Binary files a/static/icons/0600598C.png and /dev/null differ diff --git a/static/icons/0600598D.png b/static/icons/0600598D.png deleted file mode 100755 index 393e0626..00000000 Binary files a/static/icons/0600598D.png and /dev/null differ diff --git a/static/icons/0600598E.png b/static/icons/0600598E.png deleted file mode 100755 index b04ecc08..00000000 Binary files a/static/icons/0600598E.png and /dev/null differ diff --git a/static/icons/0600598F.png b/static/icons/0600598F.png deleted file mode 100755 index f390f697..00000000 Binary files a/static/icons/0600598F.png and /dev/null differ diff --git a/static/icons/06005990.png b/static/icons/06005990.png deleted file mode 100755 index 616e8f66..00000000 Binary files a/static/icons/06005990.png and /dev/null differ diff --git a/static/icons/06005991.png b/static/icons/06005991.png deleted file mode 100755 index 74f5291c..00000000 Binary files a/static/icons/06005991.png and /dev/null differ diff --git a/static/icons/06005992.png b/static/icons/06005992.png deleted file mode 100755 index 780cfa3e..00000000 Binary files a/static/icons/06005992.png and /dev/null differ diff --git a/static/icons/06005993.png b/static/icons/06005993.png deleted file mode 100755 index 2b531ad8..00000000 Binary files a/static/icons/06005993.png and /dev/null differ diff --git a/static/icons/06005994.png b/static/icons/06005994.png deleted file mode 100755 index 751887e2..00000000 Binary files a/static/icons/06005994.png and /dev/null differ diff --git a/static/icons/06005995.png b/static/icons/06005995.png deleted file mode 100755 index 292f821a..00000000 Binary files a/static/icons/06005995.png and /dev/null differ diff --git a/static/icons/06005996.png b/static/icons/06005996.png deleted file mode 100755 index 9a3eeb0d..00000000 Binary files a/static/icons/06005996.png and /dev/null differ diff --git a/static/icons/06005997.png b/static/icons/06005997.png deleted file mode 100755 index 95c28744..00000000 Binary files a/static/icons/06005997.png and /dev/null differ diff --git a/static/icons/06005998.png b/static/icons/06005998.png deleted file mode 100755 index 76236b1e..00000000 Binary files a/static/icons/06005998.png and /dev/null differ diff --git a/static/icons/06005999.png b/static/icons/06005999.png deleted file mode 100755 index c89a926a..00000000 Binary files a/static/icons/06005999.png and /dev/null differ diff --git a/static/icons/0600599A.png b/static/icons/0600599A.png deleted file mode 100755 index 54d47325..00000000 Binary files a/static/icons/0600599A.png and /dev/null differ diff --git a/static/icons/0600599B.png b/static/icons/0600599B.png deleted file mode 100755 index a8cd9839..00000000 Binary files a/static/icons/0600599B.png and /dev/null differ diff --git a/static/icons/0600599C.png b/static/icons/0600599C.png deleted file mode 100755 index 1cc687ee..00000000 Binary files a/static/icons/0600599C.png and /dev/null differ diff --git a/static/icons/0600599D.png b/static/icons/0600599D.png deleted file mode 100755 index 54fb24ae..00000000 Binary files a/static/icons/0600599D.png and /dev/null differ diff --git a/static/icons/0600599E.png b/static/icons/0600599E.png deleted file mode 100755 index e5b47b16..00000000 Binary files a/static/icons/0600599E.png and /dev/null differ diff --git a/static/icons/0600599F.png b/static/icons/0600599F.png deleted file mode 100755 index f1c5e5e0..00000000 Binary files a/static/icons/0600599F.png and /dev/null differ diff --git a/static/icons/060059A0.png b/static/icons/060059A0.png deleted file mode 100755 index e6eea5c4..00000000 Binary files a/static/icons/060059A0.png and /dev/null differ diff --git a/static/icons/060059A1.png b/static/icons/060059A1.png deleted file mode 100755 index 3bd0cd66..00000000 Binary files a/static/icons/060059A1.png and /dev/null differ diff --git a/static/icons/060059A2.png b/static/icons/060059A2.png deleted file mode 100755 index 25beaa30..00000000 Binary files a/static/icons/060059A2.png and /dev/null differ diff --git a/static/icons/060059A3.png b/static/icons/060059A3.png deleted file mode 100755 index b9dbb348..00000000 Binary files a/static/icons/060059A3.png and /dev/null differ diff --git a/static/icons/060059A4.png b/static/icons/060059A4.png deleted file mode 100755 index f3a0146e..00000000 Binary files a/static/icons/060059A4.png and /dev/null differ diff --git a/static/icons/060059A5.png b/static/icons/060059A5.png deleted file mode 100755 index fefb27a2..00000000 Binary files a/static/icons/060059A5.png and /dev/null differ diff --git a/static/icons/060059A6.png b/static/icons/060059A6.png deleted file mode 100755 index 6225fef7..00000000 Binary files a/static/icons/060059A6.png and /dev/null differ diff --git a/static/icons/060059A7.png b/static/icons/060059A7.png deleted file mode 100755 index 85d1bf0c..00000000 Binary files a/static/icons/060059A7.png and /dev/null differ diff --git a/static/icons/060059A8.png b/static/icons/060059A8.png deleted file mode 100755 index 47346c77..00000000 Binary files a/static/icons/060059A8.png and /dev/null differ diff --git a/static/icons/060059A9.png b/static/icons/060059A9.png deleted file mode 100755 index d6a93d74..00000000 Binary files a/static/icons/060059A9.png and /dev/null differ diff --git a/static/icons/060059AA.png b/static/icons/060059AA.png deleted file mode 100755 index 4f5a10cf..00000000 Binary files a/static/icons/060059AA.png and /dev/null differ diff --git a/static/icons/060059AB.png b/static/icons/060059AB.png deleted file mode 100755 index d7dfa1f0..00000000 Binary files a/static/icons/060059AB.png and /dev/null differ diff --git a/static/icons/060059AC.png b/static/icons/060059AC.png deleted file mode 100755 index 5381fd20..00000000 Binary files a/static/icons/060059AC.png and /dev/null differ diff --git a/static/icons/060059AD.png b/static/icons/060059AD.png deleted file mode 100755 index 2ce39cad..00000000 Binary files a/static/icons/060059AD.png and /dev/null differ diff --git a/static/icons/060059AE.png b/static/icons/060059AE.png deleted file mode 100755 index ebbd1156..00000000 Binary files a/static/icons/060059AE.png and /dev/null differ diff --git a/static/icons/060059AF.png b/static/icons/060059AF.png deleted file mode 100755 index f7b9dc75..00000000 Binary files a/static/icons/060059AF.png and /dev/null differ diff --git a/static/icons/060059B0.png b/static/icons/060059B0.png deleted file mode 100755 index 0dd1a661..00000000 Binary files a/static/icons/060059B0.png and /dev/null differ diff --git a/static/icons/060059B1.png b/static/icons/060059B1.png deleted file mode 100755 index 810fbc1a..00000000 Binary files a/static/icons/060059B1.png and /dev/null differ diff --git a/static/icons/060059B2.png b/static/icons/060059B2.png deleted file mode 100755 index 6ddab5b9..00000000 Binary files a/static/icons/060059B2.png and /dev/null differ diff --git a/static/icons/060059B3.png b/static/icons/060059B3.png deleted file mode 100755 index 62eba826..00000000 Binary files a/static/icons/060059B3.png and /dev/null differ diff --git a/static/icons/060059B4.png b/static/icons/060059B4.png deleted file mode 100755 index b39ad40c..00000000 Binary files a/static/icons/060059B4.png and /dev/null differ diff --git a/static/icons/060059B5.png b/static/icons/060059B5.png deleted file mode 100755 index ae075cf1..00000000 Binary files a/static/icons/060059B5.png and /dev/null differ diff --git a/static/icons/060059B6.png b/static/icons/060059B6.png deleted file mode 100755 index 1e7de21d..00000000 Binary files a/static/icons/060059B6.png and /dev/null differ diff --git a/static/icons/060059B7.png b/static/icons/060059B7.png deleted file mode 100755 index b5ba4dcd..00000000 Binary files a/static/icons/060059B7.png and /dev/null differ diff --git a/static/icons/060059B8.png b/static/icons/060059B8.png deleted file mode 100755 index 3843e281..00000000 Binary files a/static/icons/060059B8.png and /dev/null differ diff --git a/static/icons/060059B9.png b/static/icons/060059B9.png deleted file mode 100755 index 8ad83f83..00000000 Binary files a/static/icons/060059B9.png and /dev/null differ diff --git a/static/icons/060059BA.png b/static/icons/060059BA.png deleted file mode 100755 index 64a1107d..00000000 Binary files a/static/icons/060059BA.png and /dev/null differ diff --git a/static/icons/060059BB.png b/static/icons/060059BB.png deleted file mode 100755 index c59ee2f2..00000000 Binary files a/static/icons/060059BB.png and /dev/null differ diff --git a/static/icons/060059BC.png b/static/icons/060059BC.png deleted file mode 100755 index 8bf5db99..00000000 Binary files a/static/icons/060059BC.png and /dev/null differ diff --git a/static/icons/060059BD.png b/static/icons/060059BD.png deleted file mode 100755 index f89d949b..00000000 Binary files a/static/icons/060059BD.png and /dev/null differ diff --git a/static/icons/060059BE.png b/static/icons/060059BE.png deleted file mode 100755 index 177430f9..00000000 Binary files a/static/icons/060059BE.png and /dev/null differ diff --git a/static/icons/060059BF.png b/static/icons/060059BF.png deleted file mode 100755 index 1d6b4311..00000000 Binary files a/static/icons/060059BF.png and /dev/null differ diff --git a/static/icons/060059C0.png b/static/icons/060059C0.png deleted file mode 100755 index 13ade190..00000000 Binary files a/static/icons/060059C0.png and /dev/null differ diff --git a/static/icons/060059C1.png b/static/icons/060059C1.png deleted file mode 100755 index ce812a09..00000000 Binary files a/static/icons/060059C1.png and /dev/null differ diff --git a/static/icons/060059C2.png b/static/icons/060059C2.png deleted file mode 100755 index 8d0a9289..00000000 Binary files a/static/icons/060059C2.png and /dev/null differ diff --git a/static/icons/060059C3.png b/static/icons/060059C3.png deleted file mode 100755 index 7041b75d..00000000 Binary files a/static/icons/060059C3.png and /dev/null differ diff --git a/static/icons/060059C4.png b/static/icons/060059C4.png deleted file mode 100755 index f3c95708..00000000 Binary files a/static/icons/060059C4.png and /dev/null differ diff --git a/static/icons/060059C5.png b/static/icons/060059C5.png deleted file mode 100755 index 88b0e434..00000000 Binary files a/static/icons/060059C5.png and /dev/null differ diff --git a/static/icons/060059C6.png b/static/icons/060059C6.png deleted file mode 100755 index 60e1f6dc..00000000 Binary files a/static/icons/060059C6.png and /dev/null differ diff --git a/static/icons/060059C7.png b/static/icons/060059C7.png deleted file mode 100755 index e6c64b9b..00000000 Binary files a/static/icons/060059C7.png and /dev/null differ diff --git a/static/icons/060059C8.png b/static/icons/060059C8.png deleted file mode 100755 index e582a42b..00000000 Binary files a/static/icons/060059C8.png and /dev/null differ diff --git a/static/icons/060059C9.png b/static/icons/060059C9.png deleted file mode 100755 index 6fb1bd6c..00000000 Binary files a/static/icons/060059C9.png and /dev/null differ diff --git a/static/icons/060059CA.png b/static/icons/060059CA.png deleted file mode 100755 index dd6ecbf5..00000000 Binary files a/static/icons/060059CA.png and /dev/null differ diff --git a/static/icons/060059CB.png b/static/icons/060059CB.png deleted file mode 100755 index e41d2072..00000000 Binary files a/static/icons/060059CB.png and /dev/null differ diff --git a/static/icons/060059CC.png b/static/icons/060059CC.png deleted file mode 100755 index d13edfae..00000000 Binary files a/static/icons/060059CC.png and /dev/null differ diff --git a/static/icons/060059CD.png b/static/icons/060059CD.png deleted file mode 100755 index 1101e781..00000000 Binary files a/static/icons/060059CD.png and /dev/null differ diff --git a/static/icons/060059CE.png b/static/icons/060059CE.png deleted file mode 100755 index 5e517d40..00000000 Binary files a/static/icons/060059CE.png and /dev/null differ diff --git a/static/icons/060059CF.png b/static/icons/060059CF.png deleted file mode 100755 index 94cc27f6..00000000 Binary files a/static/icons/060059CF.png and /dev/null differ diff --git a/static/icons/060059D0.png b/static/icons/060059D0.png deleted file mode 100755 index 170e39f5..00000000 Binary files a/static/icons/060059D0.png and /dev/null differ diff --git a/static/icons/060059D1.png b/static/icons/060059D1.png deleted file mode 100755 index fa0e0cb4..00000000 Binary files a/static/icons/060059D1.png and /dev/null differ diff --git a/static/icons/060059D2.png b/static/icons/060059D2.png deleted file mode 100755 index 60cfdf96..00000000 Binary files a/static/icons/060059D2.png and /dev/null differ diff --git a/static/icons/060059D3.png b/static/icons/060059D3.png deleted file mode 100755 index 91bc4882..00000000 Binary files a/static/icons/060059D3.png and /dev/null differ diff --git a/static/icons/060059D4.png b/static/icons/060059D4.png deleted file mode 100755 index 8fae3cf2..00000000 Binary files a/static/icons/060059D4.png and /dev/null differ diff --git a/static/icons/060059D5.png b/static/icons/060059D5.png deleted file mode 100755 index dde49e96..00000000 Binary files a/static/icons/060059D5.png and /dev/null differ diff --git a/static/icons/060059D6.png b/static/icons/060059D6.png deleted file mode 100755 index 07fd6717..00000000 Binary files a/static/icons/060059D6.png and /dev/null differ diff --git a/static/icons/060059D7.png b/static/icons/060059D7.png deleted file mode 100755 index 8f593dbf..00000000 Binary files a/static/icons/060059D7.png and /dev/null differ diff --git a/static/icons/060059D8.png b/static/icons/060059D8.png deleted file mode 100755 index 8d20335c..00000000 Binary files a/static/icons/060059D8.png and /dev/null differ diff --git a/static/icons/060059D9.png b/static/icons/060059D9.png deleted file mode 100755 index f85da377..00000000 Binary files a/static/icons/060059D9.png and /dev/null differ diff --git a/static/icons/060059DA.png b/static/icons/060059DA.png deleted file mode 100755 index c6ce8532..00000000 Binary files a/static/icons/060059DA.png and /dev/null differ diff --git a/static/icons/060059DB.png b/static/icons/060059DB.png deleted file mode 100755 index d90b4bb4..00000000 Binary files a/static/icons/060059DB.png and /dev/null differ diff --git a/static/icons/060059DC.png b/static/icons/060059DC.png deleted file mode 100755 index 7f8930a5..00000000 Binary files a/static/icons/060059DC.png and /dev/null differ diff --git a/static/icons/060059DD.png b/static/icons/060059DD.png deleted file mode 100755 index 90933da6..00000000 Binary files a/static/icons/060059DD.png and /dev/null differ diff --git a/static/icons/060059DE.png b/static/icons/060059DE.png deleted file mode 100755 index 1ed83450..00000000 Binary files a/static/icons/060059DE.png and /dev/null differ diff --git a/static/icons/060059DF.png b/static/icons/060059DF.png deleted file mode 100755 index 8fb1e10d..00000000 Binary files a/static/icons/060059DF.png and /dev/null differ diff --git a/static/icons/060059E0.png b/static/icons/060059E0.png deleted file mode 100755 index 60cfbb82..00000000 Binary files a/static/icons/060059E0.png and /dev/null differ diff --git a/static/icons/060059E1.png b/static/icons/060059E1.png deleted file mode 100755 index 04831147..00000000 Binary files a/static/icons/060059E1.png and /dev/null differ diff --git a/static/icons/060059E2.png b/static/icons/060059E2.png deleted file mode 100755 index dc659fd2..00000000 Binary files a/static/icons/060059E2.png and /dev/null differ diff --git a/static/icons/060059E3.png b/static/icons/060059E3.png deleted file mode 100755 index f2addbae..00000000 Binary files a/static/icons/060059E3.png and /dev/null differ diff --git a/static/icons/060059E4.png b/static/icons/060059E4.png deleted file mode 100755 index 8ad99bf3..00000000 Binary files a/static/icons/060059E4.png and /dev/null differ diff --git a/static/icons/060059E5.png b/static/icons/060059E5.png deleted file mode 100755 index ba90796a..00000000 Binary files a/static/icons/060059E5.png and /dev/null differ diff --git a/static/icons/060059E6.png b/static/icons/060059E6.png deleted file mode 100755 index e68dd9cd..00000000 Binary files a/static/icons/060059E6.png and /dev/null differ diff --git a/static/icons/060059E7.png b/static/icons/060059E7.png deleted file mode 100755 index 1240dbda..00000000 Binary files a/static/icons/060059E7.png and /dev/null differ diff --git a/static/icons/060059E8.png b/static/icons/060059E8.png deleted file mode 100755 index 8ce04a0b..00000000 Binary files a/static/icons/060059E8.png and /dev/null differ diff --git a/static/icons/060059E9.png b/static/icons/060059E9.png deleted file mode 100755 index 47554b13..00000000 Binary files a/static/icons/060059E9.png and /dev/null differ diff --git a/static/icons/060059EA.png b/static/icons/060059EA.png deleted file mode 100755 index 376edd80..00000000 Binary files a/static/icons/060059EA.png and /dev/null differ diff --git a/static/icons/060059EB.png b/static/icons/060059EB.png deleted file mode 100755 index a3eee6b9..00000000 Binary files a/static/icons/060059EB.png and /dev/null differ diff --git a/static/icons/060059EC.png b/static/icons/060059EC.png deleted file mode 100755 index 792c4023..00000000 Binary files a/static/icons/060059EC.png and /dev/null differ diff --git a/static/icons/060059ED.png b/static/icons/060059ED.png deleted file mode 100755 index c4bc66f4..00000000 Binary files a/static/icons/060059ED.png and /dev/null differ diff --git a/static/icons/060059EE.png b/static/icons/060059EE.png deleted file mode 100755 index a3b52166..00000000 Binary files a/static/icons/060059EE.png and /dev/null differ diff --git a/static/icons/060059EF.png b/static/icons/060059EF.png deleted file mode 100755 index 9df7c67d..00000000 Binary files a/static/icons/060059EF.png and /dev/null differ diff --git a/static/icons/060059F0.png b/static/icons/060059F0.png deleted file mode 100755 index 4d197248..00000000 Binary files a/static/icons/060059F0.png and /dev/null differ diff --git a/static/icons/060059F1.png b/static/icons/060059F1.png deleted file mode 100755 index 1741aa0b..00000000 Binary files a/static/icons/060059F1.png and /dev/null differ diff --git a/static/icons/060059FA.png b/static/icons/060059FA.png deleted file mode 100755 index 045b64c7..00000000 Binary files a/static/icons/060059FA.png and /dev/null differ diff --git a/static/icons/060059FB.png b/static/icons/060059FB.png deleted file mode 100755 index c6dead1a..00000000 Binary files a/static/icons/060059FB.png and /dev/null differ diff --git a/static/icons/060059FC.png b/static/icons/060059FC.png deleted file mode 100755 index 12531d19..00000000 Binary files a/static/icons/060059FC.png and /dev/null differ diff --git a/static/icons/060059FD.png b/static/icons/060059FD.png deleted file mode 100755 index e94a7979..00000000 Binary files a/static/icons/060059FD.png and /dev/null differ diff --git a/static/icons/060059FE.png b/static/icons/060059FE.png deleted file mode 100755 index ca35bac5..00000000 Binary files a/static/icons/060059FE.png and /dev/null differ diff --git a/static/icons/060059FF.png b/static/icons/060059FF.png deleted file mode 100755 index 4255ad3c..00000000 Binary files a/static/icons/060059FF.png and /dev/null differ diff --git a/static/icons/06005A00.png b/static/icons/06005A00.png deleted file mode 100755 index d781c664..00000000 Binary files a/static/icons/06005A00.png and /dev/null differ diff --git a/static/icons/06005A01.png b/static/icons/06005A01.png deleted file mode 100755 index 97500fa2..00000000 Binary files a/static/icons/06005A01.png and /dev/null differ diff --git a/static/icons/06005A02.png b/static/icons/06005A02.png deleted file mode 100755 index 3fad0cc1..00000000 Binary files a/static/icons/06005A02.png and /dev/null differ diff --git a/static/icons/06005A03.png b/static/icons/06005A03.png deleted file mode 100755 index 911cec43..00000000 Binary files a/static/icons/06005A03.png and /dev/null differ diff --git a/static/icons/06005A04.png b/static/icons/06005A04.png deleted file mode 100755 index 5061f709..00000000 Binary files a/static/icons/06005A04.png and /dev/null differ diff --git a/static/icons/06005A05.png b/static/icons/06005A05.png deleted file mode 100755 index 454653de..00000000 Binary files a/static/icons/06005A05.png and /dev/null differ diff --git a/static/icons/06005A06.png b/static/icons/06005A06.png deleted file mode 100755 index 50282904..00000000 Binary files a/static/icons/06005A06.png and /dev/null differ diff --git a/static/icons/06005A07.png b/static/icons/06005A07.png deleted file mode 100755 index 229644af..00000000 Binary files a/static/icons/06005A07.png and /dev/null differ diff --git a/static/icons/06005A08.png b/static/icons/06005A08.png deleted file mode 100755 index 97500fa2..00000000 Binary files a/static/icons/06005A08.png and /dev/null differ diff --git a/static/icons/06005A09.png b/static/icons/06005A09.png deleted file mode 100755 index 3d8fa075..00000000 Binary files a/static/icons/06005A09.png and /dev/null differ diff --git a/static/icons/06005A0A.png b/static/icons/06005A0A.png deleted file mode 100755 index 054f6378..00000000 Binary files a/static/icons/06005A0A.png and /dev/null differ diff --git a/static/icons/06005A0B.png b/static/icons/06005A0B.png deleted file mode 100755 index b64db7ba..00000000 Binary files a/static/icons/06005A0B.png and /dev/null differ diff --git a/static/icons/06005A0C.png b/static/icons/06005A0C.png deleted file mode 100755 index f60a128d..00000000 Binary files a/static/icons/06005A0C.png and /dev/null differ diff --git a/static/icons/06005A0D.png b/static/icons/06005A0D.png deleted file mode 100755 index 997aa481..00000000 Binary files a/static/icons/06005A0D.png and /dev/null differ diff --git a/static/icons/06005A0E.png b/static/icons/06005A0E.png deleted file mode 100755 index 94a820b1..00000000 Binary files a/static/icons/06005A0E.png and /dev/null differ diff --git a/static/icons/06005A0F.png b/static/icons/06005A0F.png deleted file mode 100755 index 8906a394..00000000 Binary files a/static/icons/06005A0F.png and /dev/null differ diff --git a/static/icons/06005A10.png b/static/icons/06005A10.png deleted file mode 100755 index 7ec275f4..00000000 Binary files a/static/icons/06005A10.png and /dev/null differ diff --git a/static/icons/06005A11.png b/static/icons/06005A11.png deleted file mode 100755 index 00d75feb..00000000 Binary files a/static/icons/06005A11.png and /dev/null differ diff --git a/static/icons/06005A12.png b/static/icons/06005A12.png deleted file mode 100755 index a3855191..00000000 Binary files a/static/icons/06005A12.png and /dev/null differ diff --git a/static/icons/06005A13.png b/static/icons/06005A13.png deleted file mode 100755 index 5647eed4..00000000 Binary files a/static/icons/06005A13.png and /dev/null differ diff --git a/static/icons/06005A14.png b/static/icons/06005A14.png deleted file mode 100755 index d2f85e17..00000000 Binary files a/static/icons/06005A14.png and /dev/null differ diff --git a/static/icons/06005A15.png b/static/icons/06005A15.png deleted file mode 100755 index 6f058b4c..00000000 Binary files a/static/icons/06005A15.png and /dev/null differ diff --git a/static/icons/06005A16.png b/static/icons/06005A16.png deleted file mode 100755 index d716dda5..00000000 Binary files a/static/icons/06005A16.png and /dev/null differ diff --git a/static/icons/06005A17.png b/static/icons/06005A17.png deleted file mode 100755 index cfcc9a45..00000000 Binary files a/static/icons/06005A17.png and /dev/null differ diff --git a/static/icons/06005A18.png b/static/icons/06005A18.png deleted file mode 100755 index 7537950b..00000000 Binary files a/static/icons/06005A18.png and /dev/null differ diff --git a/static/icons/06005A19.png b/static/icons/06005A19.png deleted file mode 100755 index 2b2d56b3..00000000 Binary files a/static/icons/06005A19.png and /dev/null differ diff --git a/static/icons/06005A1A.png b/static/icons/06005A1A.png deleted file mode 100755 index ef27d289..00000000 Binary files a/static/icons/06005A1A.png and /dev/null differ diff --git a/static/icons/06005A1B.png b/static/icons/06005A1B.png deleted file mode 100755 index 2265384e..00000000 Binary files a/static/icons/06005A1B.png and /dev/null differ diff --git a/static/icons/06005A1C.png b/static/icons/06005A1C.png deleted file mode 100755 index dc60ad87..00000000 Binary files a/static/icons/06005A1C.png and /dev/null differ diff --git a/static/icons/06005A1D.png b/static/icons/06005A1D.png deleted file mode 100755 index 84d41a58..00000000 Binary files a/static/icons/06005A1D.png and /dev/null differ diff --git a/static/icons/06005A1E.png b/static/icons/06005A1E.png deleted file mode 100755 index ea45f7b9..00000000 Binary files a/static/icons/06005A1E.png and /dev/null differ diff --git a/static/icons/06005A1F.png b/static/icons/06005A1F.png deleted file mode 100755 index 2af641e7..00000000 Binary files a/static/icons/06005A1F.png and /dev/null differ diff --git a/static/icons/06005A20.png b/static/icons/06005A20.png deleted file mode 100755 index 4c5333ed..00000000 Binary files a/static/icons/06005A20.png and /dev/null differ diff --git a/static/icons/06005A21.png b/static/icons/06005A21.png deleted file mode 100755 index fff1aca5..00000000 Binary files a/static/icons/06005A21.png and /dev/null differ diff --git a/static/icons/06005A22.png b/static/icons/06005A22.png deleted file mode 100755 index d62a441d..00000000 Binary files a/static/icons/06005A22.png and /dev/null differ diff --git a/static/icons/06005A23.png b/static/icons/06005A23.png deleted file mode 100755 index a8085f2a..00000000 Binary files a/static/icons/06005A23.png and /dev/null differ diff --git a/static/icons/06005A24.png b/static/icons/06005A24.png deleted file mode 100755 index c0ad5dc1..00000000 Binary files a/static/icons/06005A24.png and /dev/null differ diff --git a/static/icons/06005A25.png b/static/icons/06005A25.png deleted file mode 100755 index 2fce4c60..00000000 Binary files a/static/icons/06005A25.png and /dev/null differ diff --git a/static/icons/06005A26.png b/static/icons/06005A26.png deleted file mode 100755 index 78e58ce1..00000000 Binary files a/static/icons/06005A26.png and /dev/null differ diff --git a/static/icons/06005A27.png b/static/icons/06005A27.png deleted file mode 100755 index e9fbad99..00000000 Binary files a/static/icons/06005A27.png and /dev/null differ diff --git a/static/icons/06005A28.png b/static/icons/06005A28.png deleted file mode 100755 index e07f8395..00000000 Binary files a/static/icons/06005A28.png and /dev/null differ diff --git a/static/icons/06005A29.png b/static/icons/06005A29.png deleted file mode 100755 index 5f30aa06..00000000 Binary files a/static/icons/06005A29.png and /dev/null differ diff --git a/static/icons/06005A2A.png b/static/icons/06005A2A.png deleted file mode 100755 index b28cc435..00000000 Binary files a/static/icons/06005A2A.png and /dev/null differ diff --git a/static/icons/06005A2B.png b/static/icons/06005A2B.png deleted file mode 100755 index 038b229e..00000000 Binary files a/static/icons/06005A2B.png and /dev/null differ diff --git a/static/icons/06005A2C.png b/static/icons/06005A2C.png deleted file mode 100755 index 6c85bfd2..00000000 Binary files a/static/icons/06005A2C.png and /dev/null differ diff --git a/static/icons/06005A2D.png b/static/icons/06005A2D.png deleted file mode 100755 index 0c6b14ac..00000000 Binary files a/static/icons/06005A2D.png and /dev/null differ diff --git a/static/icons/06005A2E.png b/static/icons/06005A2E.png deleted file mode 100755 index e8fe0f22..00000000 Binary files a/static/icons/06005A2E.png and /dev/null differ diff --git a/static/icons/06005A2F.png b/static/icons/06005A2F.png deleted file mode 100755 index be067e32..00000000 Binary files a/static/icons/06005A2F.png and /dev/null differ diff --git a/static/icons/06005A30.png b/static/icons/06005A30.png deleted file mode 100755 index 90edef92..00000000 Binary files a/static/icons/06005A30.png and /dev/null differ diff --git a/static/icons/06005A31.png b/static/icons/06005A31.png deleted file mode 100755 index 18ce3276..00000000 Binary files a/static/icons/06005A31.png and /dev/null differ diff --git a/static/icons/06005A32.png b/static/icons/06005A32.png deleted file mode 100755 index c8736550..00000000 Binary files a/static/icons/06005A32.png and /dev/null differ diff --git a/static/icons/06005A33.png b/static/icons/06005A33.png deleted file mode 100755 index 381d6ca7..00000000 Binary files a/static/icons/06005A33.png and /dev/null differ diff --git a/static/icons/06005A34.png b/static/icons/06005A34.png deleted file mode 100755 index e3ff8bab..00000000 Binary files a/static/icons/06005A34.png and /dev/null differ diff --git a/static/icons/06005A35.png b/static/icons/06005A35.png deleted file mode 100755 index 2b51bfb6..00000000 Binary files a/static/icons/06005A35.png and /dev/null differ diff --git a/static/icons/06005A36.png b/static/icons/06005A36.png deleted file mode 100755 index fd50af56..00000000 Binary files a/static/icons/06005A36.png and /dev/null differ diff --git a/static/icons/06005A37.png b/static/icons/06005A37.png deleted file mode 100755 index 5878d3e1..00000000 Binary files a/static/icons/06005A37.png and /dev/null differ diff --git a/static/icons/06005A38.png b/static/icons/06005A38.png deleted file mode 100755 index b47d6790..00000000 Binary files a/static/icons/06005A38.png and /dev/null differ diff --git a/static/icons/06005A39.png b/static/icons/06005A39.png deleted file mode 100755 index 567c9343..00000000 Binary files a/static/icons/06005A39.png and /dev/null differ diff --git a/static/icons/06005A3A.png b/static/icons/06005A3A.png deleted file mode 100755 index edc337bd..00000000 Binary files a/static/icons/06005A3A.png and /dev/null differ diff --git a/static/icons/06005A3B.png b/static/icons/06005A3B.png deleted file mode 100755 index 82cdac79..00000000 Binary files a/static/icons/06005A3B.png and /dev/null differ diff --git a/static/icons/06005A3C.png b/static/icons/06005A3C.png deleted file mode 100755 index 237fae75..00000000 Binary files a/static/icons/06005A3C.png and /dev/null differ diff --git a/static/icons/06005A3D.png b/static/icons/06005A3D.png deleted file mode 100755 index fbb20cbb..00000000 Binary files a/static/icons/06005A3D.png and /dev/null differ diff --git a/static/icons/06005A3E.png b/static/icons/06005A3E.png deleted file mode 100755 index 3ec979eb..00000000 Binary files a/static/icons/06005A3E.png and /dev/null differ diff --git a/static/icons/06005A3F.png b/static/icons/06005A3F.png deleted file mode 100755 index 57f57d0e..00000000 Binary files a/static/icons/06005A3F.png and /dev/null differ diff --git a/static/icons/06005A40.png b/static/icons/06005A40.png deleted file mode 100755 index 814e7db2..00000000 Binary files a/static/icons/06005A40.png and /dev/null differ diff --git a/static/icons/06005A4D.png b/static/icons/06005A4D.png deleted file mode 100755 index de972d28..00000000 Binary files a/static/icons/06005A4D.png and /dev/null differ diff --git a/static/icons/06005A4E.png b/static/icons/06005A4E.png deleted file mode 100755 index 5df1f351..00000000 Binary files a/static/icons/06005A4E.png and /dev/null differ diff --git a/static/icons/06005A4F.png b/static/icons/06005A4F.png deleted file mode 100755 index f2813e5b..00000000 Binary files a/static/icons/06005A4F.png and /dev/null differ diff --git a/static/icons/06005A50.png b/static/icons/06005A50.png deleted file mode 100755 index e082baf3..00000000 Binary files a/static/icons/06005A50.png and /dev/null differ diff --git a/static/icons/06005A51.png b/static/icons/06005A51.png deleted file mode 100755 index 60373f9f..00000000 Binary files a/static/icons/06005A51.png and /dev/null differ diff --git a/static/icons/06005A52.png b/static/icons/06005A52.png deleted file mode 100755 index 0dd56144..00000000 Binary files a/static/icons/06005A52.png and /dev/null differ diff --git a/static/icons/06005A53.png b/static/icons/06005A53.png deleted file mode 100755 index 1cf17499..00000000 Binary files a/static/icons/06005A53.png and /dev/null differ diff --git a/static/icons/06005A54.png b/static/icons/06005A54.png deleted file mode 100755 index 2a67e7c1..00000000 Binary files a/static/icons/06005A54.png and /dev/null differ diff --git a/static/icons/06005A55.png b/static/icons/06005A55.png deleted file mode 100755 index e204281c..00000000 Binary files a/static/icons/06005A55.png and /dev/null differ diff --git a/static/icons/06005A56.png b/static/icons/06005A56.png deleted file mode 100755 index ddaed03d..00000000 Binary files a/static/icons/06005A56.png and /dev/null differ diff --git a/static/icons/06005A57.png b/static/icons/06005A57.png deleted file mode 100755 index 941937b5..00000000 Binary files a/static/icons/06005A57.png and /dev/null differ diff --git a/static/icons/06005A58.png b/static/icons/06005A58.png deleted file mode 100755 index c532bcc8..00000000 Binary files a/static/icons/06005A58.png and /dev/null differ diff --git a/static/icons/06005A59.png b/static/icons/06005A59.png deleted file mode 100755 index 443d301e..00000000 Binary files a/static/icons/06005A59.png and /dev/null differ diff --git a/static/icons/06005A5A.png b/static/icons/06005A5A.png deleted file mode 100755 index 09d20898..00000000 Binary files a/static/icons/06005A5A.png and /dev/null differ diff --git a/static/icons/06005A5B.png b/static/icons/06005A5B.png deleted file mode 100755 index 1fa1523a..00000000 Binary files a/static/icons/06005A5B.png and /dev/null differ diff --git a/static/icons/06005A5C.png b/static/icons/06005A5C.png deleted file mode 100755 index e133ea75..00000000 Binary files a/static/icons/06005A5C.png and /dev/null differ diff --git a/static/icons/06005A5D.png b/static/icons/06005A5D.png deleted file mode 100755 index 60b5bdd0..00000000 Binary files a/static/icons/06005A5D.png and /dev/null differ diff --git a/static/icons/06005A5E.png b/static/icons/06005A5E.png deleted file mode 100755 index bd237eb3..00000000 Binary files a/static/icons/06005A5E.png and /dev/null differ diff --git a/static/icons/06005A5F.png b/static/icons/06005A5F.png deleted file mode 100755 index 6c8e1d71..00000000 Binary files a/static/icons/06005A5F.png and /dev/null differ diff --git a/static/icons/06005A60.png b/static/icons/06005A60.png deleted file mode 100755 index 6b0f2b69..00000000 Binary files a/static/icons/06005A60.png and /dev/null differ diff --git a/static/icons/06005A61.png b/static/icons/06005A61.png deleted file mode 100755 index 5c83c2bf..00000000 Binary files a/static/icons/06005A61.png and /dev/null differ diff --git a/static/icons/06005A62.png b/static/icons/06005A62.png deleted file mode 100755 index 7eb1e87c..00000000 Binary files a/static/icons/06005A62.png and /dev/null differ diff --git a/static/icons/06005A63.png b/static/icons/06005A63.png deleted file mode 100755 index 398dbc1c..00000000 Binary files a/static/icons/06005A63.png and /dev/null differ diff --git a/static/icons/06005A64.png b/static/icons/06005A64.png deleted file mode 100755 index 4c9e79dc..00000000 Binary files a/static/icons/06005A64.png and /dev/null differ diff --git a/static/icons/06005A65.png b/static/icons/06005A65.png deleted file mode 100755 index 2cfdc665..00000000 Binary files a/static/icons/06005A65.png and /dev/null differ diff --git a/static/icons/06005A66.png b/static/icons/06005A66.png deleted file mode 100755 index 6ddd12d3..00000000 Binary files a/static/icons/06005A66.png and /dev/null differ diff --git a/static/icons/06005A67.png b/static/icons/06005A67.png deleted file mode 100755 index 31291ff8..00000000 Binary files a/static/icons/06005A67.png and /dev/null differ diff --git a/static/icons/06005A68.png b/static/icons/06005A68.png deleted file mode 100755 index 05d44aac..00000000 Binary files a/static/icons/06005A68.png and /dev/null differ diff --git a/static/icons/06005A69.png b/static/icons/06005A69.png deleted file mode 100755 index 6837bf7d..00000000 Binary files a/static/icons/06005A69.png and /dev/null differ diff --git a/static/icons/06005A6A.png b/static/icons/06005A6A.png deleted file mode 100755 index 7f1898b8..00000000 Binary files a/static/icons/06005A6A.png and /dev/null differ diff --git a/static/icons/06005A6B.png b/static/icons/06005A6B.png deleted file mode 100755 index 92732026..00000000 Binary files a/static/icons/06005A6B.png and /dev/null differ diff --git a/static/icons/06005A6C.png b/static/icons/06005A6C.png deleted file mode 100755 index fd59e5ae..00000000 Binary files a/static/icons/06005A6C.png and /dev/null differ diff --git a/static/icons/06005A6D.png b/static/icons/06005A6D.png deleted file mode 100755 index 17b5dd38..00000000 Binary files a/static/icons/06005A6D.png and /dev/null differ diff --git a/static/icons/06005A6E.png b/static/icons/06005A6E.png deleted file mode 100755 index d47f290d..00000000 Binary files a/static/icons/06005A6E.png and /dev/null differ diff --git a/static/icons/06005A6F.png b/static/icons/06005A6F.png deleted file mode 100755 index 83090ee6..00000000 Binary files a/static/icons/06005A6F.png and /dev/null differ diff --git a/static/icons/06005A70.png b/static/icons/06005A70.png deleted file mode 100755 index 6a997918..00000000 Binary files a/static/icons/06005A70.png and /dev/null differ diff --git a/static/icons/06005A71.png b/static/icons/06005A71.png deleted file mode 100755 index 2b8ccacf..00000000 Binary files a/static/icons/06005A71.png and /dev/null differ diff --git a/static/icons/06005A72.png b/static/icons/06005A72.png deleted file mode 100755 index b2f88a49..00000000 Binary files a/static/icons/06005A72.png and /dev/null differ diff --git a/static/icons/06005A73.png b/static/icons/06005A73.png deleted file mode 100755 index 911fa5b8..00000000 Binary files a/static/icons/06005A73.png and /dev/null differ diff --git a/static/icons/06005A74.png b/static/icons/06005A74.png deleted file mode 100755 index 05f50641..00000000 Binary files a/static/icons/06005A74.png and /dev/null differ diff --git a/static/icons/06005A75.png b/static/icons/06005A75.png deleted file mode 100755 index 898d8182..00000000 Binary files a/static/icons/06005A75.png and /dev/null differ diff --git a/static/icons/06005A76.png b/static/icons/06005A76.png deleted file mode 100755 index 24b3e341..00000000 Binary files a/static/icons/06005A76.png and /dev/null differ diff --git a/static/icons/06005A77.png b/static/icons/06005A77.png deleted file mode 100755 index e66ec35d..00000000 Binary files a/static/icons/06005A77.png and /dev/null differ diff --git a/static/icons/06005A78.png b/static/icons/06005A78.png deleted file mode 100755 index 86d3875c..00000000 Binary files a/static/icons/06005A78.png and /dev/null differ diff --git a/static/icons/06005A79.png b/static/icons/06005A79.png deleted file mode 100755 index 0fc5513b..00000000 Binary files a/static/icons/06005A79.png and /dev/null differ diff --git a/static/icons/06005A7A.png b/static/icons/06005A7A.png deleted file mode 100755 index c60b1031..00000000 Binary files a/static/icons/06005A7A.png and /dev/null differ diff --git a/static/icons/06005A7B.png b/static/icons/06005A7B.png deleted file mode 100755 index c02afef3..00000000 Binary files a/static/icons/06005A7B.png and /dev/null differ diff --git a/static/icons/06005A7C.png b/static/icons/06005A7C.png deleted file mode 100755 index 9d5ccbf5..00000000 Binary files a/static/icons/06005A7C.png and /dev/null differ diff --git a/static/icons/06005A7D.png b/static/icons/06005A7D.png deleted file mode 100755 index 7c1a982d..00000000 Binary files a/static/icons/06005A7D.png and /dev/null differ diff --git a/static/icons/06005A7E.png b/static/icons/06005A7E.png deleted file mode 100755 index 4c3da89c..00000000 Binary files a/static/icons/06005A7E.png and /dev/null differ diff --git a/static/icons/06005A7F.png b/static/icons/06005A7F.png deleted file mode 100755 index 69363714..00000000 Binary files a/static/icons/06005A7F.png and /dev/null differ diff --git a/static/icons/06005A80.png b/static/icons/06005A80.png deleted file mode 100755 index aa84e0ad..00000000 Binary files a/static/icons/06005A80.png and /dev/null differ diff --git a/static/icons/06005A81.png b/static/icons/06005A81.png deleted file mode 100755 index 5cfe9bee..00000000 Binary files a/static/icons/06005A81.png and /dev/null differ diff --git a/static/icons/06005A82.png b/static/icons/06005A82.png deleted file mode 100755 index 1a31a3c5..00000000 Binary files a/static/icons/06005A82.png and /dev/null differ diff --git a/static/icons/06005A83.png b/static/icons/06005A83.png deleted file mode 100755 index 7354eacf..00000000 Binary files a/static/icons/06005A83.png and /dev/null differ diff --git a/static/icons/06005A84.png b/static/icons/06005A84.png deleted file mode 100755 index 204048af..00000000 Binary files a/static/icons/06005A84.png and /dev/null differ diff --git a/static/icons/06005A85.png b/static/icons/06005A85.png deleted file mode 100755 index 1f71f2a9..00000000 Binary files a/static/icons/06005A85.png and /dev/null differ diff --git a/static/icons/06005A86.png b/static/icons/06005A86.png deleted file mode 100755 index 84e4774b..00000000 Binary files a/static/icons/06005A86.png and /dev/null differ diff --git a/static/icons/06005A87.png b/static/icons/06005A87.png deleted file mode 100755 index 45869f73..00000000 Binary files a/static/icons/06005A87.png and /dev/null differ diff --git a/static/icons/06005A88.png b/static/icons/06005A88.png deleted file mode 100755 index 4ee53f5d..00000000 Binary files a/static/icons/06005A88.png and /dev/null differ diff --git a/static/icons/06005A8A.png b/static/icons/06005A8A.png deleted file mode 100755 index f9f1f4f0..00000000 Binary files a/static/icons/06005A8A.png and /dev/null differ diff --git a/static/icons/06005A8B.png b/static/icons/06005A8B.png deleted file mode 100755 index 28a03f69..00000000 Binary files a/static/icons/06005A8B.png and /dev/null differ diff --git a/static/icons/06005A8C.png b/static/icons/06005A8C.png deleted file mode 100755 index 07c99392..00000000 Binary files a/static/icons/06005A8C.png and /dev/null differ diff --git a/static/icons/06005A8D.png b/static/icons/06005A8D.png deleted file mode 100755 index a86810b6..00000000 Binary files a/static/icons/06005A8D.png and /dev/null differ diff --git a/static/icons/06005A8E.png b/static/icons/06005A8E.png deleted file mode 100755 index 6f87d525..00000000 Binary files a/static/icons/06005A8E.png and /dev/null differ diff --git a/static/icons/06005A8F.png b/static/icons/06005A8F.png deleted file mode 100755 index 44434b94..00000000 Binary files a/static/icons/06005A8F.png and /dev/null differ diff --git a/static/icons/06005A90.png b/static/icons/06005A90.png deleted file mode 100755 index fd6ac5bf..00000000 Binary files a/static/icons/06005A90.png and /dev/null differ diff --git a/static/icons/06005A91.png b/static/icons/06005A91.png deleted file mode 100755 index 61769e9e..00000000 Binary files a/static/icons/06005A91.png and /dev/null differ diff --git a/static/icons/06005A92.png b/static/icons/06005A92.png deleted file mode 100755 index 65876338..00000000 Binary files a/static/icons/06005A92.png and /dev/null differ diff --git a/static/icons/06005A93.png b/static/icons/06005A93.png deleted file mode 100755 index 14ce04e7..00000000 Binary files a/static/icons/06005A93.png and /dev/null differ diff --git a/static/icons/06005A94.png b/static/icons/06005A94.png deleted file mode 100755 index ae8586f9..00000000 Binary files a/static/icons/06005A94.png and /dev/null differ diff --git a/static/icons/06005A95.png b/static/icons/06005A95.png deleted file mode 100755 index d7a32818..00000000 Binary files a/static/icons/06005A95.png and /dev/null differ diff --git a/static/icons/06005A96.png b/static/icons/06005A96.png deleted file mode 100755 index b764cbcb..00000000 Binary files a/static/icons/06005A96.png and /dev/null differ diff --git a/static/icons/06005A97.png b/static/icons/06005A97.png deleted file mode 100755 index 1aa0b81c..00000000 Binary files a/static/icons/06005A97.png and /dev/null differ diff --git a/static/icons/06005A98.png b/static/icons/06005A98.png deleted file mode 100755 index 09212325..00000000 Binary files a/static/icons/06005A98.png and /dev/null differ diff --git a/static/icons/06005A99.png b/static/icons/06005A99.png deleted file mode 100755 index 3502bd19..00000000 Binary files a/static/icons/06005A99.png and /dev/null differ diff --git a/static/icons/06005A9A.png b/static/icons/06005A9A.png deleted file mode 100755 index 09e8213b..00000000 Binary files a/static/icons/06005A9A.png and /dev/null differ diff --git a/static/icons/06005A9B.png b/static/icons/06005A9B.png deleted file mode 100755 index ea9cb3b2..00000000 Binary files a/static/icons/06005A9B.png and /dev/null differ diff --git a/static/icons/06005A9C.png b/static/icons/06005A9C.png deleted file mode 100755 index 30ae1a18..00000000 Binary files a/static/icons/06005A9C.png and /dev/null differ diff --git a/static/icons/06005A9D.png b/static/icons/06005A9D.png deleted file mode 100755 index d11beead..00000000 Binary files a/static/icons/06005A9D.png and /dev/null differ diff --git a/static/icons/06005A9E.png b/static/icons/06005A9E.png deleted file mode 100755 index 14939ccc..00000000 Binary files a/static/icons/06005A9E.png and /dev/null differ diff --git a/static/icons/06005A9F.png b/static/icons/06005A9F.png deleted file mode 100755 index 5de29d6b..00000000 Binary files a/static/icons/06005A9F.png and /dev/null differ diff --git a/static/icons/06005AA0.png b/static/icons/06005AA0.png deleted file mode 100755 index 8fb7fd38..00000000 Binary files a/static/icons/06005AA0.png and /dev/null differ diff --git a/static/icons/06005AA1.png b/static/icons/06005AA1.png deleted file mode 100755 index a0f0ec55..00000000 Binary files a/static/icons/06005AA1.png and /dev/null differ diff --git a/static/icons/06005AA2.png b/static/icons/06005AA2.png deleted file mode 100755 index 981402f1..00000000 Binary files a/static/icons/06005AA2.png and /dev/null differ diff --git a/static/icons/06005AA3.png b/static/icons/06005AA3.png deleted file mode 100755 index ad4d38ec..00000000 Binary files a/static/icons/06005AA3.png and /dev/null differ diff --git a/static/icons/06005AA4.png b/static/icons/06005AA4.png deleted file mode 100755 index 225f943c..00000000 Binary files a/static/icons/06005AA4.png and /dev/null differ diff --git a/static/icons/06005AA5.png b/static/icons/06005AA5.png deleted file mode 100755 index 4063e0d0..00000000 Binary files a/static/icons/06005AA5.png and /dev/null differ diff --git a/static/icons/06005AA6.png b/static/icons/06005AA6.png deleted file mode 100755 index 5a935ca8..00000000 Binary files a/static/icons/06005AA6.png and /dev/null differ diff --git a/static/icons/06005AA7.png b/static/icons/06005AA7.png deleted file mode 100755 index d180492c..00000000 Binary files a/static/icons/06005AA7.png and /dev/null differ diff --git a/static/icons/06005AA8.png b/static/icons/06005AA8.png deleted file mode 100755 index fb35c117..00000000 Binary files a/static/icons/06005AA8.png and /dev/null differ diff --git a/static/icons/06005AA9.png b/static/icons/06005AA9.png deleted file mode 100755 index c6ff80c3..00000000 Binary files a/static/icons/06005AA9.png and /dev/null differ diff --git a/static/icons/06005AAA.png b/static/icons/06005AAA.png deleted file mode 100755 index 1275323b..00000000 Binary files a/static/icons/06005AAA.png and /dev/null differ diff --git a/static/icons/06005AAB.png b/static/icons/06005AAB.png deleted file mode 100755 index 9b2ed572..00000000 Binary files a/static/icons/06005AAB.png and /dev/null differ diff --git a/static/icons/06005AAC.png b/static/icons/06005AAC.png deleted file mode 100755 index 0e7f97a9..00000000 Binary files a/static/icons/06005AAC.png and /dev/null differ diff --git a/static/icons/06005AAD.png b/static/icons/06005AAD.png deleted file mode 100755 index d0dc9a66..00000000 Binary files a/static/icons/06005AAD.png and /dev/null differ diff --git a/static/icons/06005AAE.png b/static/icons/06005AAE.png deleted file mode 100755 index 28e98679..00000000 Binary files a/static/icons/06005AAE.png and /dev/null differ diff --git a/static/icons/06005AAF.png b/static/icons/06005AAF.png deleted file mode 100755 index f05bd479..00000000 Binary files a/static/icons/06005AAF.png and /dev/null differ diff --git a/static/icons/06005AB0.png b/static/icons/06005AB0.png deleted file mode 100755 index 57c1ac69..00000000 Binary files a/static/icons/06005AB0.png and /dev/null differ diff --git a/static/icons/06005AB1.png b/static/icons/06005AB1.png deleted file mode 100755 index a382bcf1..00000000 Binary files a/static/icons/06005AB1.png and /dev/null differ diff --git a/static/icons/06005AB2.png b/static/icons/06005AB2.png deleted file mode 100755 index 696f39ce..00000000 Binary files a/static/icons/06005AB2.png and /dev/null differ diff --git a/static/icons/06005AE8.png b/static/icons/06005AE8.png deleted file mode 100755 index 77b4f9eb..00000000 Binary files a/static/icons/06005AE8.png and /dev/null differ diff --git a/static/icons/06005AE9.png b/static/icons/06005AE9.png deleted file mode 100755 index a72f9f6c..00000000 Binary files a/static/icons/06005AE9.png and /dev/null differ diff --git a/static/icons/06005AEA.png b/static/icons/06005AEA.png deleted file mode 100755 index bef4073a..00000000 Binary files a/static/icons/06005AEA.png and /dev/null differ diff --git a/static/icons/06005AEB.png b/static/icons/06005AEB.png deleted file mode 100755 index 50473def..00000000 Binary files a/static/icons/06005AEB.png and /dev/null differ diff --git a/static/icons/06005AEC.png b/static/icons/06005AEC.png deleted file mode 100755 index 618b4235..00000000 Binary files a/static/icons/06005AEC.png and /dev/null differ diff --git a/static/icons/06005AED.png b/static/icons/06005AED.png deleted file mode 100755 index a3c1f58b..00000000 Binary files a/static/icons/06005AED.png and /dev/null differ diff --git a/static/icons/06005AEE.png b/static/icons/06005AEE.png deleted file mode 100755 index 25c026d9..00000000 Binary files a/static/icons/06005AEE.png and /dev/null differ diff --git a/static/icons/06005AEF.png b/static/icons/06005AEF.png deleted file mode 100755 index ec1823a3..00000000 Binary files a/static/icons/06005AEF.png and /dev/null differ diff --git a/static/icons/06005AF0.png b/static/icons/06005AF0.png deleted file mode 100755 index 8dbca040..00000000 Binary files a/static/icons/06005AF0.png and /dev/null differ diff --git a/static/icons/06005AF1.png b/static/icons/06005AF1.png deleted file mode 100755 index b4b85d6e..00000000 Binary files a/static/icons/06005AF1.png and /dev/null differ diff --git a/static/icons/06005AF2.png b/static/icons/06005AF2.png deleted file mode 100755 index 35b12e5d..00000000 Binary files a/static/icons/06005AF2.png and /dev/null differ diff --git a/static/icons/06005AF3.png b/static/icons/06005AF3.png deleted file mode 100755 index eedd9e07..00000000 Binary files a/static/icons/06005AF3.png and /dev/null differ diff --git a/static/icons/06005AF4.png b/static/icons/06005AF4.png deleted file mode 100755 index 66ffb538..00000000 Binary files a/static/icons/06005AF4.png and /dev/null differ diff --git a/static/icons/06005AF5.png b/static/icons/06005AF5.png deleted file mode 100755 index f43ffa5f..00000000 Binary files a/static/icons/06005AF5.png and /dev/null differ diff --git a/static/icons/06005AF6.png b/static/icons/06005AF6.png deleted file mode 100755 index 0f3c0543..00000000 Binary files a/static/icons/06005AF6.png and /dev/null differ diff --git a/static/icons/06005AF7.png b/static/icons/06005AF7.png deleted file mode 100755 index ecbbddd1..00000000 Binary files a/static/icons/06005AF7.png and /dev/null differ diff --git a/static/icons/06005AF8.png b/static/icons/06005AF8.png deleted file mode 100755 index 82f2a243..00000000 Binary files a/static/icons/06005AF8.png and /dev/null differ diff --git a/static/icons/06005AF9.png b/static/icons/06005AF9.png deleted file mode 100755 index 6c818cdf..00000000 Binary files a/static/icons/06005AF9.png and /dev/null differ diff --git a/static/icons/06005AFA.png b/static/icons/06005AFA.png deleted file mode 100755 index 26cf55de..00000000 Binary files a/static/icons/06005AFA.png and /dev/null differ diff --git a/static/icons/06005AFB.png b/static/icons/06005AFB.png deleted file mode 100755 index bc670611..00000000 Binary files a/static/icons/06005AFB.png and /dev/null differ diff --git a/static/icons/06005AFC.png b/static/icons/06005AFC.png deleted file mode 100755 index aa30428b..00000000 Binary files a/static/icons/06005AFC.png and /dev/null differ diff --git a/static/icons/06005AFD.png b/static/icons/06005AFD.png deleted file mode 100755 index 01efdad0..00000000 Binary files a/static/icons/06005AFD.png and /dev/null differ diff --git a/static/icons/06005AFE.png b/static/icons/06005AFE.png deleted file mode 100755 index 56948669..00000000 Binary files a/static/icons/06005AFE.png and /dev/null differ diff --git a/static/icons/06005AFF.png b/static/icons/06005AFF.png deleted file mode 100755 index 66ef2b64..00000000 Binary files a/static/icons/06005AFF.png and /dev/null differ diff --git a/static/icons/06005B00.png b/static/icons/06005B00.png deleted file mode 100755 index bb56aa4f..00000000 Binary files a/static/icons/06005B00.png and /dev/null differ diff --git a/static/icons/06005B01.png b/static/icons/06005B01.png deleted file mode 100755 index c0c7ce8b..00000000 Binary files a/static/icons/06005B01.png and /dev/null differ diff --git a/static/icons/06005B02.png b/static/icons/06005B02.png deleted file mode 100755 index 00b36488..00000000 Binary files a/static/icons/06005B02.png and /dev/null differ diff --git a/static/icons/06005B03.png b/static/icons/06005B03.png deleted file mode 100755 index 28497089..00000000 Binary files a/static/icons/06005B03.png and /dev/null differ diff --git a/static/icons/06005B04.png b/static/icons/06005B04.png deleted file mode 100755 index e113987b..00000000 Binary files a/static/icons/06005B04.png and /dev/null differ diff --git a/static/icons/06005B05.png b/static/icons/06005B05.png deleted file mode 100755 index 2f8c57c4..00000000 Binary files a/static/icons/06005B05.png and /dev/null differ diff --git a/static/icons/06005B06.png b/static/icons/06005B06.png deleted file mode 100755 index bdcb85fd..00000000 Binary files a/static/icons/06005B06.png and /dev/null differ diff --git a/static/icons/06005B07.png b/static/icons/06005B07.png deleted file mode 100755 index c539c4dd..00000000 Binary files a/static/icons/06005B07.png and /dev/null differ diff --git a/static/icons/06005B08.png b/static/icons/06005B08.png deleted file mode 100755 index 31470ff2..00000000 Binary files a/static/icons/06005B08.png and /dev/null differ diff --git a/static/icons/06005B09.png b/static/icons/06005B09.png deleted file mode 100755 index 80ebdff0..00000000 Binary files a/static/icons/06005B09.png and /dev/null differ diff --git a/static/icons/06005B0A.png b/static/icons/06005B0A.png deleted file mode 100755 index bfdad19b..00000000 Binary files a/static/icons/06005B0A.png and /dev/null differ diff --git a/static/icons/06005B0B.png b/static/icons/06005B0B.png deleted file mode 100755 index 9298af75..00000000 Binary files a/static/icons/06005B0B.png and /dev/null differ diff --git a/static/icons/06005B0C.png b/static/icons/06005B0C.png deleted file mode 100755 index b413dbae..00000000 Binary files a/static/icons/06005B0C.png and /dev/null differ diff --git a/static/icons/06005B0D.png b/static/icons/06005B0D.png deleted file mode 100755 index c3a5fa3e..00000000 Binary files a/static/icons/06005B0D.png and /dev/null differ diff --git a/static/icons/06005B0E.png b/static/icons/06005B0E.png deleted file mode 100755 index 3bf99ebe..00000000 Binary files a/static/icons/06005B0E.png and /dev/null differ diff --git a/static/icons/06005B0F.png b/static/icons/06005B0F.png deleted file mode 100755 index a5b00e36..00000000 Binary files a/static/icons/06005B0F.png and /dev/null differ diff --git a/static/icons/06005B10.png b/static/icons/06005B10.png deleted file mode 100755 index 99dcf3d6..00000000 Binary files a/static/icons/06005B10.png and /dev/null differ diff --git a/static/icons/06005B11.png b/static/icons/06005B11.png deleted file mode 100755 index 725cfd43..00000000 Binary files a/static/icons/06005B11.png and /dev/null differ diff --git a/static/icons/06005B12.png b/static/icons/06005B12.png deleted file mode 100755 index a495e3e2..00000000 Binary files a/static/icons/06005B12.png and /dev/null differ diff --git a/static/icons/06005B13.png b/static/icons/06005B13.png deleted file mode 100755 index 34ca8379..00000000 Binary files a/static/icons/06005B13.png and /dev/null differ diff --git a/static/icons/06005B14.png b/static/icons/06005B14.png deleted file mode 100755 index 401e9790..00000000 Binary files a/static/icons/06005B14.png and /dev/null differ diff --git a/static/icons/06005B15.png b/static/icons/06005B15.png deleted file mode 100755 index b3bf69b0..00000000 Binary files a/static/icons/06005B15.png and /dev/null differ diff --git a/static/icons/06005B16.png b/static/icons/06005B16.png deleted file mode 100755 index 5417f2ff..00000000 Binary files a/static/icons/06005B16.png and /dev/null differ diff --git a/static/icons/06005B17.png b/static/icons/06005B17.png deleted file mode 100755 index 14281110..00000000 Binary files a/static/icons/06005B17.png and /dev/null differ diff --git a/static/icons/06005B18.png b/static/icons/06005B18.png deleted file mode 100755 index 4b95434e..00000000 Binary files a/static/icons/06005B18.png and /dev/null differ diff --git a/static/icons/06005B19.png b/static/icons/06005B19.png deleted file mode 100755 index f6cddacd..00000000 Binary files a/static/icons/06005B19.png and /dev/null differ diff --git a/static/icons/06005B1A.png b/static/icons/06005B1A.png deleted file mode 100755 index 782d578b..00000000 Binary files a/static/icons/06005B1A.png and /dev/null differ diff --git a/static/icons/06005B1B.png b/static/icons/06005B1B.png deleted file mode 100755 index 5e94def7..00000000 Binary files a/static/icons/06005B1B.png and /dev/null differ diff --git a/static/icons/06005B1C.png b/static/icons/06005B1C.png deleted file mode 100755 index aeb75c09..00000000 Binary files a/static/icons/06005B1C.png and /dev/null differ diff --git a/static/icons/06005B1D.png b/static/icons/06005B1D.png deleted file mode 100755 index 0036b41f..00000000 Binary files a/static/icons/06005B1D.png and /dev/null differ diff --git a/static/icons/06005B1E.png b/static/icons/06005B1E.png deleted file mode 100755 index d36c42cd..00000000 Binary files a/static/icons/06005B1E.png and /dev/null differ diff --git a/static/icons/06005B1F.png b/static/icons/06005B1F.png deleted file mode 100755 index 1d1d324d..00000000 Binary files a/static/icons/06005B1F.png and /dev/null differ diff --git a/static/icons/06005B20.png b/static/icons/06005B20.png deleted file mode 100755 index 28c75648..00000000 Binary files a/static/icons/06005B20.png and /dev/null differ diff --git a/static/icons/06005B21.png b/static/icons/06005B21.png deleted file mode 100755 index 137cd4fb..00000000 Binary files a/static/icons/06005B21.png and /dev/null differ diff --git a/static/icons/06005B22.png b/static/icons/06005B22.png deleted file mode 100755 index 98c0b72d..00000000 Binary files a/static/icons/06005B22.png and /dev/null differ diff --git a/static/icons/06005B23.png b/static/icons/06005B23.png deleted file mode 100755 index cc1a93c9..00000000 Binary files a/static/icons/06005B23.png and /dev/null differ diff --git a/static/icons/06005B24.png b/static/icons/06005B24.png deleted file mode 100755 index 8df6d490..00000000 Binary files a/static/icons/06005B24.png and /dev/null differ diff --git a/static/icons/06005B25.png b/static/icons/06005B25.png deleted file mode 100755 index 09440e58..00000000 Binary files a/static/icons/06005B25.png and /dev/null differ diff --git a/static/icons/06005B26.png b/static/icons/06005B26.png deleted file mode 100755 index c8d24cf1..00000000 Binary files a/static/icons/06005B26.png and /dev/null differ diff --git a/static/icons/06005B27.png b/static/icons/06005B27.png deleted file mode 100755 index ae56f1cd..00000000 Binary files a/static/icons/06005B27.png and /dev/null differ diff --git a/static/icons/06005B28.png b/static/icons/06005B28.png deleted file mode 100755 index 89ecc4d4..00000000 Binary files a/static/icons/06005B28.png and /dev/null differ diff --git a/static/icons/06005B29.png b/static/icons/06005B29.png deleted file mode 100755 index deb34545..00000000 Binary files a/static/icons/06005B29.png and /dev/null differ diff --git a/static/icons/06005B2A.png b/static/icons/06005B2A.png deleted file mode 100755 index c3426a39..00000000 Binary files a/static/icons/06005B2A.png and /dev/null differ diff --git a/static/icons/06005B2B.png b/static/icons/06005B2B.png deleted file mode 100755 index de56a446..00000000 Binary files a/static/icons/06005B2B.png and /dev/null differ diff --git a/static/icons/06005B2C.png b/static/icons/06005B2C.png deleted file mode 100755 index 7e1b73f2..00000000 Binary files a/static/icons/06005B2C.png and /dev/null differ diff --git a/static/icons/06005B2D.png b/static/icons/06005B2D.png deleted file mode 100755 index 6271d609..00000000 Binary files a/static/icons/06005B2D.png and /dev/null differ diff --git a/static/icons/06005B2E.png b/static/icons/06005B2E.png deleted file mode 100755 index 267f8db7..00000000 Binary files a/static/icons/06005B2E.png and /dev/null differ diff --git a/static/icons/06005B2F.png b/static/icons/06005B2F.png deleted file mode 100755 index 7fc731dd..00000000 Binary files a/static/icons/06005B2F.png and /dev/null differ diff --git a/static/icons/06005B30.png b/static/icons/06005B30.png deleted file mode 100755 index b50b4499..00000000 Binary files a/static/icons/06005B30.png and /dev/null differ diff --git a/static/icons/06005B31.png b/static/icons/06005B31.png deleted file mode 100755 index 4a6c8a9c..00000000 Binary files a/static/icons/06005B31.png and /dev/null differ diff --git a/static/icons/06005B32.png b/static/icons/06005B32.png deleted file mode 100755 index c4a8a876..00000000 Binary files a/static/icons/06005B32.png and /dev/null differ diff --git a/static/icons/06005B33.png b/static/icons/06005B33.png deleted file mode 100755 index 82792201..00000000 Binary files a/static/icons/06005B33.png and /dev/null differ diff --git a/static/icons/06005B34.png b/static/icons/06005B34.png deleted file mode 100755 index b0408032..00000000 Binary files a/static/icons/06005B34.png and /dev/null differ diff --git a/static/icons/06005B35.png b/static/icons/06005B35.png deleted file mode 100755 index 01cf4c19..00000000 Binary files a/static/icons/06005B35.png and /dev/null differ diff --git a/static/icons/06005B36.png b/static/icons/06005B36.png deleted file mode 100755 index 18f3af28..00000000 Binary files a/static/icons/06005B36.png and /dev/null differ diff --git a/static/icons/06005B37.png b/static/icons/06005B37.png deleted file mode 100755 index 0574e15f..00000000 Binary files a/static/icons/06005B37.png and /dev/null differ diff --git a/static/icons/06005B38.png b/static/icons/06005B38.png deleted file mode 100755 index 66540f57..00000000 Binary files a/static/icons/06005B38.png and /dev/null differ diff --git a/static/icons/06005B39.png b/static/icons/06005B39.png deleted file mode 100755 index c8cf0d95..00000000 Binary files a/static/icons/06005B39.png and /dev/null differ diff --git a/static/icons/06005B3A.png b/static/icons/06005B3A.png deleted file mode 100755 index bfc2f7c5..00000000 Binary files a/static/icons/06005B3A.png and /dev/null differ diff --git a/static/icons/06005B3B.png b/static/icons/06005B3B.png deleted file mode 100755 index 6472e429..00000000 Binary files a/static/icons/06005B3B.png and /dev/null differ diff --git a/static/icons/06005B3C.png b/static/icons/06005B3C.png deleted file mode 100755 index 876970be..00000000 Binary files a/static/icons/06005B3C.png and /dev/null differ diff --git a/static/icons/06005B3D.png b/static/icons/06005B3D.png deleted file mode 100755 index 1968af75..00000000 Binary files a/static/icons/06005B3D.png and /dev/null differ diff --git a/static/icons/06005B3E.png b/static/icons/06005B3E.png deleted file mode 100755 index edfcc42b..00000000 Binary files a/static/icons/06005B3E.png and /dev/null differ diff --git a/static/icons/06005B3F.png b/static/icons/06005B3F.png deleted file mode 100755 index c0a563ec..00000000 Binary files a/static/icons/06005B3F.png and /dev/null differ diff --git a/static/icons/06005B40.png b/static/icons/06005B40.png deleted file mode 100755 index edb74e92..00000000 Binary files a/static/icons/06005B40.png and /dev/null differ diff --git a/static/icons/06005B41.png b/static/icons/06005B41.png deleted file mode 100755 index b61681b6..00000000 Binary files a/static/icons/06005B41.png and /dev/null differ diff --git a/static/icons/06005B42.png b/static/icons/06005B42.png deleted file mode 100755 index 6ff42d10..00000000 Binary files a/static/icons/06005B42.png and /dev/null differ diff --git a/static/icons/06005B43.png b/static/icons/06005B43.png deleted file mode 100755 index 17240760..00000000 Binary files a/static/icons/06005B43.png and /dev/null differ diff --git a/static/icons/06005B44.png b/static/icons/06005B44.png deleted file mode 100755 index 4e1db816..00000000 Binary files a/static/icons/06005B44.png and /dev/null differ diff --git a/static/icons/06005B45.png b/static/icons/06005B45.png deleted file mode 100755 index 8a17df97..00000000 Binary files a/static/icons/06005B45.png and /dev/null differ diff --git a/static/icons/06005B46.png b/static/icons/06005B46.png deleted file mode 100755 index 67afde35..00000000 Binary files a/static/icons/06005B46.png and /dev/null differ diff --git a/static/icons/06005B47.png b/static/icons/06005B47.png deleted file mode 100755 index 68cd8c17..00000000 Binary files a/static/icons/06005B47.png and /dev/null differ diff --git a/static/icons/06005B48.png b/static/icons/06005B48.png deleted file mode 100755 index 1a8b9dbc..00000000 Binary files a/static/icons/06005B48.png and /dev/null differ diff --git a/static/icons/06005B49.png b/static/icons/06005B49.png deleted file mode 100755 index 3b0defb7..00000000 Binary files a/static/icons/06005B49.png and /dev/null differ diff --git a/static/icons/06005B4A.png b/static/icons/06005B4A.png deleted file mode 100755 index 4416fa44..00000000 Binary files a/static/icons/06005B4A.png and /dev/null differ diff --git a/static/icons/06005B4B.png b/static/icons/06005B4B.png deleted file mode 100755 index 916204e1..00000000 Binary files a/static/icons/06005B4B.png and /dev/null differ diff --git a/static/icons/06005B4C.png b/static/icons/06005B4C.png deleted file mode 100755 index bc2f4018..00000000 Binary files a/static/icons/06005B4C.png and /dev/null differ diff --git a/static/icons/06005B4D.png b/static/icons/06005B4D.png deleted file mode 100755 index 329a0bf1..00000000 Binary files a/static/icons/06005B4D.png and /dev/null differ diff --git a/static/icons/06005B4E.png b/static/icons/06005B4E.png deleted file mode 100755 index 28a3d246..00000000 Binary files a/static/icons/06005B4E.png and /dev/null differ diff --git a/static/icons/06005B4F.png b/static/icons/06005B4F.png deleted file mode 100755 index 12774d94..00000000 Binary files a/static/icons/06005B4F.png and /dev/null differ diff --git a/static/icons/06005B50.png b/static/icons/06005B50.png deleted file mode 100755 index 07c39ba8..00000000 Binary files a/static/icons/06005B50.png and /dev/null differ diff --git a/static/icons/06005B51.png b/static/icons/06005B51.png deleted file mode 100755 index 1b43b322..00000000 Binary files a/static/icons/06005B51.png and /dev/null differ diff --git a/static/icons/06005B52.png b/static/icons/06005B52.png deleted file mode 100755 index 39198175..00000000 Binary files a/static/icons/06005B52.png and /dev/null differ diff --git a/static/icons/06005B53.png b/static/icons/06005B53.png deleted file mode 100755 index 5a405a12..00000000 Binary files a/static/icons/06005B53.png and /dev/null differ diff --git a/static/icons/06005B54.png b/static/icons/06005B54.png deleted file mode 100755 index d55f2fca..00000000 Binary files a/static/icons/06005B54.png and /dev/null differ diff --git a/static/icons/06005B55.png b/static/icons/06005B55.png deleted file mode 100755 index a0dbb597..00000000 Binary files a/static/icons/06005B55.png and /dev/null differ diff --git a/static/icons/06005B56.png b/static/icons/06005B56.png deleted file mode 100755 index 866fafff..00000000 Binary files a/static/icons/06005B56.png and /dev/null differ diff --git a/static/icons/06005B57.png b/static/icons/06005B57.png deleted file mode 100755 index a03672f9..00000000 Binary files a/static/icons/06005B57.png and /dev/null differ diff --git a/static/icons/06005B58.png b/static/icons/06005B58.png deleted file mode 100755 index 1b792c26..00000000 Binary files a/static/icons/06005B58.png and /dev/null differ diff --git a/static/icons/06005B59.png b/static/icons/06005B59.png deleted file mode 100755 index c10f48d5..00000000 Binary files a/static/icons/06005B59.png and /dev/null differ diff --git a/static/icons/06005B5A.png b/static/icons/06005B5A.png deleted file mode 100755 index 6cd275d7..00000000 Binary files a/static/icons/06005B5A.png and /dev/null differ diff --git a/static/icons/06005B5B.png b/static/icons/06005B5B.png deleted file mode 100755 index fa891252..00000000 Binary files a/static/icons/06005B5B.png and /dev/null differ diff --git a/static/icons/06005B5C.png b/static/icons/06005B5C.png deleted file mode 100755 index 9c7264b1..00000000 Binary files a/static/icons/06005B5C.png and /dev/null differ diff --git a/static/icons/06005B5D.png b/static/icons/06005B5D.png deleted file mode 100755 index fad248ba..00000000 Binary files a/static/icons/06005B5D.png and /dev/null differ diff --git a/static/icons/06005B5E.png b/static/icons/06005B5E.png deleted file mode 100755 index a2acc53c..00000000 Binary files a/static/icons/06005B5E.png and /dev/null differ diff --git a/static/icons/06005B5F.png b/static/icons/06005B5F.png deleted file mode 100755 index dfa97bf3..00000000 Binary files a/static/icons/06005B5F.png and /dev/null differ diff --git a/static/icons/06005B60.png b/static/icons/06005B60.png deleted file mode 100755 index 46cddaa3..00000000 Binary files a/static/icons/06005B60.png and /dev/null differ diff --git a/static/icons/06005B61.png b/static/icons/06005B61.png deleted file mode 100755 index f3c4b10f..00000000 Binary files a/static/icons/06005B61.png and /dev/null differ diff --git a/static/icons/06005B62.png b/static/icons/06005B62.png deleted file mode 100755 index 60b2ffb6..00000000 Binary files a/static/icons/06005B62.png and /dev/null differ diff --git a/static/icons/06005B63.png b/static/icons/06005B63.png deleted file mode 100755 index c9ffcea8..00000000 Binary files a/static/icons/06005B63.png and /dev/null differ diff --git a/static/icons/06005B64.png b/static/icons/06005B64.png deleted file mode 100755 index 6ad8da11..00000000 Binary files a/static/icons/06005B64.png and /dev/null differ diff --git a/static/icons/06005B65.png b/static/icons/06005B65.png deleted file mode 100755 index 32786919..00000000 Binary files a/static/icons/06005B65.png and /dev/null differ diff --git a/static/icons/06005B66.png b/static/icons/06005B66.png deleted file mode 100755 index c1e8ab91..00000000 Binary files a/static/icons/06005B66.png and /dev/null differ diff --git a/static/icons/06005B67.png b/static/icons/06005B67.png deleted file mode 100755 index 275fa90c..00000000 Binary files a/static/icons/06005B67.png and /dev/null differ diff --git a/static/icons/06005B68.png b/static/icons/06005B68.png deleted file mode 100755 index 8e38d12d..00000000 Binary files a/static/icons/06005B68.png and /dev/null differ diff --git a/static/icons/06005B69.png b/static/icons/06005B69.png deleted file mode 100755 index 4e23d226..00000000 Binary files a/static/icons/06005B69.png and /dev/null differ diff --git a/static/icons/06005B6A.png b/static/icons/06005B6A.png deleted file mode 100755 index a125a842..00000000 Binary files a/static/icons/06005B6A.png and /dev/null differ diff --git a/static/icons/06005B6B.png b/static/icons/06005B6B.png deleted file mode 100755 index 60dc4acb..00000000 Binary files a/static/icons/06005B6B.png and /dev/null differ diff --git a/static/icons/06005B6C.png b/static/icons/06005B6C.png deleted file mode 100755 index 77484222..00000000 Binary files a/static/icons/06005B6C.png and /dev/null differ diff --git a/static/icons/06005B6D.png b/static/icons/06005B6D.png deleted file mode 100755 index 239b8383..00000000 Binary files a/static/icons/06005B6D.png and /dev/null differ diff --git a/static/icons/06005B6E.png b/static/icons/06005B6E.png deleted file mode 100755 index 8c7ae4fe..00000000 Binary files a/static/icons/06005B6E.png and /dev/null differ diff --git a/static/icons/06005B6F.png b/static/icons/06005B6F.png deleted file mode 100755 index df69162d..00000000 Binary files a/static/icons/06005B6F.png and /dev/null differ diff --git a/static/icons/06005B70.png b/static/icons/06005B70.png deleted file mode 100755 index dea5af4c..00000000 Binary files a/static/icons/06005B70.png and /dev/null differ diff --git a/static/icons/06005B71.png b/static/icons/06005B71.png deleted file mode 100755 index 86cff16d..00000000 Binary files a/static/icons/06005B71.png and /dev/null differ diff --git a/static/icons/06005B72.png b/static/icons/06005B72.png deleted file mode 100755 index a3e1c4f2..00000000 Binary files a/static/icons/06005B72.png and /dev/null differ diff --git a/static/icons/06005B73.png b/static/icons/06005B73.png deleted file mode 100755 index 9200500f..00000000 Binary files a/static/icons/06005B73.png and /dev/null differ diff --git a/static/icons/06005B74.png b/static/icons/06005B74.png deleted file mode 100755 index afe22658..00000000 Binary files a/static/icons/06005B74.png and /dev/null differ diff --git a/static/icons/06005B75.png b/static/icons/06005B75.png deleted file mode 100755 index fdf07302..00000000 Binary files a/static/icons/06005B75.png and /dev/null differ diff --git a/static/icons/06005B76.png b/static/icons/06005B76.png deleted file mode 100755 index 3c91b17a..00000000 Binary files a/static/icons/06005B76.png and /dev/null differ diff --git a/static/icons/06005B7B.png b/static/icons/06005B7B.png deleted file mode 100755 index 66c63360..00000000 Binary files a/static/icons/06005B7B.png and /dev/null differ diff --git a/static/icons/06005B7C.png b/static/icons/06005B7C.png deleted file mode 100755 index 7fd5ccb5..00000000 Binary files a/static/icons/06005B7C.png and /dev/null differ diff --git a/static/icons/06005B7D.png b/static/icons/06005B7D.png deleted file mode 100755 index c4e97f22..00000000 Binary files a/static/icons/06005B7D.png and /dev/null differ diff --git a/static/icons/06005B7E.png b/static/icons/06005B7E.png deleted file mode 100755 index 2d97303f..00000000 Binary files a/static/icons/06005B7E.png and /dev/null differ diff --git a/static/icons/06005B7F.png b/static/icons/06005B7F.png deleted file mode 100755 index 98a197a6..00000000 Binary files a/static/icons/06005B7F.png and /dev/null differ diff --git a/static/icons/06005B80.png b/static/icons/06005B80.png deleted file mode 100755 index ad5778d2..00000000 Binary files a/static/icons/06005B80.png and /dev/null differ diff --git a/static/icons/06005B81.png b/static/icons/06005B81.png deleted file mode 100755 index 67721997..00000000 Binary files a/static/icons/06005B81.png and /dev/null differ diff --git a/static/icons/06005B82.png b/static/icons/06005B82.png deleted file mode 100755 index 957e9e4b..00000000 Binary files a/static/icons/06005B82.png and /dev/null differ diff --git a/static/icons/06005B83.png b/static/icons/06005B83.png deleted file mode 100755 index 5d46a87b..00000000 Binary files a/static/icons/06005B83.png and /dev/null differ diff --git a/static/icons/06005B84.png b/static/icons/06005B84.png deleted file mode 100755 index 15208fa3..00000000 Binary files a/static/icons/06005B84.png and /dev/null differ diff --git a/static/icons/06005B85.png b/static/icons/06005B85.png deleted file mode 100755 index f6c8d47c..00000000 Binary files a/static/icons/06005B85.png and /dev/null differ diff --git a/static/icons/06005B86.png b/static/icons/06005B86.png deleted file mode 100755 index 2bcd288f..00000000 Binary files a/static/icons/06005B86.png and /dev/null differ diff --git a/static/icons/06005B87.png b/static/icons/06005B87.png deleted file mode 100755 index c93b9d65..00000000 Binary files a/static/icons/06005B87.png and /dev/null differ diff --git a/static/icons/06005B88.png b/static/icons/06005B88.png deleted file mode 100755 index f6b9bd07..00000000 Binary files a/static/icons/06005B88.png and /dev/null differ diff --git a/static/icons/06005B89.png b/static/icons/06005B89.png deleted file mode 100755 index 44eac737..00000000 Binary files a/static/icons/06005B89.png and /dev/null differ diff --git a/static/icons/06005B8A.png b/static/icons/06005B8A.png deleted file mode 100755 index 52490d7b..00000000 Binary files a/static/icons/06005B8A.png and /dev/null differ diff --git a/static/icons/06005B8B.png b/static/icons/06005B8B.png deleted file mode 100755 index 3e636953..00000000 Binary files a/static/icons/06005B8B.png and /dev/null differ diff --git a/static/icons/06005B8C.png b/static/icons/06005B8C.png deleted file mode 100755 index 3c7dea10..00000000 Binary files a/static/icons/06005B8C.png and /dev/null differ diff --git a/static/icons/06005B8D.png b/static/icons/06005B8D.png deleted file mode 100755 index d6d37501..00000000 Binary files a/static/icons/06005B8D.png and /dev/null differ diff --git a/static/icons/06005B8E.png b/static/icons/06005B8E.png deleted file mode 100755 index 974d582c..00000000 Binary files a/static/icons/06005B8E.png and /dev/null differ diff --git a/static/icons/06005B8F.png b/static/icons/06005B8F.png deleted file mode 100755 index de40462d..00000000 Binary files a/static/icons/06005B8F.png and /dev/null differ diff --git a/static/icons/06005B90.png b/static/icons/06005B90.png deleted file mode 100755 index 95ebd7ed..00000000 Binary files a/static/icons/06005B90.png and /dev/null differ diff --git a/static/icons/06005B91.png b/static/icons/06005B91.png deleted file mode 100755 index 3da36b01..00000000 Binary files a/static/icons/06005B91.png and /dev/null differ diff --git a/static/icons/06005B92.png b/static/icons/06005B92.png deleted file mode 100755 index 87545c47..00000000 Binary files a/static/icons/06005B92.png and /dev/null differ diff --git a/static/icons/06005B93.png b/static/icons/06005B93.png deleted file mode 100755 index a5663e36..00000000 Binary files a/static/icons/06005B93.png and /dev/null differ diff --git a/static/icons/06005B94.png b/static/icons/06005B94.png deleted file mode 100755 index 9d36a5a1..00000000 Binary files a/static/icons/06005B94.png and /dev/null differ diff --git a/static/icons/06005B95.png b/static/icons/06005B95.png deleted file mode 100755 index 0b84f6b9..00000000 Binary files a/static/icons/06005B95.png and /dev/null differ diff --git a/static/icons/06005B96.png b/static/icons/06005B96.png deleted file mode 100755 index ba525b4f..00000000 Binary files a/static/icons/06005B96.png and /dev/null differ diff --git a/static/icons/06005B97.png b/static/icons/06005B97.png deleted file mode 100755 index a78b2ec1..00000000 Binary files a/static/icons/06005B97.png and /dev/null differ diff --git a/static/icons/06005B98.png b/static/icons/06005B98.png deleted file mode 100755 index 3f6a4d09..00000000 Binary files a/static/icons/06005B98.png and /dev/null differ diff --git a/static/icons/06005B99.png b/static/icons/06005B99.png deleted file mode 100755 index 7a0a683e..00000000 Binary files a/static/icons/06005B99.png and /dev/null differ diff --git a/static/icons/06005B9A.png b/static/icons/06005B9A.png deleted file mode 100755 index b43feb81..00000000 Binary files a/static/icons/06005B9A.png and /dev/null differ diff --git a/static/icons/06005B9B.png b/static/icons/06005B9B.png deleted file mode 100755 index 903d891b..00000000 Binary files a/static/icons/06005B9B.png and /dev/null differ diff --git a/static/icons/06005B9C.png b/static/icons/06005B9C.png deleted file mode 100755 index 7a2a7a7c..00000000 Binary files a/static/icons/06005B9C.png and /dev/null differ diff --git a/static/icons/06005B9D.png b/static/icons/06005B9D.png deleted file mode 100755 index c99313d5..00000000 Binary files a/static/icons/06005B9D.png and /dev/null differ diff --git a/static/icons/06005B9E.png b/static/icons/06005B9E.png deleted file mode 100755 index 6760ae67..00000000 Binary files a/static/icons/06005B9E.png and /dev/null differ diff --git a/static/icons/06005B9F.png b/static/icons/06005B9F.png deleted file mode 100755 index b0573277..00000000 Binary files a/static/icons/06005B9F.png and /dev/null differ diff --git a/static/icons/06005BA0.png b/static/icons/06005BA0.png deleted file mode 100755 index 48b794e1..00000000 Binary files a/static/icons/06005BA0.png and /dev/null differ diff --git a/static/icons/06005BA1.png b/static/icons/06005BA1.png deleted file mode 100755 index f17a82e4..00000000 Binary files a/static/icons/06005BA1.png and /dev/null differ diff --git a/static/icons/06005BA2.png b/static/icons/06005BA2.png deleted file mode 100755 index af4c2b11..00000000 Binary files a/static/icons/06005BA2.png and /dev/null differ diff --git a/static/icons/06005BA3.png b/static/icons/06005BA3.png deleted file mode 100755 index 802a984c..00000000 Binary files a/static/icons/06005BA3.png and /dev/null differ diff --git a/static/icons/06005BA4.png b/static/icons/06005BA4.png deleted file mode 100755 index b8eb9461..00000000 Binary files a/static/icons/06005BA4.png and /dev/null differ diff --git a/static/icons/06005BA5.png b/static/icons/06005BA5.png deleted file mode 100755 index 00a79084..00000000 Binary files a/static/icons/06005BA5.png and /dev/null differ diff --git a/static/icons/06005BA6.png b/static/icons/06005BA6.png deleted file mode 100755 index 0ed9830f..00000000 Binary files a/static/icons/06005BA6.png and /dev/null differ diff --git a/static/icons/06005BA7.png b/static/icons/06005BA7.png deleted file mode 100755 index d9cc9a58..00000000 Binary files a/static/icons/06005BA7.png and /dev/null differ diff --git a/static/icons/06005BA8.png b/static/icons/06005BA8.png deleted file mode 100755 index f1de6c46..00000000 Binary files a/static/icons/06005BA8.png and /dev/null differ diff --git a/static/icons/06005BA9.png b/static/icons/06005BA9.png deleted file mode 100755 index 7c642380..00000000 Binary files a/static/icons/06005BA9.png and /dev/null differ diff --git a/static/icons/06005BAA.png b/static/icons/06005BAA.png deleted file mode 100755 index e23218c6..00000000 Binary files a/static/icons/06005BAA.png and /dev/null differ diff --git a/static/icons/06005BAB.png b/static/icons/06005BAB.png deleted file mode 100755 index a7a6a0fe..00000000 Binary files a/static/icons/06005BAB.png and /dev/null differ diff --git a/static/icons/06005BAC.png b/static/icons/06005BAC.png deleted file mode 100755 index 8be55501..00000000 Binary files a/static/icons/06005BAC.png and /dev/null differ diff --git a/static/icons/06005BAD.png b/static/icons/06005BAD.png deleted file mode 100755 index 8c1f4200..00000000 Binary files a/static/icons/06005BAD.png and /dev/null differ diff --git a/static/icons/06005BAE.png b/static/icons/06005BAE.png deleted file mode 100755 index 6d853ba2..00000000 Binary files a/static/icons/06005BAE.png and /dev/null differ diff --git a/static/icons/06005BAF.png b/static/icons/06005BAF.png deleted file mode 100755 index c5085aec..00000000 Binary files a/static/icons/06005BAF.png and /dev/null differ diff --git a/static/icons/06005BB0.png b/static/icons/06005BB0.png deleted file mode 100755 index 223d2ccb..00000000 Binary files a/static/icons/06005BB0.png and /dev/null differ diff --git a/static/icons/06005BB1.png b/static/icons/06005BB1.png deleted file mode 100755 index cc68af68..00000000 Binary files a/static/icons/06005BB1.png and /dev/null differ diff --git a/static/icons/06005BB2.png b/static/icons/06005BB2.png deleted file mode 100755 index 7c742575..00000000 Binary files a/static/icons/06005BB2.png and /dev/null differ diff --git a/static/icons/06005BB3.png b/static/icons/06005BB3.png deleted file mode 100755 index 9d3f5bf5..00000000 Binary files a/static/icons/06005BB3.png and /dev/null differ diff --git a/static/icons/06005BB4.png b/static/icons/06005BB4.png deleted file mode 100755 index c60c2d70..00000000 Binary files a/static/icons/06005BB4.png and /dev/null differ diff --git a/static/icons/06005BB5.png b/static/icons/06005BB5.png deleted file mode 100755 index d68910a4..00000000 Binary files a/static/icons/06005BB5.png and /dev/null differ diff --git a/static/icons/06005BB6.png b/static/icons/06005BB6.png deleted file mode 100755 index 854768d7..00000000 Binary files a/static/icons/06005BB6.png and /dev/null differ diff --git a/static/icons/06005BB7.png b/static/icons/06005BB7.png deleted file mode 100755 index 0ff0b478..00000000 Binary files a/static/icons/06005BB7.png and /dev/null differ diff --git a/static/icons/06005BB8.png b/static/icons/06005BB8.png deleted file mode 100755 index 7c2fdbd8..00000000 Binary files a/static/icons/06005BB8.png and /dev/null differ diff --git a/static/icons/06005BB9.png b/static/icons/06005BB9.png deleted file mode 100755 index 1aefc94b..00000000 Binary files a/static/icons/06005BB9.png and /dev/null differ diff --git a/static/icons/06005BBA.png b/static/icons/06005BBA.png deleted file mode 100755 index c0afc2f9..00000000 Binary files a/static/icons/06005BBA.png and /dev/null differ diff --git a/static/icons/06005BBB.png b/static/icons/06005BBB.png deleted file mode 100755 index 5a083f01..00000000 Binary files a/static/icons/06005BBB.png and /dev/null differ diff --git a/static/icons/06005BBC.png b/static/icons/06005BBC.png deleted file mode 100755 index c3134f4c..00000000 Binary files a/static/icons/06005BBC.png and /dev/null differ diff --git a/static/icons/06005BBD.png b/static/icons/06005BBD.png deleted file mode 100755 index 9d1742d2..00000000 Binary files a/static/icons/06005BBD.png and /dev/null differ diff --git a/static/icons/06005BBE.png b/static/icons/06005BBE.png deleted file mode 100755 index 290f1e94..00000000 Binary files a/static/icons/06005BBE.png and /dev/null differ diff --git a/static/icons/06005BBF.png b/static/icons/06005BBF.png deleted file mode 100755 index cd459c26..00000000 Binary files a/static/icons/06005BBF.png and /dev/null differ diff --git a/static/icons/06005BC0.png b/static/icons/06005BC0.png deleted file mode 100755 index 0ce7435c..00000000 Binary files a/static/icons/06005BC0.png and /dev/null differ diff --git a/static/icons/06005BC1.png b/static/icons/06005BC1.png deleted file mode 100755 index f5598264..00000000 Binary files a/static/icons/06005BC1.png and /dev/null differ diff --git a/static/icons/06005BC2.png b/static/icons/06005BC2.png deleted file mode 100755 index 6e94678a..00000000 Binary files a/static/icons/06005BC2.png and /dev/null differ diff --git a/static/icons/06005BC3.png b/static/icons/06005BC3.png deleted file mode 100755 index c48c5af8..00000000 Binary files a/static/icons/06005BC3.png and /dev/null differ diff --git a/static/icons/06005BC4.png b/static/icons/06005BC4.png deleted file mode 100755 index 2034bb12..00000000 Binary files a/static/icons/06005BC4.png and /dev/null differ diff --git a/static/icons/06005BC5.png b/static/icons/06005BC5.png deleted file mode 100755 index 483ad99a..00000000 Binary files a/static/icons/06005BC5.png and /dev/null differ diff --git a/static/icons/06005BC6.png b/static/icons/06005BC6.png deleted file mode 100755 index a70207e9..00000000 Binary files a/static/icons/06005BC6.png and /dev/null differ diff --git a/static/icons/06005BC7.png b/static/icons/06005BC7.png deleted file mode 100755 index f28c8640..00000000 Binary files a/static/icons/06005BC7.png and /dev/null differ diff --git a/static/icons/06005BC8.png b/static/icons/06005BC8.png deleted file mode 100755 index b7a8b7f0..00000000 Binary files a/static/icons/06005BC8.png and /dev/null differ diff --git a/static/icons/06005BC9.png b/static/icons/06005BC9.png deleted file mode 100755 index 9207b1a0..00000000 Binary files a/static/icons/06005BC9.png and /dev/null differ diff --git a/static/icons/06005BCA.png b/static/icons/06005BCA.png deleted file mode 100755 index 510ac340..00000000 Binary files a/static/icons/06005BCA.png and /dev/null differ diff --git a/static/icons/06005BCB.png b/static/icons/06005BCB.png deleted file mode 100755 index 6f911499..00000000 Binary files a/static/icons/06005BCB.png and /dev/null differ diff --git a/static/icons/06005BCC.png b/static/icons/06005BCC.png deleted file mode 100755 index 810a2844..00000000 Binary files a/static/icons/06005BCC.png and /dev/null differ diff --git a/static/icons/06005BCD.png b/static/icons/06005BCD.png deleted file mode 100755 index ec895e16..00000000 Binary files a/static/icons/06005BCD.png and /dev/null differ diff --git a/static/icons/06005BCE.png b/static/icons/06005BCE.png deleted file mode 100755 index 3ecc1cd8..00000000 Binary files a/static/icons/06005BCE.png and /dev/null differ diff --git a/static/icons/06005BCF.png b/static/icons/06005BCF.png deleted file mode 100755 index 1bb808aa..00000000 Binary files a/static/icons/06005BCF.png and /dev/null differ diff --git a/static/icons/06005BD0.png b/static/icons/06005BD0.png deleted file mode 100755 index 12d409dc..00000000 Binary files a/static/icons/06005BD0.png and /dev/null differ diff --git a/static/icons/06005BD1.png b/static/icons/06005BD1.png deleted file mode 100755 index 902fbde4..00000000 Binary files a/static/icons/06005BD1.png and /dev/null differ diff --git a/static/icons/06005BD2.png b/static/icons/06005BD2.png deleted file mode 100755 index 9b9bfd85..00000000 Binary files a/static/icons/06005BD2.png and /dev/null differ diff --git a/static/icons/06005BD3.png b/static/icons/06005BD3.png deleted file mode 100755 index 716fa0c9..00000000 Binary files a/static/icons/06005BD3.png and /dev/null differ diff --git a/static/icons/06005BD4.png b/static/icons/06005BD4.png deleted file mode 100755 index 0ac2be4c..00000000 Binary files a/static/icons/06005BD4.png and /dev/null differ diff --git a/static/icons/06005BD5.png b/static/icons/06005BD5.png deleted file mode 100755 index 3d257211..00000000 Binary files a/static/icons/06005BD5.png and /dev/null differ diff --git a/static/icons/06005BD6.png b/static/icons/06005BD6.png deleted file mode 100755 index 759265e0..00000000 Binary files a/static/icons/06005BD6.png and /dev/null differ diff --git a/static/icons/06005BD7.png b/static/icons/06005BD7.png deleted file mode 100755 index 6fed13fd..00000000 Binary files a/static/icons/06005BD7.png and /dev/null differ diff --git a/static/icons/06005BD8.png b/static/icons/06005BD8.png deleted file mode 100755 index aa1b7871..00000000 Binary files a/static/icons/06005BD8.png and /dev/null differ diff --git a/static/icons/06005BD9.png b/static/icons/06005BD9.png deleted file mode 100755 index 7288adb4..00000000 Binary files a/static/icons/06005BD9.png and /dev/null differ diff --git a/static/icons/06005BDA.png b/static/icons/06005BDA.png deleted file mode 100755 index 37279a50..00000000 Binary files a/static/icons/06005BDA.png and /dev/null differ diff --git a/static/icons/06005BDB.png b/static/icons/06005BDB.png deleted file mode 100755 index a8ed76d1..00000000 Binary files a/static/icons/06005BDB.png and /dev/null differ diff --git a/static/icons/06005BDC.png b/static/icons/06005BDC.png deleted file mode 100755 index 749efecf..00000000 Binary files a/static/icons/06005BDC.png and /dev/null differ diff --git a/static/icons/06005BDD.png b/static/icons/06005BDD.png deleted file mode 100755 index dab068f3..00000000 Binary files a/static/icons/06005BDD.png and /dev/null differ diff --git a/static/icons/06005BDE.png b/static/icons/06005BDE.png deleted file mode 100755 index 7942e71e..00000000 Binary files a/static/icons/06005BDE.png and /dev/null differ diff --git a/static/icons/06005BDF.png b/static/icons/06005BDF.png deleted file mode 100755 index 83ded28d..00000000 Binary files a/static/icons/06005BDF.png and /dev/null differ diff --git a/static/icons/06005BE0.png b/static/icons/06005BE0.png deleted file mode 100755 index 17e7016e..00000000 Binary files a/static/icons/06005BE0.png and /dev/null differ diff --git a/static/icons/06005BE1.png b/static/icons/06005BE1.png deleted file mode 100755 index a4ddb139..00000000 Binary files a/static/icons/06005BE1.png and /dev/null differ diff --git a/static/icons/06005BE2.png b/static/icons/06005BE2.png deleted file mode 100755 index eaf4650d..00000000 Binary files a/static/icons/06005BE2.png and /dev/null differ diff --git a/static/icons/06005BE3.png b/static/icons/06005BE3.png deleted file mode 100755 index 3001074a..00000000 Binary files a/static/icons/06005BE3.png and /dev/null differ diff --git a/static/icons/06005BE4.png b/static/icons/06005BE4.png deleted file mode 100755 index 372b3339..00000000 Binary files a/static/icons/06005BE4.png and /dev/null differ diff --git a/static/icons/06005BE5.png b/static/icons/06005BE5.png deleted file mode 100755 index 2ca79d4e..00000000 Binary files a/static/icons/06005BE5.png and /dev/null differ diff --git a/static/icons/06005BE6.png b/static/icons/06005BE6.png deleted file mode 100755 index 23c136ac..00000000 Binary files a/static/icons/06005BE6.png and /dev/null differ diff --git a/static/icons/06005BE7.png b/static/icons/06005BE7.png deleted file mode 100755 index e77e1843..00000000 Binary files a/static/icons/06005BE7.png and /dev/null differ diff --git a/static/icons/06005BE8.png b/static/icons/06005BE8.png deleted file mode 100755 index 05b98c28..00000000 Binary files a/static/icons/06005BE8.png and /dev/null differ diff --git a/static/icons/06005BE9.png b/static/icons/06005BE9.png deleted file mode 100755 index ff877cc7..00000000 Binary files a/static/icons/06005BE9.png and /dev/null differ diff --git a/static/icons/06005BEA.png b/static/icons/06005BEA.png deleted file mode 100755 index 751bd23e..00000000 Binary files a/static/icons/06005BEA.png and /dev/null differ diff --git a/static/icons/06005BEB.png b/static/icons/06005BEB.png deleted file mode 100755 index bb2bd04e..00000000 Binary files a/static/icons/06005BEB.png and /dev/null differ diff --git a/static/icons/06005BEC.png b/static/icons/06005BEC.png deleted file mode 100755 index a4785d17..00000000 Binary files a/static/icons/06005BEC.png and /dev/null differ diff --git a/static/icons/06005BED.png b/static/icons/06005BED.png deleted file mode 100755 index 6178fb67..00000000 Binary files a/static/icons/06005BED.png and /dev/null differ diff --git a/static/icons/06005BEE.png b/static/icons/06005BEE.png deleted file mode 100755 index 2470979f..00000000 Binary files a/static/icons/06005BEE.png and /dev/null differ diff --git a/static/icons/06005BEF.png b/static/icons/06005BEF.png deleted file mode 100755 index a1be60c8..00000000 Binary files a/static/icons/06005BEF.png and /dev/null differ diff --git a/static/icons/06005BF0.png b/static/icons/06005BF0.png deleted file mode 100755 index 678e1fe2..00000000 Binary files a/static/icons/06005BF0.png and /dev/null differ diff --git a/static/icons/06005BF1.png b/static/icons/06005BF1.png deleted file mode 100755 index e072059e..00000000 Binary files a/static/icons/06005BF1.png and /dev/null differ diff --git a/static/icons/06005BF2.png b/static/icons/06005BF2.png deleted file mode 100755 index 25b5cde5..00000000 Binary files a/static/icons/06005BF2.png and /dev/null differ diff --git a/static/icons/06005BF3.png b/static/icons/06005BF3.png deleted file mode 100755 index 0505572f..00000000 Binary files a/static/icons/06005BF3.png and /dev/null differ diff --git a/static/icons/06005BF4.png b/static/icons/06005BF4.png deleted file mode 100755 index 24d3c1b2..00000000 Binary files a/static/icons/06005BF4.png and /dev/null differ diff --git a/static/icons/06005BF5.png b/static/icons/06005BF5.png deleted file mode 100755 index f4fd7f2d..00000000 Binary files a/static/icons/06005BF5.png and /dev/null differ diff --git a/static/icons/06005BF6.png b/static/icons/06005BF6.png deleted file mode 100755 index 7648c72a..00000000 Binary files a/static/icons/06005BF6.png and /dev/null differ diff --git a/static/icons/06005BF7.png b/static/icons/06005BF7.png deleted file mode 100755 index 474fe31c..00000000 Binary files a/static/icons/06005BF7.png and /dev/null differ diff --git a/static/icons/06005BF8.png b/static/icons/06005BF8.png deleted file mode 100755 index e142ab1f..00000000 Binary files a/static/icons/06005BF8.png and /dev/null differ diff --git a/static/icons/06005BF9.png b/static/icons/06005BF9.png deleted file mode 100755 index 4e52eb55..00000000 Binary files a/static/icons/06005BF9.png and /dev/null differ diff --git a/static/icons/06005BFA.png b/static/icons/06005BFA.png deleted file mode 100755 index 78683771..00000000 Binary files a/static/icons/06005BFA.png and /dev/null differ diff --git a/static/icons/06005BFB.png b/static/icons/06005BFB.png deleted file mode 100755 index 6f29ee82..00000000 Binary files a/static/icons/06005BFB.png and /dev/null differ diff --git a/static/icons/06005BFC.png b/static/icons/06005BFC.png deleted file mode 100755 index dea9f4be..00000000 Binary files a/static/icons/06005BFC.png and /dev/null differ diff --git a/static/icons/06005BFD.png b/static/icons/06005BFD.png deleted file mode 100755 index e1987735..00000000 Binary files a/static/icons/06005BFD.png and /dev/null differ diff --git a/static/icons/06005BFE.png b/static/icons/06005BFE.png deleted file mode 100755 index c7a7c84f..00000000 Binary files a/static/icons/06005BFE.png and /dev/null differ diff --git a/static/icons/06005BFF.png b/static/icons/06005BFF.png deleted file mode 100755 index fa0a66e9..00000000 Binary files a/static/icons/06005BFF.png and /dev/null differ diff --git a/static/icons/06005C00.png b/static/icons/06005C00.png deleted file mode 100755 index 79365238..00000000 Binary files a/static/icons/06005C00.png and /dev/null differ diff --git a/static/icons/06005C01.png b/static/icons/06005C01.png deleted file mode 100755 index 8b25d9b7..00000000 Binary files a/static/icons/06005C01.png and /dev/null differ diff --git a/static/icons/06005C02.png b/static/icons/06005C02.png deleted file mode 100755 index f277c5fe..00000000 Binary files a/static/icons/06005C02.png and /dev/null differ diff --git a/static/icons/06005C03.png b/static/icons/06005C03.png deleted file mode 100755 index 8d3af739..00000000 Binary files a/static/icons/06005C03.png and /dev/null differ diff --git a/static/icons/06005C04.png b/static/icons/06005C04.png deleted file mode 100755 index 89d3c796..00000000 Binary files a/static/icons/06005C04.png and /dev/null differ diff --git a/static/icons/06005C05.png b/static/icons/06005C05.png deleted file mode 100755 index 9c44b437..00000000 Binary files a/static/icons/06005C05.png and /dev/null differ diff --git a/static/icons/06005C06.png b/static/icons/06005C06.png deleted file mode 100755 index 3c5d44a6..00000000 Binary files a/static/icons/06005C06.png and /dev/null differ diff --git a/static/icons/06005C07.png b/static/icons/06005C07.png deleted file mode 100755 index 5cc519dc..00000000 Binary files a/static/icons/06005C07.png and /dev/null differ diff --git a/static/icons/06005C08.png b/static/icons/06005C08.png deleted file mode 100755 index deb5470c..00000000 Binary files a/static/icons/06005C08.png and /dev/null differ diff --git a/static/icons/06005C0C.png b/static/icons/06005C0C.png deleted file mode 100755 index d9ab54a3..00000000 Binary files a/static/icons/06005C0C.png and /dev/null differ diff --git a/static/icons/06005C0D.png b/static/icons/06005C0D.png deleted file mode 100755 index 70f8396a..00000000 Binary files a/static/icons/06005C0D.png and /dev/null differ diff --git a/static/icons/06005C0E.png b/static/icons/06005C0E.png deleted file mode 100755 index c3631afb..00000000 Binary files a/static/icons/06005C0E.png and /dev/null differ diff --git a/static/icons/06005C0F.png b/static/icons/06005C0F.png deleted file mode 100755 index dc2ed3ea..00000000 Binary files a/static/icons/06005C0F.png and /dev/null differ diff --git a/static/icons/06005C10.png b/static/icons/06005C10.png deleted file mode 100755 index 7851d5f9..00000000 Binary files a/static/icons/06005C10.png and /dev/null differ diff --git a/static/icons/06005C11.png b/static/icons/06005C11.png deleted file mode 100755 index 3e858129..00000000 Binary files a/static/icons/06005C11.png and /dev/null differ diff --git a/static/icons/06005C12.png b/static/icons/06005C12.png deleted file mode 100755 index 8ab01c47..00000000 Binary files a/static/icons/06005C12.png and /dev/null differ diff --git a/static/icons/06005C13.png b/static/icons/06005C13.png deleted file mode 100755 index 0abd1f27..00000000 Binary files a/static/icons/06005C13.png and /dev/null differ diff --git a/static/icons/06005C14.png b/static/icons/06005C14.png deleted file mode 100755 index 5cf64dae..00000000 Binary files a/static/icons/06005C14.png and /dev/null differ diff --git a/static/icons/06005C15.png b/static/icons/06005C15.png deleted file mode 100755 index 5298d29e..00000000 Binary files a/static/icons/06005C15.png and /dev/null differ diff --git a/static/icons/06005C16.png b/static/icons/06005C16.png deleted file mode 100755 index f229c533..00000000 Binary files a/static/icons/06005C16.png and /dev/null differ diff --git a/static/icons/06005C17.png b/static/icons/06005C17.png deleted file mode 100755 index 81139f61..00000000 Binary files a/static/icons/06005C17.png and /dev/null differ diff --git a/static/icons/06005C18.png b/static/icons/06005C18.png deleted file mode 100755 index bdbf6600..00000000 Binary files a/static/icons/06005C18.png and /dev/null differ diff --git a/static/icons/06005C19.png b/static/icons/06005C19.png deleted file mode 100755 index 1715b6df..00000000 Binary files a/static/icons/06005C19.png and /dev/null differ diff --git a/static/icons/06005C1A.png b/static/icons/06005C1A.png deleted file mode 100755 index 87c97b9e..00000000 Binary files a/static/icons/06005C1A.png and /dev/null differ diff --git a/static/icons/06005C1B.png b/static/icons/06005C1B.png deleted file mode 100755 index a45dbe5d..00000000 Binary files a/static/icons/06005C1B.png and /dev/null differ diff --git a/static/icons/06005C1C.png b/static/icons/06005C1C.png deleted file mode 100755 index 1839d6df..00000000 Binary files a/static/icons/06005C1C.png and /dev/null differ diff --git a/static/icons/06005C1D.png b/static/icons/06005C1D.png deleted file mode 100755 index 0e20cbb7..00000000 Binary files a/static/icons/06005C1D.png and /dev/null differ diff --git a/static/icons/06005C1E.png b/static/icons/06005C1E.png deleted file mode 100755 index 80a032c6..00000000 Binary files a/static/icons/06005C1E.png and /dev/null differ diff --git a/static/icons/06005C1F.png b/static/icons/06005C1F.png deleted file mode 100755 index 8dc4640a..00000000 Binary files a/static/icons/06005C1F.png and /dev/null differ diff --git a/static/icons/06005C20.png b/static/icons/06005C20.png deleted file mode 100755 index e634ebdd..00000000 Binary files a/static/icons/06005C20.png and /dev/null differ diff --git a/static/icons/06005C21.png b/static/icons/06005C21.png deleted file mode 100755 index 1e1f6e89..00000000 Binary files a/static/icons/06005C21.png and /dev/null differ diff --git a/static/icons/06005C22.png b/static/icons/06005C22.png deleted file mode 100755 index 12ce9790..00000000 Binary files a/static/icons/06005C22.png and /dev/null differ diff --git a/static/icons/06005C23.png b/static/icons/06005C23.png deleted file mode 100755 index 331fab72..00000000 Binary files a/static/icons/06005C23.png and /dev/null differ diff --git a/static/icons/06005C24.png b/static/icons/06005C24.png deleted file mode 100755 index 6ead6d29..00000000 Binary files a/static/icons/06005C24.png and /dev/null differ diff --git a/static/icons/06005C25.png b/static/icons/06005C25.png deleted file mode 100755 index bd9e290a..00000000 Binary files a/static/icons/06005C25.png and /dev/null differ diff --git a/static/icons/06005C26.png b/static/icons/06005C26.png deleted file mode 100755 index 559d37c3..00000000 Binary files a/static/icons/06005C26.png and /dev/null differ diff --git a/static/icons/06005C27.png b/static/icons/06005C27.png deleted file mode 100755 index 91860322..00000000 Binary files a/static/icons/06005C27.png and /dev/null differ diff --git a/static/icons/06005C28.png b/static/icons/06005C28.png deleted file mode 100755 index 38e6f2e1..00000000 Binary files a/static/icons/06005C28.png and /dev/null differ diff --git a/static/icons/06005C29.png b/static/icons/06005C29.png deleted file mode 100755 index 1f7cbf0a..00000000 Binary files a/static/icons/06005C29.png and /dev/null differ diff --git a/static/icons/06005C2A.png b/static/icons/06005C2A.png deleted file mode 100755 index 4cf8a72f..00000000 Binary files a/static/icons/06005C2A.png and /dev/null differ diff --git a/static/icons/06005C2B.png b/static/icons/06005C2B.png deleted file mode 100755 index 02b5e133..00000000 Binary files a/static/icons/06005C2B.png and /dev/null differ diff --git a/static/icons/06005C2C.png b/static/icons/06005C2C.png deleted file mode 100755 index 26393951..00000000 Binary files a/static/icons/06005C2C.png and /dev/null differ diff --git a/static/icons/06005C2D.png b/static/icons/06005C2D.png deleted file mode 100755 index 791d50ce..00000000 Binary files a/static/icons/06005C2D.png and /dev/null differ diff --git a/static/icons/06005C2E.png b/static/icons/06005C2E.png deleted file mode 100755 index fbfb613f..00000000 Binary files a/static/icons/06005C2E.png and /dev/null differ diff --git a/static/icons/06005C2F.png b/static/icons/06005C2F.png deleted file mode 100755 index d5ba09d1..00000000 Binary files a/static/icons/06005C2F.png and /dev/null differ diff --git a/static/icons/06005C30.png b/static/icons/06005C30.png deleted file mode 100755 index 1496d1f3..00000000 Binary files a/static/icons/06005C30.png and /dev/null differ diff --git a/static/icons/06005C31.png b/static/icons/06005C31.png deleted file mode 100755 index 5fea59ed..00000000 Binary files a/static/icons/06005C31.png and /dev/null differ diff --git a/static/icons/06005C32.png b/static/icons/06005C32.png deleted file mode 100755 index 6a6fde79..00000000 Binary files a/static/icons/06005C32.png and /dev/null differ diff --git a/static/icons/06005C33.png b/static/icons/06005C33.png deleted file mode 100755 index b97d99d1..00000000 Binary files a/static/icons/06005C33.png and /dev/null differ diff --git a/static/icons/06005C34.png b/static/icons/06005C34.png deleted file mode 100755 index 68883091..00000000 Binary files a/static/icons/06005C34.png and /dev/null differ diff --git a/static/icons/06005C35.png b/static/icons/06005C35.png deleted file mode 100755 index ea79bc4f..00000000 Binary files a/static/icons/06005C35.png and /dev/null differ diff --git a/static/icons/06005C36.png b/static/icons/06005C36.png deleted file mode 100755 index 7f4d436b..00000000 Binary files a/static/icons/06005C36.png and /dev/null differ diff --git a/static/icons/06005C37.png b/static/icons/06005C37.png deleted file mode 100755 index 07f9be3d..00000000 Binary files a/static/icons/06005C37.png and /dev/null differ diff --git a/static/icons/06005C38.png b/static/icons/06005C38.png deleted file mode 100755 index 0aeebf84..00000000 Binary files a/static/icons/06005C38.png and /dev/null differ diff --git a/static/icons/06005C39.png b/static/icons/06005C39.png deleted file mode 100755 index 0d16b117..00000000 Binary files a/static/icons/06005C39.png and /dev/null differ diff --git a/static/icons/06005C3A.png b/static/icons/06005C3A.png deleted file mode 100755 index 7937f539..00000000 Binary files a/static/icons/06005C3A.png and /dev/null differ diff --git a/static/icons/06005C3B.png b/static/icons/06005C3B.png deleted file mode 100755 index 14e0d532..00000000 Binary files a/static/icons/06005C3B.png and /dev/null differ diff --git a/static/icons/06005C3C.png b/static/icons/06005C3C.png deleted file mode 100755 index c688a081..00000000 Binary files a/static/icons/06005C3C.png and /dev/null differ diff --git a/static/icons/06005C3D.png b/static/icons/06005C3D.png deleted file mode 100755 index f80ca0fc..00000000 Binary files a/static/icons/06005C3D.png and /dev/null differ diff --git a/static/icons/06005C3E.png b/static/icons/06005C3E.png deleted file mode 100755 index a0842e0e..00000000 Binary files a/static/icons/06005C3E.png and /dev/null differ diff --git a/static/icons/06005C3F.png b/static/icons/06005C3F.png deleted file mode 100755 index 6e3a57fd..00000000 Binary files a/static/icons/06005C3F.png and /dev/null differ diff --git a/static/icons/06005C40.png b/static/icons/06005C40.png deleted file mode 100755 index 1141bb3a..00000000 Binary files a/static/icons/06005C40.png and /dev/null differ diff --git a/static/icons/06005C41.png b/static/icons/06005C41.png deleted file mode 100755 index f16673d0..00000000 Binary files a/static/icons/06005C41.png and /dev/null differ diff --git a/static/icons/06005C42.png b/static/icons/06005C42.png deleted file mode 100755 index 117c0a7c..00000000 Binary files a/static/icons/06005C42.png and /dev/null differ diff --git a/static/icons/06005C43.png b/static/icons/06005C43.png deleted file mode 100755 index d492f854..00000000 Binary files a/static/icons/06005C43.png and /dev/null differ diff --git a/static/icons/06005C44.png b/static/icons/06005C44.png deleted file mode 100755 index d73b5d7f..00000000 Binary files a/static/icons/06005C44.png and /dev/null differ diff --git a/static/icons/06005C45.png b/static/icons/06005C45.png deleted file mode 100755 index 7283dcd7..00000000 Binary files a/static/icons/06005C45.png and /dev/null differ diff --git a/static/icons/06005C46.png b/static/icons/06005C46.png deleted file mode 100755 index 1dc6de66..00000000 Binary files a/static/icons/06005C46.png and /dev/null differ diff --git a/static/icons/06005C47.png b/static/icons/06005C47.png deleted file mode 100755 index 9abeb7ba..00000000 Binary files a/static/icons/06005C47.png and /dev/null differ diff --git a/static/icons/06005C48.png b/static/icons/06005C48.png deleted file mode 100755 index edd2ad47..00000000 Binary files a/static/icons/06005C48.png and /dev/null differ diff --git a/static/icons/06005C49.png b/static/icons/06005C49.png deleted file mode 100755 index 1d44d3bd..00000000 Binary files a/static/icons/06005C49.png and /dev/null differ diff --git a/static/icons/06005C4A.png b/static/icons/06005C4A.png deleted file mode 100755 index 8c2fbd8b..00000000 Binary files a/static/icons/06005C4A.png and /dev/null differ diff --git a/static/icons/06005C4B.png b/static/icons/06005C4B.png deleted file mode 100755 index 7cc4ebb9..00000000 Binary files a/static/icons/06005C4B.png and /dev/null differ diff --git a/static/icons/06005C4C.png b/static/icons/06005C4C.png deleted file mode 100755 index 42bcb24b..00000000 Binary files a/static/icons/06005C4C.png and /dev/null differ diff --git a/static/icons/06005C4D.png b/static/icons/06005C4D.png deleted file mode 100755 index efa08358..00000000 Binary files a/static/icons/06005C4D.png and /dev/null differ diff --git a/static/icons/06005C4E.png b/static/icons/06005C4E.png deleted file mode 100755 index d665a767..00000000 Binary files a/static/icons/06005C4E.png and /dev/null differ diff --git a/static/icons/06005C4F.png b/static/icons/06005C4F.png deleted file mode 100755 index 6e1ac9de..00000000 Binary files a/static/icons/06005C4F.png and /dev/null differ diff --git a/static/icons/06005C50.png b/static/icons/06005C50.png deleted file mode 100755 index 9da773bf..00000000 Binary files a/static/icons/06005C50.png and /dev/null differ diff --git a/static/icons/06005C51.png b/static/icons/06005C51.png deleted file mode 100755 index d3ac07f3..00000000 Binary files a/static/icons/06005C51.png and /dev/null differ diff --git a/static/icons/06005C52.png b/static/icons/06005C52.png deleted file mode 100755 index b328e282..00000000 Binary files a/static/icons/06005C52.png and /dev/null differ diff --git a/static/icons/06005C53.png b/static/icons/06005C53.png deleted file mode 100755 index 549b5516..00000000 Binary files a/static/icons/06005C53.png and /dev/null differ diff --git a/static/icons/06005C54.png b/static/icons/06005C54.png deleted file mode 100755 index 8b93d200..00000000 Binary files a/static/icons/06005C54.png and /dev/null differ diff --git a/static/icons/06005C55.png b/static/icons/06005C55.png deleted file mode 100755 index 18329ca3..00000000 Binary files a/static/icons/06005C55.png and /dev/null differ diff --git a/static/icons/06005C56.png b/static/icons/06005C56.png deleted file mode 100755 index fc9684f6..00000000 Binary files a/static/icons/06005C56.png and /dev/null differ diff --git a/static/icons/06005C57.png b/static/icons/06005C57.png deleted file mode 100755 index 96c915a2..00000000 Binary files a/static/icons/06005C57.png and /dev/null differ diff --git a/static/icons/06005C58.png b/static/icons/06005C58.png deleted file mode 100755 index 80205115..00000000 Binary files a/static/icons/06005C58.png and /dev/null differ diff --git a/static/icons/06005C59.png b/static/icons/06005C59.png deleted file mode 100755 index 441d90f5..00000000 Binary files a/static/icons/06005C59.png and /dev/null differ diff --git a/static/icons/06005C5A.png b/static/icons/06005C5A.png deleted file mode 100755 index c1a8b5e2..00000000 Binary files a/static/icons/06005C5A.png and /dev/null differ diff --git a/static/icons/06005C5B.png b/static/icons/06005C5B.png deleted file mode 100755 index 3ef0ec6d..00000000 Binary files a/static/icons/06005C5B.png and /dev/null differ diff --git a/static/icons/06005C5C.png b/static/icons/06005C5C.png deleted file mode 100755 index 1ea70fea..00000000 Binary files a/static/icons/06005C5C.png and /dev/null differ diff --git a/static/icons/06005C5D.png b/static/icons/06005C5D.png deleted file mode 100755 index 357dec54..00000000 Binary files a/static/icons/06005C5D.png and /dev/null differ diff --git a/static/icons/06005C5E.png b/static/icons/06005C5E.png deleted file mode 100755 index e3d254a1..00000000 Binary files a/static/icons/06005C5E.png and /dev/null differ diff --git a/static/icons/06005C5F.png b/static/icons/06005C5F.png deleted file mode 100755 index f46faf9e..00000000 Binary files a/static/icons/06005C5F.png and /dev/null differ diff --git a/static/icons/06005C60.png b/static/icons/06005C60.png deleted file mode 100755 index 3b76f17a..00000000 Binary files a/static/icons/06005C60.png and /dev/null differ diff --git a/static/icons/06005C61.png b/static/icons/06005C61.png deleted file mode 100755 index e4f3468d..00000000 Binary files a/static/icons/06005C61.png and /dev/null differ diff --git a/static/icons/06005C62.png b/static/icons/06005C62.png deleted file mode 100755 index 92d71419..00000000 Binary files a/static/icons/06005C62.png and /dev/null differ diff --git a/static/icons/06005C63.png b/static/icons/06005C63.png deleted file mode 100755 index af6a56ae..00000000 Binary files a/static/icons/06005C63.png and /dev/null differ diff --git a/static/icons/06005C64.png b/static/icons/06005C64.png deleted file mode 100755 index 63b7c019..00000000 Binary files a/static/icons/06005C64.png and /dev/null differ diff --git a/static/icons/06005C65.png b/static/icons/06005C65.png deleted file mode 100755 index f83938c6..00000000 Binary files a/static/icons/06005C65.png and /dev/null differ diff --git a/static/icons/06005C66.png b/static/icons/06005C66.png deleted file mode 100755 index 2d2e3b64..00000000 Binary files a/static/icons/06005C66.png and /dev/null differ diff --git a/static/icons/06005C67.png b/static/icons/06005C67.png deleted file mode 100755 index ea30b97e..00000000 Binary files a/static/icons/06005C67.png and /dev/null differ diff --git a/static/icons/06005C68.png b/static/icons/06005C68.png deleted file mode 100755 index 457a755c..00000000 Binary files a/static/icons/06005C68.png and /dev/null differ diff --git a/static/icons/06005C69.png b/static/icons/06005C69.png deleted file mode 100755 index 949980f2..00000000 Binary files a/static/icons/06005C69.png and /dev/null differ diff --git a/static/icons/06005C6A.png b/static/icons/06005C6A.png deleted file mode 100755 index a62e3a7b..00000000 Binary files a/static/icons/06005C6A.png and /dev/null differ diff --git a/static/icons/06005C6B.png b/static/icons/06005C6B.png deleted file mode 100755 index 069dfbe1..00000000 Binary files a/static/icons/06005C6B.png and /dev/null differ diff --git a/static/icons/06005C6C.png b/static/icons/06005C6C.png deleted file mode 100755 index aadcc87f..00000000 Binary files a/static/icons/06005C6C.png and /dev/null differ diff --git a/static/icons/06005C6D.png b/static/icons/06005C6D.png deleted file mode 100755 index 8727924e..00000000 Binary files a/static/icons/06005C6D.png and /dev/null differ diff --git a/static/icons/06005C6E.png b/static/icons/06005C6E.png deleted file mode 100755 index 47c247b9..00000000 Binary files a/static/icons/06005C6E.png and /dev/null differ diff --git a/static/icons/06005C6F.png b/static/icons/06005C6F.png deleted file mode 100755 index 4875957c..00000000 Binary files a/static/icons/06005C6F.png and /dev/null differ diff --git a/static/icons/06005C70.png b/static/icons/06005C70.png deleted file mode 100755 index 33d98bcf..00000000 Binary files a/static/icons/06005C70.png and /dev/null differ diff --git a/static/icons/06005C71.png b/static/icons/06005C71.png deleted file mode 100755 index 9d27135b..00000000 Binary files a/static/icons/06005C71.png and /dev/null differ diff --git a/static/icons/06005C72.png b/static/icons/06005C72.png deleted file mode 100755 index 9fa49999..00000000 Binary files a/static/icons/06005C72.png and /dev/null differ diff --git a/static/icons/06005C73.png b/static/icons/06005C73.png deleted file mode 100755 index 0c959c5c..00000000 Binary files a/static/icons/06005C73.png and /dev/null differ diff --git a/static/icons/06005C74.png b/static/icons/06005C74.png deleted file mode 100755 index ad706b50..00000000 Binary files a/static/icons/06005C74.png and /dev/null differ diff --git a/static/icons/06005C75.png b/static/icons/06005C75.png deleted file mode 100755 index 06eb55d9..00000000 Binary files a/static/icons/06005C75.png and /dev/null differ diff --git a/static/icons/06005C76.png b/static/icons/06005C76.png deleted file mode 100755 index 4d938d2a..00000000 Binary files a/static/icons/06005C76.png and /dev/null differ diff --git a/static/icons/06005C77.png b/static/icons/06005C77.png deleted file mode 100755 index 5c8a11a6..00000000 Binary files a/static/icons/06005C77.png and /dev/null differ diff --git a/static/icons/06005C78.png b/static/icons/06005C78.png deleted file mode 100755 index 76068fba..00000000 Binary files a/static/icons/06005C78.png and /dev/null differ diff --git a/static/icons/06005C79.png b/static/icons/06005C79.png deleted file mode 100755 index ff3eb253..00000000 Binary files a/static/icons/06005C79.png and /dev/null differ diff --git a/static/icons/06005C7A.png b/static/icons/06005C7A.png deleted file mode 100755 index fb1652a3..00000000 Binary files a/static/icons/06005C7A.png and /dev/null differ diff --git a/static/icons/06005C7B.png b/static/icons/06005C7B.png deleted file mode 100755 index 530ff0d7..00000000 Binary files a/static/icons/06005C7B.png and /dev/null differ diff --git a/static/icons/06005C7C.png b/static/icons/06005C7C.png deleted file mode 100755 index a2bdaa0e..00000000 Binary files a/static/icons/06005C7C.png and /dev/null differ diff --git a/static/icons/06005C7D.png b/static/icons/06005C7D.png deleted file mode 100755 index 6f37cc12..00000000 Binary files a/static/icons/06005C7D.png and /dev/null differ diff --git a/static/icons/06005C7E.png b/static/icons/06005C7E.png deleted file mode 100755 index b1a83e6d..00000000 Binary files a/static/icons/06005C7E.png and /dev/null differ diff --git a/static/icons/06005C7F.png b/static/icons/06005C7F.png deleted file mode 100755 index 128c52be..00000000 Binary files a/static/icons/06005C7F.png and /dev/null differ diff --git a/static/icons/06005C80.png b/static/icons/06005C80.png deleted file mode 100755 index 7e0dc2b9..00000000 Binary files a/static/icons/06005C80.png and /dev/null differ diff --git a/static/icons/06005C81.png b/static/icons/06005C81.png deleted file mode 100755 index 74360005..00000000 Binary files a/static/icons/06005C81.png and /dev/null differ diff --git a/static/icons/06005C82.png b/static/icons/06005C82.png deleted file mode 100755 index abe8833c..00000000 Binary files a/static/icons/06005C82.png and /dev/null differ diff --git a/static/icons/06005C83.png b/static/icons/06005C83.png deleted file mode 100755 index d63ac4a5..00000000 Binary files a/static/icons/06005C83.png and /dev/null differ diff --git a/static/icons/06005C84.png b/static/icons/06005C84.png deleted file mode 100755 index 9b209137..00000000 Binary files a/static/icons/06005C84.png and /dev/null differ diff --git a/static/icons/06005C85.png b/static/icons/06005C85.png deleted file mode 100755 index 32c262ca..00000000 Binary files a/static/icons/06005C85.png and /dev/null differ diff --git a/static/icons/06005C86.png b/static/icons/06005C86.png deleted file mode 100755 index 7d437882..00000000 Binary files a/static/icons/06005C86.png and /dev/null differ diff --git a/static/icons/06005C87.png b/static/icons/06005C87.png deleted file mode 100755 index 0bd883c5..00000000 Binary files a/static/icons/06005C87.png and /dev/null differ diff --git a/static/icons/06005C88.png b/static/icons/06005C88.png deleted file mode 100755 index faa42a28..00000000 Binary files a/static/icons/06005C88.png and /dev/null differ diff --git a/static/icons/06005C89.png b/static/icons/06005C89.png deleted file mode 100755 index 3f203e46..00000000 Binary files a/static/icons/06005C89.png and /dev/null differ diff --git a/static/icons/06005C8A.png b/static/icons/06005C8A.png deleted file mode 100755 index 583e3f64..00000000 Binary files a/static/icons/06005C8A.png and /dev/null differ diff --git a/static/icons/06005C8B.png b/static/icons/06005C8B.png deleted file mode 100755 index a28848ea..00000000 Binary files a/static/icons/06005C8B.png and /dev/null differ diff --git a/static/icons/06005C8C.png b/static/icons/06005C8C.png deleted file mode 100755 index 848d87e6..00000000 Binary files a/static/icons/06005C8C.png and /dev/null differ diff --git a/static/icons/06005C8D.png b/static/icons/06005C8D.png deleted file mode 100755 index c9063ec1..00000000 Binary files a/static/icons/06005C8D.png and /dev/null differ diff --git a/static/icons/06005C8E.png b/static/icons/06005C8E.png deleted file mode 100755 index fdb47926..00000000 Binary files a/static/icons/06005C8E.png and /dev/null differ diff --git a/static/icons/06005C8F.png b/static/icons/06005C8F.png deleted file mode 100755 index ecdbdf58..00000000 Binary files a/static/icons/06005C8F.png and /dev/null differ diff --git a/static/icons/06005C90.png b/static/icons/06005C90.png deleted file mode 100755 index 98783d27..00000000 Binary files a/static/icons/06005C90.png and /dev/null differ diff --git a/static/icons/06005C91.png b/static/icons/06005C91.png deleted file mode 100755 index 3977fc0b..00000000 Binary files a/static/icons/06005C91.png and /dev/null differ diff --git a/static/icons/06005C92.png b/static/icons/06005C92.png deleted file mode 100755 index 7f259f12..00000000 Binary files a/static/icons/06005C92.png and /dev/null differ diff --git a/static/icons/06005C93.png b/static/icons/06005C93.png deleted file mode 100755 index 3ed8ec21..00000000 Binary files a/static/icons/06005C93.png and /dev/null differ diff --git a/static/icons/06005C94.png b/static/icons/06005C94.png deleted file mode 100755 index ed00d55a..00000000 Binary files a/static/icons/06005C94.png and /dev/null differ diff --git a/static/icons/06005C95.png b/static/icons/06005C95.png deleted file mode 100755 index fbe7eea7..00000000 Binary files a/static/icons/06005C95.png and /dev/null differ diff --git a/static/icons/06005C96.png b/static/icons/06005C96.png deleted file mode 100755 index 3cbc4f75..00000000 Binary files a/static/icons/06005C96.png and /dev/null differ diff --git a/static/icons/06005C97.png b/static/icons/06005C97.png deleted file mode 100755 index f41d24eb..00000000 Binary files a/static/icons/06005C97.png and /dev/null differ diff --git a/static/icons/06005C98.png b/static/icons/06005C98.png deleted file mode 100755 index 8eae3077..00000000 Binary files a/static/icons/06005C98.png and /dev/null differ diff --git a/static/icons/06005C99.png b/static/icons/06005C99.png deleted file mode 100755 index f3edadbf..00000000 Binary files a/static/icons/06005C99.png and /dev/null differ diff --git a/static/icons/06005C9A.png b/static/icons/06005C9A.png deleted file mode 100755 index 414a3737..00000000 Binary files a/static/icons/06005C9A.png and /dev/null differ diff --git a/static/icons/06005C9B.png b/static/icons/06005C9B.png deleted file mode 100755 index 5e41f31e..00000000 Binary files a/static/icons/06005C9B.png and /dev/null differ diff --git a/static/icons/06005C9D.png b/static/icons/06005C9D.png deleted file mode 100755 index ad1fb0c9..00000000 Binary files a/static/icons/06005C9D.png and /dev/null differ diff --git a/static/icons/06005C9E.png b/static/icons/06005C9E.png deleted file mode 100755 index 1d46b4f9..00000000 Binary files a/static/icons/06005C9E.png and /dev/null differ diff --git a/static/icons/06005C9F.png b/static/icons/06005C9F.png deleted file mode 100755 index 50c18ceb..00000000 Binary files a/static/icons/06005C9F.png and /dev/null differ diff --git a/static/icons/06005CA0.png b/static/icons/06005CA0.png deleted file mode 100755 index 55d22800..00000000 Binary files a/static/icons/06005CA0.png and /dev/null differ diff --git a/static/icons/06005CA1.png b/static/icons/06005CA1.png deleted file mode 100755 index e89406c6..00000000 Binary files a/static/icons/06005CA1.png and /dev/null differ diff --git a/static/icons/06005CA2.png b/static/icons/06005CA2.png deleted file mode 100755 index 1bda532b..00000000 Binary files a/static/icons/06005CA2.png and /dev/null differ diff --git a/static/icons/06005CA3.png b/static/icons/06005CA3.png deleted file mode 100755 index 19725625..00000000 Binary files a/static/icons/06005CA3.png and /dev/null differ diff --git a/static/icons/06005CA4.png b/static/icons/06005CA4.png deleted file mode 100755 index 860aab20..00000000 Binary files a/static/icons/06005CA4.png and /dev/null differ diff --git a/static/icons/06005CA5.png b/static/icons/06005CA5.png deleted file mode 100755 index 4453fde5..00000000 Binary files a/static/icons/06005CA5.png and /dev/null differ diff --git a/static/icons/06005CA6.png b/static/icons/06005CA6.png deleted file mode 100755 index 0442d407..00000000 Binary files a/static/icons/06005CA6.png and /dev/null differ diff --git a/static/icons/06005CA8.png b/static/icons/06005CA8.png deleted file mode 100755 index 15ad35b0..00000000 Binary files a/static/icons/06005CA8.png and /dev/null differ diff --git a/static/icons/06005CA9.png b/static/icons/06005CA9.png deleted file mode 100755 index 63239c0a..00000000 Binary files a/static/icons/06005CA9.png and /dev/null differ diff --git a/static/icons/06005CAA.png b/static/icons/06005CAA.png deleted file mode 100755 index 7addda80..00000000 Binary files a/static/icons/06005CAA.png and /dev/null differ diff --git a/static/icons/06005CAB.png b/static/icons/06005CAB.png deleted file mode 100755 index 2b9c0da2..00000000 Binary files a/static/icons/06005CAB.png and /dev/null differ diff --git a/static/icons/06005CAC.png b/static/icons/06005CAC.png deleted file mode 100755 index 8cc00f59..00000000 Binary files a/static/icons/06005CAC.png and /dev/null differ diff --git a/static/icons/06005CAD.png b/static/icons/06005CAD.png deleted file mode 100755 index cd4e8607..00000000 Binary files a/static/icons/06005CAD.png and /dev/null differ diff --git a/static/icons/06005CAE.png b/static/icons/06005CAE.png deleted file mode 100755 index 2739b21c..00000000 Binary files a/static/icons/06005CAE.png and /dev/null differ diff --git a/static/icons/06005CAF.png b/static/icons/06005CAF.png deleted file mode 100755 index 97054d98..00000000 Binary files a/static/icons/06005CAF.png and /dev/null differ diff --git a/static/icons/06005CB0.png b/static/icons/06005CB0.png deleted file mode 100755 index 54b4df8f..00000000 Binary files a/static/icons/06005CB0.png and /dev/null differ diff --git a/static/icons/06005CB1.png b/static/icons/06005CB1.png deleted file mode 100755 index 28bbc0e3..00000000 Binary files a/static/icons/06005CB1.png and /dev/null differ diff --git a/static/icons/06005CB2.png b/static/icons/06005CB2.png deleted file mode 100755 index 9ab7641c..00000000 Binary files a/static/icons/06005CB2.png and /dev/null differ diff --git a/static/icons/06005CB3.png b/static/icons/06005CB3.png deleted file mode 100755 index 5143cba3..00000000 Binary files a/static/icons/06005CB3.png and /dev/null differ diff --git a/static/icons/06005CB4.png b/static/icons/06005CB4.png deleted file mode 100755 index ef8c8ede..00000000 Binary files a/static/icons/06005CB4.png and /dev/null differ diff --git a/static/icons/06005CB5.png b/static/icons/06005CB5.png deleted file mode 100755 index 2128d3f6..00000000 Binary files a/static/icons/06005CB5.png and /dev/null differ diff --git a/static/icons/06005CB6.png b/static/icons/06005CB6.png deleted file mode 100755 index f289ad1f..00000000 Binary files a/static/icons/06005CB6.png and /dev/null differ diff --git a/static/icons/06005CB7.png b/static/icons/06005CB7.png deleted file mode 100755 index b29c1d63..00000000 Binary files a/static/icons/06005CB7.png and /dev/null differ diff --git a/static/icons/06005CB8.png b/static/icons/06005CB8.png deleted file mode 100755 index 19dc7c03..00000000 Binary files a/static/icons/06005CB8.png and /dev/null differ diff --git a/static/icons/06005CB9.png b/static/icons/06005CB9.png deleted file mode 100755 index e738da63..00000000 Binary files a/static/icons/06005CB9.png and /dev/null differ diff --git a/static/icons/06005CBA.png b/static/icons/06005CBA.png deleted file mode 100755 index 023db057..00000000 Binary files a/static/icons/06005CBA.png and /dev/null differ diff --git a/static/icons/06005CBB.png b/static/icons/06005CBB.png deleted file mode 100755 index 335f1134..00000000 Binary files a/static/icons/06005CBB.png and /dev/null differ diff --git a/static/icons/06005CBC.png b/static/icons/06005CBC.png deleted file mode 100755 index 5f4b9e48..00000000 Binary files a/static/icons/06005CBC.png and /dev/null differ diff --git a/static/icons/06005CBD.png b/static/icons/06005CBD.png deleted file mode 100755 index bdc930d4..00000000 Binary files a/static/icons/06005CBD.png and /dev/null differ diff --git a/static/icons/06005CBE.png b/static/icons/06005CBE.png deleted file mode 100755 index 1ea71df6..00000000 Binary files a/static/icons/06005CBE.png and /dev/null differ diff --git a/static/icons/06005CBF.png b/static/icons/06005CBF.png deleted file mode 100755 index 5e000e95..00000000 Binary files a/static/icons/06005CBF.png and /dev/null differ diff --git a/static/icons/06005CC0.png b/static/icons/06005CC0.png deleted file mode 100755 index fca21dd6..00000000 Binary files a/static/icons/06005CC0.png and /dev/null differ diff --git a/static/icons/06005CC1.png b/static/icons/06005CC1.png deleted file mode 100755 index c18a6b82..00000000 Binary files a/static/icons/06005CC1.png and /dev/null differ diff --git a/static/icons/06005CC2.png b/static/icons/06005CC2.png deleted file mode 100755 index 893bac15..00000000 Binary files a/static/icons/06005CC2.png and /dev/null differ diff --git a/static/icons/06005CC3.png b/static/icons/06005CC3.png deleted file mode 100755 index 4c1b26a6..00000000 Binary files a/static/icons/06005CC3.png and /dev/null differ diff --git a/static/icons/06005CC4.png b/static/icons/06005CC4.png deleted file mode 100755 index 8ff825da..00000000 Binary files a/static/icons/06005CC4.png and /dev/null differ diff --git a/static/icons/06005CC5.png b/static/icons/06005CC5.png deleted file mode 100755 index 092f9c6c..00000000 Binary files a/static/icons/06005CC5.png and /dev/null differ diff --git a/static/icons/06005CC6.png b/static/icons/06005CC6.png deleted file mode 100755 index ca5582fc..00000000 Binary files a/static/icons/06005CC6.png and /dev/null differ diff --git a/static/icons/06005CC7.png b/static/icons/06005CC7.png deleted file mode 100755 index ce55c0f2..00000000 Binary files a/static/icons/06005CC7.png and /dev/null differ diff --git a/static/icons/06005CC8.png b/static/icons/06005CC8.png deleted file mode 100755 index 70d19bf0..00000000 Binary files a/static/icons/06005CC8.png and /dev/null differ diff --git a/static/icons/06005CC9.png b/static/icons/06005CC9.png deleted file mode 100755 index 12dbf210..00000000 Binary files a/static/icons/06005CC9.png and /dev/null differ diff --git a/static/icons/06005CCA.png b/static/icons/06005CCA.png deleted file mode 100755 index ea5f4d37..00000000 Binary files a/static/icons/06005CCA.png and /dev/null differ diff --git a/static/icons/06005CCB.png b/static/icons/06005CCB.png deleted file mode 100755 index 495c46f1..00000000 Binary files a/static/icons/06005CCB.png and /dev/null differ diff --git a/static/icons/06005CCC.png b/static/icons/06005CCC.png deleted file mode 100755 index b63aaaa7..00000000 Binary files a/static/icons/06005CCC.png and /dev/null differ diff --git a/static/icons/06005CCD.png b/static/icons/06005CCD.png deleted file mode 100755 index bbce7092..00000000 Binary files a/static/icons/06005CCD.png and /dev/null differ diff --git a/static/icons/06005CCE.png b/static/icons/06005CCE.png deleted file mode 100755 index df6aee23..00000000 Binary files a/static/icons/06005CCE.png and /dev/null differ diff --git a/static/icons/06005CCF.png b/static/icons/06005CCF.png deleted file mode 100755 index 1ae0100e..00000000 Binary files a/static/icons/06005CCF.png and /dev/null differ diff --git a/static/icons/06005CE5.png b/static/icons/06005CE5.png deleted file mode 100755 index e2487cfc..00000000 Binary files a/static/icons/06005CE5.png and /dev/null differ diff --git a/static/icons/06005CE6.png b/static/icons/06005CE6.png deleted file mode 100755 index 5e164612..00000000 Binary files a/static/icons/06005CE6.png and /dev/null differ diff --git a/static/icons/06005CE8.png b/static/icons/06005CE8.png deleted file mode 100755 index d52ef06d..00000000 Binary files a/static/icons/06005CE8.png and /dev/null differ diff --git a/static/icons/06005CE9.png b/static/icons/06005CE9.png deleted file mode 100755 index 38c753b0..00000000 Binary files a/static/icons/06005CE9.png and /dev/null differ diff --git a/static/icons/06005CEA.png b/static/icons/06005CEA.png deleted file mode 100755 index 3f03971a..00000000 Binary files a/static/icons/06005CEA.png and /dev/null differ diff --git a/static/icons/06005CEB.png b/static/icons/06005CEB.png deleted file mode 100755 index 30be73fb..00000000 Binary files a/static/icons/06005CEB.png and /dev/null differ diff --git a/static/icons/06005CEC.png b/static/icons/06005CEC.png deleted file mode 100755 index 3942593d..00000000 Binary files a/static/icons/06005CEC.png and /dev/null differ diff --git a/static/icons/06005CED.png b/static/icons/06005CED.png deleted file mode 100755 index 03645477..00000000 Binary files a/static/icons/06005CED.png and /dev/null differ diff --git a/static/icons/06005CEE.png b/static/icons/06005CEE.png deleted file mode 100755 index eccd8749..00000000 Binary files a/static/icons/06005CEE.png and /dev/null differ diff --git a/static/icons/06005CEF.png b/static/icons/06005CEF.png deleted file mode 100755 index 676411c7..00000000 Binary files a/static/icons/06005CEF.png and /dev/null differ diff --git a/static/icons/06005CF0.png b/static/icons/06005CF0.png deleted file mode 100755 index 5257ec4a..00000000 Binary files a/static/icons/06005CF0.png and /dev/null differ diff --git a/static/icons/06005CF1.png b/static/icons/06005CF1.png deleted file mode 100755 index 7deb5a37..00000000 Binary files a/static/icons/06005CF1.png and /dev/null differ diff --git a/static/icons/06005D14.png b/static/icons/06005D14.png deleted file mode 100755 index d66f28d5..00000000 Binary files a/static/icons/06005D14.png and /dev/null differ diff --git a/static/icons/06005D15.png b/static/icons/06005D15.png deleted file mode 100755 index 6be810d9..00000000 Binary files a/static/icons/06005D15.png and /dev/null differ diff --git a/static/icons/06005D16.png b/static/icons/06005D16.png deleted file mode 100755 index 577bc672..00000000 Binary files a/static/icons/06005D16.png and /dev/null differ diff --git a/static/icons/06005D17.png b/static/icons/06005D17.png deleted file mode 100755 index 842f69f8..00000000 Binary files a/static/icons/06005D17.png and /dev/null differ diff --git a/static/icons/06005D18.png b/static/icons/06005D18.png deleted file mode 100755 index 1cdd72a7..00000000 Binary files a/static/icons/06005D18.png and /dev/null differ diff --git a/static/icons/06005D19.png b/static/icons/06005D19.png deleted file mode 100755 index 798a4a84..00000000 Binary files a/static/icons/06005D19.png and /dev/null differ diff --git a/static/icons/06005D1A.png b/static/icons/06005D1A.png deleted file mode 100755 index 64b03974..00000000 Binary files a/static/icons/06005D1A.png and /dev/null differ diff --git a/static/icons/06005D1B.png b/static/icons/06005D1B.png deleted file mode 100755 index ec1b2bf2..00000000 Binary files a/static/icons/06005D1B.png and /dev/null differ diff --git a/static/icons/06005D1C.png b/static/icons/06005D1C.png deleted file mode 100755 index c7b2cd66..00000000 Binary files a/static/icons/06005D1C.png and /dev/null differ diff --git a/static/icons/06005D1D.png b/static/icons/06005D1D.png deleted file mode 100755 index 80562d33..00000000 Binary files a/static/icons/06005D1D.png and /dev/null differ diff --git a/static/icons/06005D1E.png b/static/icons/06005D1E.png deleted file mode 100755 index 5abdba07..00000000 Binary files a/static/icons/06005D1E.png and /dev/null differ diff --git a/static/icons/06005D1F.png b/static/icons/06005D1F.png deleted file mode 100755 index b451ef17..00000000 Binary files a/static/icons/06005D1F.png and /dev/null differ diff --git a/static/icons/06005D20.png b/static/icons/06005D20.png deleted file mode 100755 index cae95910..00000000 Binary files a/static/icons/06005D20.png and /dev/null differ diff --git a/static/icons/06005D21.png b/static/icons/06005D21.png deleted file mode 100755 index 7575f62b..00000000 Binary files a/static/icons/06005D21.png and /dev/null differ diff --git a/static/icons/06005D22.png b/static/icons/06005D22.png deleted file mode 100755 index 4388fc8f..00000000 Binary files a/static/icons/06005D22.png and /dev/null differ diff --git a/static/icons/06005D23.png b/static/icons/06005D23.png deleted file mode 100755 index e8bae1e9..00000000 Binary files a/static/icons/06005D23.png and /dev/null differ diff --git a/static/icons/06005D24.png b/static/icons/06005D24.png deleted file mode 100755 index c0810f12..00000000 Binary files a/static/icons/06005D24.png and /dev/null differ diff --git a/static/icons/06005D25.png b/static/icons/06005D25.png deleted file mode 100755 index fce8522c..00000000 Binary files a/static/icons/06005D25.png and /dev/null differ diff --git a/static/icons/06005D26.png b/static/icons/06005D26.png deleted file mode 100755 index ee688d5f..00000000 Binary files a/static/icons/06005D26.png and /dev/null differ diff --git a/static/icons/06005D27.png b/static/icons/06005D27.png deleted file mode 100755 index c99d0a14..00000000 Binary files a/static/icons/06005D27.png and /dev/null differ diff --git a/static/icons/06005D28.png b/static/icons/06005D28.png deleted file mode 100755 index 4952d504..00000000 Binary files a/static/icons/06005D28.png and /dev/null differ diff --git a/static/icons/06005D29.png b/static/icons/06005D29.png deleted file mode 100755 index 4bfdea18..00000000 Binary files a/static/icons/06005D29.png and /dev/null differ diff --git a/static/icons/06005D2A.png b/static/icons/06005D2A.png deleted file mode 100755 index cf3df560..00000000 Binary files a/static/icons/06005D2A.png and /dev/null differ diff --git a/static/icons/06005D2B.png b/static/icons/06005D2B.png deleted file mode 100755 index 99b66d9b..00000000 Binary files a/static/icons/06005D2B.png and /dev/null differ diff --git a/static/icons/06005D2C.png b/static/icons/06005D2C.png deleted file mode 100755 index fbeeb6e6..00000000 Binary files a/static/icons/06005D2C.png and /dev/null differ diff --git a/static/icons/06005D2D.png b/static/icons/06005D2D.png deleted file mode 100755 index a6d5ef3c..00000000 Binary files a/static/icons/06005D2D.png and /dev/null differ diff --git a/static/icons/06005D2E.png b/static/icons/06005D2E.png deleted file mode 100755 index 402a7284..00000000 Binary files a/static/icons/06005D2E.png and /dev/null differ diff --git a/static/icons/06005D2F.png b/static/icons/06005D2F.png deleted file mode 100755 index f66f735b..00000000 Binary files a/static/icons/06005D2F.png and /dev/null differ diff --git a/static/icons/06005D30.png b/static/icons/06005D30.png deleted file mode 100755 index ca2b42bd..00000000 Binary files a/static/icons/06005D30.png and /dev/null differ diff --git a/static/icons/06005D31.png b/static/icons/06005D31.png deleted file mode 100755 index f731164b..00000000 Binary files a/static/icons/06005D31.png and /dev/null differ diff --git a/static/icons/06005D32.png b/static/icons/06005D32.png deleted file mode 100755 index 935cfdd5..00000000 Binary files a/static/icons/06005D32.png and /dev/null differ diff --git a/static/icons/06005D33.png b/static/icons/06005D33.png deleted file mode 100755 index 9ff7549b..00000000 Binary files a/static/icons/06005D33.png and /dev/null differ diff --git a/static/icons/06005D34.png b/static/icons/06005D34.png deleted file mode 100755 index c67a2168..00000000 Binary files a/static/icons/06005D34.png and /dev/null differ diff --git a/static/icons/06005D35.png b/static/icons/06005D35.png deleted file mode 100755 index 2cade75a..00000000 Binary files a/static/icons/06005D35.png and /dev/null differ diff --git a/static/icons/06005D36.png b/static/icons/06005D36.png deleted file mode 100755 index 2af8d556..00000000 Binary files a/static/icons/06005D36.png and /dev/null differ diff --git a/static/icons/06005D39.png b/static/icons/06005D39.png deleted file mode 100755 index 74209741..00000000 Binary files a/static/icons/06005D39.png and /dev/null differ diff --git a/static/icons/06005D3A.png b/static/icons/06005D3A.png deleted file mode 100755 index 3ee04fa2..00000000 Binary files a/static/icons/06005D3A.png and /dev/null differ diff --git a/static/icons/06005D3B.png b/static/icons/06005D3B.png deleted file mode 100755 index 4af2cc05..00000000 Binary files a/static/icons/06005D3B.png and /dev/null differ diff --git a/static/icons/06005D3C.png b/static/icons/06005D3C.png deleted file mode 100755 index 3fc590ae..00000000 Binary files a/static/icons/06005D3C.png and /dev/null differ diff --git a/static/icons/06005D3D.png b/static/icons/06005D3D.png deleted file mode 100755 index a5c8c581..00000000 Binary files a/static/icons/06005D3D.png and /dev/null differ diff --git a/static/icons/06005D3E.png b/static/icons/06005D3E.png deleted file mode 100755 index 58a5e10a..00000000 Binary files a/static/icons/06005D3E.png and /dev/null differ diff --git a/static/icons/06005D3F.png b/static/icons/06005D3F.png deleted file mode 100755 index 068126dd..00000000 Binary files a/static/icons/06005D3F.png and /dev/null differ diff --git a/static/icons/06005D40.png b/static/icons/06005D40.png deleted file mode 100755 index 169af618..00000000 Binary files a/static/icons/06005D40.png and /dev/null differ diff --git a/static/icons/06005D41.png b/static/icons/06005D41.png deleted file mode 100755 index cd19daf2..00000000 Binary files a/static/icons/06005D41.png and /dev/null differ diff --git a/static/icons/06005D45.png b/static/icons/06005D45.png deleted file mode 100755 index 44b37064..00000000 Binary files a/static/icons/06005D45.png and /dev/null differ diff --git a/static/icons/06005D46.png b/static/icons/06005D46.png deleted file mode 100755 index 5409df98..00000000 Binary files a/static/icons/06005D46.png and /dev/null differ diff --git a/static/icons/06005D47.png b/static/icons/06005D47.png deleted file mode 100755 index bc3db258..00000000 Binary files a/static/icons/06005D47.png and /dev/null differ diff --git a/static/icons/06005D48.png b/static/icons/06005D48.png deleted file mode 100755 index d4bf485b..00000000 Binary files a/static/icons/06005D48.png and /dev/null differ diff --git a/static/icons/06005D49.png b/static/icons/06005D49.png deleted file mode 100755 index 0d55d18e..00000000 Binary files a/static/icons/06005D49.png and /dev/null differ diff --git a/static/icons/06005D4A.png b/static/icons/06005D4A.png deleted file mode 100755 index 64becbf6..00000000 Binary files a/static/icons/06005D4A.png and /dev/null differ diff --git a/static/icons/06005D4B.png b/static/icons/06005D4B.png deleted file mode 100755 index 256dd65c..00000000 Binary files a/static/icons/06005D4B.png and /dev/null differ diff --git a/static/icons/06005D4C.png b/static/icons/06005D4C.png deleted file mode 100755 index 06eee384..00000000 Binary files a/static/icons/06005D4C.png and /dev/null differ diff --git a/static/icons/06005D58.png b/static/icons/06005D58.png deleted file mode 100755 index 2294308f..00000000 Binary files a/static/icons/06005D58.png and /dev/null differ diff --git a/static/icons/06005D59.png b/static/icons/06005D59.png deleted file mode 100755 index 00f1b980..00000000 Binary files a/static/icons/06005D59.png and /dev/null differ diff --git a/static/icons/06005D5A.png b/static/icons/06005D5A.png deleted file mode 100755 index 58e6df3e..00000000 Binary files a/static/icons/06005D5A.png and /dev/null differ diff --git a/static/icons/06005D5B.png b/static/icons/06005D5B.png deleted file mode 100755 index 2b0b785f..00000000 Binary files a/static/icons/06005D5B.png and /dev/null differ diff --git a/static/icons/06005D5C.png b/static/icons/06005D5C.png deleted file mode 100755 index a3df0714..00000000 Binary files a/static/icons/06005D5C.png and /dev/null differ diff --git a/static/icons/06005D5D.png b/static/icons/06005D5D.png deleted file mode 100755 index 2312eb2d..00000000 Binary files a/static/icons/06005D5D.png and /dev/null differ diff --git a/static/icons/06005D5E.png b/static/icons/06005D5E.png deleted file mode 100755 index 60cafa92..00000000 Binary files a/static/icons/06005D5E.png and /dev/null differ diff --git a/static/icons/06005D5F.png b/static/icons/06005D5F.png deleted file mode 100755 index e2d61693..00000000 Binary files a/static/icons/06005D5F.png and /dev/null differ diff --git a/static/icons/06005D60.png b/static/icons/06005D60.png deleted file mode 100755 index c135ee81..00000000 Binary files a/static/icons/06005D60.png and /dev/null differ diff --git a/static/icons/06005D61.png b/static/icons/06005D61.png deleted file mode 100755 index cfb86750..00000000 Binary files a/static/icons/06005D61.png and /dev/null differ diff --git a/static/icons/06005D62.png b/static/icons/06005D62.png deleted file mode 100755 index 129eb778..00000000 Binary files a/static/icons/06005D62.png and /dev/null differ diff --git a/static/icons/06005D63.png b/static/icons/06005D63.png deleted file mode 100755 index b3cdbd6b..00000000 Binary files a/static/icons/06005D63.png and /dev/null differ diff --git a/static/icons/06005D64.png b/static/icons/06005D64.png deleted file mode 100755 index 1ad45d57..00000000 Binary files a/static/icons/06005D64.png and /dev/null differ diff --git a/static/icons/06005D65.png b/static/icons/06005D65.png deleted file mode 100755 index c125dba3..00000000 Binary files a/static/icons/06005D65.png and /dev/null differ diff --git a/static/icons/06005D66.png b/static/icons/06005D66.png deleted file mode 100755 index af797226..00000000 Binary files a/static/icons/06005D66.png and /dev/null differ diff --git a/static/icons/06005D67.png b/static/icons/06005D67.png deleted file mode 100755 index 99d98a11..00000000 Binary files a/static/icons/06005D67.png and /dev/null differ diff --git a/static/icons/06005D68.png b/static/icons/06005D68.png deleted file mode 100755 index d58aaf10..00000000 Binary files a/static/icons/06005D68.png and /dev/null differ diff --git a/static/icons/06005D6A.png b/static/icons/06005D6A.png deleted file mode 100755 index 7f58d22f..00000000 Binary files a/static/icons/06005D6A.png and /dev/null differ diff --git a/static/icons/06005D6B.png b/static/icons/06005D6B.png deleted file mode 100755 index 21bbaf4d..00000000 Binary files a/static/icons/06005D6B.png and /dev/null differ diff --git a/static/icons/06005D6C.png b/static/icons/06005D6C.png deleted file mode 100755 index b72515f4..00000000 Binary files a/static/icons/06005D6C.png and /dev/null differ diff --git a/static/icons/06005D6D.png b/static/icons/06005D6D.png deleted file mode 100755 index 6c30e5ff..00000000 Binary files a/static/icons/06005D6D.png and /dev/null differ diff --git a/static/icons/06005D6E.png b/static/icons/06005D6E.png deleted file mode 100755 index 8c3e9c92..00000000 Binary files a/static/icons/06005D6E.png and /dev/null differ diff --git a/static/icons/06005D6F.png b/static/icons/06005D6F.png deleted file mode 100755 index 7d97afc5..00000000 Binary files a/static/icons/06005D6F.png and /dev/null differ diff --git a/static/icons/06005D70.png b/static/icons/06005D70.png deleted file mode 100755 index 00317922..00000000 Binary files a/static/icons/06005D70.png and /dev/null differ diff --git a/static/icons/06005D71.png b/static/icons/06005D71.png deleted file mode 100755 index df6509b9..00000000 Binary files a/static/icons/06005D71.png and /dev/null differ diff --git a/static/icons/06005D72.png b/static/icons/06005D72.png deleted file mode 100755 index 17d66751..00000000 Binary files a/static/icons/06005D72.png and /dev/null differ diff --git a/static/icons/06005D73.png b/static/icons/06005D73.png deleted file mode 100755 index b0096610..00000000 Binary files a/static/icons/06005D73.png and /dev/null differ diff --git a/static/icons/06005D74.png b/static/icons/06005D74.png deleted file mode 100755 index 8eff0424..00000000 Binary files a/static/icons/06005D74.png and /dev/null differ diff --git a/static/icons/06005D75.png b/static/icons/06005D75.png deleted file mode 100755 index f4721608..00000000 Binary files a/static/icons/06005D75.png and /dev/null differ diff --git a/static/icons/06005D78.png b/static/icons/06005D78.png deleted file mode 100755 index 96548291..00000000 Binary files a/static/icons/06005D78.png and /dev/null differ diff --git a/static/icons/06005D90.png b/static/icons/06005D90.png deleted file mode 100755 index 2863a770..00000000 Binary files a/static/icons/06005D90.png and /dev/null differ diff --git a/static/icons/06005D91.png b/static/icons/06005D91.png deleted file mode 100755 index f905c600..00000000 Binary files a/static/icons/06005D91.png and /dev/null differ diff --git a/static/icons/06005D92.png b/static/icons/06005D92.png deleted file mode 100755 index 9525f6b2..00000000 Binary files a/static/icons/06005D92.png and /dev/null differ diff --git a/static/icons/06005D93.png b/static/icons/06005D93.png deleted file mode 100755 index b5108566..00000000 Binary files a/static/icons/06005D93.png and /dev/null differ diff --git a/static/icons/06005D94.png b/static/icons/06005D94.png deleted file mode 100755 index 3f45226e..00000000 Binary files a/static/icons/06005D94.png and /dev/null differ diff --git a/static/icons/06005D95.png b/static/icons/06005D95.png deleted file mode 100755 index ab28474d..00000000 Binary files a/static/icons/06005D95.png and /dev/null differ diff --git a/static/icons/06005D96.png b/static/icons/06005D96.png deleted file mode 100755 index 0e2079ba..00000000 Binary files a/static/icons/06005D96.png and /dev/null differ diff --git a/static/icons/06005D97.png b/static/icons/06005D97.png deleted file mode 100755 index 110fc80e..00000000 Binary files a/static/icons/06005D97.png and /dev/null differ diff --git a/static/icons/06005D98.png b/static/icons/06005D98.png deleted file mode 100755 index 403e915b..00000000 Binary files a/static/icons/06005D98.png and /dev/null differ diff --git a/static/icons/06005D9C.png b/static/icons/06005D9C.png deleted file mode 100755 index 39d2871f..00000000 Binary files a/static/icons/06005D9C.png and /dev/null differ diff --git a/static/icons/06005D9D.png b/static/icons/06005D9D.png deleted file mode 100755 index 35f94d66..00000000 Binary files a/static/icons/06005D9D.png and /dev/null differ diff --git a/static/icons/06005D9E.png b/static/icons/06005D9E.png deleted file mode 100755 index d20e4753..00000000 Binary files a/static/icons/06005D9E.png and /dev/null differ diff --git a/static/icons/06005D9F.png b/static/icons/06005D9F.png deleted file mode 100755 index f7b48e51..00000000 Binary files a/static/icons/06005D9F.png and /dev/null differ diff --git a/static/icons/06005DA0.png b/static/icons/06005DA0.png deleted file mode 100755 index 0c1c38e9..00000000 Binary files a/static/icons/06005DA0.png and /dev/null differ diff --git a/static/icons/06005DA1.png b/static/icons/06005DA1.png deleted file mode 100755 index 6f1dabb4..00000000 Binary files a/static/icons/06005DA1.png and /dev/null differ diff --git a/static/icons/06005DA2.png b/static/icons/06005DA2.png deleted file mode 100755 index d66d19e4..00000000 Binary files a/static/icons/06005DA2.png and /dev/null differ diff --git a/static/icons/06005DA3.png b/static/icons/06005DA3.png deleted file mode 100755 index 3854d37c..00000000 Binary files a/static/icons/06005DA3.png and /dev/null differ diff --git a/static/icons/06005DA4.png b/static/icons/06005DA4.png deleted file mode 100755 index 052b5b41..00000000 Binary files a/static/icons/06005DA4.png and /dev/null differ diff --git a/static/icons/06005DA5.png b/static/icons/06005DA5.png deleted file mode 100755 index 67f44717..00000000 Binary files a/static/icons/06005DA5.png and /dev/null differ diff --git a/static/icons/06005DA6.png b/static/icons/06005DA6.png deleted file mode 100755 index 06715e77..00000000 Binary files a/static/icons/06005DA6.png and /dev/null differ diff --git a/static/icons/06005DA7.png b/static/icons/06005DA7.png deleted file mode 100755 index b8f48d4c..00000000 Binary files a/static/icons/06005DA7.png and /dev/null differ diff --git a/static/icons/06005DA8.png b/static/icons/06005DA8.png deleted file mode 100755 index a4e03792..00000000 Binary files a/static/icons/06005DA8.png and /dev/null differ diff --git a/static/icons/06005DA9.png b/static/icons/06005DA9.png deleted file mode 100755 index 9c0b3ff8..00000000 Binary files a/static/icons/06005DA9.png and /dev/null differ diff --git a/static/icons/06005DAA.png b/static/icons/06005DAA.png deleted file mode 100755 index 858108c4..00000000 Binary files a/static/icons/06005DAA.png and /dev/null differ diff --git a/static/icons/06005DAB.png b/static/icons/06005DAB.png deleted file mode 100755 index b0360d75..00000000 Binary files a/static/icons/06005DAB.png and /dev/null differ diff --git a/static/icons/06005DAC.png b/static/icons/06005DAC.png deleted file mode 100755 index 925faab6..00000000 Binary files a/static/icons/06005DAC.png and /dev/null differ diff --git a/static/icons/06005DAD.png b/static/icons/06005DAD.png deleted file mode 100755 index 908c7ceb..00000000 Binary files a/static/icons/06005DAD.png and /dev/null differ diff --git a/static/icons/06005DAF.png b/static/icons/06005DAF.png deleted file mode 100755 index bdb05a08..00000000 Binary files a/static/icons/06005DAF.png and /dev/null differ diff --git a/static/icons/06005DB0.png b/static/icons/06005DB0.png deleted file mode 100755 index 9eb53484..00000000 Binary files a/static/icons/06005DB0.png and /dev/null differ diff --git a/static/icons/06005DB1.png b/static/icons/06005DB1.png deleted file mode 100755 index cbe7c744..00000000 Binary files a/static/icons/06005DB1.png and /dev/null differ diff --git a/static/icons/06005DBE.png b/static/icons/06005DBE.png deleted file mode 100755 index 40218310..00000000 Binary files a/static/icons/06005DBE.png and /dev/null differ diff --git a/static/icons/06005DBF.png b/static/icons/06005DBF.png deleted file mode 100755 index 8d06f8c7..00000000 Binary files a/static/icons/06005DBF.png and /dev/null differ diff --git a/static/icons/06005DC0.png b/static/icons/06005DC0.png deleted file mode 100755 index a59ee416..00000000 Binary files a/static/icons/06005DC0.png and /dev/null differ diff --git a/static/icons/06005DC1.png b/static/icons/06005DC1.png deleted file mode 100755 index c790dc50..00000000 Binary files a/static/icons/06005DC1.png and /dev/null differ diff --git a/static/icons/06005DC3.png b/static/icons/06005DC3.png deleted file mode 100755 index 7e19ea67..00000000 Binary files a/static/icons/06005DC3.png and /dev/null differ diff --git a/static/icons/06005DC6.png b/static/icons/06005DC6.png deleted file mode 100755 index b9895b84..00000000 Binary files a/static/icons/06005DC6.png and /dev/null differ diff --git a/static/icons/06005DC7.png b/static/icons/06005DC7.png deleted file mode 100755 index ce37bd93..00000000 Binary files a/static/icons/06005DC7.png and /dev/null differ diff --git a/static/icons/06005DC8.png b/static/icons/06005DC8.png deleted file mode 100755 index 3b346aeb..00000000 Binary files a/static/icons/06005DC8.png and /dev/null differ diff --git a/static/icons/06005DC9.png b/static/icons/06005DC9.png deleted file mode 100755 index d9a7e514..00000000 Binary files a/static/icons/06005DC9.png and /dev/null differ diff --git a/static/icons/06005DCA.png b/static/icons/06005DCA.png deleted file mode 100755 index 2aed3dbd..00000000 Binary files a/static/icons/06005DCA.png and /dev/null differ diff --git a/static/icons/06005DCB.png b/static/icons/06005DCB.png deleted file mode 100755 index c6bc1d60..00000000 Binary files a/static/icons/06005DCB.png and /dev/null differ diff --git a/static/icons/06005DCC.png b/static/icons/06005DCC.png deleted file mode 100755 index b6ffbe17..00000000 Binary files a/static/icons/06005DCC.png and /dev/null differ diff --git a/static/icons/06005DCD.png b/static/icons/06005DCD.png deleted file mode 100755 index 5288223f..00000000 Binary files a/static/icons/06005DCD.png and /dev/null differ diff --git a/static/icons/06005DD5.png b/static/icons/06005DD5.png deleted file mode 100755 index af6f676e..00000000 Binary files a/static/icons/06005DD5.png and /dev/null differ diff --git a/static/icons/06005DD6.png b/static/icons/06005DD6.png deleted file mode 100755 index 9ae03238..00000000 Binary files a/static/icons/06005DD6.png and /dev/null differ diff --git a/static/icons/06005DD7.png b/static/icons/06005DD7.png deleted file mode 100755 index 236db4cd..00000000 Binary files a/static/icons/06005DD7.png and /dev/null differ diff --git a/static/icons/06005DD8.png b/static/icons/06005DD8.png deleted file mode 100755 index 321c7a19..00000000 Binary files a/static/icons/06005DD8.png and /dev/null differ diff --git a/static/icons/06005DDB.png b/static/icons/06005DDB.png deleted file mode 100755 index 71dd72fb..00000000 Binary files a/static/icons/06005DDB.png and /dev/null differ diff --git a/static/icons/06005DDC.png b/static/icons/06005DDC.png deleted file mode 100755 index eaae7dcb..00000000 Binary files a/static/icons/06005DDC.png and /dev/null differ diff --git a/static/icons/06005DDD.png b/static/icons/06005DDD.png deleted file mode 100755 index 43e16e81..00000000 Binary files a/static/icons/06005DDD.png and /dev/null differ diff --git a/static/icons/06005DDE.png b/static/icons/06005DDE.png deleted file mode 100755 index b42ebb77..00000000 Binary files a/static/icons/06005DDE.png and /dev/null differ diff --git a/static/icons/06005DE0.png b/static/icons/06005DE0.png deleted file mode 100755 index b775a8d8..00000000 Binary files a/static/icons/06005DE0.png and /dev/null differ diff --git a/static/icons/06005DE1.png b/static/icons/06005DE1.png deleted file mode 100755 index 57ecf314..00000000 Binary files a/static/icons/06005DE1.png and /dev/null differ diff --git a/static/icons/06005DE2.png b/static/icons/06005DE2.png deleted file mode 100755 index bd60773f..00000000 Binary files a/static/icons/06005DE2.png and /dev/null differ diff --git a/static/icons/06005DE4.png b/static/icons/06005DE4.png deleted file mode 100755 index 25ad98ee..00000000 Binary files a/static/icons/06005DE4.png and /dev/null differ diff --git a/static/icons/06005DE5.png b/static/icons/06005DE5.png deleted file mode 100755 index a5c85e82..00000000 Binary files a/static/icons/06005DE5.png and /dev/null differ diff --git a/static/icons/06005DE6.png b/static/icons/06005DE6.png deleted file mode 100755 index b976a198..00000000 Binary files a/static/icons/06005DE6.png and /dev/null differ diff --git a/static/icons/06005DE7.png b/static/icons/06005DE7.png deleted file mode 100755 index 3316d323..00000000 Binary files a/static/icons/06005DE7.png and /dev/null differ diff --git a/static/icons/06005E03.png b/static/icons/06005E03.png deleted file mode 100755 index cab0442a..00000000 Binary files a/static/icons/06005E03.png and /dev/null differ diff --git a/static/icons/06005E04.png b/static/icons/06005E04.png deleted file mode 100755 index 4b4e78e8..00000000 Binary files a/static/icons/06005E04.png and /dev/null differ diff --git a/static/icons/06005E10.png b/static/icons/06005E10.png deleted file mode 100755 index 74b89c71..00000000 Binary files a/static/icons/06005E10.png and /dev/null differ diff --git a/static/icons/06005E11.png b/static/icons/06005E11.png deleted file mode 100755 index 9087ba59..00000000 Binary files a/static/icons/06005E11.png and /dev/null differ diff --git a/static/icons/06005E12.png b/static/icons/06005E12.png deleted file mode 100755 index 9f9720dc..00000000 Binary files a/static/icons/06005E12.png and /dev/null differ diff --git a/static/icons/06005E13.png b/static/icons/06005E13.png deleted file mode 100755 index e8270401..00000000 Binary files a/static/icons/06005E13.png and /dev/null differ diff --git a/static/icons/06005E14.png b/static/icons/06005E14.png deleted file mode 100755 index 8365fcea..00000000 Binary files a/static/icons/06005E14.png and /dev/null differ diff --git a/static/icons/06005E15.png b/static/icons/06005E15.png deleted file mode 100755 index 8cf70f0a..00000000 Binary files a/static/icons/06005E15.png and /dev/null differ diff --git a/static/icons/06005E16.png b/static/icons/06005E16.png deleted file mode 100755 index 10e9ba24..00000000 Binary files a/static/icons/06005E16.png and /dev/null differ diff --git a/static/icons/06005E17.png b/static/icons/06005E17.png deleted file mode 100755 index 1e8c58fd..00000000 Binary files a/static/icons/06005E17.png and /dev/null differ diff --git a/static/icons/06005E18.png b/static/icons/06005E18.png deleted file mode 100755 index 99568210..00000000 Binary files a/static/icons/06005E18.png and /dev/null differ diff --git a/static/icons/06005E1B.png b/static/icons/06005E1B.png deleted file mode 100755 index a46a7e48..00000000 Binary files a/static/icons/06005E1B.png and /dev/null differ diff --git a/static/icons/06005E21.png b/static/icons/06005E21.png deleted file mode 100755 index 250eb3c1..00000000 Binary files a/static/icons/06005E21.png and /dev/null differ diff --git a/static/icons/06005E22.png b/static/icons/06005E22.png deleted file mode 100755 index da0a65ae..00000000 Binary files a/static/icons/06005E22.png and /dev/null differ diff --git a/static/icons/06005E23.png b/static/icons/06005E23.png deleted file mode 100755 index eddc385a..00000000 Binary files a/static/icons/06005E23.png and /dev/null differ diff --git a/static/icons/06005E37.png b/static/icons/06005E37.png deleted file mode 100755 index 24cec876..00000000 Binary files a/static/icons/06005E37.png and /dev/null differ diff --git a/static/icons/06005E38.png b/static/icons/06005E38.png deleted file mode 100755 index a4924ee6..00000000 Binary files a/static/icons/06005E38.png and /dev/null differ diff --git a/static/icons/06005E39.png b/static/icons/06005E39.png deleted file mode 100755 index 1b0f149a..00000000 Binary files a/static/icons/06005E39.png and /dev/null differ diff --git a/static/icons/06005E3A.png b/static/icons/06005E3A.png deleted file mode 100755 index 4998404e..00000000 Binary files a/static/icons/06005E3A.png and /dev/null differ diff --git a/static/icons/06005E3D.png b/static/icons/06005E3D.png deleted file mode 100755 index 98bf2e4b..00000000 Binary files a/static/icons/06005E3D.png and /dev/null differ diff --git a/static/icons/06005E3E.png b/static/icons/06005E3E.png deleted file mode 100755 index 520a6a4a..00000000 Binary files a/static/icons/06005E3E.png and /dev/null differ diff --git a/static/icons/06005E3F.png b/static/icons/06005E3F.png deleted file mode 100755 index 5d5697f3..00000000 Binary files a/static/icons/06005E3F.png and /dev/null differ diff --git a/static/icons/06005E40.png b/static/icons/06005E40.png deleted file mode 100755 index 9de6cc54..00000000 Binary files a/static/icons/06005E40.png and /dev/null differ diff --git a/static/icons/06005E41.png b/static/icons/06005E41.png deleted file mode 100755 index 7cd171fd..00000000 Binary files a/static/icons/06005E41.png and /dev/null differ diff --git a/static/icons/06005E42.png b/static/icons/06005E42.png deleted file mode 100755 index 712829b2..00000000 Binary files a/static/icons/06005E42.png and /dev/null differ diff --git a/static/icons/06005E43.png b/static/icons/06005E43.png deleted file mode 100755 index 9248b1a0..00000000 Binary files a/static/icons/06005E43.png and /dev/null differ diff --git a/static/icons/06005E44.png b/static/icons/06005E44.png deleted file mode 100755 index 8f2e53f6..00000000 Binary files a/static/icons/06005E44.png and /dev/null differ diff --git a/static/icons/06005E45.png b/static/icons/06005E45.png deleted file mode 100755 index cb48c266..00000000 Binary files a/static/icons/06005E45.png and /dev/null differ diff --git a/static/icons/06005E46.png b/static/icons/06005E46.png deleted file mode 100755 index a6f96448..00000000 Binary files a/static/icons/06005E46.png and /dev/null differ diff --git a/static/icons/06005E47.png b/static/icons/06005E47.png deleted file mode 100755 index fee164d8..00000000 Binary files a/static/icons/06005E47.png and /dev/null differ diff --git a/static/icons/06005E48.png b/static/icons/06005E48.png deleted file mode 100755 index 2db6da44..00000000 Binary files a/static/icons/06005E48.png and /dev/null differ diff --git a/static/icons/06005E49.png b/static/icons/06005E49.png deleted file mode 100755 index 90c00030..00000000 Binary files a/static/icons/06005E49.png and /dev/null differ diff --git a/static/icons/06005E4A.png b/static/icons/06005E4A.png deleted file mode 100755 index 7167e3d1..00000000 Binary files a/static/icons/06005E4A.png and /dev/null differ diff --git a/static/icons/06005E4B.png b/static/icons/06005E4B.png deleted file mode 100755 index 40be2653..00000000 Binary files a/static/icons/06005E4B.png and /dev/null differ diff --git a/static/icons/06005E4C.png b/static/icons/06005E4C.png deleted file mode 100755 index e43a3b43..00000000 Binary files a/static/icons/06005E4C.png and /dev/null differ diff --git a/static/icons/06005E4D.png b/static/icons/06005E4D.png deleted file mode 100755 index c96e14ef..00000000 Binary files a/static/icons/06005E4D.png and /dev/null differ diff --git a/static/icons/06005E4E.png b/static/icons/06005E4E.png deleted file mode 100755 index 5c47e604..00000000 Binary files a/static/icons/06005E4E.png and /dev/null differ diff --git a/static/icons/06005E4F.png b/static/icons/06005E4F.png deleted file mode 100755 index e8e694c4..00000000 Binary files a/static/icons/06005E4F.png and /dev/null differ diff --git a/static/icons/06005E50.png b/static/icons/06005E50.png deleted file mode 100755 index f77326f2..00000000 Binary files a/static/icons/06005E50.png and /dev/null differ diff --git a/static/icons/06005E51.png b/static/icons/06005E51.png deleted file mode 100755 index 22aad607..00000000 Binary files a/static/icons/06005E51.png and /dev/null differ diff --git a/static/icons/06005E52.png b/static/icons/06005E52.png deleted file mode 100755 index 54226e70..00000000 Binary files a/static/icons/06005E52.png and /dev/null differ diff --git a/static/icons/06005E53.png b/static/icons/06005E53.png deleted file mode 100755 index ca2e5cdb..00000000 Binary files a/static/icons/06005E53.png and /dev/null differ diff --git a/static/icons/06005E54.png b/static/icons/06005E54.png deleted file mode 100755 index 807ef8e3..00000000 Binary files a/static/icons/06005E54.png and /dev/null differ diff --git a/static/icons/06005E55.png b/static/icons/06005E55.png deleted file mode 100755 index 04d1f246..00000000 Binary files a/static/icons/06005E55.png and /dev/null differ diff --git a/static/icons/06005E56.png b/static/icons/06005E56.png deleted file mode 100755 index bf993d89..00000000 Binary files a/static/icons/06005E56.png and /dev/null differ diff --git a/static/icons/06005E57.png b/static/icons/06005E57.png deleted file mode 100755 index 29e182d1..00000000 Binary files a/static/icons/06005E57.png and /dev/null differ diff --git a/static/icons/06005E58.png b/static/icons/06005E58.png deleted file mode 100755 index c9460ab7..00000000 Binary files a/static/icons/06005E58.png and /dev/null differ diff --git a/static/icons/06005E59.png b/static/icons/06005E59.png deleted file mode 100755 index 5cf1f819..00000000 Binary files a/static/icons/06005E59.png and /dev/null differ diff --git a/static/icons/06005E5A.png b/static/icons/06005E5A.png deleted file mode 100755 index da3f8a92..00000000 Binary files a/static/icons/06005E5A.png and /dev/null differ diff --git a/static/icons/06005E5B.png b/static/icons/06005E5B.png deleted file mode 100755 index 85bb9074..00000000 Binary files a/static/icons/06005E5B.png and /dev/null differ diff --git a/static/icons/06005E5C.png b/static/icons/06005E5C.png deleted file mode 100755 index b94eddcb..00000000 Binary files a/static/icons/06005E5C.png and /dev/null differ diff --git a/static/icons/06005E5D.png b/static/icons/06005E5D.png deleted file mode 100755 index bd32b1e8..00000000 Binary files a/static/icons/06005E5D.png and /dev/null differ diff --git a/static/icons/06005E60.png b/static/icons/06005E60.png deleted file mode 100755 index 3dd943d8..00000000 Binary files a/static/icons/06005E60.png and /dev/null differ diff --git a/static/icons/06005E63.png b/static/icons/06005E63.png deleted file mode 100755 index 23f5d0fa..00000000 Binary files a/static/icons/06005E63.png and /dev/null differ diff --git a/static/icons/06005E64.png b/static/icons/06005E64.png deleted file mode 100755 index cc21eabd..00000000 Binary files a/static/icons/06005E64.png and /dev/null differ diff --git a/static/icons/06005E65.png b/static/icons/06005E65.png deleted file mode 100755 index dffcec28..00000000 Binary files a/static/icons/06005E65.png and /dev/null differ diff --git a/static/icons/06005E66.png b/static/icons/06005E66.png deleted file mode 100755 index 343eb084..00000000 Binary files a/static/icons/06005E66.png and /dev/null differ diff --git a/static/icons/06005E6A.png b/static/icons/06005E6A.png deleted file mode 100755 index 6eb07cd9..00000000 Binary files a/static/icons/06005E6A.png and /dev/null differ diff --git a/static/icons/06005E6B.png b/static/icons/06005E6B.png deleted file mode 100755 index 21608ade..00000000 Binary files a/static/icons/06005E6B.png and /dev/null differ diff --git a/static/icons/06005E92.png b/static/icons/06005E92.png deleted file mode 100755 index 29476f7e..00000000 Binary files a/static/icons/06005E92.png and /dev/null differ diff --git a/static/icons/06005EA7.png b/static/icons/06005EA7.png deleted file mode 100755 index d8a712ef..00000000 Binary files a/static/icons/06005EA7.png and /dev/null differ diff --git a/static/icons/06005EA9.png b/static/icons/06005EA9.png deleted file mode 100755 index 57f7773d..00000000 Binary files a/static/icons/06005EA9.png and /dev/null differ diff --git a/static/icons/06005EAB.png b/static/icons/06005EAB.png deleted file mode 100755 index ba4c5e0a..00000000 Binary files a/static/icons/06005EAB.png and /dev/null differ diff --git a/static/icons/06005EAD.png b/static/icons/06005EAD.png deleted file mode 100755 index 2ab770f9..00000000 Binary files a/static/icons/06005EAD.png and /dev/null differ diff --git a/static/icons/06005EAE.png b/static/icons/06005EAE.png deleted file mode 100755 index c70e5a61..00000000 Binary files a/static/icons/06005EAE.png and /dev/null differ diff --git a/static/icons/06005EAF.png b/static/icons/06005EAF.png deleted file mode 100755 index adf96817..00000000 Binary files a/static/icons/06005EAF.png and /dev/null differ diff --git a/static/icons/06005EB4.png b/static/icons/06005EB4.png deleted file mode 100755 index 42866ccc..00000000 Binary files a/static/icons/06005EB4.png and /dev/null differ diff --git a/static/icons/06005EB5.png b/static/icons/06005EB5.png deleted file mode 100755 index 62b4a84e..00000000 Binary files a/static/icons/06005EB5.png and /dev/null differ diff --git a/static/icons/06005EB6.png b/static/icons/06005EB6.png deleted file mode 100755 index 1dd5db91..00000000 Binary files a/static/icons/06005EB6.png and /dev/null differ diff --git a/static/icons/06005EB8.png b/static/icons/06005EB8.png deleted file mode 100755 index fe153702..00000000 Binary files a/static/icons/06005EB8.png and /dev/null differ diff --git a/static/icons/06005EB9.png b/static/icons/06005EB9.png deleted file mode 100755 index b7255d57..00000000 Binary files a/static/icons/06005EB9.png and /dev/null differ diff --git a/static/icons/06005EBA.png b/static/icons/06005EBA.png deleted file mode 100755 index 122d2e42..00000000 Binary files a/static/icons/06005EBA.png and /dev/null differ diff --git a/static/icons/06005EBB.png b/static/icons/06005EBB.png deleted file mode 100755 index 2a04ed7a..00000000 Binary files a/static/icons/06005EBB.png and /dev/null differ diff --git a/static/icons/06005EBC.png b/static/icons/06005EBC.png deleted file mode 100755 index 1b6d6560..00000000 Binary files a/static/icons/06005EBC.png and /dev/null differ diff --git a/static/icons/06005EBD.png b/static/icons/06005EBD.png deleted file mode 100755 index 2ed4908f..00000000 Binary files a/static/icons/06005EBD.png and /dev/null differ diff --git a/static/icons/06005EBE.png b/static/icons/06005EBE.png deleted file mode 100755 index 2f204163..00000000 Binary files a/static/icons/06005EBE.png and /dev/null differ diff --git a/static/icons/06005EBF.png b/static/icons/06005EBF.png deleted file mode 100755 index 4cb00b71..00000000 Binary files a/static/icons/06005EBF.png and /dev/null differ diff --git a/static/icons/06005EC0.png b/static/icons/06005EC0.png deleted file mode 100755 index db5aa345..00000000 Binary files a/static/icons/06005EC0.png and /dev/null differ diff --git a/static/icons/06005EC1.png b/static/icons/06005EC1.png deleted file mode 100755 index 43987e0a..00000000 Binary files a/static/icons/06005EC1.png and /dev/null differ diff --git a/static/icons/06005EC2.png b/static/icons/06005EC2.png deleted file mode 100755 index bfe289ba..00000000 Binary files a/static/icons/06005EC2.png and /dev/null differ diff --git a/static/icons/06005EC3.png b/static/icons/06005EC3.png deleted file mode 100755 index 6195d07c..00000000 Binary files a/static/icons/06005EC3.png and /dev/null differ diff --git a/static/icons/06005ECE.png b/static/icons/06005ECE.png deleted file mode 100755 index 4178f30d..00000000 Binary files a/static/icons/06005ECE.png and /dev/null differ diff --git a/static/icons/06005ECF.png b/static/icons/06005ECF.png deleted file mode 100755 index ede24ed4..00000000 Binary files a/static/icons/06005ECF.png and /dev/null differ diff --git a/static/icons/06005ED0.png b/static/icons/06005ED0.png deleted file mode 100755 index f45b4db3..00000000 Binary files a/static/icons/06005ED0.png and /dev/null differ diff --git a/static/icons/06005ED1.png b/static/icons/06005ED1.png deleted file mode 100755 index 11e8081e..00000000 Binary files a/static/icons/06005ED1.png and /dev/null differ diff --git a/static/icons/06005ED2.png b/static/icons/06005ED2.png deleted file mode 100755 index 37312bf1..00000000 Binary files a/static/icons/06005ED2.png and /dev/null differ diff --git a/static/icons/06005ED3.png b/static/icons/06005ED3.png deleted file mode 100755 index e8a0872b..00000000 Binary files a/static/icons/06005ED3.png and /dev/null differ diff --git a/static/icons/06005ED4.png b/static/icons/06005ED4.png deleted file mode 100755 index 4b6ab0e8..00000000 Binary files a/static/icons/06005ED4.png and /dev/null differ diff --git a/static/icons/06005ED5.png b/static/icons/06005ED5.png deleted file mode 100755 index 44e4eb58..00000000 Binary files a/static/icons/06005ED5.png and /dev/null differ diff --git a/static/icons/06005ED6.png b/static/icons/06005ED6.png deleted file mode 100755 index 30674abc..00000000 Binary files a/static/icons/06005ED6.png and /dev/null differ diff --git a/static/icons/06005ED7.png b/static/icons/06005ED7.png deleted file mode 100755 index b850ac41..00000000 Binary files a/static/icons/06005ED7.png and /dev/null differ diff --git a/static/icons/06005ED8.png b/static/icons/06005ED8.png deleted file mode 100755 index d1ce3df7..00000000 Binary files a/static/icons/06005ED8.png and /dev/null differ diff --git a/static/icons/06005ED9.png b/static/icons/06005ED9.png deleted file mode 100755 index e7f7aaf3..00000000 Binary files a/static/icons/06005ED9.png and /dev/null differ diff --git a/static/icons/06005EDA.png b/static/icons/06005EDA.png deleted file mode 100755 index ffa45f33..00000000 Binary files a/static/icons/06005EDA.png and /dev/null differ diff --git a/static/icons/06005EDB.png b/static/icons/06005EDB.png deleted file mode 100755 index 2f33d061..00000000 Binary files a/static/icons/06005EDB.png and /dev/null differ diff --git a/static/icons/06005EDC.png b/static/icons/06005EDC.png deleted file mode 100755 index a326c326..00000000 Binary files a/static/icons/06005EDC.png and /dev/null differ diff --git a/static/icons/06005EDD.png b/static/icons/06005EDD.png deleted file mode 100755 index 21ee0c42..00000000 Binary files a/static/icons/06005EDD.png and /dev/null differ diff --git a/static/icons/06005EDE.png b/static/icons/06005EDE.png deleted file mode 100755 index 4056a5b9..00000000 Binary files a/static/icons/06005EDE.png and /dev/null differ diff --git a/static/icons/06005EDF.png b/static/icons/06005EDF.png deleted file mode 100755 index f27d0e5e..00000000 Binary files a/static/icons/06005EDF.png and /dev/null differ diff --git a/static/icons/06005EE0.png b/static/icons/06005EE0.png deleted file mode 100755 index 7931ab63..00000000 Binary files a/static/icons/06005EE0.png and /dev/null differ diff --git a/static/icons/06005EE1.png b/static/icons/06005EE1.png deleted file mode 100755 index a009906a..00000000 Binary files a/static/icons/06005EE1.png and /dev/null differ diff --git a/static/icons/06005EE2.png b/static/icons/06005EE2.png deleted file mode 100755 index e69e098d..00000000 Binary files a/static/icons/06005EE2.png and /dev/null differ diff --git a/static/icons/06005EE3.png b/static/icons/06005EE3.png deleted file mode 100755 index 8b367cbf..00000000 Binary files a/static/icons/06005EE3.png and /dev/null differ diff --git a/static/icons/06005EE4.png b/static/icons/06005EE4.png deleted file mode 100755 index 4fd46999..00000000 Binary files a/static/icons/06005EE4.png and /dev/null differ diff --git a/static/icons/06005EE5.png b/static/icons/06005EE5.png deleted file mode 100755 index c6d0d423..00000000 Binary files a/static/icons/06005EE5.png and /dev/null differ diff --git a/static/icons/06005EE6.png b/static/icons/06005EE6.png deleted file mode 100755 index cf60df27..00000000 Binary files a/static/icons/06005EE6.png and /dev/null differ diff --git a/static/icons/06005EE7.png b/static/icons/06005EE7.png deleted file mode 100755 index ec5bae82..00000000 Binary files a/static/icons/06005EE7.png and /dev/null differ diff --git a/static/icons/06005EE8.png b/static/icons/06005EE8.png deleted file mode 100755 index ebaf3c0f..00000000 Binary files a/static/icons/06005EE8.png and /dev/null differ diff --git a/static/icons/06005EE9.png b/static/icons/06005EE9.png deleted file mode 100755 index e238ab5e..00000000 Binary files a/static/icons/06005EE9.png and /dev/null differ diff --git a/static/icons/06005EEA.png b/static/icons/06005EEA.png deleted file mode 100755 index 97036fb5..00000000 Binary files a/static/icons/06005EEA.png and /dev/null differ diff --git a/static/icons/06005EEB.png b/static/icons/06005EEB.png deleted file mode 100755 index a0d25876..00000000 Binary files a/static/icons/06005EEB.png and /dev/null differ diff --git a/static/icons/06005EEC.png b/static/icons/06005EEC.png deleted file mode 100755 index 47fb5078..00000000 Binary files a/static/icons/06005EEC.png and /dev/null differ diff --git a/static/icons/06005EED.png b/static/icons/06005EED.png deleted file mode 100755 index 6d700597..00000000 Binary files a/static/icons/06005EED.png and /dev/null differ diff --git a/static/icons/06005EEE.png b/static/icons/06005EEE.png deleted file mode 100755 index dd562e6d..00000000 Binary files a/static/icons/06005EEE.png and /dev/null differ diff --git a/static/icons/06005EEF.png b/static/icons/06005EEF.png deleted file mode 100755 index 6b291dcf..00000000 Binary files a/static/icons/06005EEF.png and /dev/null differ diff --git a/static/icons/06005EF0.png b/static/icons/06005EF0.png deleted file mode 100755 index ea568df6..00000000 Binary files a/static/icons/06005EF0.png and /dev/null differ diff --git a/static/icons/06005EF1.png b/static/icons/06005EF1.png deleted file mode 100755 index 47df8f2c..00000000 Binary files a/static/icons/06005EF1.png and /dev/null differ diff --git a/static/icons/06005EF2.png b/static/icons/06005EF2.png deleted file mode 100755 index 5aa98ff7..00000000 Binary files a/static/icons/06005EF2.png and /dev/null differ diff --git a/static/icons/06005EF3.png b/static/icons/06005EF3.png deleted file mode 100755 index 98fae509..00000000 Binary files a/static/icons/06005EF3.png and /dev/null differ diff --git a/static/icons/06005EF4.png b/static/icons/06005EF4.png deleted file mode 100755 index e1f3bcf7..00000000 Binary files a/static/icons/06005EF4.png and /dev/null differ diff --git a/static/icons/06005EF5.png b/static/icons/06005EF5.png deleted file mode 100755 index 1ccc3060..00000000 Binary files a/static/icons/06005EF5.png and /dev/null differ diff --git a/static/icons/06005EF6.png b/static/icons/06005EF6.png deleted file mode 100755 index 9e07b5d1..00000000 Binary files a/static/icons/06005EF6.png and /dev/null differ diff --git a/static/icons/06005EF7.png b/static/icons/06005EF7.png deleted file mode 100755 index 29e1b819..00000000 Binary files a/static/icons/06005EF7.png and /dev/null differ diff --git a/static/icons/06005EF8.png b/static/icons/06005EF8.png deleted file mode 100755 index 8c8962d6..00000000 Binary files a/static/icons/06005EF8.png and /dev/null differ diff --git a/static/icons/06005EF9.png b/static/icons/06005EF9.png deleted file mode 100755 index 7376a57f..00000000 Binary files a/static/icons/06005EF9.png and /dev/null differ diff --git a/static/icons/06005EFA.png b/static/icons/06005EFA.png deleted file mode 100755 index b2a0d5d2..00000000 Binary files a/static/icons/06005EFA.png and /dev/null differ diff --git a/static/icons/06005EFB.png b/static/icons/06005EFB.png deleted file mode 100755 index 389bada6..00000000 Binary files a/static/icons/06005EFB.png and /dev/null differ diff --git a/static/icons/06005EFC.png b/static/icons/06005EFC.png deleted file mode 100755 index 09b00c26..00000000 Binary files a/static/icons/06005EFC.png and /dev/null differ diff --git a/static/icons/06005EFD.png b/static/icons/06005EFD.png deleted file mode 100755 index 1d0a8684..00000000 Binary files a/static/icons/06005EFD.png and /dev/null differ diff --git a/static/icons/06005EFE.png b/static/icons/06005EFE.png deleted file mode 100755 index b639221b..00000000 Binary files a/static/icons/06005EFE.png and /dev/null differ diff --git a/static/icons/06005EFF.png b/static/icons/06005EFF.png deleted file mode 100755 index 28d695e9..00000000 Binary files a/static/icons/06005EFF.png and /dev/null differ diff --git a/static/icons/06005F00.png b/static/icons/06005F00.png deleted file mode 100755 index 2229f255..00000000 Binary files a/static/icons/06005F00.png and /dev/null differ diff --git a/static/icons/06005F01.png b/static/icons/06005F01.png deleted file mode 100755 index e5c2c875..00000000 Binary files a/static/icons/06005F01.png and /dev/null differ diff --git a/static/icons/06005F02.png b/static/icons/06005F02.png deleted file mode 100755 index 58e881ea..00000000 Binary files a/static/icons/06005F02.png and /dev/null differ diff --git a/static/icons/06005F03.png b/static/icons/06005F03.png deleted file mode 100755 index 93ef137b..00000000 Binary files a/static/icons/06005F03.png and /dev/null differ diff --git a/static/icons/06005F04.png b/static/icons/06005F04.png deleted file mode 100755 index cc2f8069..00000000 Binary files a/static/icons/06005F04.png and /dev/null differ diff --git a/static/icons/06005F05.png b/static/icons/06005F05.png deleted file mode 100755 index 9ab794f2..00000000 Binary files a/static/icons/06005F05.png and /dev/null differ diff --git a/static/icons/06005F06.png b/static/icons/06005F06.png deleted file mode 100755 index 34e2da47..00000000 Binary files a/static/icons/06005F06.png and /dev/null differ diff --git a/static/icons/06005F07.png b/static/icons/06005F07.png deleted file mode 100755 index c8f29091..00000000 Binary files a/static/icons/06005F07.png and /dev/null differ diff --git a/static/icons/06005F08.png b/static/icons/06005F08.png deleted file mode 100755 index ce7ad9d5..00000000 Binary files a/static/icons/06005F08.png and /dev/null differ diff --git a/static/icons/06005F09.png b/static/icons/06005F09.png deleted file mode 100755 index a53b7273..00000000 Binary files a/static/icons/06005F09.png and /dev/null differ diff --git a/static/icons/06005F0A.png b/static/icons/06005F0A.png deleted file mode 100755 index 571c98a1..00000000 Binary files a/static/icons/06005F0A.png and /dev/null differ diff --git a/static/icons/06005F0B.png b/static/icons/06005F0B.png deleted file mode 100755 index 48527d22..00000000 Binary files a/static/icons/06005F0B.png and /dev/null differ diff --git a/static/icons/06005F0C.png b/static/icons/06005F0C.png deleted file mode 100755 index f0eaccc0..00000000 Binary files a/static/icons/06005F0C.png and /dev/null differ diff --git a/static/icons/06005F0D.png b/static/icons/06005F0D.png deleted file mode 100755 index 93af78f5..00000000 Binary files a/static/icons/06005F0D.png and /dev/null differ diff --git a/static/icons/06005F0E.png b/static/icons/06005F0E.png deleted file mode 100755 index b58c2ec6..00000000 Binary files a/static/icons/06005F0E.png and /dev/null differ diff --git a/static/icons/06005F0F.png b/static/icons/06005F0F.png deleted file mode 100755 index c8033f97..00000000 Binary files a/static/icons/06005F0F.png and /dev/null differ diff --git a/static/icons/06005F10.png b/static/icons/06005F10.png deleted file mode 100755 index 78d52215..00000000 Binary files a/static/icons/06005F10.png and /dev/null differ diff --git a/static/icons/06005F11.png b/static/icons/06005F11.png deleted file mode 100755 index aba4ae0d..00000000 Binary files a/static/icons/06005F11.png and /dev/null differ diff --git a/static/icons/06005F12.png b/static/icons/06005F12.png deleted file mode 100755 index 5e2a0cce..00000000 Binary files a/static/icons/06005F12.png and /dev/null differ diff --git a/static/icons/06005F13.png b/static/icons/06005F13.png deleted file mode 100755 index 7957df1b..00000000 Binary files a/static/icons/06005F13.png and /dev/null differ diff --git a/static/icons/06005F14.png b/static/icons/06005F14.png deleted file mode 100755 index b6bb1404..00000000 Binary files a/static/icons/06005F14.png and /dev/null differ diff --git a/static/icons/06005F15.png b/static/icons/06005F15.png deleted file mode 100755 index 261a5bc0..00000000 Binary files a/static/icons/06005F15.png and /dev/null differ diff --git a/static/icons/06005F16.png b/static/icons/06005F16.png deleted file mode 100755 index 564d4f16..00000000 Binary files a/static/icons/06005F16.png and /dev/null differ diff --git a/static/icons/06005F17.png b/static/icons/06005F17.png deleted file mode 100755 index bf4f1529..00000000 Binary files a/static/icons/06005F17.png and /dev/null differ diff --git a/static/icons/06005F18.png b/static/icons/06005F18.png deleted file mode 100755 index 60825913..00000000 Binary files a/static/icons/06005F18.png and /dev/null differ diff --git a/static/icons/06005F19.png b/static/icons/06005F19.png deleted file mode 100755 index b2bff195..00000000 Binary files a/static/icons/06005F19.png and /dev/null differ diff --git a/static/icons/06005F1A.png b/static/icons/06005F1A.png deleted file mode 100755 index d6e4b8f7..00000000 Binary files a/static/icons/06005F1A.png and /dev/null differ diff --git a/static/icons/06005F1C.png b/static/icons/06005F1C.png deleted file mode 100755 index 591d353c..00000000 Binary files a/static/icons/06005F1C.png and /dev/null differ diff --git a/static/icons/06005F1D.png b/static/icons/06005F1D.png deleted file mode 100755 index 77a0c500..00000000 Binary files a/static/icons/06005F1D.png and /dev/null differ diff --git a/static/icons/06005F1E.png b/static/icons/06005F1E.png deleted file mode 100755 index 2ed7a8b5..00000000 Binary files a/static/icons/06005F1E.png and /dev/null differ diff --git a/static/icons/06005F20.png b/static/icons/06005F20.png deleted file mode 100755 index 4c52f075..00000000 Binary files a/static/icons/06005F20.png and /dev/null differ diff --git a/static/icons/06005F21.png b/static/icons/06005F21.png deleted file mode 100755 index d738c866..00000000 Binary files a/static/icons/06005F21.png and /dev/null differ diff --git a/static/icons/06005F22.png b/static/icons/06005F22.png deleted file mode 100755 index d2f6833a..00000000 Binary files a/static/icons/06005F22.png and /dev/null differ diff --git a/static/icons/06005F29.png b/static/icons/06005F29.png deleted file mode 100755 index a4885949..00000000 Binary files a/static/icons/06005F29.png and /dev/null differ diff --git a/static/icons/06005F2A.png b/static/icons/06005F2A.png deleted file mode 100755 index d25710ad..00000000 Binary files a/static/icons/06005F2A.png and /dev/null differ diff --git a/static/icons/06005F2C.png b/static/icons/06005F2C.png deleted file mode 100755 index cd85ad23..00000000 Binary files a/static/icons/06005F2C.png and /dev/null differ diff --git a/static/icons/06005F2D.png b/static/icons/06005F2D.png deleted file mode 100755 index 3c61fc2e..00000000 Binary files a/static/icons/06005F2D.png and /dev/null differ diff --git a/static/icons/06005F2E.png b/static/icons/06005F2E.png deleted file mode 100755 index 8410145e..00000000 Binary files a/static/icons/06005F2E.png and /dev/null differ diff --git a/static/icons/06005F2F.png b/static/icons/06005F2F.png deleted file mode 100755 index 60bc0639..00000000 Binary files a/static/icons/06005F2F.png and /dev/null differ diff --git a/static/icons/06005F30.png b/static/icons/06005F30.png deleted file mode 100755 index 0ff44b90..00000000 Binary files a/static/icons/06005F30.png and /dev/null differ diff --git a/static/icons/06005F31.png b/static/icons/06005F31.png deleted file mode 100755 index 771cfae8..00000000 Binary files a/static/icons/06005F31.png and /dev/null differ diff --git a/static/icons/06005F32.png b/static/icons/06005F32.png deleted file mode 100755 index 8ebefc58..00000000 Binary files a/static/icons/06005F32.png and /dev/null differ diff --git a/static/icons/06005F33.png b/static/icons/06005F33.png deleted file mode 100755 index b835d6ea..00000000 Binary files a/static/icons/06005F33.png and /dev/null differ diff --git a/static/icons/06005F34.png b/static/icons/06005F34.png deleted file mode 100755 index 1d8f65b7..00000000 Binary files a/static/icons/06005F34.png and /dev/null differ diff --git a/static/icons/06005F35.png b/static/icons/06005F35.png deleted file mode 100755 index df3f075c..00000000 Binary files a/static/icons/06005F35.png and /dev/null differ diff --git a/static/icons/06005F36.png b/static/icons/06005F36.png deleted file mode 100755 index b2ca3586..00000000 Binary files a/static/icons/06005F36.png and /dev/null differ diff --git a/static/icons/06005F37.png b/static/icons/06005F37.png deleted file mode 100755 index 93a11592..00000000 Binary files a/static/icons/06005F37.png and /dev/null differ diff --git a/static/icons/06005F38.png b/static/icons/06005F38.png deleted file mode 100755 index c5f733e3..00000000 Binary files a/static/icons/06005F38.png and /dev/null differ diff --git a/static/icons/06005F3C.png b/static/icons/06005F3C.png deleted file mode 100755 index c18f1fcb..00000000 Binary files a/static/icons/06005F3C.png and /dev/null differ diff --git a/static/icons/06005F3D.png b/static/icons/06005F3D.png deleted file mode 100755 index 25d3068f..00000000 Binary files a/static/icons/06005F3D.png and /dev/null differ diff --git a/static/icons/06005F3E.png b/static/icons/06005F3E.png deleted file mode 100755 index 1575c300..00000000 Binary files a/static/icons/06005F3E.png and /dev/null differ diff --git a/static/icons/06005F3F.png b/static/icons/06005F3F.png deleted file mode 100755 index 81f37ce4..00000000 Binary files a/static/icons/06005F3F.png and /dev/null differ diff --git a/static/icons/06005F40.png b/static/icons/06005F40.png deleted file mode 100755 index b4dbe6cd..00000000 Binary files a/static/icons/06005F40.png and /dev/null differ diff --git a/static/icons/06005F41.png b/static/icons/06005F41.png deleted file mode 100755 index 03f989e3..00000000 Binary files a/static/icons/06005F41.png and /dev/null differ diff --git a/static/icons/06005F42.png b/static/icons/06005F42.png deleted file mode 100755 index 276224c7..00000000 Binary files a/static/icons/06005F42.png and /dev/null differ diff --git a/static/icons/06005F43.png b/static/icons/06005F43.png deleted file mode 100755 index e082e9de..00000000 Binary files a/static/icons/06005F43.png and /dev/null differ diff --git a/static/icons/06005F44.png b/static/icons/06005F44.png deleted file mode 100755 index 42f57b83..00000000 Binary files a/static/icons/06005F44.png and /dev/null differ diff --git a/static/icons/06005F45.png b/static/icons/06005F45.png deleted file mode 100755 index 646d518c..00000000 Binary files a/static/icons/06005F45.png and /dev/null differ diff --git a/static/icons/06005F46.png b/static/icons/06005F46.png deleted file mode 100755 index e6b90cc2..00000000 Binary files a/static/icons/06005F46.png and /dev/null differ diff --git a/static/icons/06005F48.png b/static/icons/06005F48.png deleted file mode 100755 index 6fe9960c..00000000 Binary files a/static/icons/06005F48.png and /dev/null differ diff --git a/static/icons/06005F49.png b/static/icons/06005F49.png deleted file mode 100755 index 083ddd05..00000000 Binary files a/static/icons/06005F49.png and /dev/null differ diff --git a/static/icons/06005F4A.png b/static/icons/06005F4A.png deleted file mode 100755 index b324d067..00000000 Binary files a/static/icons/06005F4A.png and /dev/null differ diff --git a/static/icons/06005F4B.png b/static/icons/06005F4B.png deleted file mode 100755 index c98f59cb..00000000 Binary files a/static/icons/06005F4B.png and /dev/null differ diff --git a/static/icons/06005F4C.png b/static/icons/06005F4C.png deleted file mode 100755 index aafc5655..00000000 Binary files a/static/icons/06005F4C.png and /dev/null differ diff --git a/static/icons/06005F4D.png b/static/icons/06005F4D.png deleted file mode 100755 index 4fcd2fa3..00000000 Binary files a/static/icons/06005F4D.png and /dev/null differ diff --git a/static/icons/06005F4E.png b/static/icons/06005F4E.png deleted file mode 100755 index c4a48f0b..00000000 Binary files a/static/icons/06005F4E.png and /dev/null differ diff --git a/static/icons/06005F4F.png b/static/icons/06005F4F.png deleted file mode 100755 index 24d033ea..00000000 Binary files a/static/icons/06005F4F.png and /dev/null differ diff --git a/static/icons/06005F50.png b/static/icons/06005F50.png deleted file mode 100755 index 69c90cba..00000000 Binary files a/static/icons/06005F50.png and /dev/null differ diff --git a/static/icons/06005F51.png b/static/icons/06005F51.png deleted file mode 100755 index ce9c6ba9..00000000 Binary files a/static/icons/06005F51.png and /dev/null differ diff --git a/static/icons/06005F52.png b/static/icons/06005F52.png deleted file mode 100755 index 1f63ebd8..00000000 Binary files a/static/icons/06005F52.png and /dev/null differ diff --git a/static/icons/06005F53.png b/static/icons/06005F53.png deleted file mode 100755 index 33e8ec45..00000000 Binary files a/static/icons/06005F53.png and /dev/null differ diff --git a/static/icons/06005F54.png b/static/icons/06005F54.png deleted file mode 100755 index d1496625..00000000 Binary files a/static/icons/06005F54.png and /dev/null differ diff --git a/static/icons/06005F55.png b/static/icons/06005F55.png deleted file mode 100755 index 85faf0b2..00000000 Binary files a/static/icons/06005F55.png and /dev/null differ diff --git a/static/icons/06005F56.png b/static/icons/06005F56.png deleted file mode 100755 index da3cbd49..00000000 Binary files a/static/icons/06005F56.png and /dev/null differ diff --git a/static/icons/06005F57.png b/static/icons/06005F57.png deleted file mode 100755 index 4d963038..00000000 Binary files a/static/icons/06005F57.png and /dev/null differ diff --git a/static/icons/06005F58.png b/static/icons/06005F58.png deleted file mode 100755 index a4ec2c2d..00000000 Binary files a/static/icons/06005F58.png and /dev/null differ diff --git a/static/icons/06005F59.png b/static/icons/06005F59.png deleted file mode 100755 index c09d31f5..00000000 Binary files a/static/icons/06005F59.png and /dev/null differ diff --git a/static/icons/06005F5A.png b/static/icons/06005F5A.png deleted file mode 100755 index 06c87446..00000000 Binary files a/static/icons/06005F5A.png and /dev/null differ diff --git a/static/icons/06005F5B.png b/static/icons/06005F5B.png deleted file mode 100755 index 7c99b913..00000000 Binary files a/static/icons/06005F5B.png and /dev/null differ diff --git a/static/icons/06005F5C.png b/static/icons/06005F5C.png deleted file mode 100755 index 79083eb4..00000000 Binary files a/static/icons/06005F5C.png and /dev/null differ diff --git a/static/icons/06005F5D.png b/static/icons/06005F5D.png deleted file mode 100755 index a04de924..00000000 Binary files a/static/icons/06005F5D.png and /dev/null differ diff --git a/static/icons/06005F5E.png b/static/icons/06005F5E.png deleted file mode 100755 index a8b0aabe..00000000 Binary files a/static/icons/06005F5E.png and /dev/null differ diff --git a/static/icons/06005F5F.png b/static/icons/06005F5F.png deleted file mode 100755 index c93fc269..00000000 Binary files a/static/icons/06005F5F.png and /dev/null differ diff --git a/static/icons/06005F60.png b/static/icons/06005F60.png deleted file mode 100755 index 527759c5..00000000 Binary files a/static/icons/06005F60.png and /dev/null differ diff --git a/static/icons/06005F62.png b/static/icons/06005F62.png deleted file mode 100755 index c0a65f9f..00000000 Binary files a/static/icons/06005F62.png and /dev/null differ diff --git a/static/icons/06005F63.png b/static/icons/06005F63.png deleted file mode 100755 index f7f4b7f2..00000000 Binary files a/static/icons/06005F63.png and /dev/null differ diff --git a/static/icons/06005F64.png b/static/icons/06005F64.png deleted file mode 100755 index 85d06e07..00000000 Binary files a/static/icons/06005F64.png and /dev/null differ diff --git a/static/icons/06005F65.png b/static/icons/06005F65.png deleted file mode 100755 index 5a58049f..00000000 Binary files a/static/icons/06005F65.png and /dev/null differ diff --git a/static/icons/06005F66.png b/static/icons/06005F66.png deleted file mode 100755 index cbb96594..00000000 Binary files a/static/icons/06005F66.png and /dev/null differ diff --git a/static/icons/06005F67.png b/static/icons/06005F67.png deleted file mode 100755 index a4f83420..00000000 Binary files a/static/icons/06005F67.png and /dev/null differ diff --git a/static/icons/06005F68.png b/static/icons/06005F68.png deleted file mode 100755 index 68f88a50..00000000 Binary files a/static/icons/06005F68.png and /dev/null differ diff --git a/static/icons/06005F69.png b/static/icons/06005F69.png deleted file mode 100755 index 6b323379..00000000 Binary files a/static/icons/06005F69.png and /dev/null differ diff --git a/static/icons/06005F6A.png b/static/icons/06005F6A.png deleted file mode 100755 index 964202d8..00000000 Binary files a/static/icons/06005F6A.png and /dev/null differ diff --git a/static/icons/06005F6B.png b/static/icons/06005F6B.png deleted file mode 100755 index b1d9d7bc..00000000 Binary files a/static/icons/06005F6B.png and /dev/null differ diff --git a/static/icons/06005F6C.png b/static/icons/06005F6C.png deleted file mode 100755 index e923e24b..00000000 Binary files a/static/icons/06005F6C.png and /dev/null differ diff --git a/static/icons/06005F6D.png b/static/icons/06005F6D.png deleted file mode 100755 index 28829b8a..00000000 Binary files a/static/icons/06005F6D.png and /dev/null differ diff --git a/static/icons/06005F6E.png b/static/icons/06005F6E.png deleted file mode 100755 index 53a81969..00000000 Binary files a/static/icons/06005F6E.png and /dev/null differ diff --git a/static/icons/06005F6F.png b/static/icons/06005F6F.png deleted file mode 100755 index 2da66e4d..00000000 Binary files a/static/icons/06005F6F.png and /dev/null differ diff --git a/static/icons/06005F77.png b/static/icons/06005F77.png deleted file mode 100755 index 457eaab3..00000000 Binary files a/static/icons/06005F77.png and /dev/null differ diff --git a/static/icons/06005F78.png b/static/icons/06005F78.png deleted file mode 100755 index 21db014e..00000000 Binary files a/static/icons/06005F78.png and /dev/null differ diff --git a/static/icons/06005F79.png b/static/icons/06005F79.png deleted file mode 100755 index fa7de186..00000000 Binary files a/static/icons/06005F79.png and /dev/null differ diff --git a/static/icons/06005F7A.png b/static/icons/06005F7A.png deleted file mode 100755 index 733d4569..00000000 Binary files a/static/icons/06005F7A.png and /dev/null differ diff --git a/static/icons/06005F7B.png b/static/icons/06005F7B.png deleted file mode 100755 index cccc3e9f..00000000 Binary files a/static/icons/06005F7B.png and /dev/null differ diff --git a/static/icons/06005F7C.png b/static/icons/06005F7C.png deleted file mode 100755 index 421f560f..00000000 Binary files a/static/icons/06005F7C.png and /dev/null differ diff --git a/static/icons/06005F7D.png b/static/icons/06005F7D.png deleted file mode 100755 index 5a6780c9..00000000 Binary files a/static/icons/06005F7D.png and /dev/null differ diff --git a/static/icons/06005F85.png b/static/icons/06005F85.png deleted file mode 100755 index 6978b07d..00000000 Binary files a/static/icons/06005F85.png and /dev/null differ diff --git a/static/icons/06005F86.png b/static/icons/06005F86.png deleted file mode 100755 index 46f887ae..00000000 Binary files a/static/icons/06005F86.png and /dev/null differ diff --git a/static/icons/06005F87.png b/static/icons/06005F87.png deleted file mode 100755 index f2f251a9..00000000 Binary files a/static/icons/06005F87.png and /dev/null differ diff --git a/static/icons/06005F88.png b/static/icons/06005F88.png deleted file mode 100755 index 7f2aaed8..00000000 Binary files a/static/icons/06005F88.png and /dev/null differ diff --git a/static/icons/06005F89.png b/static/icons/06005F89.png deleted file mode 100755 index de1c5bec..00000000 Binary files a/static/icons/06005F89.png and /dev/null differ diff --git a/static/icons/06005F8A.png b/static/icons/06005F8A.png deleted file mode 100755 index 18e89a9e..00000000 Binary files a/static/icons/06005F8A.png and /dev/null differ diff --git a/static/icons/06005F8B.png b/static/icons/06005F8B.png deleted file mode 100755 index 4864516a..00000000 Binary files a/static/icons/06005F8B.png and /dev/null differ diff --git a/static/icons/06005F8C.png b/static/icons/06005F8C.png deleted file mode 100755 index f47ed41c..00000000 Binary files a/static/icons/06005F8C.png and /dev/null differ diff --git a/static/icons/06005F8D.png b/static/icons/06005F8D.png deleted file mode 100755 index bd3c9371..00000000 Binary files a/static/icons/06005F8D.png and /dev/null differ diff --git a/static/icons/06005F8E.png b/static/icons/06005F8E.png deleted file mode 100755 index 96ce67bf..00000000 Binary files a/static/icons/06005F8E.png and /dev/null differ diff --git a/static/icons/06005F8F.png b/static/icons/06005F8F.png deleted file mode 100755 index 88258c3c..00000000 Binary files a/static/icons/06005F8F.png and /dev/null differ diff --git a/static/icons/06005F90.png b/static/icons/06005F90.png deleted file mode 100755 index 84722040..00000000 Binary files a/static/icons/06005F90.png and /dev/null differ diff --git a/static/icons/06005F91.png b/static/icons/06005F91.png deleted file mode 100755 index 93bdf0cb..00000000 Binary files a/static/icons/06005F91.png and /dev/null differ diff --git a/static/icons/06005F92.png b/static/icons/06005F92.png deleted file mode 100755 index 1390d8e9..00000000 Binary files a/static/icons/06005F92.png and /dev/null differ diff --git a/static/icons/06005F93.png b/static/icons/06005F93.png deleted file mode 100755 index 50e97172..00000000 Binary files a/static/icons/06005F93.png and /dev/null differ diff --git a/static/icons/06005F94.png b/static/icons/06005F94.png deleted file mode 100755 index 2a426a08..00000000 Binary files a/static/icons/06005F94.png and /dev/null differ diff --git a/static/icons/06005F95.png b/static/icons/06005F95.png deleted file mode 100755 index 1f8d4a2f..00000000 Binary files a/static/icons/06005F95.png and /dev/null differ diff --git a/static/icons/06005F96.png b/static/icons/06005F96.png deleted file mode 100755 index 3443714a..00000000 Binary files a/static/icons/06005F96.png and /dev/null differ diff --git a/static/icons/06005F97.png b/static/icons/06005F97.png deleted file mode 100755 index b0b39a86..00000000 Binary files a/static/icons/06005F97.png and /dev/null differ diff --git a/static/icons/06005F98.png b/static/icons/06005F98.png deleted file mode 100755 index c7c5cc91..00000000 Binary files a/static/icons/06005F98.png and /dev/null differ diff --git a/static/icons/06005F99.png b/static/icons/06005F99.png deleted file mode 100755 index c0f3889d..00000000 Binary files a/static/icons/06005F99.png and /dev/null differ diff --git a/static/icons/06005F9A.png b/static/icons/06005F9A.png deleted file mode 100755 index 2da8270c..00000000 Binary files a/static/icons/06005F9A.png and /dev/null differ diff --git a/static/icons/06005F9B.png b/static/icons/06005F9B.png deleted file mode 100755 index 1d080cb4..00000000 Binary files a/static/icons/06005F9B.png and /dev/null differ diff --git a/static/icons/06005F9C.png b/static/icons/06005F9C.png deleted file mode 100755 index 9370a428..00000000 Binary files a/static/icons/06005F9C.png and /dev/null differ diff --git a/static/icons/06005F9D.png b/static/icons/06005F9D.png deleted file mode 100755 index 36c895e0..00000000 Binary files a/static/icons/06005F9D.png and /dev/null differ diff --git a/static/icons/06005F9E.png b/static/icons/06005F9E.png deleted file mode 100755 index ab5a01f9..00000000 Binary files a/static/icons/06005F9E.png and /dev/null differ diff --git a/static/icons/06005F9F.png b/static/icons/06005F9F.png deleted file mode 100755 index 6ee96d2b..00000000 Binary files a/static/icons/06005F9F.png and /dev/null differ diff --git a/static/icons/06005FA0.png b/static/icons/06005FA0.png deleted file mode 100755 index e772ea2c..00000000 Binary files a/static/icons/06005FA0.png and /dev/null differ diff --git a/static/icons/06005FA1.png b/static/icons/06005FA1.png deleted file mode 100755 index 0a297d36..00000000 Binary files a/static/icons/06005FA1.png and /dev/null differ diff --git a/static/icons/06005FA2.png b/static/icons/06005FA2.png deleted file mode 100755 index 9bb5f3bc..00000000 Binary files a/static/icons/06005FA2.png and /dev/null differ diff --git a/static/icons/06005FA5.png b/static/icons/06005FA5.png deleted file mode 100755 index a1173927..00000000 Binary files a/static/icons/06005FA5.png and /dev/null differ diff --git a/static/icons/06005FA6.png b/static/icons/06005FA6.png deleted file mode 100755 index b6aead67..00000000 Binary files a/static/icons/06005FA6.png and /dev/null differ diff --git a/static/icons/06005FA7.png b/static/icons/06005FA7.png deleted file mode 100755 index 125cde94..00000000 Binary files a/static/icons/06005FA7.png and /dev/null differ diff --git a/static/icons/06005FA8.png b/static/icons/06005FA8.png deleted file mode 100755 index c103ea2f..00000000 Binary files a/static/icons/06005FA8.png and /dev/null differ diff --git a/static/icons/06005FA9.png b/static/icons/06005FA9.png deleted file mode 100755 index c6c55fa9..00000000 Binary files a/static/icons/06005FA9.png and /dev/null differ diff --git a/static/icons/06005FAA.png b/static/icons/06005FAA.png deleted file mode 100755 index b2ee4438..00000000 Binary files a/static/icons/06005FAA.png and /dev/null differ diff --git a/static/icons/06005FAB.png b/static/icons/06005FAB.png deleted file mode 100755 index b033f016..00000000 Binary files a/static/icons/06005FAB.png and /dev/null differ diff --git a/static/icons/06005FAC.png b/static/icons/06005FAC.png deleted file mode 100755 index 2935e3cf..00000000 Binary files a/static/icons/06005FAC.png and /dev/null differ diff --git a/static/icons/06005FAD.png b/static/icons/06005FAD.png deleted file mode 100755 index 7947f305..00000000 Binary files a/static/icons/06005FAD.png and /dev/null differ diff --git a/static/icons/06005FAE.png b/static/icons/06005FAE.png deleted file mode 100755 index 982e5cc3..00000000 Binary files a/static/icons/06005FAE.png and /dev/null differ diff --git a/static/icons/06005FAF.png b/static/icons/06005FAF.png deleted file mode 100755 index f4266886..00000000 Binary files a/static/icons/06005FAF.png and /dev/null differ diff --git a/static/icons/06005FB0.png b/static/icons/06005FB0.png deleted file mode 100755 index 3e2c68be..00000000 Binary files a/static/icons/06005FB0.png and /dev/null differ diff --git a/static/icons/06005FB4.png b/static/icons/06005FB4.png deleted file mode 100755 index 8fdc3185..00000000 Binary files a/static/icons/06005FB4.png and /dev/null differ diff --git a/static/icons/06005FB5.png b/static/icons/06005FB5.png deleted file mode 100755 index 13d33dc7..00000000 Binary files a/static/icons/06005FB5.png and /dev/null differ diff --git a/static/icons/06005FB6.png b/static/icons/06005FB6.png deleted file mode 100755 index 84f44722..00000000 Binary files a/static/icons/06005FB6.png and /dev/null differ diff --git a/static/icons/06005FB7.png b/static/icons/06005FB7.png deleted file mode 100755 index 1800bad4..00000000 Binary files a/static/icons/06005FB7.png and /dev/null differ diff --git a/static/icons/06005FB8.png b/static/icons/06005FB8.png deleted file mode 100755 index 76a907b2..00000000 Binary files a/static/icons/06005FB8.png and /dev/null differ diff --git a/static/icons/06005FCA.png b/static/icons/06005FCA.png deleted file mode 100755 index 68ae503f..00000000 Binary files a/static/icons/06005FCA.png and /dev/null differ diff --git a/static/icons/06005FCB.png b/static/icons/06005FCB.png deleted file mode 100755 index 9401d0af..00000000 Binary files a/static/icons/06005FCB.png and /dev/null differ diff --git a/static/icons/06005FCC.png b/static/icons/06005FCC.png deleted file mode 100755 index d3104060..00000000 Binary files a/static/icons/06005FCC.png and /dev/null differ diff --git a/static/icons/06005FCD.png b/static/icons/06005FCD.png deleted file mode 100755 index 03228314..00000000 Binary files a/static/icons/06005FCD.png and /dev/null differ diff --git a/static/icons/06005FCE.png b/static/icons/06005FCE.png deleted file mode 100755 index 1be2532e..00000000 Binary files a/static/icons/06005FCE.png and /dev/null differ diff --git a/static/icons/06005FCF.png b/static/icons/06005FCF.png deleted file mode 100755 index 8205aed1..00000000 Binary files a/static/icons/06005FCF.png and /dev/null differ diff --git a/static/icons/06005FD2.png b/static/icons/06005FD2.png deleted file mode 100755 index 20fda018..00000000 Binary files a/static/icons/06005FD2.png and /dev/null differ diff --git a/static/icons/06005FD3.png b/static/icons/06005FD3.png deleted file mode 100755 index 4af37e46..00000000 Binary files a/static/icons/06005FD3.png and /dev/null differ diff --git a/static/icons/06005FD4.png b/static/icons/06005FD4.png deleted file mode 100755 index bc64e4f3..00000000 Binary files a/static/icons/06005FD4.png and /dev/null differ diff --git a/static/icons/06005FD5.png b/static/icons/06005FD5.png deleted file mode 100755 index 7045681e..00000000 Binary files a/static/icons/06005FD5.png and /dev/null differ diff --git a/static/icons/06005FD6.png b/static/icons/06005FD6.png deleted file mode 100755 index 2f1d3a68..00000000 Binary files a/static/icons/06005FD6.png and /dev/null differ diff --git a/static/icons/06005FD7.png b/static/icons/06005FD7.png deleted file mode 100755 index 6f7bade8..00000000 Binary files a/static/icons/06005FD7.png and /dev/null differ diff --git a/static/icons/06005FD8.png b/static/icons/06005FD8.png deleted file mode 100755 index f85337ba..00000000 Binary files a/static/icons/06005FD8.png and /dev/null differ diff --git a/static/icons/06005FD9.png b/static/icons/06005FD9.png deleted file mode 100755 index 2fd3dd9c..00000000 Binary files a/static/icons/06005FD9.png and /dev/null differ diff --git a/static/icons/06005FDB.png b/static/icons/06005FDB.png deleted file mode 100755 index c6007031..00000000 Binary files a/static/icons/06005FDB.png and /dev/null differ diff --git a/static/icons/06005FDC.png b/static/icons/06005FDC.png deleted file mode 100755 index e3a52e61..00000000 Binary files a/static/icons/06005FDC.png and /dev/null differ diff --git a/static/icons/06005FDD.png b/static/icons/06005FDD.png deleted file mode 100755 index 92f60336..00000000 Binary files a/static/icons/06005FDD.png and /dev/null differ diff --git a/static/icons/06005FDE.png b/static/icons/06005FDE.png deleted file mode 100755 index 24e64b8e..00000000 Binary files a/static/icons/06005FDE.png and /dev/null differ diff --git a/static/icons/06005FDF.png b/static/icons/06005FDF.png deleted file mode 100755 index c5db96d7..00000000 Binary files a/static/icons/06005FDF.png and /dev/null differ diff --git a/static/icons/06005FE0.png b/static/icons/06005FE0.png deleted file mode 100755 index ab371e5a..00000000 Binary files a/static/icons/06005FE0.png and /dev/null differ diff --git a/static/icons/06005FE1.png b/static/icons/06005FE1.png deleted file mode 100755 index 1236f393..00000000 Binary files a/static/icons/06005FE1.png and /dev/null differ diff --git a/static/icons/06005FE2.png b/static/icons/06005FE2.png deleted file mode 100755 index 4943f52d..00000000 Binary files a/static/icons/06005FE2.png and /dev/null differ diff --git a/static/icons/06005FE3.png b/static/icons/06005FE3.png deleted file mode 100755 index 9a7c32b3..00000000 Binary files a/static/icons/06005FE3.png and /dev/null differ diff --git a/static/icons/06005FE4.png b/static/icons/06005FE4.png deleted file mode 100755 index 9222b569..00000000 Binary files a/static/icons/06005FE4.png and /dev/null differ diff --git a/static/icons/06005FE5.png b/static/icons/06005FE5.png deleted file mode 100755 index 9521e497..00000000 Binary files a/static/icons/06005FE5.png and /dev/null differ diff --git a/static/icons/06005FE6.png b/static/icons/06005FE6.png deleted file mode 100755 index 44571043..00000000 Binary files a/static/icons/06005FE6.png and /dev/null differ diff --git a/static/icons/06005FE7.png b/static/icons/06005FE7.png deleted file mode 100755 index 246df893..00000000 Binary files a/static/icons/06005FE7.png and /dev/null differ diff --git a/static/icons/06005FE8.png b/static/icons/06005FE8.png deleted file mode 100755 index 1eb92102..00000000 Binary files a/static/icons/06005FE8.png and /dev/null differ diff --git a/static/icons/06005FE9.png b/static/icons/06005FE9.png deleted file mode 100755 index ba7b691c..00000000 Binary files a/static/icons/06005FE9.png and /dev/null differ diff --git a/static/icons/06005FEA.png b/static/icons/06005FEA.png deleted file mode 100755 index ddac96d8..00000000 Binary files a/static/icons/06005FEA.png and /dev/null differ diff --git a/static/icons/06005FEB.png b/static/icons/06005FEB.png deleted file mode 100755 index 32f8af99..00000000 Binary files a/static/icons/06005FEB.png and /dev/null differ diff --git a/static/icons/06005FEC.png b/static/icons/06005FEC.png deleted file mode 100755 index 3853c8f5..00000000 Binary files a/static/icons/06005FEC.png and /dev/null differ diff --git a/static/icons/06005FED.png b/static/icons/06005FED.png deleted file mode 100755 index 81b0ff33..00000000 Binary files a/static/icons/06005FED.png and /dev/null differ diff --git a/static/icons/06005FEE.png b/static/icons/06005FEE.png deleted file mode 100755 index 2ac12949..00000000 Binary files a/static/icons/06005FEE.png and /dev/null differ diff --git a/static/icons/06005FEF.png b/static/icons/06005FEF.png deleted file mode 100755 index 35ed8694..00000000 Binary files a/static/icons/06005FEF.png and /dev/null differ diff --git a/static/icons/06005FF0.png b/static/icons/06005FF0.png deleted file mode 100755 index 2a0b95ed..00000000 Binary files a/static/icons/06005FF0.png and /dev/null differ diff --git a/static/icons/06005FF1.png b/static/icons/06005FF1.png deleted file mode 100755 index 0b0299da..00000000 Binary files a/static/icons/06005FF1.png and /dev/null differ diff --git a/static/icons/06005FF2.png b/static/icons/06005FF2.png deleted file mode 100755 index 022aed68..00000000 Binary files a/static/icons/06005FF2.png and /dev/null differ diff --git a/static/icons/06005FF3.png b/static/icons/06005FF3.png deleted file mode 100755 index 2cc41243..00000000 Binary files a/static/icons/06005FF3.png and /dev/null differ diff --git a/static/icons/06005FF4.png b/static/icons/06005FF4.png deleted file mode 100755 index 5de1ac47..00000000 Binary files a/static/icons/06005FF4.png and /dev/null differ diff --git a/static/icons/06005FF5.png b/static/icons/06005FF5.png deleted file mode 100755 index fb7f4278..00000000 Binary files a/static/icons/06005FF5.png and /dev/null differ diff --git a/static/icons/06005FF6.png b/static/icons/06005FF6.png deleted file mode 100755 index 798080ea..00000000 Binary files a/static/icons/06005FF6.png and /dev/null differ diff --git a/static/icons/06005FF7.png b/static/icons/06005FF7.png deleted file mode 100755 index e87d4693..00000000 Binary files a/static/icons/06005FF7.png and /dev/null differ diff --git a/static/icons/06005FF8.png b/static/icons/06005FF8.png deleted file mode 100755 index 6df773a5..00000000 Binary files a/static/icons/06005FF8.png and /dev/null differ diff --git a/static/icons/06005FF9.png b/static/icons/06005FF9.png deleted file mode 100755 index c6be28cc..00000000 Binary files a/static/icons/06005FF9.png and /dev/null differ diff --git a/static/icons/06005FFA.png b/static/icons/06005FFA.png deleted file mode 100755 index 4b690f08..00000000 Binary files a/static/icons/06005FFA.png and /dev/null differ diff --git a/static/icons/06005FFB.png b/static/icons/06005FFB.png deleted file mode 100755 index 05e01c26..00000000 Binary files a/static/icons/06005FFB.png and /dev/null differ diff --git a/static/icons/06005FFC.png b/static/icons/06005FFC.png deleted file mode 100755 index b3463ee3..00000000 Binary files a/static/icons/06005FFC.png and /dev/null differ diff --git a/static/icons/06005FFD.png b/static/icons/06005FFD.png deleted file mode 100755 index 9a41f953..00000000 Binary files a/static/icons/06005FFD.png and /dev/null differ diff --git a/static/icons/06005FFE.png b/static/icons/06005FFE.png deleted file mode 100755 index e7f72da6..00000000 Binary files a/static/icons/06005FFE.png and /dev/null differ diff --git a/static/icons/06005FFF.png b/static/icons/06005FFF.png deleted file mode 100755 index 9fc42db7..00000000 Binary files a/static/icons/06005FFF.png and /dev/null differ diff --git a/static/icons/06006000.png b/static/icons/06006000.png deleted file mode 100755 index 56065d8c..00000000 Binary files a/static/icons/06006000.png and /dev/null differ diff --git a/static/icons/06006001.png b/static/icons/06006001.png deleted file mode 100755 index 0128c491..00000000 Binary files a/static/icons/06006001.png and /dev/null differ diff --git a/static/icons/06006002.png b/static/icons/06006002.png deleted file mode 100755 index 15bf0a73..00000000 Binary files a/static/icons/06006002.png and /dev/null differ diff --git a/static/icons/06006003.png b/static/icons/06006003.png deleted file mode 100755 index 0a1d5ae8..00000000 Binary files a/static/icons/06006003.png and /dev/null differ diff --git a/static/icons/06006004.png b/static/icons/06006004.png deleted file mode 100755 index 4d3d9e6c..00000000 Binary files a/static/icons/06006004.png and /dev/null differ diff --git a/static/icons/06006005.png b/static/icons/06006005.png deleted file mode 100755 index bf78992c..00000000 Binary files a/static/icons/06006005.png and /dev/null differ diff --git a/static/icons/06006006.png b/static/icons/06006006.png deleted file mode 100755 index 8c0ab3c3..00000000 Binary files a/static/icons/06006006.png and /dev/null differ diff --git a/static/icons/06006007.png b/static/icons/06006007.png deleted file mode 100755 index 2b093099..00000000 Binary files a/static/icons/06006007.png and /dev/null differ diff --git a/static/icons/06006008.png b/static/icons/06006008.png deleted file mode 100755 index 51bf90fb..00000000 Binary files a/static/icons/06006008.png and /dev/null differ diff --git a/static/icons/06006009.png b/static/icons/06006009.png deleted file mode 100755 index c7c0e5e8..00000000 Binary files a/static/icons/06006009.png and /dev/null differ diff --git a/static/icons/0600600A.png b/static/icons/0600600A.png deleted file mode 100755 index 66953fee..00000000 Binary files a/static/icons/0600600A.png and /dev/null differ diff --git a/static/icons/0600600B.png b/static/icons/0600600B.png deleted file mode 100755 index 740412fd..00000000 Binary files a/static/icons/0600600B.png and /dev/null differ diff --git a/static/icons/0600600C.png b/static/icons/0600600C.png deleted file mode 100755 index e36a1382..00000000 Binary files a/static/icons/0600600C.png and /dev/null differ diff --git a/static/icons/0600600D.png b/static/icons/0600600D.png deleted file mode 100755 index 966072f9..00000000 Binary files a/static/icons/0600600D.png and /dev/null differ diff --git a/static/icons/0600600E.png b/static/icons/0600600E.png deleted file mode 100755 index f13002de..00000000 Binary files a/static/icons/0600600E.png and /dev/null differ diff --git a/static/icons/0600600F.png b/static/icons/0600600F.png deleted file mode 100755 index 82e25a57..00000000 Binary files a/static/icons/0600600F.png and /dev/null differ diff --git a/static/icons/06006010.png b/static/icons/06006010.png deleted file mode 100755 index 4eb41264..00000000 Binary files a/static/icons/06006010.png and /dev/null differ diff --git a/static/icons/06006011.png b/static/icons/06006011.png deleted file mode 100755 index e40a04eb..00000000 Binary files a/static/icons/06006011.png and /dev/null differ diff --git a/static/icons/06006012.png b/static/icons/06006012.png deleted file mode 100755 index 13eeea11..00000000 Binary files a/static/icons/06006012.png and /dev/null differ diff --git a/static/icons/06006013.png b/static/icons/06006013.png deleted file mode 100755 index 77b27d17..00000000 Binary files a/static/icons/06006013.png and /dev/null differ diff --git a/static/icons/06006016.png b/static/icons/06006016.png deleted file mode 100755 index dc54699a..00000000 Binary files a/static/icons/06006016.png and /dev/null differ diff --git a/static/icons/06006017.png b/static/icons/06006017.png deleted file mode 100755 index 10a65139..00000000 Binary files a/static/icons/06006017.png and /dev/null differ diff --git a/static/icons/06006018.png b/static/icons/06006018.png deleted file mode 100755 index 9b815d3f..00000000 Binary files a/static/icons/06006018.png and /dev/null differ diff --git a/static/icons/06006019.png b/static/icons/06006019.png deleted file mode 100755 index 467e601a..00000000 Binary files a/static/icons/06006019.png and /dev/null differ diff --git a/static/icons/0600601A.png b/static/icons/0600601A.png deleted file mode 100755 index 4def0af3..00000000 Binary files a/static/icons/0600601A.png and /dev/null differ diff --git a/static/icons/0600601B.png b/static/icons/0600601B.png deleted file mode 100755 index 3a0ad71f..00000000 Binary files a/static/icons/0600601B.png and /dev/null differ diff --git a/static/icons/0600601C.png b/static/icons/0600601C.png deleted file mode 100755 index c1275153..00000000 Binary files a/static/icons/0600601C.png and /dev/null differ diff --git a/static/icons/0600601D.png b/static/icons/0600601D.png deleted file mode 100755 index b14e0541..00000000 Binary files a/static/icons/0600601D.png and /dev/null differ diff --git a/static/icons/0600601E.png b/static/icons/0600601E.png deleted file mode 100755 index bdbe125d..00000000 Binary files a/static/icons/0600601E.png and /dev/null differ diff --git a/static/icons/0600601F.png b/static/icons/0600601F.png deleted file mode 100755 index 9b12fa8a..00000000 Binary files a/static/icons/0600601F.png and /dev/null differ diff --git a/static/icons/06006020.png b/static/icons/06006020.png deleted file mode 100755 index 4517668d..00000000 Binary files a/static/icons/06006020.png and /dev/null differ diff --git a/static/icons/06006021.png b/static/icons/06006021.png deleted file mode 100755 index ee8443b5..00000000 Binary files a/static/icons/06006021.png and /dev/null differ diff --git a/static/icons/06006023.png b/static/icons/06006023.png deleted file mode 100755 index 120aae59..00000000 Binary files a/static/icons/06006023.png and /dev/null differ diff --git a/static/icons/06006024.png b/static/icons/06006024.png deleted file mode 100755 index 9df333c9..00000000 Binary files a/static/icons/06006024.png and /dev/null differ diff --git a/static/icons/06006025.png b/static/icons/06006025.png deleted file mode 100755 index f2afd57f..00000000 Binary files a/static/icons/06006025.png and /dev/null differ diff --git a/static/icons/06006027.png b/static/icons/06006027.png deleted file mode 100755 index 5c3ace60..00000000 Binary files a/static/icons/06006027.png and /dev/null differ diff --git a/static/icons/06006029.png b/static/icons/06006029.png deleted file mode 100755 index 6bb2f313..00000000 Binary files a/static/icons/06006029.png and /dev/null differ diff --git a/static/icons/0600602A.png b/static/icons/0600602A.png deleted file mode 100755 index 8cb93d1d..00000000 Binary files a/static/icons/0600602A.png and /dev/null differ diff --git a/static/icons/0600602B.png b/static/icons/0600602B.png deleted file mode 100755 index ac84eb2b..00000000 Binary files a/static/icons/0600602B.png and /dev/null differ diff --git a/static/icons/0600602C.png b/static/icons/0600602C.png deleted file mode 100755 index 6efad9fc..00000000 Binary files a/static/icons/0600602C.png and /dev/null differ diff --git a/static/icons/0600602D.png b/static/icons/0600602D.png deleted file mode 100755 index 79280f32..00000000 Binary files a/static/icons/0600602D.png and /dev/null differ diff --git a/static/icons/0600602E.png b/static/icons/0600602E.png deleted file mode 100755 index 8fe1d165..00000000 Binary files a/static/icons/0600602E.png and /dev/null differ diff --git a/static/icons/0600602F.png b/static/icons/0600602F.png deleted file mode 100755 index d1fb2bc6..00000000 Binary files a/static/icons/0600602F.png and /dev/null differ diff --git a/static/icons/06006030.png b/static/icons/06006030.png deleted file mode 100755 index 1e5af2de..00000000 Binary files a/static/icons/06006030.png and /dev/null differ diff --git a/static/icons/06006031.png b/static/icons/06006031.png deleted file mode 100755 index 8d238dae..00000000 Binary files a/static/icons/06006031.png and /dev/null differ diff --git a/static/icons/06006032.png b/static/icons/06006032.png deleted file mode 100755 index 6c6b20f4..00000000 Binary files a/static/icons/06006032.png and /dev/null differ diff --git a/static/icons/06006033.png b/static/icons/06006033.png deleted file mode 100755 index dbdc6249..00000000 Binary files a/static/icons/06006033.png and /dev/null differ diff --git a/static/icons/06006034.png b/static/icons/06006034.png deleted file mode 100755 index 9f5d508c..00000000 Binary files a/static/icons/06006034.png and /dev/null differ diff --git a/static/icons/06006035.png b/static/icons/06006035.png deleted file mode 100755 index 4bcf6f68..00000000 Binary files a/static/icons/06006035.png and /dev/null differ diff --git a/static/icons/06006037.png b/static/icons/06006037.png deleted file mode 100755 index f7ccc7a2..00000000 Binary files a/static/icons/06006037.png and /dev/null differ diff --git a/static/icons/06006038.png b/static/icons/06006038.png deleted file mode 100755 index df0fd2d2..00000000 Binary files a/static/icons/06006038.png and /dev/null differ diff --git a/static/icons/06006039.png b/static/icons/06006039.png deleted file mode 100755 index 17b91c18..00000000 Binary files a/static/icons/06006039.png and /dev/null differ diff --git a/static/icons/0600603A.png b/static/icons/0600603A.png deleted file mode 100755 index a5de3bf1..00000000 Binary files a/static/icons/0600603A.png and /dev/null differ diff --git a/static/icons/0600603E.png b/static/icons/0600603E.png deleted file mode 100755 index 0a7c68be..00000000 Binary files a/static/icons/0600603E.png and /dev/null differ diff --git a/static/icons/0600603F.png b/static/icons/0600603F.png deleted file mode 100755 index ced22659..00000000 Binary files a/static/icons/0600603F.png and /dev/null differ diff --git a/static/icons/06006040.png b/static/icons/06006040.png deleted file mode 100755 index 3b6fab9a..00000000 Binary files a/static/icons/06006040.png and /dev/null differ diff --git a/static/icons/06006041.png b/static/icons/06006041.png deleted file mode 100755 index 6ecdef98..00000000 Binary files a/static/icons/06006041.png and /dev/null differ diff --git a/static/icons/06006042.png b/static/icons/06006042.png deleted file mode 100755 index cca5c98a..00000000 Binary files a/static/icons/06006042.png and /dev/null differ diff --git a/static/icons/06006043.png b/static/icons/06006043.png deleted file mode 100755 index 8ea91a60..00000000 Binary files a/static/icons/06006043.png and /dev/null differ diff --git a/static/icons/06006044.png b/static/icons/06006044.png deleted file mode 100755 index 65067081..00000000 Binary files a/static/icons/06006044.png and /dev/null differ diff --git a/static/icons/06006045.png b/static/icons/06006045.png deleted file mode 100755 index 5fee47bc..00000000 Binary files a/static/icons/06006045.png and /dev/null differ diff --git a/static/icons/06006046.png b/static/icons/06006046.png deleted file mode 100755 index b7f6533e..00000000 Binary files a/static/icons/06006046.png and /dev/null differ diff --git a/static/icons/06006047.png b/static/icons/06006047.png deleted file mode 100755 index 752a2009..00000000 Binary files a/static/icons/06006047.png and /dev/null differ diff --git a/static/icons/06006048.png b/static/icons/06006048.png deleted file mode 100755 index f258c64b..00000000 Binary files a/static/icons/06006048.png and /dev/null differ diff --git a/static/icons/06006049.png b/static/icons/06006049.png deleted file mode 100755 index 6519d03d..00000000 Binary files a/static/icons/06006049.png and /dev/null differ diff --git a/static/icons/0600604A.png b/static/icons/0600604A.png deleted file mode 100755 index b3a980e5..00000000 Binary files a/static/icons/0600604A.png and /dev/null differ diff --git a/static/icons/0600604B.png b/static/icons/0600604B.png deleted file mode 100755 index 1807b410..00000000 Binary files a/static/icons/0600604B.png and /dev/null differ diff --git a/static/icons/0600604C.png b/static/icons/0600604C.png deleted file mode 100755 index b39d9cbc..00000000 Binary files a/static/icons/0600604C.png and /dev/null differ diff --git a/static/icons/0600604F.png b/static/icons/0600604F.png deleted file mode 100755 index 44e1867d..00000000 Binary files a/static/icons/0600604F.png and /dev/null differ diff --git a/static/icons/06006050.png b/static/icons/06006050.png deleted file mode 100755 index f952fac7..00000000 Binary files a/static/icons/06006050.png and /dev/null differ diff --git a/static/icons/06006051.png b/static/icons/06006051.png deleted file mode 100755 index 58988aa0..00000000 Binary files a/static/icons/06006051.png and /dev/null differ diff --git a/static/icons/06006052.png b/static/icons/06006052.png deleted file mode 100755 index f2fc910c..00000000 Binary files a/static/icons/06006052.png and /dev/null differ diff --git a/static/icons/06006053.png b/static/icons/06006053.png deleted file mode 100755 index c6a2a6a0..00000000 Binary files a/static/icons/06006053.png and /dev/null differ diff --git a/static/icons/06006054.png b/static/icons/06006054.png deleted file mode 100755 index a981e1c0..00000000 Binary files a/static/icons/06006054.png and /dev/null differ diff --git a/static/icons/06006055.png b/static/icons/06006055.png deleted file mode 100755 index 13b9a2ac..00000000 Binary files a/static/icons/06006055.png and /dev/null differ diff --git a/static/icons/06006056.png b/static/icons/06006056.png deleted file mode 100755 index 51e70abd..00000000 Binary files a/static/icons/06006056.png and /dev/null differ diff --git a/static/icons/06006057.png b/static/icons/06006057.png deleted file mode 100755 index 9705c49b..00000000 Binary files a/static/icons/06006057.png and /dev/null differ diff --git a/static/icons/06006058.png b/static/icons/06006058.png deleted file mode 100755 index f7d8d7ac..00000000 Binary files a/static/icons/06006058.png and /dev/null differ diff --git a/static/icons/06006059.png b/static/icons/06006059.png deleted file mode 100755 index e695cd77..00000000 Binary files a/static/icons/06006059.png and /dev/null differ diff --git a/static/icons/0600605A.png b/static/icons/0600605A.png deleted file mode 100755 index 96dc8682..00000000 Binary files a/static/icons/0600605A.png and /dev/null differ diff --git a/static/icons/0600605B.png b/static/icons/0600605B.png deleted file mode 100755 index 50e54bd7..00000000 Binary files a/static/icons/0600605B.png and /dev/null differ diff --git a/static/icons/0600605C.png b/static/icons/0600605C.png deleted file mode 100755 index e6cf74f3..00000000 Binary files a/static/icons/0600605C.png and /dev/null differ diff --git a/static/icons/0600605D.png b/static/icons/0600605D.png deleted file mode 100755 index 83dbfc43..00000000 Binary files a/static/icons/0600605D.png and /dev/null differ diff --git a/static/icons/0600605E.png b/static/icons/0600605E.png deleted file mode 100755 index a70735ba..00000000 Binary files a/static/icons/0600605E.png and /dev/null differ diff --git a/static/icons/0600605F.png b/static/icons/0600605F.png deleted file mode 100755 index 4f3fe451..00000000 Binary files a/static/icons/0600605F.png and /dev/null differ diff --git a/static/icons/06006060.png b/static/icons/06006060.png deleted file mode 100755 index e354a16f..00000000 Binary files a/static/icons/06006060.png and /dev/null differ diff --git a/static/icons/06006061.png b/static/icons/06006061.png deleted file mode 100755 index 9e1b030b..00000000 Binary files a/static/icons/06006061.png and /dev/null differ diff --git a/static/icons/06006062.png b/static/icons/06006062.png deleted file mode 100755 index 72121640..00000000 Binary files a/static/icons/06006062.png and /dev/null differ diff --git a/static/icons/06006063.png b/static/icons/06006063.png deleted file mode 100755 index 6bf7763f..00000000 Binary files a/static/icons/06006063.png and /dev/null differ diff --git a/static/icons/06006064.png b/static/icons/06006064.png deleted file mode 100755 index 7c2e47af..00000000 Binary files a/static/icons/06006064.png and /dev/null differ diff --git a/static/icons/06006066.png b/static/icons/06006066.png deleted file mode 100755 index 04a7ef6e..00000000 Binary files a/static/icons/06006066.png and /dev/null differ diff --git a/static/icons/06006067.png b/static/icons/06006067.png deleted file mode 100755 index ff4c0450..00000000 Binary files a/static/icons/06006067.png and /dev/null differ diff --git a/static/icons/06006068.png b/static/icons/06006068.png deleted file mode 100755 index 1731eae3..00000000 Binary files a/static/icons/06006068.png and /dev/null differ diff --git a/static/icons/06006069.png b/static/icons/06006069.png deleted file mode 100755 index 3c0e5fd0..00000000 Binary files a/static/icons/06006069.png and /dev/null differ diff --git a/static/icons/0600606A.png b/static/icons/0600606A.png deleted file mode 100755 index a41fce27..00000000 Binary files a/static/icons/0600606A.png and /dev/null differ diff --git a/static/icons/0600606C.png b/static/icons/0600606C.png deleted file mode 100755 index 69383b7f..00000000 Binary files a/static/icons/0600606C.png and /dev/null differ diff --git a/static/icons/0600606D.png b/static/icons/0600606D.png deleted file mode 100755 index c85cd29f..00000000 Binary files a/static/icons/0600606D.png and /dev/null differ diff --git a/static/icons/0600606E.png b/static/icons/0600606E.png deleted file mode 100755 index ec4c46a8..00000000 Binary files a/static/icons/0600606E.png and /dev/null differ diff --git a/static/icons/06006071.png b/static/icons/06006071.png deleted file mode 100755 index 3dfe83af..00000000 Binary files a/static/icons/06006071.png and /dev/null differ diff --git a/static/icons/06006072.png b/static/icons/06006072.png deleted file mode 100755 index e16f2c9e..00000000 Binary files a/static/icons/06006072.png and /dev/null differ diff --git a/static/icons/06006073.png b/static/icons/06006073.png deleted file mode 100755 index 5df9da9b..00000000 Binary files a/static/icons/06006073.png and /dev/null differ diff --git a/static/icons/06006074.png b/static/icons/06006074.png deleted file mode 100755 index 36212458..00000000 Binary files a/static/icons/06006074.png and /dev/null differ diff --git a/static/icons/06006075.png b/static/icons/06006075.png deleted file mode 100755 index 5663849a..00000000 Binary files a/static/icons/06006075.png and /dev/null differ diff --git a/static/icons/06006076.png b/static/icons/06006076.png deleted file mode 100755 index 965e7031..00000000 Binary files a/static/icons/06006076.png and /dev/null differ diff --git a/static/icons/06006077.png b/static/icons/06006077.png deleted file mode 100755 index 22ef87e8..00000000 Binary files a/static/icons/06006077.png and /dev/null differ diff --git a/static/icons/06006078.png b/static/icons/06006078.png deleted file mode 100755 index 62617ed3..00000000 Binary files a/static/icons/06006078.png and /dev/null differ diff --git a/static/icons/06006079.png b/static/icons/06006079.png deleted file mode 100755 index 34f44325..00000000 Binary files a/static/icons/06006079.png and /dev/null differ diff --git a/static/icons/0600607A.png b/static/icons/0600607A.png deleted file mode 100755 index 65e3e7ba..00000000 Binary files a/static/icons/0600607A.png and /dev/null differ diff --git a/static/icons/0600607B.png b/static/icons/0600607B.png deleted file mode 100755 index cb841b42..00000000 Binary files a/static/icons/0600607B.png and /dev/null differ diff --git a/static/icons/0600607C.png b/static/icons/0600607C.png deleted file mode 100755 index 7bea93b0..00000000 Binary files a/static/icons/0600607C.png and /dev/null differ diff --git a/static/icons/0600607D.png b/static/icons/0600607D.png deleted file mode 100755 index 2933e6dd..00000000 Binary files a/static/icons/0600607D.png and /dev/null differ diff --git a/static/icons/0600607E.png b/static/icons/0600607E.png deleted file mode 100755 index 2185d6af..00000000 Binary files a/static/icons/0600607E.png and /dev/null differ diff --git a/static/icons/0600607F.png b/static/icons/0600607F.png deleted file mode 100755 index 85d8a095..00000000 Binary files a/static/icons/0600607F.png and /dev/null differ diff --git a/static/icons/06006080.png b/static/icons/06006080.png deleted file mode 100755 index 4ffffcf4..00000000 Binary files a/static/icons/06006080.png and /dev/null differ diff --git a/static/icons/06006081.png b/static/icons/06006081.png deleted file mode 100755 index 0eac5710..00000000 Binary files a/static/icons/06006081.png and /dev/null differ diff --git a/static/icons/06006082.png b/static/icons/06006082.png deleted file mode 100755 index 84ffc107..00000000 Binary files a/static/icons/06006082.png and /dev/null differ diff --git a/static/icons/06006083.png b/static/icons/06006083.png deleted file mode 100755 index ef4eb424..00000000 Binary files a/static/icons/06006083.png and /dev/null differ diff --git a/static/icons/06006084.png b/static/icons/06006084.png deleted file mode 100755 index 31f971ca..00000000 Binary files a/static/icons/06006084.png and /dev/null differ diff --git a/static/icons/06006085.png b/static/icons/06006085.png deleted file mode 100755 index 58d6b84e..00000000 Binary files a/static/icons/06006085.png and /dev/null differ diff --git a/static/icons/06006086.png b/static/icons/06006086.png deleted file mode 100755 index a8793db2..00000000 Binary files a/static/icons/06006086.png and /dev/null differ diff --git a/static/icons/06006087.png b/static/icons/06006087.png deleted file mode 100755 index 0aa62238..00000000 Binary files a/static/icons/06006087.png and /dev/null differ diff --git a/static/icons/06006088.png b/static/icons/06006088.png deleted file mode 100755 index da548dd8..00000000 Binary files a/static/icons/06006088.png and /dev/null differ diff --git a/static/icons/06006089.png b/static/icons/06006089.png deleted file mode 100755 index 59ab4b85..00000000 Binary files a/static/icons/06006089.png and /dev/null differ diff --git a/static/icons/0600608A.png b/static/icons/0600608A.png deleted file mode 100755 index 719c986b..00000000 Binary files a/static/icons/0600608A.png and /dev/null differ diff --git a/static/icons/0600608B.png b/static/icons/0600608B.png deleted file mode 100755 index 83a2961c..00000000 Binary files a/static/icons/0600608B.png and /dev/null differ diff --git a/static/icons/0600608C.png b/static/icons/0600608C.png deleted file mode 100755 index 2618698f..00000000 Binary files a/static/icons/0600608C.png and /dev/null differ diff --git a/static/icons/0600608D.png b/static/icons/0600608D.png deleted file mode 100755 index cea40c62..00000000 Binary files a/static/icons/0600608D.png and /dev/null differ diff --git a/static/icons/0600608E.png b/static/icons/0600608E.png deleted file mode 100755 index af69e79c..00000000 Binary files a/static/icons/0600608E.png and /dev/null differ diff --git a/static/icons/0600608F.png b/static/icons/0600608F.png deleted file mode 100755 index fcbe3175..00000000 Binary files a/static/icons/0600608F.png and /dev/null differ diff --git a/static/icons/06006090.png b/static/icons/06006090.png deleted file mode 100755 index 2e592c45..00000000 Binary files a/static/icons/06006090.png and /dev/null differ diff --git a/static/icons/06006091.png b/static/icons/06006091.png deleted file mode 100755 index fed2f512..00000000 Binary files a/static/icons/06006091.png and /dev/null differ diff --git a/static/icons/06006092.png b/static/icons/06006092.png deleted file mode 100755 index 19de48e9..00000000 Binary files a/static/icons/06006092.png and /dev/null differ diff --git a/static/icons/06006093.png b/static/icons/06006093.png deleted file mode 100755 index 643d5ea4..00000000 Binary files a/static/icons/06006093.png and /dev/null differ diff --git a/static/icons/06006094.png b/static/icons/06006094.png deleted file mode 100755 index 56ac3767..00000000 Binary files a/static/icons/06006094.png and /dev/null differ diff --git a/static/icons/06006095.png b/static/icons/06006095.png deleted file mode 100755 index 49e945ed..00000000 Binary files a/static/icons/06006095.png and /dev/null differ diff --git a/static/icons/06006096.png b/static/icons/06006096.png deleted file mode 100755 index 55ec4f49..00000000 Binary files a/static/icons/06006096.png and /dev/null differ diff --git a/static/icons/06006097.png b/static/icons/06006097.png deleted file mode 100755 index f33fcc39..00000000 Binary files a/static/icons/06006097.png and /dev/null differ diff --git a/static/icons/06006098.png b/static/icons/06006098.png deleted file mode 100755 index 70980354..00000000 Binary files a/static/icons/06006098.png and /dev/null differ diff --git a/static/icons/06006099.png b/static/icons/06006099.png deleted file mode 100755 index 56207968..00000000 Binary files a/static/icons/06006099.png and /dev/null differ diff --git a/static/icons/0600609A.png b/static/icons/0600609A.png deleted file mode 100755 index 7b44091d..00000000 Binary files a/static/icons/0600609A.png and /dev/null differ diff --git a/static/icons/0600609B.png b/static/icons/0600609B.png deleted file mode 100755 index 5c61dcad..00000000 Binary files a/static/icons/0600609B.png and /dev/null differ diff --git a/static/icons/0600609C.png b/static/icons/0600609C.png deleted file mode 100755 index 80fe4ada..00000000 Binary files a/static/icons/0600609C.png and /dev/null differ diff --git a/static/icons/0600609D.png b/static/icons/0600609D.png deleted file mode 100755 index d3bedd22..00000000 Binary files a/static/icons/0600609D.png and /dev/null differ diff --git a/static/icons/0600609E.png b/static/icons/0600609E.png deleted file mode 100755 index b7cb1345..00000000 Binary files a/static/icons/0600609E.png and /dev/null differ diff --git a/static/icons/0600609F.png b/static/icons/0600609F.png deleted file mode 100755 index d1185cde..00000000 Binary files a/static/icons/0600609F.png and /dev/null differ diff --git a/static/icons/060060A0.png b/static/icons/060060A0.png deleted file mode 100755 index 5e13ca77..00000000 Binary files a/static/icons/060060A0.png and /dev/null differ diff --git a/static/icons/060060A1.png b/static/icons/060060A1.png deleted file mode 100755 index 6b31714e..00000000 Binary files a/static/icons/060060A1.png and /dev/null differ diff --git a/static/icons/060060A2.png b/static/icons/060060A2.png deleted file mode 100755 index dde615be..00000000 Binary files a/static/icons/060060A2.png and /dev/null differ diff --git a/static/icons/060060A3.png b/static/icons/060060A3.png deleted file mode 100755 index 3ed9ffe7..00000000 Binary files a/static/icons/060060A3.png and /dev/null differ diff --git a/static/icons/060060A4.png b/static/icons/060060A4.png deleted file mode 100755 index 589e5765..00000000 Binary files a/static/icons/060060A4.png and /dev/null differ diff --git a/static/icons/060060A5.png b/static/icons/060060A5.png deleted file mode 100755 index 85554af8..00000000 Binary files a/static/icons/060060A5.png and /dev/null differ diff --git a/static/icons/060060A6.png b/static/icons/060060A6.png deleted file mode 100755 index 796e95c3..00000000 Binary files a/static/icons/060060A6.png and /dev/null differ diff --git a/static/icons/060060A7.png b/static/icons/060060A7.png deleted file mode 100755 index da7187a7..00000000 Binary files a/static/icons/060060A7.png and /dev/null differ diff --git a/static/icons/060060A8.png b/static/icons/060060A8.png deleted file mode 100755 index 18cccda4..00000000 Binary files a/static/icons/060060A8.png and /dev/null differ diff --git a/static/icons/060060A9.png b/static/icons/060060A9.png deleted file mode 100755 index abd83338..00000000 Binary files a/static/icons/060060A9.png and /dev/null differ diff --git a/static/icons/060060AA.png b/static/icons/060060AA.png deleted file mode 100755 index 999ad1bf..00000000 Binary files a/static/icons/060060AA.png and /dev/null differ diff --git a/static/icons/060060AB.png b/static/icons/060060AB.png deleted file mode 100755 index d8c97df5..00000000 Binary files a/static/icons/060060AB.png and /dev/null differ diff --git a/static/icons/060060AC.png b/static/icons/060060AC.png deleted file mode 100755 index 5d0c6976..00000000 Binary files a/static/icons/060060AC.png and /dev/null differ diff --git a/static/icons/060060AD.png b/static/icons/060060AD.png deleted file mode 100755 index b21c166d..00000000 Binary files a/static/icons/060060AD.png and /dev/null differ diff --git a/static/icons/060060AE.png b/static/icons/060060AE.png deleted file mode 100755 index 53100d48..00000000 Binary files a/static/icons/060060AE.png and /dev/null differ diff --git a/static/icons/060060AF.png b/static/icons/060060AF.png deleted file mode 100755 index 89188064..00000000 Binary files a/static/icons/060060AF.png and /dev/null differ diff --git a/static/icons/060060B0.png b/static/icons/060060B0.png deleted file mode 100755 index 12dda259..00000000 Binary files a/static/icons/060060B0.png and /dev/null differ diff --git a/static/icons/060060B1.png b/static/icons/060060B1.png deleted file mode 100755 index 0eb8e56b..00000000 Binary files a/static/icons/060060B1.png and /dev/null differ diff --git a/static/icons/060060B2.png b/static/icons/060060B2.png deleted file mode 100755 index 6319d908..00000000 Binary files a/static/icons/060060B2.png and /dev/null differ diff --git a/static/icons/060060B3.png b/static/icons/060060B3.png deleted file mode 100755 index a18eccb5..00000000 Binary files a/static/icons/060060B3.png and /dev/null differ diff --git a/static/icons/060060B4.png b/static/icons/060060B4.png deleted file mode 100755 index 3dfde6b5..00000000 Binary files a/static/icons/060060B4.png and /dev/null differ diff --git a/static/icons/060060B5.png b/static/icons/060060B5.png deleted file mode 100755 index 88e22c62..00000000 Binary files a/static/icons/060060B5.png and /dev/null differ diff --git a/static/icons/060060B6.png b/static/icons/060060B6.png deleted file mode 100755 index 27bd737a..00000000 Binary files a/static/icons/060060B6.png and /dev/null differ diff --git a/static/icons/060060B7.png b/static/icons/060060B7.png deleted file mode 100755 index 57b56cf3..00000000 Binary files a/static/icons/060060B7.png and /dev/null differ diff --git a/static/icons/060060B8.png b/static/icons/060060B8.png deleted file mode 100755 index 800b8271..00000000 Binary files a/static/icons/060060B8.png and /dev/null differ diff --git a/static/icons/060060B9.png b/static/icons/060060B9.png deleted file mode 100755 index 9214f082..00000000 Binary files a/static/icons/060060B9.png and /dev/null differ diff --git a/static/icons/060060BA.png b/static/icons/060060BA.png deleted file mode 100755 index 0d4025a3..00000000 Binary files a/static/icons/060060BA.png and /dev/null differ diff --git a/static/icons/060060BB.png b/static/icons/060060BB.png deleted file mode 100755 index fed41ea1..00000000 Binary files a/static/icons/060060BB.png and /dev/null differ diff --git a/static/icons/060060BC.png b/static/icons/060060BC.png deleted file mode 100755 index 5adaad70..00000000 Binary files a/static/icons/060060BC.png and /dev/null differ diff --git a/static/icons/060060BD.png b/static/icons/060060BD.png deleted file mode 100755 index d3c53bae..00000000 Binary files a/static/icons/060060BD.png and /dev/null differ diff --git a/static/icons/060060BE.png b/static/icons/060060BE.png deleted file mode 100755 index a4c7a2f3..00000000 Binary files a/static/icons/060060BE.png and /dev/null differ diff --git a/static/icons/060060BF.png b/static/icons/060060BF.png deleted file mode 100755 index b38e7924..00000000 Binary files a/static/icons/060060BF.png and /dev/null differ diff --git a/static/icons/060060C0.png b/static/icons/060060C0.png deleted file mode 100755 index 1c8c943d..00000000 Binary files a/static/icons/060060C0.png and /dev/null differ diff --git a/static/icons/060060C1.png b/static/icons/060060C1.png deleted file mode 100755 index e1e2c8ce..00000000 Binary files a/static/icons/060060C1.png and /dev/null differ diff --git a/static/icons/060060C2.png b/static/icons/060060C2.png deleted file mode 100755 index ff74a2da..00000000 Binary files a/static/icons/060060C2.png and /dev/null differ diff --git a/static/icons/060060C3.png b/static/icons/060060C3.png deleted file mode 100755 index c97246c1..00000000 Binary files a/static/icons/060060C3.png and /dev/null differ diff --git a/static/icons/060060C4.png b/static/icons/060060C4.png deleted file mode 100755 index 21a673b7..00000000 Binary files a/static/icons/060060C4.png and /dev/null differ diff --git a/static/icons/060060C5.png b/static/icons/060060C5.png deleted file mode 100755 index 3eb75d4f..00000000 Binary files a/static/icons/060060C5.png and /dev/null differ diff --git a/static/icons/060060C6.png b/static/icons/060060C6.png deleted file mode 100755 index 7328d1f0..00000000 Binary files a/static/icons/060060C6.png and /dev/null differ diff --git a/static/icons/060060C7.png b/static/icons/060060C7.png deleted file mode 100755 index 228a12bd..00000000 Binary files a/static/icons/060060C7.png and /dev/null differ diff --git a/static/icons/060060C8.png b/static/icons/060060C8.png deleted file mode 100755 index 158a75b9..00000000 Binary files a/static/icons/060060C8.png and /dev/null differ diff --git a/static/icons/060060C9.png b/static/icons/060060C9.png deleted file mode 100755 index 74cf1863..00000000 Binary files a/static/icons/060060C9.png and /dev/null differ diff --git a/static/icons/060060CA.png b/static/icons/060060CA.png deleted file mode 100755 index 7806e027..00000000 Binary files a/static/icons/060060CA.png and /dev/null differ diff --git a/static/icons/060060CB.png b/static/icons/060060CB.png deleted file mode 100755 index cfd80238..00000000 Binary files a/static/icons/060060CB.png and /dev/null differ diff --git a/static/icons/060060CC.png b/static/icons/060060CC.png deleted file mode 100755 index 0fbdad6d..00000000 Binary files a/static/icons/060060CC.png and /dev/null differ diff --git a/static/icons/060060CD.png b/static/icons/060060CD.png deleted file mode 100755 index 0efbb5f9..00000000 Binary files a/static/icons/060060CD.png and /dev/null differ diff --git a/static/icons/060060CE.png b/static/icons/060060CE.png deleted file mode 100755 index b99b3216..00000000 Binary files a/static/icons/060060CE.png and /dev/null differ diff --git a/static/icons/060060CF.png b/static/icons/060060CF.png deleted file mode 100755 index 77c3d568..00000000 Binary files a/static/icons/060060CF.png and /dev/null differ diff --git a/static/icons/060060D0.png b/static/icons/060060D0.png deleted file mode 100755 index be943286..00000000 Binary files a/static/icons/060060D0.png and /dev/null differ diff --git a/static/icons/060060D1.png b/static/icons/060060D1.png deleted file mode 100755 index 8338c112..00000000 Binary files a/static/icons/060060D1.png and /dev/null differ diff --git a/static/icons/060060D2.png b/static/icons/060060D2.png deleted file mode 100755 index 1b0f354c..00000000 Binary files a/static/icons/060060D2.png and /dev/null differ diff --git a/static/icons/060060D3.png b/static/icons/060060D3.png deleted file mode 100755 index db46179a..00000000 Binary files a/static/icons/060060D3.png and /dev/null differ diff --git a/static/icons/060060D4.png b/static/icons/060060D4.png deleted file mode 100755 index 60dd4e08..00000000 Binary files a/static/icons/060060D4.png and /dev/null differ diff --git a/static/icons/060060D5.png b/static/icons/060060D5.png deleted file mode 100755 index 356b30d8..00000000 Binary files a/static/icons/060060D5.png and /dev/null differ diff --git a/static/icons/060060D6.png b/static/icons/060060D6.png deleted file mode 100755 index 0b3952ae..00000000 Binary files a/static/icons/060060D6.png and /dev/null differ diff --git a/static/icons/060060D7.png b/static/icons/060060D7.png deleted file mode 100755 index 159f7580..00000000 Binary files a/static/icons/060060D7.png and /dev/null differ diff --git a/static/icons/060060D8.png b/static/icons/060060D8.png deleted file mode 100755 index 60dd4e08..00000000 Binary files a/static/icons/060060D8.png and /dev/null differ diff --git a/static/icons/060060D9.png b/static/icons/060060D9.png deleted file mode 100755 index 08116421..00000000 Binary files a/static/icons/060060D9.png and /dev/null differ diff --git a/static/icons/060060DA.png b/static/icons/060060DA.png deleted file mode 100755 index b445c537..00000000 Binary files a/static/icons/060060DA.png and /dev/null differ diff --git a/static/icons/060060DB.png b/static/icons/060060DB.png deleted file mode 100755 index 959e88dd..00000000 Binary files a/static/icons/060060DB.png and /dev/null differ diff --git a/static/icons/060060DC.png b/static/icons/060060DC.png deleted file mode 100755 index 675623b9..00000000 Binary files a/static/icons/060060DC.png and /dev/null differ diff --git a/static/icons/060060DD.png b/static/icons/060060DD.png deleted file mode 100755 index cb960045..00000000 Binary files a/static/icons/060060DD.png and /dev/null differ diff --git a/static/icons/060060DE.png b/static/icons/060060DE.png deleted file mode 100755 index e6048de3..00000000 Binary files a/static/icons/060060DE.png and /dev/null differ diff --git a/static/icons/060060DF.png b/static/icons/060060DF.png deleted file mode 100755 index 0db17332..00000000 Binary files a/static/icons/060060DF.png and /dev/null differ diff --git a/static/icons/060060E0.png b/static/icons/060060E0.png deleted file mode 100755 index 96aedc04..00000000 Binary files a/static/icons/060060E0.png and /dev/null differ diff --git a/static/icons/060060E1.png b/static/icons/060060E1.png deleted file mode 100755 index 98a6768e..00000000 Binary files a/static/icons/060060E1.png and /dev/null differ diff --git a/static/icons/060060E2.png b/static/icons/060060E2.png deleted file mode 100755 index be68f856..00000000 Binary files a/static/icons/060060E2.png and /dev/null differ diff --git a/static/icons/060060E3.png b/static/icons/060060E3.png deleted file mode 100755 index 8b4bfec0..00000000 Binary files a/static/icons/060060E3.png and /dev/null differ diff --git a/static/icons/060060E4.png b/static/icons/060060E4.png deleted file mode 100755 index e6f16fb5..00000000 Binary files a/static/icons/060060E4.png and /dev/null differ diff --git a/static/icons/060060E5.png b/static/icons/060060E5.png deleted file mode 100755 index 2fcc1ee0..00000000 Binary files a/static/icons/060060E5.png and /dev/null differ diff --git a/static/icons/060060E6.png b/static/icons/060060E6.png deleted file mode 100755 index 9d25da36..00000000 Binary files a/static/icons/060060E6.png and /dev/null differ diff --git a/static/icons/060060E7.png b/static/icons/060060E7.png deleted file mode 100755 index 6b753bfe..00000000 Binary files a/static/icons/060060E7.png and /dev/null differ diff --git a/static/icons/060060E8.png b/static/icons/060060E8.png deleted file mode 100755 index c40cdbfc..00000000 Binary files a/static/icons/060060E8.png and /dev/null differ diff --git a/static/icons/060060E9.png b/static/icons/060060E9.png deleted file mode 100755 index b9fe1743..00000000 Binary files a/static/icons/060060E9.png and /dev/null differ diff --git a/static/icons/060060EA.png b/static/icons/060060EA.png deleted file mode 100755 index d1564c56..00000000 Binary files a/static/icons/060060EA.png and /dev/null differ diff --git a/static/icons/060060EB.png b/static/icons/060060EB.png deleted file mode 100755 index 0c434f44..00000000 Binary files a/static/icons/060060EB.png and /dev/null differ diff --git a/static/icons/060060EC.png b/static/icons/060060EC.png deleted file mode 100755 index eeb7e033..00000000 Binary files a/static/icons/060060EC.png and /dev/null differ diff --git a/static/icons/060060F6.png b/static/icons/060060F6.png deleted file mode 100755 index 22a2fec4..00000000 Binary files a/static/icons/060060F6.png and /dev/null differ diff --git a/static/icons/060060F7.png b/static/icons/060060F7.png deleted file mode 100755 index 1b816ceb..00000000 Binary files a/static/icons/060060F7.png and /dev/null differ diff --git a/static/icons/060060F8.png b/static/icons/060060F8.png deleted file mode 100755 index d727c696..00000000 Binary files a/static/icons/060060F8.png and /dev/null differ diff --git a/static/icons/060060F9.png b/static/icons/060060F9.png deleted file mode 100755 index 7b173e01..00000000 Binary files a/static/icons/060060F9.png and /dev/null differ diff --git a/static/icons/060060FA.png b/static/icons/060060FA.png deleted file mode 100755 index 6e187036..00000000 Binary files a/static/icons/060060FA.png and /dev/null differ diff --git a/static/icons/060060FB.png b/static/icons/060060FB.png deleted file mode 100755 index 38b2dae5..00000000 Binary files a/static/icons/060060FB.png and /dev/null differ diff --git a/static/icons/060060FC.png b/static/icons/060060FC.png deleted file mode 100755 index 3d8f93e4..00000000 Binary files a/static/icons/060060FC.png and /dev/null differ diff --git a/static/icons/060060FD.png b/static/icons/060060FD.png deleted file mode 100755 index fe589ed9..00000000 Binary files a/static/icons/060060FD.png and /dev/null differ diff --git a/static/icons/060060FF.png b/static/icons/060060FF.png deleted file mode 100755 index efe480e9..00000000 Binary files a/static/icons/060060FF.png and /dev/null differ diff --git a/static/icons/06006100.png b/static/icons/06006100.png deleted file mode 100755 index f4fac051..00000000 Binary files a/static/icons/06006100.png and /dev/null differ diff --git a/static/icons/06006101.png b/static/icons/06006101.png deleted file mode 100755 index 4a3433fb..00000000 Binary files a/static/icons/06006101.png and /dev/null differ diff --git a/static/icons/06006102.png b/static/icons/06006102.png deleted file mode 100755 index 4525def0..00000000 Binary files a/static/icons/06006102.png and /dev/null differ diff --git a/static/icons/06006103.png b/static/icons/06006103.png deleted file mode 100755 index e08a11f4..00000000 Binary files a/static/icons/06006103.png and /dev/null differ diff --git a/static/icons/0600610A.png b/static/icons/0600610A.png deleted file mode 100755 index e74101f6..00000000 Binary files a/static/icons/0600610A.png and /dev/null differ diff --git a/static/icons/0600610B.png b/static/icons/0600610B.png deleted file mode 100755 index c9b408f7..00000000 Binary files a/static/icons/0600610B.png and /dev/null differ diff --git a/static/icons/0600610C.png b/static/icons/0600610C.png deleted file mode 100755 index a988c8d0..00000000 Binary files a/static/icons/0600610C.png and /dev/null differ diff --git a/static/icons/0600610D.png b/static/icons/0600610D.png deleted file mode 100755 index 19a0bb51..00000000 Binary files a/static/icons/0600610D.png and /dev/null differ diff --git a/static/icons/0600610E.png b/static/icons/0600610E.png deleted file mode 100755 index e92c2d8f..00000000 Binary files a/static/icons/0600610E.png and /dev/null differ diff --git a/static/icons/0600610F.png b/static/icons/0600610F.png deleted file mode 100755 index d284a331..00000000 Binary files a/static/icons/0600610F.png and /dev/null differ diff --git a/static/icons/06006112.png b/static/icons/06006112.png deleted file mode 100755 index 393552f3..00000000 Binary files a/static/icons/06006112.png and /dev/null differ diff --git a/static/icons/06006114.png b/static/icons/06006114.png deleted file mode 100755 index de250302..00000000 Binary files a/static/icons/06006114.png and /dev/null differ diff --git a/static/icons/06006116.png b/static/icons/06006116.png deleted file mode 100755 index b6568a43..00000000 Binary files a/static/icons/06006116.png and /dev/null differ diff --git a/static/icons/06006117.png b/static/icons/06006117.png deleted file mode 100755 index 5216f8cb..00000000 Binary files a/static/icons/06006117.png and /dev/null differ diff --git a/static/icons/06006118.png b/static/icons/06006118.png deleted file mode 100755 index 824a9267..00000000 Binary files a/static/icons/06006118.png and /dev/null differ diff --git a/static/icons/06006119.png b/static/icons/06006119.png deleted file mode 100755 index ae19c584..00000000 Binary files a/static/icons/06006119.png and /dev/null differ diff --git a/static/icons/0600611C.png b/static/icons/0600611C.png deleted file mode 100755 index 7ef46a1f..00000000 Binary files a/static/icons/0600611C.png and /dev/null differ diff --git a/static/icons/0600611D.png b/static/icons/0600611D.png deleted file mode 100755 index 97bcd631..00000000 Binary files a/static/icons/0600611D.png and /dev/null differ diff --git a/static/icons/0600611E.png b/static/icons/0600611E.png deleted file mode 100755 index 7ef64f65..00000000 Binary files a/static/icons/0600611E.png and /dev/null differ diff --git a/static/icons/0600611F.png b/static/icons/0600611F.png deleted file mode 100755 index e3673d4e..00000000 Binary files a/static/icons/0600611F.png and /dev/null differ diff --git a/static/icons/06006120.png b/static/icons/06006120.png deleted file mode 100755 index 9b2fcad3..00000000 Binary files a/static/icons/06006120.png and /dev/null differ diff --git a/static/icons/06006121.png b/static/icons/06006121.png deleted file mode 100755 index a2bf8570..00000000 Binary files a/static/icons/06006121.png and /dev/null differ diff --git a/static/icons/06006122.png b/static/icons/06006122.png deleted file mode 100755 index 99358de0..00000000 Binary files a/static/icons/06006122.png and /dev/null differ diff --git a/static/icons/06006123.png b/static/icons/06006123.png deleted file mode 100755 index a68f6b10..00000000 Binary files a/static/icons/06006123.png and /dev/null differ diff --git a/static/icons/06006126.png b/static/icons/06006126.png deleted file mode 100755 index 45f99dcf..00000000 Binary files a/static/icons/06006126.png and /dev/null differ diff --git a/static/icons/06006127.png b/static/icons/06006127.png deleted file mode 100755 index 884f30e9..00000000 Binary files a/static/icons/06006127.png and /dev/null differ diff --git a/static/icons/06006128.png b/static/icons/06006128.png deleted file mode 100755 index c1e45d15..00000000 Binary files a/static/icons/06006128.png and /dev/null differ diff --git a/static/icons/06006129.png b/static/icons/06006129.png deleted file mode 100755 index 8568aba1..00000000 Binary files a/static/icons/06006129.png and /dev/null differ diff --git a/static/icons/0600612A.png b/static/icons/0600612A.png deleted file mode 100755 index 56b49b65..00000000 Binary files a/static/icons/0600612A.png and /dev/null differ diff --git a/static/icons/0600612B.png b/static/icons/0600612B.png deleted file mode 100755 index 68b817d9..00000000 Binary files a/static/icons/0600612B.png and /dev/null differ diff --git a/static/icons/0600612C.png b/static/icons/0600612C.png deleted file mode 100755 index 98796d36..00000000 Binary files a/static/icons/0600612C.png and /dev/null differ diff --git a/static/icons/0600612D.png b/static/icons/0600612D.png deleted file mode 100755 index aefdd082..00000000 Binary files a/static/icons/0600612D.png and /dev/null differ diff --git a/static/icons/0600612E.png b/static/icons/0600612E.png deleted file mode 100755 index ca5177aa..00000000 Binary files a/static/icons/0600612E.png and /dev/null differ diff --git a/static/icons/0600612F.png b/static/icons/0600612F.png deleted file mode 100755 index 6c5f0cf3..00000000 Binary files a/static/icons/0600612F.png and /dev/null differ diff --git a/static/icons/06006131.png b/static/icons/06006131.png deleted file mode 100755 index 7fc0166d..00000000 Binary files a/static/icons/06006131.png and /dev/null differ diff --git a/static/icons/06006132.png b/static/icons/06006132.png deleted file mode 100755 index 1e0b392c..00000000 Binary files a/static/icons/06006132.png and /dev/null differ diff --git a/static/icons/06006133.png b/static/icons/06006133.png deleted file mode 100755 index 470ce700..00000000 Binary files a/static/icons/06006133.png and /dev/null differ diff --git a/static/icons/06006134.png b/static/icons/06006134.png deleted file mode 100755 index 7de417cb..00000000 Binary files a/static/icons/06006134.png and /dev/null differ diff --git a/static/icons/0600613A.png b/static/icons/0600613A.png deleted file mode 100755 index a9bf9f0a..00000000 Binary files a/static/icons/0600613A.png and /dev/null differ diff --git a/static/icons/0600613B.png b/static/icons/0600613B.png deleted file mode 100755 index f846b9e5..00000000 Binary files a/static/icons/0600613B.png and /dev/null differ diff --git a/static/icons/0600613C.png b/static/icons/0600613C.png deleted file mode 100755 index 02d640a8..00000000 Binary files a/static/icons/0600613C.png and /dev/null differ diff --git a/static/icons/0600613D.png b/static/icons/0600613D.png deleted file mode 100755 index 9cd13ac7..00000000 Binary files a/static/icons/0600613D.png and /dev/null differ diff --git a/static/icons/0600613E.png b/static/icons/0600613E.png deleted file mode 100755 index 401ba571..00000000 Binary files a/static/icons/0600613E.png and /dev/null differ diff --git a/static/icons/0600613F.png b/static/icons/0600613F.png deleted file mode 100755 index 41e7fe7c..00000000 Binary files a/static/icons/0600613F.png and /dev/null differ diff --git a/static/icons/06006140.png b/static/icons/06006140.png deleted file mode 100755 index 29be74b2..00000000 Binary files a/static/icons/06006140.png and /dev/null differ diff --git a/static/icons/06006141.png b/static/icons/06006141.png deleted file mode 100755 index d4077faf..00000000 Binary files a/static/icons/06006141.png and /dev/null differ diff --git a/static/icons/06006142.png b/static/icons/06006142.png deleted file mode 100755 index cfbafe6e..00000000 Binary files a/static/icons/06006142.png and /dev/null differ diff --git a/static/icons/06006143.png b/static/icons/06006143.png deleted file mode 100755 index f16e77c3..00000000 Binary files a/static/icons/06006143.png and /dev/null differ diff --git a/static/icons/06006144.png b/static/icons/06006144.png deleted file mode 100755 index 64bf3954..00000000 Binary files a/static/icons/06006144.png and /dev/null differ diff --git a/static/icons/06006145.png b/static/icons/06006145.png deleted file mode 100755 index dec147f7..00000000 Binary files a/static/icons/06006145.png and /dev/null differ diff --git a/static/icons/06006146.png b/static/icons/06006146.png deleted file mode 100755 index c4a99c18..00000000 Binary files a/static/icons/06006146.png and /dev/null differ diff --git a/static/icons/06006147.png b/static/icons/06006147.png deleted file mode 100755 index 9e2809e4..00000000 Binary files a/static/icons/06006147.png and /dev/null differ diff --git a/static/icons/06006148.png b/static/icons/06006148.png deleted file mode 100755 index cf6f1f3f..00000000 Binary files a/static/icons/06006148.png and /dev/null differ diff --git a/static/icons/06006149.png b/static/icons/06006149.png deleted file mode 100755 index 907c2456..00000000 Binary files a/static/icons/06006149.png and /dev/null differ diff --git a/static/icons/0600614A.png b/static/icons/0600614A.png deleted file mode 100755 index 335b8c7f..00000000 Binary files a/static/icons/0600614A.png and /dev/null differ diff --git a/static/icons/0600614B.png b/static/icons/0600614B.png deleted file mode 100755 index 36724e15..00000000 Binary files a/static/icons/0600614B.png and /dev/null differ diff --git a/static/icons/0600614C.png b/static/icons/0600614C.png deleted file mode 100755 index ba517228..00000000 Binary files a/static/icons/0600614C.png and /dev/null differ diff --git a/static/icons/0600614D.png b/static/icons/0600614D.png deleted file mode 100755 index 07d03602..00000000 Binary files a/static/icons/0600614D.png and /dev/null differ diff --git a/static/icons/0600614E.png b/static/icons/0600614E.png deleted file mode 100755 index de2f36d3..00000000 Binary files a/static/icons/0600614E.png and /dev/null differ diff --git a/static/icons/0600614F.png b/static/icons/0600614F.png deleted file mode 100755 index 7f03d450..00000000 Binary files a/static/icons/0600614F.png and /dev/null differ diff --git a/static/icons/06006150.png b/static/icons/06006150.png deleted file mode 100755 index 9dd693c7..00000000 Binary files a/static/icons/06006150.png and /dev/null differ diff --git a/static/icons/06006151.png b/static/icons/06006151.png deleted file mode 100755 index a6cfc0c5..00000000 Binary files a/static/icons/06006151.png and /dev/null differ diff --git a/static/icons/06006152.png b/static/icons/06006152.png deleted file mode 100755 index f97d2d87..00000000 Binary files a/static/icons/06006152.png and /dev/null differ diff --git a/static/icons/06006153.png b/static/icons/06006153.png deleted file mode 100755 index 0056a2fb..00000000 Binary files a/static/icons/06006153.png and /dev/null differ diff --git a/static/icons/06006154.png b/static/icons/06006154.png deleted file mode 100755 index 219e8cd4..00000000 Binary files a/static/icons/06006154.png and /dev/null differ diff --git a/static/icons/06006155.png b/static/icons/06006155.png deleted file mode 100755 index b192506b..00000000 Binary files a/static/icons/06006155.png and /dev/null differ diff --git a/static/icons/06006156.png b/static/icons/06006156.png deleted file mode 100755 index 86427fa4..00000000 Binary files a/static/icons/06006156.png and /dev/null differ diff --git a/static/icons/06006157.png b/static/icons/06006157.png deleted file mode 100755 index b7b8c130..00000000 Binary files a/static/icons/06006157.png and /dev/null differ diff --git a/static/icons/06006158.png b/static/icons/06006158.png deleted file mode 100755 index 8cec5f02..00000000 Binary files a/static/icons/06006158.png and /dev/null differ diff --git a/static/icons/06006159.png b/static/icons/06006159.png deleted file mode 100755 index cd02b2da..00000000 Binary files a/static/icons/06006159.png and /dev/null differ diff --git a/static/icons/0600615A.png b/static/icons/0600615A.png deleted file mode 100755 index 10b71053..00000000 Binary files a/static/icons/0600615A.png and /dev/null differ diff --git a/static/icons/0600615B.png b/static/icons/0600615B.png deleted file mode 100755 index e525d2ef..00000000 Binary files a/static/icons/0600615B.png and /dev/null differ diff --git a/static/icons/0600615C.png b/static/icons/0600615C.png deleted file mode 100755 index ae15550a..00000000 Binary files a/static/icons/0600615C.png and /dev/null differ diff --git a/static/icons/0600615D.png b/static/icons/0600615D.png deleted file mode 100755 index 6a8436b8..00000000 Binary files a/static/icons/0600615D.png and /dev/null differ diff --git a/static/icons/0600615E.png b/static/icons/0600615E.png deleted file mode 100755 index 2db4778d..00000000 Binary files a/static/icons/0600615E.png and /dev/null differ diff --git a/static/icons/0600615F.png b/static/icons/0600615F.png deleted file mode 100755 index 67c49ec0..00000000 Binary files a/static/icons/0600615F.png and /dev/null differ diff --git a/static/icons/06006160.png b/static/icons/06006160.png deleted file mode 100755 index c77ca960..00000000 Binary files a/static/icons/06006160.png and /dev/null differ diff --git a/static/icons/06006161.png b/static/icons/06006161.png deleted file mode 100755 index 252af122..00000000 Binary files a/static/icons/06006161.png and /dev/null differ diff --git a/static/icons/06006162.png b/static/icons/06006162.png deleted file mode 100755 index 49380c39..00000000 Binary files a/static/icons/06006162.png and /dev/null differ diff --git a/static/icons/06006163.png b/static/icons/06006163.png deleted file mode 100755 index 219eebeb..00000000 Binary files a/static/icons/06006163.png and /dev/null differ diff --git a/static/icons/06006164.png b/static/icons/06006164.png deleted file mode 100755 index 99be2fe8..00000000 Binary files a/static/icons/06006164.png and /dev/null differ diff --git a/static/icons/06006165.png b/static/icons/06006165.png deleted file mode 100755 index 1d57257a..00000000 Binary files a/static/icons/06006165.png and /dev/null differ diff --git a/static/icons/06006166.png b/static/icons/06006166.png deleted file mode 100755 index e3d7c37b..00000000 Binary files a/static/icons/06006166.png and /dev/null differ diff --git a/static/icons/06006167.png b/static/icons/06006167.png deleted file mode 100755 index 35a8c4c3..00000000 Binary files a/static/icons/06006167.png and /dev/null differ diff --git a/static/icons/06006168.png b/static/icons/06006168.png deleted file mode 100755 index 0fac9900..00000000 Binary files a/static/icons/06006168.png and /dev/null differ diff --git a/static/icons/06006169.png b/static/icons/06006169.png deleted file mode 100755 index 24559bbe..00000000 Binary files a/static/icons/06006169.png and /dev/null differ diff --git a/static/icons/0600616A.png b/static/icons/0600616A.png deleted file mode 100755 index 5dc7df55..00000000 Binary files a/static/icons/0600616A.png and /dev/null differ diff --git a/static/icons/0600616B.png b/static/icons/0600616B.png deleted file mode 100755 index 9cd13ac7..00000000 Binary files a/static/icons/0600616B.png and /dev/null differ diff --git a/static/icons/0600616C.png b/static/icons/0600616C.png deleted file mode 100755 index 1a34dc02..00000000 Binary files a/static/icons/0600616C.png and /dev/null differ diff --git a/static/icons/0600616D.png b/static/icons/0600616D.png deleted file mode 100755 index fa19bada..00000000 Binary files a/static/icons/0600616D.png and /dev/null differ diff --git a/static/icons/0600616E.png b/static/icons/0600616E.png deleted file mode 100755 index 869564d2..00000000 Binary files a/static/icons/0600616E.png and /dev/null differ diff --git a/static/icons/0600616F.png b/static/icons/0600616F.png deleted file mode 100755 index 78c88a6c..00000000 Binary files a/static/icons/0600616F.png and /dev/null differ diff --git a/static/icons/06006170.png b/static/icons/06006170.png deleted file mode 100755 index a5dd84b2..00000000 Binary files a/static/icons/06006170.png and /dev/null differ diff --git a/static/icons/06006175.png b/static/icons/06006175.png deleted file mode 100755 index 51ce6ac8..00000000 Binary files a/static/icons/06006175.png and /dev/null differ diff --git a/static/icons/06006176.png b/static/icons/06006176.png deleted file mode 100755 index 36746aa6..00000000 Binary files a/static/icons/06006176.png and /dev/null differ diff --git a/static/icons/06006177.png b/static/icons/06006177.png deleted file mode 100755 index e769a0eb..00000000 Binary files a/static/icons/06006177.png and /dev/null differ diff --git a/static/icons/06006178.png b/static/icons/06006178.png deleted file mode 100755 index fd797c31..00000000 Binary files a/static/icons/06006178.png and /dev/null differ diff --git a/static/icons/06006179.png b/static/icons/06006179.png deleted file mode 100755 index ce8e1456..00000000 Binary files a/static/icons/06006179.png and /dev/null differ diff --git a/static/icons/0600617A.png b/static/icons/0600617A.png deleted file mode 100755 index 89064369..00000000 Binary files a/static/icons/0600617A.png and /dev/null differ diff --git a/static/icons/0600617B.png b/static/icons/0600617B.png deleted file mode 100755 index 40f7f2b6..00000000 Binary files a/static/icons/0600617B.png and /dev/null differ diff --git a/static/icons/0600617C.png b/static/icons/0600617C.png deleted file mode 100755 index 22e85ff4..00000000 Binary files a/static/icons/0600617C.png and /dev/null differ diff --git a/static/icons/0600617D.png b/static/icons/0600617D.png deleted file mode 100755 index c973f20f..00000000 Binary files a/static/icons/0600617D.png and /dev/null differ diff --git a/static/icons/06006199.png b/static/icons/06006199.png deleted file mode 100755 index 338586b2..00000000 Binary files a/static/icons/06006199.png and /dev/null differ diff --git a/static/icons/0600619A.png b/static/icons/0600619A.png deleted file mode 100755 index 5fdde2d8..00000000 Binary files a/static/icons/0600619A.png and /dev/null differ diff --git a/static/icons/0600619B.png b/static/icons/0600619B.png deleted file mode 100755 index ff9150a2..00000000 Binary files a/static/icons/0600619B.png and /dev/null differ diff --git a/static/icons/0600619C.png b/static/icons/0600619C.png deleted file mode 100755 index 915f9c14..00000000 Binary files a/static/icons/0600619C.png and /dev/null differ diff --git a/static/icons/0600619D.png b/static/icons/0600619D.png deleted file mode 100755 index 18b5c58e..00000000 Binary files a/static/icons/0600619D.png and /dev/null differ diff --git a/static/icons/0600619E.png b/static/icons/0600619E.png deleted file mode 100755 index 78b3b7f9..00000000 Binary files a/static/icons/0600619E.png and /dev/null differ diff --git a/static/icons/0600619F.png b/static/icons/0600619F.png deleted file mode 100755 index cb02c1e5..00000000 Binary files a/static/icons/0600619F.png and /dev/null differ diff --git a/static/icons/060061A0.png b/static/icons/060061A0.png deleted file mode 100755 index f0f3bc5c..00000000 Binary files a/static/icons/060061A0.png and /dev/null differ diff --git a/static/icons/060061A1.png b/static/icons/060061A1.png deleted file mode 100755 index 3465a3fb..00000000 Binary files a/static/icons/060061A1.png and /dev/null differ diff --git a/static/icons/060061B2.png b/static/icons/060061B2.png deleted file mode 100755 index d7f1fe2d..00000000 Binary files a/static/icons/060061B2.png and /dev/null differ diff --git a/static/icons/060061B3.png b/static/icons/060061B3.png deleted file mode 100755 index bee6d6ec..00000000 Binary files a/static/icons/060061B3.png and /dev/null differ diff --git a/static/icons/060061B5.png b/static/icons/060061B5.png deleted file mode 100755 index 5dd68a7e..00000000 Binary files a/static/icons/060061B5.png and /dev/null differ diff --git a/static/icons/060061B6.png b/static/icons/060061B6.png deleted file mode 100755 index dcd20b39..00000000 Binary files a/static/icons/060061B6.png and /dev/null differ diff --git a/static/icons/060061B7.png b/static/icons/060061B7.png deleted file mode 100755 index c65ca3e1..00000000 Binary files a/static/icons/060061B7.png and /dev/null differ diff --git a/static/icons/060061B8.png b/static/icons/060061B8.png deleted file mode 100755 index b737213e..00000000 Binary files a/static/icons/060061B8.png and /dev/null differ diff --git a/static/icons/060061B9.png b/static/icons/060061B9.png deleted file mode 100755 index d73cf126..00000000 Binary files a/static/icons/060061B9.png and /dev/null differ diff --git a/static/icons/060061BA.png b/static/icons/060061BA.png deleted file mode 100755 index b409a497..00000000 Binary files a/static/icons/060061BA.png and /dev/null differ diff --git a/static/icons/060061BB.png b/static/icons/060061BB.png deleted file mode 100755 index 6aaf78ba..00000000 Binary files a/static/icons/060061BB.png and /dev/null differ diff --git a/static/icons/060061BC.png b/static/icons/060061BC.png deleted file mode 100755 index ae51a06a..00000000 Binary files a/static/icons/060061BC.png and /dev/null differ diff --git a/static/icons/060061BD.png b/static/icons/060061BD.png deleted file mode 100755 index f4f8a6ff..00000000 Binary files a/static/icons/060061BD.png and /dev/null differ diff --git a/static/icons/060061BE.png b/static/icons/060061BE.png deleted file mode 100755 index 56c237de..00000000 Binary files a/static/icons/060061BE.png and /dev/null differ diff --git a/static/icons/060061BF.png b/static/icons/060061BF.png deleted file mode 100755 index 9bfb4f2e..00000000 Binary files a/static/icons/060061BF.png and /dev/null differ diff --git a/static/icons/060061C0.png b/static/icons/060061C0.png deleted file mode 100755 index 8a128f36..00000000 Binary files a/static/icons/060061C0.png and /dev/null differ diff --git a/static/icons/060061C1.png b/static/icons/060061C1.png deleted file mode 100755 index c9295bc9..00000000 Binary files a/static/icons/060061C1.png and /dev/null differ diff --git a/static/icons/060061C2.png b/static/icons/060061C2.png deleted file mode 100755 index dc6a8c78..00000000 Binary files a/static/icons/060061C2.png and /dev/null differ diff --git a/static/icons/060061C3.png b/static/icons/060061C3.png deleted file mode 100755 index 9616b384..00000000 Binary files a/static/icons/060061C3.png and /dev/null differ diff --git a/static/icons/060061C4.png b/static/icons/060061C4.png deleted file mode 100755 index 323064ac..00000000 Binary files a/static/icons/060061C4.png and /dev/null differ diff --git a/static/icons/060061C5.png b/static/icons/060061C5.png deleted file mode 100755 index d709e81b..00000000 Binary files a/static/icons/060061C5.png and /dev/null differ diff --git a/static/icons/060061C6.png b/static/icons/060061C6.png deleted file mode 100755 index 7997c0f5..00000000 Binary files a/static/icons/060061C6.png and /dev/null differ diff --git a/static/icons/060061C7.png b/static/icons/060061C7.png deleted file mode 100755 index c11e89d9..00000000 Binary files a/static/icons/060061C7.png and /dev/null differ diff --git a/static/icons/060061C8.png b/static/icons/060061C8.png deleted file mode 100755 index 581598dc..00000000 Binary files a/static/icons/060061C8.png and /dev/null differ diff --git a/static/icons/060061C9.png b/static/icons/060061C9.png deleted file mode 100755 index 8341032b..00000000 Binary files a/static/icons/060061C9.png and /dev/null differ diff --git a/static/icons/060061CA.png b/static/icons/060061CA.png deleted file mode 100755 index 9f140a08..00000000 Binary files a/static/icons/060061CA.png and /dev/null differ diff --git a/static/icons/060061CB.png b/static/icons/060061CB.png deleted file mode 100755 index 7efb9ef6..00000000 Binary files a/static/icons/060061CB.png and /dev/null differ diff --git a/static/icons/060061CC.png b/static/icons/060061CC.png deleted file mode 100755 index b4cb617f..00000000 Binary files a/static/icons/060061CC.png and /dev/null differ diff --git a/static/icons/060061CD.png b/static/icons/060061CD.png deleted file mode 100755 index 906d8161..00000000 Binary files a/static/icons/060061CD.png and /dev/null differ diff --git a/static/icons/060061CE.png b/static/icons/060061CE.png deleted file mode 100755 index 38dddc1b..00000000 Binary files a/static/icons/060061CE.png and /dev/null differ diff --git a/static/icons/060061CF.png b/static/icons/060061CF.png deleted file mode 100755 index e738cf6a..00000000 Binary files a/static/icons/060061CF.png and /dev/null differ diff --git a/static/icons/060061D0.png b/static/icons/060061D0.png deleted file mode 100755 index ff90ff8b..00000000 Binary files a/static/icons/060061D0.png and /dev/null differ diff --git a/static/icons/060061D1.png b/static/icons/060061D1.png deleted file mode 100755 index ba3b15cf..00000000 Binary files a/static/icons/060061D1.png and /dev/null differ diff --git a/static/icons/060061D2.png b/static/icons/060061D2.png deleted file mode 100755 index e3f82fab..00000000 Binary files a/static/icons/060061D2.png and /dev/null differ diff --git a/static/icons/060061D3.png b/static/icons/060061D3.png deleted file mode 100755 index 26cd8282..00000000 Binary files a/static/icons/060061D3.png and /dev/null differ diff --git a/static/icons/060061D4.png b/static/icons/060061D4.png deleted file mode 100755 index f11cbf22..00000000 Binary files a/static/icons/060061D4.png and /dev/null differ diff --git a/static/icons/060061D5.png b/static/icons/060061D5.png deleted file mode 100755 index 98c37bd2..00000000 Binary files a/static/icons/060061D5.png and /dev/null differ diff --git a/static/icons/060061D6.png b/static/icons/060061D6.png deleted file mode 100755 index 58916fd8..00000000 Binary files a/static/icons/060061D6.png and /dev/null differ diff --git a/static/icons/060061D7.png b/static/icons/060061D7.png deleted file mode 100755 index eb598d03..00000000 Binary files a/static/icons/060061D7.png and /dev/null differ diff --git a/static/icons/060061D8.png b/static/icons/060061D8.png deleted file mode 100755 index 0eadcf80..00000000 Binary files a/static/icons/060061D8.png and /dev/null differ diff --git a/static/icons/060061D9.png b/static/icons/060061D9.png deleted file mode 100755 index a1c3ecc1..00000000 Binary files a/static/icons/060061D9.png and /dev/null differ diff --git a/static/icons/060061DA.png b/static/icons/060061DA.png deleted file mode 100755 index a1197835..00000000 Binary files a/static/icons/060061DA.png and /dev/null differ diff --git a/static/icons/060061DB.png b/static/icons/060061DB.png deleted file mode 100755 index 280e74c1..00000000 Binary files a/static/icons/060061DB.png and /dev/null differ diff --git a/static/icons/060061DC.png b/static/icons/060061DC.png deleted file mode 100755 index 2f10741f..00000000 Binary files a/static/icons/060061DC.png and /dev/null differ diff --git a/static/icons/060061DD.png b/static/icons/060061DD.png deleted file mode 100755 index 9a4448f5..00000000 Binary files a/static/icons/060061DD.png and /dev/null differ diff --git a/static/icons/060061DE.png b/static/icons/060061DE.png deleted file mode 100755 index ae70ef3a..00000000 Binary files a/static/icons/060061DE.png and /dev/null differ diff --git a/static/icons/060061DF.png b/static/icons/060061DF.png deleted file mode 100755 index d4c2a769..00000000 Binary files a/static/icons/060061DF.png and /dev/null differ diff --git a/static/icons/060061E0.png b/static/icons/060061E0.png deleted file mode 100755 index e02e6731..00000000 Binary files a/static/icons/060061E0.png and /dev/null differ diff --git a/static/icons/060061E1.png b/static/icons/060061E1.png deleted file mode 100755 index e5dc6958..00000000 Binary files a/static/icons/060061E1.png and /dev/null differ diff --git a/static/icons/060061E2.png b/static/icons/060061E2.png deleted file mode 100755 index 66e6ec7a..00000000 Binary files a/static/icons/060061E2.png and /dev/null differ diff --git a/static/icons/060061E3.png b/static/icons/060061E3.png deleted file mode 100755 index 7709a301..00000000 Binary files a/static/icons/060061E3.png and /dev/null differ diff --git a/static/icons/060061E4.png b/static/icons/060061E4.png deleted file mode 100755 index 9b5dc77a..00000000 Binary files a/static/icons/060061E4.png and /dev/null differ diff --git a/static/icons/060061E5.png b/static/icons/060061E5.png deleted file mode 100755 index a9a99f8a..00000000 Binary files a/static/icons/060061E5.png and /dev/null differ diff --git a/static/icons/060061E6.png b/static/icons/060061E6.png deleted file mode 100755 index 824b46d0..00000000 Binary files a/static/icons/060061E6.png and /dev/null differ diff --git a/static/icons/060061E7.png b/static/icons/060061E7.png deleted file mode 100755 index e8a51361..00000000 Binary files a/static/icons/060061E7.png and /dev/null differ diff --git a/static/icons/060061E8.png b/static/icons/060061E8.png deleted file mode 100755 index 3e3ba3f7..00000000 Binary files a/static/icons/060061E8.png and /dev/null differ diff --git a/static/icons/060061E9.png b/static/icons/060061E9.png deleted file mode 100755 index 13b51339..00000000 Binary files a/static/icons/060061E9.png and /dev/null differ diff --git a/static/icons/060061EA.png b/static/icons/060061EA.png deleted file mode 100755 index 0db5d6c6..00000000 Binary files a/static/icons/060061EA.png and /dev/null differ diff --git a/static/icons/060061EB.png b/static/icons/060061EB.png deleted file mode 100755 index eebe3af3..00000000 Binary files a/static/icons/060061EB.png and /dev/null differ diff --git a/static/icons/060061EC.png b/static/icons/060061EC.png deleted file mode 100755 index 3d5ccc4d..00000000 Binary files a/static/icons/060061EC.png and /dev/null differ diff --git a/static/icons/060061ED.png b/static/icons/060061ED.png deleted file mode 100755 index 3bce9159..00000000 Binary files a/static/icons/060061ED.png and /dev/null differ diff --git a/static/icons/060061EE.png b/static/icons/060061EE.png deleted file mode 100755 index 76af2cb7..00000000 Binary files a/static/icons/060061EE.png and /dev/null differ diff --git a/static/icons/060061EF.png b/static/icons/060061EF.png deleted file mode 100755 index d444c19e..00000000 Binary files a/static/icons/060061EF.png and /dev/null differ diff --git a/static/icons/060061F0.png b/static/icons/060061F0.png deleted file mode 100755 index 1cc38354..00000000 Binary files a/static/icons/060061F0.png and /dev/null differ diff --git a/static/icons/060061F1.png b/static/icons/060061F1.png deleted file mode 100755 index b945a0bf..00000000 Binary files a/static/icons/060061F1.png and /dev/null differ diff --git a/static/icons/060061F2.png b/static/icons/060061F2.png deleted file mode 100755 index 598ca030..00000000 Binary files a/static/icons/060061F2.png and /dev/null differ diff --git a/static/icons/060061F3.png b/static/icons/060061F3.png deleted file mode 100755 index fdb3f410..00000000 Binary files a/static/icons/060061F3.png and /dev/null differ diff --git a/static/icons/060061F4.png b/static/icons/060061F4.png deleted file mode 100755 index 1c0d5603..00000000 Binary files a/static/icons/060061F4.png and /dev/null differ diff --git a/static/icons/060061F5.png b/static/icons/060061F5.png deleted file mode 100755 index 09541662..00000000 Binary files a/static/icons/060061F5.png and /dev/null differ diff --git a/static/icons/060061F6.png b/static/icons/060061F6.png deleted file mode 100755 index 59316ee4..00000000 Binary files a/static/icons/060061F6.png and /dev/null differ diff --git a/static/icons/060061F7.png b/static/icons/060061F7.png deleted file mode 100755 index 8de72d63..00000000 Binary files a/static/icons/060061F7.png and /dev/null differ diff --git a/static/icons/060061F8.png b/static/icons/060061F8.png deleted file mode 100755 index ba51988d..00000000 Binary files a/static/icons/060061F8.png and /dev/null differ diff --git a/static/icons/060061F9.png b/static/icons/060061F9.png deleted file mode 100755 index 992c4cad..00000000 Binary files a/static/icons/060061F9.png and /dev/null differ diff --git a/static/icons/060061FA.png b/static/icons/060061FA.png deleted file mode 100755 index 340d6c39..00000000 Binary files a/static/icons/060061FA.png and /dev/null differ diff --git a/static/icons/060061FB.png b/static/icons/060061FB.png deleted file mode 100755 index 8a8a1698..00000000 Binary files a/static/icons/060061FB.png and /dev/null differ diff --git a/static/icons/060061FC.png b/static/icons/060061FC.png deleted file mode 100755 index 9d323400..00000000 Binary files a/static/icons/060061FC.png and /dev/null differ diff --git a/static/icons/060061FD.png b/static/icons/060061FD.png deleted file mode 100755 index 67bccc4e..00000000 Binary files a/static/icons/060061FD.png and /dev/null differ diff --git a/static/icons/060061FE.png b/static/icons/060061FE.png deleted file mode 100755 index 60f79391..00000000 Binary files a/static/icons/060061FE.png and /dev/null differ diff --git a/static/icons/060061FF.png b/static/icons/060061FF.png deleted file mode 100755 index 8109fe28..00000000 Binary files a/static/icons/060061FF.png and /dev/null differ diff --git a/static/icons/06006200.png b/static/icons/06006200.png deleted file mode 100755 index 4d5ea88e..00000000 Binary files a/static/icons/06006200.png and /dev/null differ diff --git a/static/icons/06006201.png b/static/icons/06006201.png deleted file mode 100755 index c38060fd..00000000 Binary files a/static/icons/06006201.png and /dev/null differ diff --git a/static/icons/06006202.png b/static/icons/06006202.png deleted file mode 100755 index daccf93a..00000000 Binary files a/static/icons/06006202.png and /dev/null differ diff --git a/static/icons/06006203.png b/static/icons/06006203.png deleted file mode 100755 index 18e26266..00000000 Binary files a/static/icons/06006203.png and /dev/null differ diff --git a/static/icons/06006204.png b/static/icons/06006204.png deleted file mode 100755 index 33c4ace4..00000000 Binary files a/static/icons/06006204.png and /dev/null differ diff --git a/static/icons/06006205.png b/static/icons/06006205.png deleted file mode 100755 index 27f686bb..00000000 Binary files a/static/icons/06006205.png and /dev/null differ diff --git a/static/icons/06006206.png b/static/icons/06006206.png deleted file mode 100755 index 3c9ff90b..00000000 Binary files a/static/icons/06006206.png and /dev/null differ diff --git a/static/icons/06006207.png b/static/icons/06006207.png deleted file mode 100755 index ffcab661..00000000 Binary files a/static/icons/06006207.png and /dev/null differ diff --git a/static/icons/06006208.png b/static/icons/06006208.png deleted file mode 100755 index da824c1c..00000000 Binary files a/static/icons/06006208.png and /dev/null differ diff --git a/static/icons/06006209.png b/static/icons/06006209.png deleted file mode 100755 index 3fd70f8b..00000000 Binary files a/static/icons/06006209.png and /dev/null differ diff --git a/static/icons/0600620A.png b/static/icons/0600620A.png deleted file mode 100755 index 5bfeb5f7..00000000 Binary files a/static/icons/0600620A.png and /dev/null differ diff --git a/static/icons/0600620B.png b/static/icons/0600620B.png deleted file mode 100755 index d43cd4d2..00000000 Binary files a/static/icons/0600620B.png and /dev/null differ diff --git a/static/icons/0600620C.png b/static/icons/0600620C.png deleted file mode 100755 index 4af6b87f..00000000 Binary files a/static/icons/0600620C.png and /dev/null differ diff --git a/static/icons/0600620D.png b/static/icons/0600620D.png deleted file mode 100755 index a90294d7..00000000 Binary files a/static/icons/0600620D.png and /dev/null differ diff --git a/static/icons/06006211.png b/static/icons/06006211.png deleted file mode 100755 index 91ee08ac..00000000 Binary files a/static/icons/06006211.png and /dev/null differ diff --git a/static/icons/06006212.png b/static/icons/06006212.png deleted file mode 100755 index e2724790..00000000 Binary files a/static/icons/06006212.png and /dev/null differ diff --git a/static/icons/06006213.png b/static/icons/06006213.png deleted file mode 100755 index bb95defb..00000000 Binary files a/static/icons/06006213.png and /dev/null differ diff --git a/static/icons/06006214.png b/static/icons/06006214.png deleted file mode 100755 index c4398f57..00000000 Binary files a/static/icons/06006214.png and /dev/null differ diff --git a/static/icons/06006215.png b/static/icons/06006215.png deleted file mode 100755 index d2a825d1..00000000 Binary files a/static/icons/06006215.png and /dev/null differ diff --git a/static/icons/06006216.png b/static/icons/06006216.png deleted file mode 100755 index 1c6d843a..00000000 Binary files a/static/icons/06006216.png and /dev/null differ diff --git a/static/icons/06006217.png b/static/icons/06006217.png deleted file mode 100755 index cc425756..00000000 Binary files a/static/icons/06006217.png and /dev/null differ diff --git a/static/icons/06006218.png b/static/icons/06006218.png deleted file mode 100755 index c1a464b9..00000000 Binary files a/static/icons/06006218.png and /dev/null differ diff --git a/static/icons/06006219.png b/static/icons/06006219.png deleted file mode 100755 index 223b03f6..00000000 Binary files a/static/icons/06006219.png and /dev/null differ diff --git a/static/icons/0600621A.png b/static/icons/0600621A.png deleted file mode 100755 index 25229795..00000000 Binary files a/static/icons/0600621A.png and /dev/null differ diff --git a/static/icons/0600621C.png b/static/icons/0600621C.png deleted file mode 100755 index 21b1ccf9..00000000 Binary files a/static/icons/0600621C.png and /dev/null differ diff --git a/static/icons/0600621D.png b/static/icons/0600621D.png deleted file mode 100755 index fb3666c3..00000000 Binary files a/static/icons/0600621D.png and /dev/null differ diff --git a/static/icons/0600621E.png b/static/icons/0600621E.png deleted file mode 100755 index b5f6790b..00000000 Binary files a/static/icons/0600621E.png and /dev/null differ diff --git a/static/icons/06006220.png b/static/icons/06006220.png deleted file mode 100755 index b0fb510e..00000000 Binary files a/static/icons/06006220.png and /dev/null differ diff --git a/static/icons/06006221.png b/static/icons/06006221.png deleted file mode 100755 index 042b3ffd..00000000 Binary files a/static/icons/06006221.png and /dev/null differ diff --git a/static/icons/06006222.png b/static/icons/06006222.png deleted file mode 100755 index 54971cc8..00000000 Binary files a/static/icons/06006222.png and /dev/null differ diff --git a/static/icons/06006223.png b/static/icons/06006223.png deleted file mode 100755 index dd8b1e55..00000000 Binary files a/static/icons/06006223.png and /dev/null differ diff --git a/static/icons/06006224.png b/static/icons/06006224.png deleted file mode 100755 index fee681cd..00000000 Binary files a/static/icons/06006224.png and /dev/null differ diff --git a/static/icons/06006225.png b/static/icons/06006225.png deleted file mode 100755 index bb9a28bc..00000000 Binary files a/static/icons/06006225.png and /dev/null differ diff --git a/static/icons/06006226.png b/static/icons/06006226.png deleted file mode 100755 index 8f53b5d7..00000000 Binary files a/static/icons/06006226.png and /dev/null differ diff --git a/static/icons/06006227.png b/static/icons/06006227.png deleted file mode 100755 index 53bfa438..00000000 Binary files a/static/icons/06006227.png and /dev/null differ diff --git a/static/icons/06006228.png b/static/icons/06006228.png deleted file mode 100755 index eda408dc..00000000 Binary files a/static/icons/06006228.png and /dev/null differ diff --git a/static/icons/06006229.png b/static/icons/06006229.png deleted file mode 100755 index 67489de1..00000000 Binary files a/static/icons/06006229.png and /dev/null differ diff --git a/static/icons/0600622A.png b/static/icons/0600622A.png deleted file mode 100755 index 73c73a68..00000000 Binary files a/static/icons/0600622A.png and /dev/null differ diff --git a/static/icons/0600622B.png b/static/icons/0600622B.png deleted file mode 100755 index 5cad55df..00000000 Binary files a/static/icons/0600622B.png and /dev/null differ diff --git a/static/icons/0600622C.png b/static/icons/0600622C.png deleted file mode 100755 index 663c9a5c..00000000 Binary files a/static/icons/0600622C.png and /dev/null differ diff --git a/static/icons/0600622D.png b/static/icons/0600622D.png deleted file mode 100755 index d0d40c18..00000000 Binary files a/static/icons/0600622D.png and /dev/null differ diff --git a/static/icons/0600622E.png b/static/icons/0600622E.png deleted file mode 100755 index 509a5344..00000000 Binary files a/static/icons/0600622E.png and /dev/null differ diff --git a/static/icons/0600622F.png b/static/icons/0600622F.png deleted file mode 100755 index 459373fb..00000000 Binary files a/static/icons/0600622F.png and /dev/null differ diff --git a/static/icons/06006230.png b/static/icons/06006230.png deleted file mode 100755 index 0aebead2..00000000 Binary files a/static/icons/06006230.png and /dev/null differ diff --git a/static/icons/06006231.png b/static/icons/06006231.png deleted file mode 100755 index b66ec6f0..00000000 Binary files a/static/icons/06006231.png and /dev/null differ diff --git a/static/icons/06006232.png b/static/icons/06006232.png deleted file mode 100755 index e7216f3a..00000000 Binary files a/static/icons/06006232.png and /dev/null differ diff --git a/static/icons/06006233.png b/static/icons/06006233.png deleted file mode 100755 index 91a7eac1..00000000 Binary files a/static/icons/06006233.png and /dev/null differ diff --git a/static/icons/06006234.png b/static/icons/06006234.png deleted file mode 100755 index 45ddb672..00000000 Binary files a/static/icons/06006234.png and /dev/null differ diff --git a/static/icons/06006235.png b/static/icons/06006235.png deleted file mode 100755 index 35f8f4d8..00000000 Binary files a/static/icons/06006235.png and /dev/null differ diff --git a/static/icons/06006236.png b/static/icons/06006236.png deleted file mode 100755 index a6cbf89d..00000000 Binary files a/static/icons/06006236.png and /dev/null differ diff --git a/static/icons/06006237.png b/static/icons/06006237.png deleted file mode 100755 index 37bf73cc..00000000 Binary files a/static/icons/06006237.png and /dev/null differ diff --git a/static/icons/06006238.png b/static/icons/06006238.png deleted file mode 100755 index e8ab5dcb..00000000 Binary files a/static/icons/06006238.png and /dev/null differ diff --git a/static/icons/06006239.png b/static/icons/06006239.png deleted file mode 100755 index 696f67ce..00000000 Binary files a/static/icons/06006239.png and /dev/null differ diff --git a/static/icons/0600623A.png b/static/icons/0600623A.png deleted file mode 100755 index ce2fcce5..00000000 Binary files a/static/icons/0600623A.png and /dev/null differ diff --git a/static/icons/0600623B.png b/static/icons/0600623B.png deleted file mode 100755 index 7266ac8c..00000000 Binary files a/static/icons/0600623B.png and /dev/null differ diff --git a/static/icons/0600623C.png b/static/icons/0600623C.png deleted file mode 100755 index bac73994..00000000 Binary files a/static/icons/0600623C.png and /dev/null differ diff --git a/static/icons/0600623D.png b/static/icons/0600623D.png deleted file mode 100755 index c25d0462..00000000 Binary files a/static/icons/0600623D.png and /dev/null differ diff --git a/static/icons/0600623E.png b/static/icons/0600623E.png deleted file mode 100755 index e51c34d8..00000000 Binary files a/static/icons/0600623E.png and /dev/null differ diff --git a/static/icons/0600623F.png b/static/icons/0600623F.png deleted file mode 100755 index fd5c567e..00000000 Binary files a/static/icons/0600623F.png and /dev/null differ diff --git a/static/icons/06006240.png b/static/icons/06006240.png deleted file mode 100755 index 46258736..00000000 Binary files a/static/icons/06006240.png and /dev/null differ diff --git a/static/icons/06006241.png b/static/icons/06006241.png deleted file mode 100755 index 7b2df452..00000000 Binary files a/static/icons/06006241.png and /dev/null differ diff --git a/static/icons/06006242.png b/static/icons/06006242.png deleted file mode 100755 index 12755ba6..00000000 Binary files a/static/icons/06006242.png and /dev/null differ diff --git a/static/icons/06006244.png b/static/icons/06006244.png deleted file mode 100755 index c8aa6c16..00000000 Binary files a/static/icons/06006244.png and /dev/null differ diff --git a/static/icons/06006245.png b/static/icons/06006245.png deleted file mode 100755 index 4fd13d9f..00000000 Binary files a/static/icons/06006245.png and /dev/null differ diff --git a/static/icons/06006246.png b/static/icons/06006246.png deleted file mode 100755 index 95e3085b..00000000 Binary files a/static/icons/06006246.png and /dev/null differ diff --git a/static/icons/06006247.png b/static/icons/06006247.png deleted file mode 100755 index 9d971050..00000000 Binary files a/static/icons/06006247.png and /dev/null differ diff --git a/static/icons/06006248.png b/static/icons/06006248.png deleted file mode 100755 index 4fd13d9f..00000000 Binary files a/static/icons/06006248.png and /dev/null differ diff --git a/static/icons/06006249.png b/static/icons/06006249.png deleted file mode 100755 index 369d1e63..00000000 Binary files a/static/icons/06006249.png and /dev/null differ diff --git a/static/icons/0600624A.png b/static/icons/0600624A.png deleted file mode 100755 index 07b70eb2..00000000 Binary files a/static/icons/0600624A.png and /dev/null differ diff --git a/static/icons/0600624B.png b/static/icons/0600624B.png deleted file mode 100755 index 0e95729c..00000000 Binary files a/static/icons/0600624B.png and /dev/null differ diff --git a/static/icons/0600624C.png b/static/icons/0600624C.png deleted file mode 100755 index 187e305e..00000000 Binary files a/static/icons/0600624C.png and /dev/null differ diff --git a/static/icons/0600624F.png b/static/icons/0600624F.png deleted file mode 100755 index 928edc27..00000000 Binary files a/static/icons/0600624F.png and /dev/null differ diff --git a/static/icons/06006250.png b/static/icons/06006250.png deleted file mode 100755 index 87407575..00000000 Binary files a/static/icons/06006250.png and /dev/null differ diff --git a/static/icons/06006251.png b/static/icons/06006251.png deleted file mode 100755 index 6e9b110e..00000000 Binary files a/static/icons/06006251.png and /dev/null differ diff --git a/static/icons/06006252.png b/static/icons/06006252.png deleted file mode 100755 index dd3e6bad..00000000 Binary files a/static/icons/06006252.png and /dev/null differ diff --git a/static/icons/06006253.png b/static/icons/06006253.png deleted file mode 100755 index be9bfd73..00000000 Binary files a/static/icons/06006253.png and /dev/null differ diff --git a/static/icons/06006254.png b/static/icons/06006254.png deleted file mode 100755 index 63f2e4d9..00000000 Binary files a/static/icons/06006254.png and /dev/null differ diff --git a/static/icons/06006255.png b/static/icons/06006255.png deleted file mode 100755 index 9a6c9614..00000000 Binary files a/static/icons/06006255.png and /dev/null differ diff --git a/static/icons/06006256.png b/static/icons/06006256.png deleted file mode 100755 index 65aefcc1..00000000 Binary files a/static/icons/06006256.png and /dev/null differ diff --git a/static/icons/06006257.png b/static/icons/06006257.png deleted file mode 100755 index 81b05ebd..00000000 Binary files a/static/icons/06006257.png and /dev/null differ diff --git a/static/icons/06006258.png b/static/icons/06006258.png deleted file mode 100755 index 97255a3a..00000000 Binary files a/static/icons/06006258.png and /dev/null differ diff --git a/static/icons/06006259.png b/static/icons/06006259.png deleted file mode 100755 index 2a57a62e..00000000 Binary files a/static/icons/06006259.png and /dev/null differ diff --git a/static/icons/0600625A.png b/static/icons/0600625A.png deleted file mode 100755 index 84121ac4..00000000 Binary files a/static/icons/0600625A.png and /dev/null differ diff --git a/static/icons/0600625B.png b/static/icons/0600625B.png deleted file mode 100755 index 63f2e4d9..00000000 Binary files a/static/icons/0600625B.png and /dev/null differ diff --git a/static/icons/0600625C.png b/static/icons/0600625C.png deleted file mode 100755 index cd1afa13..00000000 Binary files a/static/icons/0600625C.png and /dev/null differ diff --git a/static/icons/0600625D.png b/static/icons/0600625D.png deleted file mode 100755 index 21e16027..00000000 Binary files a/static/icons/0600625D.png and /dev/null differ diff --git a/static/icons/0600625E.png b/static/icons/0600625E.png deleted file mode 100755 index 608df057..00000000 Binary files a/static/icons/0600625E.png and /dev/null differ diff --git a/static/icons/0600625F.png b/static/icons/0600625F.png deleted file mode 100755 index 39ee023d..00000000 Binary files a/static/icons/0600625F.png and /dev/null differ diff --git a/static/icons/06006260.png b/static/icons/06006260.png deleted file mode 100755 index 2850f97f..00000000 Binary files a/static/icons/06006260.png and /dev/null differ diff --git a/static/icons/06006262.png b/static/icons/06006262.png deleted file mode 100755 index 5ecfee76..00000000 Binary files a/static/icons/06006262.png and /dev/null differ diff --git a/static/icons/06006263.png b/static/icons/06006263.png deleted file mode 100755 index 5d93ddd2..00000000 Binary files a/static/icons/06006263.png and /dev/null differ diff --git a/static/icons/06006264.png b/static/icons/06006264.png deleted file mode 100755 index 57a33764..00000000 Binary files a/static/icons/06006264.png and /dev/null differ diff --git a/static/icons/06006265.png b/static/icons/06006265.png deleted file mode 100755 index a5fb53c1..00000000 Binary files a/static/icons/06006265.png and /dev/null differ diff --git a/static/icons/06006266.png b/static/icons/06006266.png deleted file mode 100755 index 7d76c67f..00000000 Binary files a/static/icons/06006266.png and /dev/null differ diff --git a/static/icons/06006267.png b/static/icons/06006267.png deleted file mode 100755 index 1f82db76..00000000 Binary files a/static/icons/06006267.png and /dev/null differ diff --git a/static/icons/06006268.png b/static/icons/06006268.png deleted file mode 100755 index 84842b9a..00000000 Binary files a/static/icons/06006268.png and /dev/null differ diff --git a/static/icons/06006269.png b/static/icons/06006269.png deleted file mode 100755 index a156fe59..00000000 Binary files a/static/icons/06006269.png and /dev/null differ diff --git a/static/icons/0600626A.png b/static/icons/0600626A.png deleted file mode 100755 index 33c37439..00000000 Binary files a/static/icons/0600626A.png and /dev/null differ diff --git a/static/icons/0600626B.png b/static/icons/0600626B.png deleted file mode 100755 index 04a86473..00000000 Binary files a/static/icons/0600626B.png and /dev/null differ diff --git a/static/icons/0600626C.png b/static/icons/0600626C.png deleted file mode 100755 index 611404b6..00000000 Binary files a/static/icons/0600626C.png and /dev/null differ diff --git a/static/icons/0600626D.png b/static/icons/0600626D.png deleted file mode 100755 index 2dee9de1..00000000 Binary files a/static/icons/0600626D.png and /dev/null differ diff --git a/static/icons/0600626E.png b/static/icons/0600626E.png deleted file mode 100755 index 68514a85..00000000 Binary files a/static/icons/0600626E.png and /dev/null differ diff --git a/static/icons/0600626F.png b/static/icons/0600626F.png deleted file mode 100755 index 2e9c5194..00000000 Binary files a/static/icons/0600626F.png and /dev/null differ diff --git a/static/icons/06006270.png b/static/icons/06006270.png deleted file mode 100755 index 1533e2a3..00000000 Binary files a/static/icons/06006270.png and /dev/null differ diff --git a/static/icons/06006271.png b/static/icons/06006271.png deleted file mode 100755 index bf349153..00000000 Binary files a/static/icons/06006271.png and /dev/null differ diff --git a/static/icons/06006272.png b/static/icons/06006272.png deleted file mode 100755 index c7c05a2e..00000000 Binary files a/static/icons/06006272.png and /dev/null differ diff --git a/static/icons/06006273.png b/static/icons/06006273.png deleted file mode 100755 index 6b24e319..00000000 Binary files a/static/icons/06006273.png and /dev/null differ diff --git a/static/icons/06006274.png b/static/icons/06006274.png deleted file mode 100755 index 6da75b33..00000000 Binary files a/static/icons/06006274.png and /dev/null differ diff --git a/static/icons/06006275.png b/static/icons/06006275.png deleted file mode 100755 index 873ebb20..00000000 Binary files a/static/icons/06006275.png and /dev/null differ diff --git a/static/icons/06006276.png b/static/icons/06006276.png deleted file mode 100755 index d4696b8a..00000000 Binary files a/static/icons/06006276.png and /dev/null differ diff --git a/static/icons/06006277.png b/static/icons/06006277.png deleted file mode 100755 index cab25922..00000000 Binary files a/static/icons/06006277.png and /dev/null differ diff --git a/static/icons/06006278.png b/static/icons/06006278.png deleted file mode 100755 index 363122ed..00000000 Binary files a/static/icons/06006278.png and /dev/null differ diff --git a/static/icons/06006279.png b/static/icons/06006279.png deleted file mode 100755 index fd4b3c9a..00000000 Binary files a/static/icons/06006279.png and /dev/null differ diff --git a/static/icons/0600627A.png b/static/icons/0600627A.png deleted file mode 100755 index 8ec3daf9..00000000 Binary files a/static/icons/0600627A.png and /dev/null differ diff --git a/static/icons/0600627B.png b/static/icons/0600627B.png deleted file mode 100755 index b075fd70..00000000 Binary files a/static/icons/0600627B.png and /dev/null differ diff --git a/static/icons/0600627C.png b/static/icons/0600627C.png deleted file mode 100755 index b075fd70..00000000 Binary files a/static/icons/0600627C.png and /dev/null differ diff --git a/static/icons/0600627D.png b/static/icons/0600627D.png deleted file mode 100755 index b075fd70..00000000 Binary files a/static/icons/0600627D.png and /dev/null differ diff --git a/static/icons/0600627E.png b/static/icons/0600627E.png deleted file mode 100755 index b075fd70..00000000 Binary files a/static/icons/0600627E.png and /dev/null differ diff --git a/static/icons/0600627F.png b/static/icons/0600627F.png deleted file mode 100755 index 91bdcead..00000000 Binary files a/static/icons/0600627F.png and /dev/null differ diff --git a/static/icons/06006280.png b/static/icons/06006280.png deleted file mode 100755 index 91bdcead..00000000 Binary files a/static/icons/06006280.png and /dev/null differ diff --git a/static/icons/06006281.png b/static/icons/06006281.png deleted file mode 100755 index 91bdcead..00000000 Binary files a/static/icons/06006281.png and /dev/null differ diff --git a/static/icons/06006282.png b/static/icons/06006282.png deleted file mode 100755 index 91bdcead..00000000 Binary files a/static/icons/06006282.png and /dev/null differ diff --git a/static/icons/06006283.png b/static/icons/06006283.png deleted file mode 100755 index 55fe928c..00000000 Binary files a/static/icons/06006283.png and /dev/null differ diff --git a/static/icons/06006284.png b/static/icons/06006284.png deleted file mode 100755 index 994e6fa1..00000000 Binary files a/static/icons/06006284.png and /dev/null differ diff --git a/static/icons/06006285.png b/static/icons/06006285.png deleted file mode 100755 index 862ce054..00000000 Binary files a/static/icons/06006285.png and /dev/null differ diff --git a/static/icons/06006286.png b/static/icons/06006286.png deleted file mode 100755 index 909f4cb3..00000000 Binary files a/static/icons/06006286.png and /dev/null differ diff --git a/static/icons/06006287.png b/static/icons/06006287.png deleted file mode 100755 index 56b78056..00000000 Binary files a/static/icons/06006287.png and /dev/null differ diff --git a/static/icons/06006288.png b/static/icons/06006288.png deleted file mode 100755 index 93d23b0b..00000000 Binary files a/static/icons/06006288.png and /dev/null differ diff --git a/static/icons/06006289.png b/static/icons/06006289.png deleted file mode 100755 index 43dc926c..00000000 Binary files a/static/icons/06006289.png and /dev/null differ diff --git a/static/icons/0600628A.png b/static/icons/0600628A.png deleted file mode 100755 index 8b29294f..00000000 Binary files a/static/icons/0600628A.png and /dev/null differ diff --git a/static/icons/0600628B.png b/static/icons/0600628B.png deleted file mode 100755 index 717bd98c..00000000 Binary files a/static/icons/0600628B.png and /dev/null differ diff --git a/static/icons/0600628C.png b/static/icons/0600628C.png deleted file mode 100755 index fbfc065b..00000000 Binary files a/static/icons/0600628C.png and /dev/null differ diff --git a/static/icons/0600628D.png b/static/icons/0600628D.png deleted file mode 100755 index cbb4112b..00000000 Binary files a/static/icons/0600628D.png and /dev/null differ diff --git a/static/icons/0600628E.png b/static/icons/0600628E.png deleted file mode 100755 index cb71dabc..00000000 Binary files a/static/icons/0600628E.png and /dev/null differ diff --git a/static/icons/06006290.png b/static/icons/06006290.png deleted file mode 100755 index c07804e4..00000000 Binary files a/static/icons/06006290.png and /dev/null differ diff --git a/static/icons/06006291.png b/static/icons/06006291.png deleted file mode 100755 index 30bdef72..00000000 Binary files a/static/icons/06006291.png and /dev/null differ diff --git a/static/icons/06006292.png b/static/icons/06006292.png deleted file mode 100755 index 890648cc..00000000 Binary files a/static/icons/06006292.png and /dev/null differ diff --git a/static/icons/06006293.png b/static/icons/06006293.png deleted file mode 100755 index 98823274..00000000 Binary files a/static/icons/06006293.png and /dev/null differ diff --git a/static/icons/06006294.png b/static/icons/06006294.png deleted file mode 100755 index 890648cc..00000000 Binary files a/static/icons/06006294.png and /dev/null differ diff --git a/static/icons/06006295.png b/static/icons/06006295.png deleted file mode 100755 index 98823274..00000000 Binary files a/static/icons/06006295.png and /dev/null differ diff --git a/static/icons/06006296.png b/static/icons/06006296.png deleted file mode 100755 index 47d5cf2c..00000000 Binary files a/static/icons/06006296.png and /dev/null differ diff --git a/static/icons/06006297.png b/static/icons/06006297.png deleted file mode 100755 index c1e38e9b..00000000 Binary files a/static/icons/06006297.png and /dev/null differ diff --git a/static/icons/06006298.png b/static/icons/06006298.png deleted file mode 100755 index 33c55710..00000000 Binary files a/static/icons/06006298.png and /dev/null differ diff --git a/static/icons/06006299.png b/static/icons/06006299.png deleted file mode 100755 index 07b96464..00000000 Binary files a/static/icons/06006299.png and /dev/null differ diff --git a/static/icons/0600629A.png b/static/icons/0600629A.png deleted file mode 100755 index 72a07b97..00000000 Binary files a/static/icons/0600629A.png and /dev/null differ diff --git a/static/icons/0600629B.png b/static/icons/0600629B.png deleted file mode 100755 index 244f9705..00000000 Binary files a/static/icons/0600629B.png and /dev/null differ diff --git a/static/icons/0600629C.png b/static/icons/0600629C.png deleted file mode 100755 index cbcbe01a..00000000 Binary files a/static/icons/0600629C.png and /dev/null differ diff --git a/static/icons/0600629D.png b/static/icons/0600629D.png deleted file mode 100755 index 2588518c..00000000 Binary files a/static/icons/0600629D.png and /dev/null differ diff --git a/static/icons/0600629E.png b/static/icons/0600629E.png deleted file mode 100755 index 80cbbdb0..00000000 Binary files a/static/icons/0600629E.png and /dev/null differ diff --git a/static/icons/0600629F.png b/static/icons/0600629F.png deleted file mode 100755 index b015bd4c..00000000 Binary files a/static/icons/0600629F.png and /dev/null differ diff --git a/static/icons/060062A5.png b/static/icons/060062A5.png deleted file mode 100755 index 2c410ded..00000000 Binary files a/static/icons/060062A5.png and /dev/null differ diff --git a/static/icons/060062A7.png b/static/icons/060062A7.png deleted file mode 100755 index 3ca8df87..00000000 Binary files a/static/icons/060062A7.png and /dev/null differ diff --git a/static/icons/060062A8.png b/static/icons/060062A8.png deleted file mode 100755 index a20041b2..00000000 Binary files a/static/icons/060062A8.png and /dev/null differ diff --git a/static/icons/060062A9.png b/static/icons/060062A9.png deleted file mode 100755 index e6cdd2bb..00000000 Binary files a/static/icons/060062A9.png and /dev/null differ diff --git a/static/icons/060062AA.png b/static/icons/060062AA.png deleted file mode 100755 index 5bbb97ec..00000000 Binary files a/static/icons/060062AA.png and /dev/null differ diff --git a/static/icons/060062AB.png b/static/icons/060062AB.png deleted file mode 100755 index 0d05b3aa..00000000 Binary files a/static/icons/060062AB.png and /dev/null differ diff --git a/static/icons/060062AC.png b/static/icons/060062AC.png deleted file mode 100755 index 55562053..00000000 Binary files a/static/icons/060062AC.png and /dev/null differ diff --git a/static/icons/060062AD.png b/static/icons/060062AD.png deleted file mode 100755 index e534803e..00000000 Binary files a/static/icons/060062AD.png and /dev/null differ diff --git a/static/icons/060062AE.png b/static/icons/060062AE.png deleted file mode 100755 index 924c7feb..00000000 Binary files a/static/icons/060062AE.png and /dev/null differ diff --git a/static/icons/060062AF.png b/static/icons/060062AF.png deleted file mode 100755 index a6fdbd41..00000000 Binary files a/static/icons/060062AF.png and /dev/null differ diff --git a/static/icons/060062B0.png b/static/icons/060062B0.png deleted file mode 100755 index bffc57b1..00000000 Binary files a/static/icons/060062B0.png and /dev/null differ diff --git a/static/icons/060062B1.png b/static/icons/060062B1.png deleted file mode 100755 index 1386cc09..00000000 Binary files a/static/icons/060062B1.png and /dev/null differ diff --git a/static/icons/060062B2.png b/static/icons/060062B2.png deleted file mode 100755 index cae054af..00000000 Binary files a/static/icons/060062B2.png and /dev/null differ diff --git a/static/icons/060062B3.png b/static/icons/060062B3.png deleted file mode 100755 index faa829c9..00000000 Binary files a/static/icons/060062B3.png and /dev/null differ diff --git a/static/icons/060062B4.png b/static/icons/060062B4.png deleted file mode 100755 index c18933ac..00000000 Binary files a/static/icons/060062B4.png and /dev/null differ diff --git a/static/icons/060062B5.png b/static/icons/060062B5.png deleted file mode 100755 index c46d70f8..00000000 Binary files a/static/icons/060062B5.png and /dev/null differ diff --git a/static/icons/060062B6.png b/static/icons/060062B6.png deleted file mode 100755 index 27466d16..00000000 Binary files a/static/icons/060062B6.png and /dev/null differ diff --git a/static/icons/060062B7.png b/static/icons/060062B7.png deleted file mode 100755 index a5508d2c..00000000 Binary files a/static/icons/060062B7.png and /dev/null differ diff --git a/static/icons/060062B8.png b/static/icons/060062B8.png deleted file mode 100755 index 32755a4b..00000000 Binary files a/static/icons/060062B8.png and /dev/null differ diff --git a/static/icons/060062B9.png b/static/icons/060062B9.png deleted file mode 100755 index 0c988387..00000000 Binary files a/static/icons/060062B9.png and /dev/null differ diff --git a/static/icons/060062BA.png b/static/icons/060062BA.png deleted file mode 100755 index 7485aecd..00000000 Binary files a/static/icons/060062BA.png and /dev/null differ diff --git a/static/icons/060062BB.png b/static/icons/060062BB.png deleted file mode 100755 index a3a8d4a1..00000000 Binary files a/static/icons/060062BB.png and /dev/null differ diff --git a/static/icons/060062BC.png b/static/icons/060062BC.png deleted file mode 100755 index 7ae8f9b2..00000000 Binary files a/static/icons/060062BC.png and /dev/null differ diff --git a/static/icons/060062BD.png b/static/icons/060062BD.png deleted file mode 100755 index 3d737a8c..00000000 Binary files a/static/icons/060062BD.png and /dev/null differ diff --git a/static/icons/060062BE.png b/static/icons/060062BE.png deleted file mode 100755 index faf6c0ad..00000000 Binary files a/static/icons/060062BE.png and /dev/null differ diff --git a/static/icons/060062BF.png b/static/icons/060062BF.png deleted file mode 100755 index 8cce2680..00000000 Binary files a/static/icons/060062BF.png and /dev/null differ diff --git a/static/icons/060062C0.png b/static/icons/060062C0.png deleted file mode 100755 index 46fc8b00..00000000 Binary files a/static/icons/060062C0.png and /dev/null differ diff --git a/static/icons/060062C1.png b/static/icons/060062C1.png deleted file mode 100755 index 39a02dd2..00000000 Binary files a/static/icons/060062C1.png and /dev/null differ diff --git a/static/icons/060062C4.png b/static/icons/060062C4.png deleted file mode 100755 index 933a0e67..00000000 Binary files a/static/icons/060062C4.png and /dev/null differ diff --git a/static/icons/060062C5.png b/static/icons/060062C5.png deleted file mode 100755 index d0c40927..00000000 Binary files a/static/icons/060062C5.png and /dev/null differ diff --git a/static/icons/060062C6.png b/static/icons/060062C6.png deleted file mode 100755 index 1701baab..00000000 Binary files a/static/icons/060062C6.png and /dev/null differ diff --git a/static/icons/060062C7.png b/static/icons/060062C7.png deleted file mode 100755 index c68b53d6..00000000 Binary files a/static/icons/060062C7.png and /dev/null differ diff --git a/static/icons/060062C8.png b/static/icons/060062C8.png deleted file mode 100755 index 0bfb4633..00000000 Binary files a/static/icons/060062C8.png and /dev/null differ diff --git a/static/icons/060062C9.png b/static/icons/060062C9.png deleted file mode 100755 index d6310b26..00000000 Binary files a/static/icons/060062C9.png and /dev/null differ diff --git a/static/icons/060062CE.png b/static/icons/060062CE.png deleted file mode 100755 index 437d4fd7..00000000 Binary files a/static/icons/060062CE.png and /dev/null differ diff --git a/static/icons/060062CF.png b/static/icons/060062CF.png deleted file mode 100755 index debf2509..00000000 Binary files a/static/icons/060062CF.png and /dev/null differ diff --git a/static/icons/060062D0.png b/static/icons/060062D0.png deleted file mode 100755 index eca72ac4..00000000 Binary files a/static/icons/060062D0.png and /dev/null differ diff --git a/static/icons/060062D1.png b/static/icons/060062D1.png deleted file mode 100755 index e240ea81..00000000 Binary files a/static/icons/060062D1.png and /dev/null differ diff --git a/static/icons/060062D8.png b/static/icons/060062D8.png deleted file mode 100755 index 456e9530..00000000 Binary files a/static/icons/060062D8.png and /dev/null differ diff --git a/static/icons/060062D9.png b/static/icons/060062D9.png deleted file mode 100755 index b76af9ca..00000000 Binary files a/static/icons/060062D9.png and /dev/null differ diff --git a/static/icons/060062DA.png b/static/icons/060062DA.png deleted file mode 100755 index 115c50e4..00000000 Binary files a/static/icons/060062DA.png and /dev/null differ diff --git a/static/icons/060062DB.png b/static/icons/060062DB.png deleted file mode 100755 index 7aed737f..00000000 Binary files a/static/icons/060062DB.png and /dev/null differ diff --git a/static/icons/060062DC.png b/static/icons/060062DC.png deleted file mode 100755 index 9d025142..00000000 Binary files a/static/icons/060062DC.png and /dev/null differ diff --git a/static/icons/060062DD.png b/static/icons/060062DD.png deleted file mode 100755 index ecfc8f0e..00000000 Binary files a/static/icons/060062DD.png and /dev/null differ diff --git a/static/icons/060062DE.png b/static/icons/060062DE.png deleted file mode 100755 index 41a3c873..00000000 Binary files a/static/icons/060062DE.png and /dev/null differ diff --git a/static/icons/060062DF.png b/static/icons/060062DF.png deleted file mode 100755 index 9f6effae..00000000 Binary files a/static/icons/060062DF.png and /dev/null differ diff --git a/static/icons/060062E0.png b/static/icons/060062E0.png deleted file mode 100755 index 06c83ec6..00000000 Binary files a/static/icons/060062E0.png and /dev/null differ diff --git a/static/icons/060062E1.png b/static/icons/060062E1.png deleted file mode 100755 index 7bce66e6..00000000 Binary files a/static/icons/060062E1.png and /dev/null differ diff --git a/static/icons/060062E2.png b/static/icons/060062E2.png deleted file mode 100755 index a1c9672e..00000000 Binary files a/static/icons/060062E2.png and /dev/null differ diff --git a/static/icons/060062E3.png b/static/icons/060062E3.png deleted file mode 100755 index a3775cff..00000000 Binary files a/static/icons/060062E3.png and /dev/null differ diff --git a/static/icons/060062E4.png b/static/icons/060062E4.png deleted file mode 100755 index 3a75fbd8..00000000 Binary files a/static/icons/060062E4.png and /dev/null differ diff --git a/static/icons/060062E5.png b/static/icons/060062E5.png deleted file mode 100755 index 64e6aeb4..00000000 Binary files a/static/icons/060062E5.png and /dev/null differ diff --git a/static/icons/060062E6.png b/static/icons/060062E6.png deleted file mode 100755 index 331ccac8..00000000 Binary files a/static/icons/060062E6.png and /dev/null differ diff --git a/static/icons/060062E7.png b/static/icons/060062E7.png deleted file mode 100755 index 1cfe1b39..00000000 Binary files a/static/icons/060062E7.png and /dev/null differ diff --git a/static/icons/060062E8.png b/static/icons/060062E8.png deleted file mode 100755 index 5c0d6d67..00000000 Binary files a/static/icons/060062E8.png and /dev/null differ diff --git a/static/icons/060062E9.png b/static/icons/060062E9.png deleted file mode 100755 index acb57c59..00000000 Binary files a/static/icons/060062E9.png and /dev/null differ diff --git a/static/icons/060062EA.png b/static/icons/060062EA.png deleted file mode 100755 index 0e83838a..00000000 Binary files a/static/icons/060062EA.png and /dev/null differ diff --git a/static/icons/060062EB.png b/static/icons/060062EB.png deleted file mode 100755 index 741efb67..00000000 Binary files a/static/icons/060062EB.png and /dev/null differ diff --git a/static/icons/060062EC.png b/static/icons/060062EC.png deleted file mode 100755 index c82093ee..00000000 Binary files a/static/icons/060062EC.png and /dev/null differ diff --git a/static/icons/060062ED.png b/static/icons/060062ED.png deleted file mode 100755 index 7c54742c..00000000 Binary files a/static/icons/060062ED.png and /dev/null differ diff --git a/static/icons/060062EE.png b/static/icons/060062EE.png deleted file mode 100755 index 116289c4..00000000 Binary files a/static/icons/060062EE.png and /dev/null differ diff --git a/static/icons/060062EF.png b/static/icons/060062EF.png deleted file mode 100755 index 33e0068a..00000000 Binary files a/static/icons/060062EF.png and /dev/null differ diff --git a/static/icons/060062F0.png b/static/icons/060062F0.png deleted file mode 100755 index 1b0777cc..00000000 Binary files a/static/icons/060062F0.png and /dev/null differ diff --git a/static/icons/060062F1.png b/static/icons/060062F1.png deleted file mode 100755 index b69b20df..00000000 Binary files a/static/icons/060062F1.png and /dev/null differ diff --git a/static/icons/060062F2.png b/static/icons/060062F2.png deleted file mode 100755 index 0c4a7146..00000000 Binary files a/static/icons/060062F2.png and /dev/null differ diff --git a/static/icons/060062F3.png b/static/icons/060062F3.png deleted file mode 100755 index 09675553..00000000 Binary files a/static/icons/060062F3.png and /dev/null differ diff --git a/static/icons/060062F4.png b/static/icons/060062F4.png deleted file mode 100755 index 1eb07eb0..00000000 Binary files a/static/icons/060062F4.png and /dev/null differ diff --git a/static/icons/060062F5.png b/static/icons/060062F5.png deleted file mode 100755 index e849a5d9..00000000 Binary files a/static/icons/060062F5.png and /dev/null differ diff --git a/static/icons/060062F6.png b/static/icons/060062F6.png deleted file mode 100755 index 56e7cb0f..00000000 Binary files a/static/icons/060062F6.png and /dev/null differ diff --git a/static/icons/060062F7.png b/static/icons/060062F7.png deleted file mode 100755 index 83f19b68..00000000 Binary files a/static/icons/060062F7.png and /dev/null differ diff --git a/static/icons/060062F8.png b/static/icons/060062F8.png deleted file mode 100755 index b1cc9027..00000000 Binary files a/static/icons/060062F8.png and /dev/null differ diff --git a/static/icons/060062F9.png b/static/icons/060062F9.png deleted file mode 100755 index c5cc1b30..00000000 Binary files a/static/icons/060062F9.png and /dev/null differ diff --git a/static/icons/060062FA.png b/static/icons/060062FA.png deleted file mode 100755 index 35deeddd..00000000 Binary files a/static/icons/060062FA.png and /dev/null differ diff --git a/static/icons/060062FB.png b/static/icons/060062FB.png deleted file mode 100755 index 05d10708..00000000 Binary files a/static/icons/060062FB.png and /dev/null differ diff --git a/static/icons/060062FC.png b/static/icons/060062FC.png deleted file mode 100755 index 8a3f1005..00000000 Binary files a/static/icons/060062FC.png and /dev/null differ diff --git a/static/icons/060062FD.png b/static/icons/060062FD.png deleted file mode 100755 index f292ed0f..00000000 Binary files a/static/icons/060062FD.png and /dev/null differ diff --git a/static/icons/060062FE.png b/static/icons/060062FE.png deleted file mode 100755 index 6cad7ca1..00000000 Binary files a/static/icons/060062FE.png and /dev/null differ diff --git a/static/icons/060062FF.png b/static/icons/060062FF.png deleted file mode 100755 index 2a14b513..00000000 Binary files a/static/icons/060062FF.png and /dev/null differ diff --git a/static/icons/06006300.png b/static/icons/06006300.png deleted file mode 100755 index cfddd8ab..00000000 Binary files a/static/icons/06006300.png and /dev/null differ diff --git a/static/icons/06006301.png b/static/icons/06006301.png deleted file mode 100755 index 6ac96413..00000000 Binary files a/static/icons/06006301.png and /dev/null differ diff --git a/static/icons/06006302.png b/static/icons/06006302.png deleted file mode 100755 index a46a7e48..00000000 Binary files a/static/icons/06006302.png and /dev/null differ diff --git a/static/icons/06006303.png b/static/icons/06006303.png deleted file mode 100755 index bfca2cd8..00000000 Binary files a/static/icons/06006303.png and /dev/null differ diff --git a/static/icons/06006306.png b/static/icons/06006306.png deleted file mode 100755 index e8fe41f6..00000000 Binary files a/static/icons/06006306.png and /dev/null differ diff --git a/static/icons/06006307.png b/static/icons/06006307.png deleted file mode 100755 index 6bed790a..00000000 Binary files a/static/icons/06006307.png and /dev/null differ diff --git a/static/icons/06006308.png b/static/icons/06006308.png deleted file mode 100755 index 87d8fb65..00000000 Binary files a/static/icons/06006308.png and /dev/null differ diff --git a/static/icons/06006309.png b/static/icons/06006309.png deleted file mode 100755 index c7d166ec..00000000 Binary files a/static/icons/06006309.png and /dev/null differ diff --git a/static/icons/0600630A.png b/static/icons/0600630A.png deleted file mode 100755 index 5cdf5f77..00000000 Binary files a/static/icons/0600630A.png and /dev/null differ diff --git a/static/icons/0600630B.png b/static/icons/0600630B.png deleted file mode 100755 index 70b2c6af..00000000 Binary files a/static/icons/0600630B.png and /dev/null differ diff --git a/static/icons/0600630C.png b/static/icons/0600630C.png deleted file mode 100755 index 198d73d5..00000000 Binary files a/static/icons/0600630C.png and /dev/null differ diff --git a/static/icons/0600630D.png b/static/icons/0600630D.png deleted file mode 100755 index 098feda5..00000000 Binary files a/static/icons/0600630D.png and /dev/null differ diff --git a/static/icons/0600630E.png b/static/icons/0600630E.png deleted file mode 100755 index 67ef9db8..00000000 Binary files a/static/icons/0600630E.png and /dev/null differ diff --git a/static/icons/0600630F.png b/static/icons/0600630F.png deleted file mode 100755 index 28a884c0..00000000 Binary files a/static/icons/0600630F.png and /dev/null differ diff --git a/static/icons/06006310.png b/static/icons/06006310.png deleted file mode 100755 index e46730de..00000000 Binary files a/static/icons/06006310.png and /dev/null differ diff --git a/static/icons/06006311.png b/static/icons/06006311.png deleted file mode 100755 index 14012a45..00000000 Binary files a/static/icons/06006311.png and /dev/null differ diff --git a/static/icons/06006312.png b/static/icons/06006312.png deleted file mode 100755 index 51d7d479..00000000 Binary files a/static/icons/06006312.png and /dev/null differ diff --git a/static/icons/06006313.png b/static/icons/06006313.png deleted file mode 100755 index 61d40835..00000000 Binary files a/static/icons/06006313.png and /dev/null differ diff --git a/static/icons/06006314.png b/static/icons/06006314.png deleted file mode 100755 index ccd9cb7e..00000000 Binary files a/static/icons/06006314.png and /dev/null differ diff --git a/static/icons/06006315.png b/static/icons/06006315.png deleted file mode 100755 index 44f7ab7f..00000000 Binary files a/static/icons/06006315.png and /dev/null differ diff --git a/static/icons/06006316.png b/static/icons/06006316.png deleted file mode 100755 index 43ffad4e..00000000 Binary files a/static/icons/06006316.png and /dev/null differ diff --git a/static/icons/06006317.png b/static/icons/06006317.png deleted file mode 100755 index 58497437..00000000 Binary files a/static/icons/06006317.png and /dev/null differ diff --git a/static/icons/06006318.png b/static/icons/06006318.png deleted file mode 100755 index 0e3e3ad2..00000000 Binary files a/static/icons/06006318.png and /dev/null differ diff --git a/static/icons/06006319.png b/static/icons/06006319.png deleted file mode 100755 index 971c0769..00000000 Binary files a/static/icons/06006319.png and /dev/null differ diff --git a/static/icons/0600631A.png b/static/icons/0600631A.png deleted file mode 100755 index b478a163..00000000 Binary files a/static/icons/0600631A.png and /dev/null differ diff --git a/static/icons/0600631B.png b/static/icons/0600631B.png deleted file mode 100755 index 6f8a1c05..00000000 Binary files a/static/icons/0600631B.png and /dev/null differ diff --git a/static/icons/0600631D.png b/static/icons/0600631D.png deleted file mode 100755 index 7fb568b8..00000000 Binary files a/static/icons/0600631D.png and /dev/null differ diff --git a/static/icons/0600631F.png b/static/icons/0600631F.png deleted file mode 100755 index 85f05cdf..00000000 Binary files a/static/icons/0600631F.png and /dev/null differ diff --git a/static/icons/06006320.png b/static/icons/06006320.png deleted file mode 100755 index 47f5d103..00000000 Binary files a/static/icons/06006320.png and /dev/null differ diff --git a/static/icons/06006321.png b/static/icons/06006321.png deleted file mode 100755 index f2974dc4..00000000 Binary files a/static/icons/06006321.png and /dev/null differ diff --git a/static/icons/06006322.png b/static/icons/06006322.png deleted file mode 100755 index cd9d2cbf..00000000 Binary files a/static/icons/06006322.png and /dev/null differ diff --git a/static/icons/06006323.png b/static/icons/06006323.png deleted file mode 100755 index f148147e..00000000 Binary files a/static/icons/06006323.png and /dev/null differ diff --git a/static/icons/06006324.png b/static/icons/06006324.png deleted file mode 100755 index 520cbcd9..00000000 Binary files a/static/icons/06006324.png and /dev/null differ diff --git a/static/icons/060063B8.png b/static/icons/060063B8.png deleted file mode 100755 index 55992d51..00000000 Binary files a/static/icons/060063B8.png and /dev/null differ diff --git a/static/icons/060063B9.png b/static/icons/060063B9.png deleted file mode 100755 index ef444574..00000000 Binary files a/static/icons/060063B9.png and /dev/null differ diff --git a/static/icons/060063BA.png b/static/icons/060063BA.png deleted file mode 100755 index 433fe6ab..00000000 Binary files a/static/icons/060063BA.png and /dev/null differ diff --git a/static/icons/060063BC.png b/static/icons/060063BC.png deleted file mode 100755 index d2f3ae9e..00000000 Binary files a/static/icons/060063BC.png and /dev/null differ diff --git a/static/icons/060063BD.png b/static/icons/060063BD.png deleted file mode 100755 index 01ccc991..00000000 Binary files a/static/icons/060063BD.png and /dev/null differ diff --git a/static/icons/060063BF.png b/static/icons/060063BF.png deleted file mode 100755 index 736d0525..00000000 Binary files a/static/icons/060063BF.png and /dev/null differ diff --git a/static/icons/060063C0.png b/static/icons/060063C0.png deleted file mode 100755 index 5fb1bd6e..00000000 Binary files a/static/icons/060063C0.png and /dev/null differ diff --git a/static/icons/060063C1.png b/static/icons/060063C1.png deleted file mode 100755 index 966c81d0..00000000 Binary files a/static/icons/060063C1.png and /dev/null differ diff --git a/static/icons/060063C2.png b/static/icons/060063C2.png deleted file mode 100755 index 9b6792ce..00000000 Binary files a/static/icons/060063C2.png and /dev/null differ diff --git a/static/icons/060063C3.png b/static/icons/060063C3.png deleted file mode 100755 index c0efbd46..00000000 Binary files a/static/icons/060063C3.png and /dev/null differ diff --git a/static/icons/060063C4.png b/static/icons/060063C4.png deleted file mode 100755 index a6da8203..00000000 Binary files a/static/icons/060063C4.png and /dev/null differ diff --git a/static/icons/060063C5.png b/static/icons/060063C5.png deleted file mode 100755 index eb6261cd..00000000 Binary files a/static/icons/060063C5.png and /dev/null differ diff --git a/static/icons/060063C6.png b/static/icons/060063C6.png deleted file mode 100755 index 5b1e43de..00000000 Binary files a/static/icons/060063C6.png and /dev/null differ diff --git a/static/icons/060063C7.png b/static/icons/060063C7.png deleted file mode 100755 index ea03ba8c..00000000 Binary files a/static/icons/060063C7.png and /dev/null differ diff --git a/static/icons/060063C8.png b/static/icons/060063C8.png deleted file mode 100755 index 90149098..00000000 Binary files a/static/icons/060063C8.png and /dev/null differ diff --git a/static/icons/060063C9.png b/static/icons/060063C9.png deleted file mode 100755 index 5fc18729..00000000 Binary files a/static/icons/060063C9.png and /dev/null differ diff --git a/static/icons/060063CC.png b/static/icons/060063CC.png deleted file mode 100755 index 8505e173..00000000 Binary files a/static/icons/060063CC.png and /dev/null differ diff --git a/static/icons/060063CD.png b/static/icons/060063CD.png deleted file mode 100755 index 44870e32..00000000 Binary files a/static/icons/060063CD.png and /dev/null differ diff --git a/static/icons/060063CE.png b/static/icons/060063CE.png deleted file mode 100755 index e0a70e63..00000000 Binary files a/static/icons/060063CE.png and /dev/null differ diff --git a/static/icons/060063D0.png b/static/icons/060063D0.png deleted file mode 100755 index 90814f33..00000000 Binary files a/static/icons/060063D0.png and /dev/null differ diff --git a/static/icons/060063D1.png b/static/icons/060063D1.png deleted file mode 100755 index 92a64379..00000000 Binary files a/static/icons/060063D1.png and /dev/null differ diff --git a/static/icons/060063D2.png b/static/icons/060063D2.png deleted file mode 100755 index 4a8dfa11..00000000 Binary files a/static/icons/060063D2.png and /dev/null differ diff --git a/static/icons/060063D3.png b/static/icons/060063D3.png deleted file mode 100755 index 311a6301..00000000 Binary files a/static/icons/060063D3.png and /dev/null differ diff --git a/static/icons/060063D4.png b/static/icons/060063D4.png deleted file mode 100755 index a014f944..00000000 Binary files a/static/icons/060063D4.png and /dev/null differ diff --git a/static/icons/060063D5.png b/static/icons/060063D5.png deleted file mode 100755 index f2b3892c..00000000 Binary files a/static/icons/060063D5.png and /dev/null differ diff --git a/static/icons/060063D6.png b/static/icons/060063D6.png deleted file mode 100755 index 093f45c7..00000000 Binary files a/static/icons/060063D6.png and /dev/null differ diff --git a/static/icons/060063D7.png b/static/icons/060063D7.png deleted file mode 100755 index b476b684..00000000 Binary files a/static/icons/060063D7.png and /dev/null differ diff --git a/static/icons/060063D8.png b/static/icons/060063D8.png deleted file mode 100755 index ddfc1b1b..00000000 Binary files a/static/icons/060063D8.png and /dev/null differ diff --git a/static/icons/060063D9.png b/static/icons/060063D9.png deleted file mode 100755 index 05ab92df..00000000 Binary files a/static/icons/060063D9.png and /dev/null differ diff --git a/static/icons/060063DA.png b/static/icons/060063DA.png deleted file mode 100755 index 09daf5ca..00000000 Binary files a/static/icons/060063DA.png and /dev/null differ diff --git a/static/icons/060063DB.png b/static/icons/060063DB.png deleted file mode 100755 index 2ad06b20..00000000 Binary files a/static/icons/060063DB.png and /dev/null differ diff --git a/static/icons/060063DC.png b/static/icons/060063DC.png deleted file mode 100755 index 42334968..00000000 Binary files a/static/icons/060063DC.png and /dev/null differ diff --git a/static/icons/060063DD.png b/static/icons/060063DD.png deleted file mode 100755 index 21dc6dbc..00000000 Binary files a/static/icons/060063DD.png and /dev/null differ diff --git a/static/icons/060063DE.png b/static/icons/060063DE.png deleted file mode 100755 index 700d60fd..00000000 Binary files a/static/icons/060063DE.png and /dev/null differ diff --git a/static/icons/060063DF.png b/static/icons/060063DF.png deleted file mode 100755 index f50f9a7c..00000000 Binary files a/static/icons/060063DF.png and /dev/null differ diff --git a/static/icons/060063E0.png b/static/icons/060063E0.png deleted file mode 100755 index 6028dbcb..00000000 Binary files a/static/icons/060063E0.png and /dev/null differ diff --git a/static/icons/060063E1.png b/static/icons/060063E1.png deleted file mode 100755 index e1327490..00000000 Binary files a/static/icons/060063E1.png and /dev/null differ diff --git a/static/icons/060063E2.png b/static/icons/060063E2.png deleted file mode 100755 index ca5c53df..00000000 Binary files a/static/icons/060063E2.png and /dev/null differ diff --git a/static/icons/060063E3.png b/static/icons/060063E3.png deleted file mode 100755 index 338ab67d..00000000 Binary files a/static/icons/060063E3.png and /dev/null differ diff --git a/static/icons/060063E4.png b/static/icons/060063E4.png deleted file mode 100755 index 70077313..00000000 Binary files a/static/icons/060063E4.png and /dev/null differ diff --git a/static/icons/060063E5.png b/static/icons/060063E5.png deleted file mode 100755 index 52ccebd5..00000000 Binary files a/static/icons/060063E5.png and /dev/null differ diff --git a/static/icons/060063E6.png b/static/icons/060063E6.png deleted file mode 100755 index 74acb635..00000000 Binary files a/static/icons/060063E6.png and /dev/null differ diff --git a/static/icons/060063E7.png b/static/icons/060063E7.png deleted file mode 100755 index f2367bcd..00000000 Binary files a/static/icons/060063E7.png and /dev/null differ diff --git a/static/icons/060063E8.png b/static/icons/060063E8.png deleted file mode 100755 index 5fa63878..00000000 Binary files a/static/icons/060063E8.png and /dev/null differ diff --git a/static/icons/060063E9.png b/static/icons/060063E9.png deleted file mode 100755 index c5a3b286..00000000 Binary files a/static/icons/060063E9.png and /dev/null differ diff --git a/static/icons/060063EA.png b/static/icons/060063EA.png deleted file mode 100755 index e0845c49..00000000 Binary files a/static/icons/060063EA.png and /dev/null differ diff --git a/static/icons/060063EB.png b/static/icons/060063EB.png deleted file mode 100755 index e6cff22a..00000000 Binary files a/static/icons/060063EB.png and /dev/null differ diff --git a/static/icons/060063EC.png b/static/icons/060063EC.png deleted file mode 100755 index 2c61ba17..00000000 Binary files a/static/icons/060063EC.png and /dev/null differ diff --git a/static/icons/060063ED.png b/static/icons/060063ED.png deleted file mode 100755 index e4ad6cf8..00000000 Binary files a/static/icons/060063ED.png and /dev/null differ diff --git a/static/icons/060063EE.png b/static/icons/060063EE.png deleted file mode 100755 index 0673ec8c..00000000 Binary files a/static/icons/060063EE.png and /dev/null differ diff --git a/static/icons/060063EF.png b/static/icons/060063EF.png deleted file mode 100755 index 37543768..00000000 Binary files a/static/icons/060063EF.png and /dev/null differ diff --git a/static/icons/060063F0.png b/static/icons/060063F0.png deleted file mode 100755 index 507d499c..00000000 Binary files a/static/icons/060063F0.png and /dev/null differ diff --git a/static/icons/060063F1.png b/static/icons/060063F1.png deleted file mode 100755 index 11128e9a..00000000 Binary files a/static/icons/060063F1.png and /dev/null differ diff --git a/static/icons/060063F2.png b/static/icons/060063F2.png deleted file mode 100755 index 0765eb3f..00000000 Binary files a/static/icons/060063F2.png and /dev/null differ diff --git a/static/icons/060063F3.png b/static/icons/060063F3.png deleted file mode 100755 index 675aed41..00000000 Binary files a/static/icons/060063F3.png and /dev/null differ diff --git a/static/icons/060063F4.png b/static/icons/060063F4.png deleted file mode 100755 index 6fc66c32..00000000 Binary files a/static/icons/060063F4.png and /dev/null differ diff --git a/static/icons/060063F5.png b/static/icons/060063F5.png deleted file mode 100755 index fcb47477..00000000 Binary files a/static/icons/060063F5.png and /dev/null differ diff --git a/static/icons/060063F6.png b/static/icons/060063F6.png deleted file mode 100755 index 4d8cbc36..00000000 Binary files a/static/icons/060063F6.png and /dev/null differ diff --git a/static/icons/060063F7.png b/static/icons/060063F7.png deleted file mode 100755 index a5cb70e0..00000000 Binary files a/static/icons/060063F7.png and /dev/null differ diff --git a/static/icons/060063F8.png b/static/icons/060063F8.png deleted file mode 100755 index 2e1ce36a..00000000 Binary files a/static/icons/060063F8.png and /dev/null differ diff --git a/static/icons/060063F9.png b/static/icons/060063F9.png deleted file mode 100755 index 13cdb9c3..00000000 Binary files a/static/icons/060063F9.png and /dev/null differ diff --git a/static/icons/060063FC.png b/static/icons/060063FC.png deleted file mode 100755 index 4f223a09..00000000 Binary files a/static/icons/060063FC.png and /dev/null differ diff --git a/static/icons/060063FD.png b/static/icons/060063FD.png deleted file mode 100755 index c5a3b286..00000000 Binary files a/static/icons/060063FD.png and /dev/null differ diff --git a/static/icons/060063FE.png b/static/icons/060063FE.png deleted file mode 100755 index 719aee10..00000000 Binary files a/static/icons/060063FE.png and /dev/null differ diff --git a/static/icons/060063FF.png b/static/icons/060063FF.png deleted file mode 100755 index abbb1012..00000000 Binary files a/static/icons/060063FF.png and /dev/null differ diff --git a/static/icons/06006400.png b/static/icons/06006400.png deleted file mode 100755 index 26c5a656..00000000 Binary files a/static/icons/06006400.png and /dev/null differ diff --git a/static/icons/06006401.png b/static/icons/06006401.png deleted file mode 100755 index afb1923f..00000000 Binary files a/static/icons/06006401.png and /dev/null differ diff --git a/static/icons/06006402.png b/static/icons/06006402.png deleted file mode 100755 index 5917854e..00000000 Binary files a/static/icons/06006402.png and /dev/null differ diff --git a/static/icons/06006403.png b/static/icons/06006403.png deleted file mode 100755 index bd0c5809..00000000 Binary files a/static/icons/06006403.png and /dev/null differ diff --git a/static/icons/06006404.png b/static/icons/06006404.png deleted file mode 100755 index 5917854e..00000000 Binary files a/static/icons/06006404.png and /dev/null differ diff --git a/static/icons/06006405.png b/static/icons/06006405.png deleted file mode 100755 index d30727e5..00000000 Binary files a/static/icons/06006405.png and /dev/null differ diff --git a/static/icons/06006406.png b/static/icons/06006406.png deleted file mode 100755 index f64621ac..00000000 Binary files a/static/icons/06006406.png and /dev/null differ diff --git a/static/icons/06006407.png b/static/icons/06006407.png deleted file mode 100755 index 1e7edbe5..00000000 Binary files a/static/icons/06006407.png and /dev/null differ diff --git a/static/icons/06006408.png b/static/icons/06006408.png deleted file mode 100755 index cc37e72c..00000000 Binary files a/static/icons/06006408.png and /dev/null differ diff --git a/static/icons/06006409.png b/static/icons/06006409.png deleted file mode 100755 index 9107cc0e..00000000 Binary files a/static/icons/06006409.png and /dev/null differ diff --git a/static/icons/0600640A.png b/static/icons/0600640A.png deleted file mode 100755 index 63a0dd15..00000000 Binary files a/static/icons/0600640A.png and /dev/null differ diff --git a/static/icons/0600640B.png b/static/icons/0600640B.png deleted file mode 100755 index 9107cc0e..00000000 Binary files a/static/icons/0600640B.png and /dev/null differ diff --git a/static/icons/0600640C.png b/static/icons/0600640C.png deleted file mode 100755 index e49336d1..00000000 Binary files a/static/icons/0600640C.png and /dev/null differ diff --git a/static/icons/0600640D.png b/static/icons/0600640D.png deleted file mode 100755 index 9107cc0e..00000000 Binary files a/static/icons/0600640D.png and /dev/null differ diff --git a/static/icons/0600640E.png b/static/icons/0600640E.png deleted file mode 100755 index 4bf235b4..00000000 Binary files a/static/icons/0600640E.png and /dev/null differ diff --git a/static/icons/0600640F.png b/static/icons/0600640F.png deleted file mode 100755 index b839346e..00000000 Binary files a/static/icons/0600640F.png and /dev/null differ diff --git a/static/icons/06006410.png b/static/icons/06006410.png deleted file mode 100755 index 838b4993..00000000 Binary files a/static/icons/06006410.png and /dev/null differ diff --git a/static/icons/06006411.png b/static/icons/06006411.png deleted file mode 100755 index 331fe78b..00000000 Binary files a/static/icons/06006411.png and /dev/null differ diff --git a/static/icons/06006412.png b/static/icons/06006412.png deleted file mode 100755 index b1e82c53..00000000 Binary files a/static/icons/06006412.png and /dev/null differ diff --git a/static/icons/06006413.png b/static/icons/06006413.png deleted file mode 100755 index b926b5b6..00000000 Binary files a/static/icons/06006413.png and /dev/null differ diff --git a/static/icons/06006414.png b/static/icons/06006414.png deleted file mode 100755 index f02c06e2..00000000 Binary files a/static/icons/06006414.png and /dev/null differ diff --git a/static/icons/06006415.png b/static/icons/06006415.png deleted file mode 100755 index 50d120ff..00000000 Binary files a/static/icons/06006415.png and /dev/null differ diff --git a/static/icons/06006416.png b/static/icons/06006416.png deleted file mode 100755 index 41f1df79..00000000 Binary files a/static/icons/06006416.png and /dev/null differ diff --git a/static/icons/06006417.png b/static/icons/06006417.png deleted file mode 100755 index 11dfacde..00000000 Binary files a/static/icons/06006417.png and /dev/null differ diff --git a/static/icons/06006418.png b/static/icons/06006418.png deleted file mode 100755 index 184d5677..00000000 Binary files a/static/icons/06006418.png and /dev/null differ diff --git a/static/icons/06006419.png b/static/icons/06006419.png deleted file mode 100755 index 1aad2dc2..00000000 Binary files a/static/icons/06006419.png and /dev/null differ diff --git a/static/icons/0600641D.png b/static/icons/0600641D.png deleted file mode 100755 index 5917854e..00000000 Binary files a/static/icons/0600641D.png and /dev/null differ diff --git a/static/icons/0600641E.png b/static/icons/0600641E.png deleted file mode 100755 index 1f529df9..00000000 Binary files a/static/icons/0600641E.png and /dev/null differ diff --git a/static/icons/0600641F.png b/static/icons/0600641F.png deleted file mode 100755 index 19b73c86..00000000 Binary files a/static/icons/0600641F.png and /dev/null differ diff --git a/static/icons/06006420.png b/static/icons/06006420.png deleted file mode 100755 index c7dce811..00000000 Binary files a/static/icons/06006420.png and /dev/null differ diff --git a/static/icons/06006424.png b/static/icons/06006424.png deleted file mode 100755 index 5e254d99..00000000 Binary files a/static/icons/06006424.png and /dev/null differ diff --git a/static/icons/06006425.png b/static/icons/06006425.png deleted file mode 100755 index 7700f827..00000000 Binary files a/static/icons/06006425.png and /dev/null differ diff --git a/static/icons/06006426.png b/static/icons/06006426.png deleted file mode 100755 index b865c166..00000000 Binary files a/static/icons/06006426.png and /dev/null differ diff --git a/static/icons/06006427.png b/static/icons/06006427.png deleted file mode 100755 index 629e9c23..00000000 Binary files a/static/icons/06006427.png and /dev/null differ diff --git a/static/icons/06006428.png b/static/icons/06006428.png deleted file mode 100755 index 8691a1a8..00000000 Binary files a/static/icons/06006428.png and /dev/null differ diff --git a/static/icons/06006429.png b/static/icons/06006429.png deleted file mode 100755 index 078e4798..00000000 Binary files a/static/icons/06006429.png and /dev/null differ diff --git a/static/icons/0600642A.png b/static/icons/0600642A.png deleted file mode 100755 index 60002e01..00000000 Binary files a/static/icons/0600642A.png and /dev/null differ diff --git a/static/icons/0600642B.png b/static/icons/0600642B.png deleted file mode 100755 index 81cd2171..00000000 Binary files a/static/icons/0600642B.png and /dev/null differ diff --git a/static/icons/0600642D.png b/static/icons/0600642D.png deleted file mode 100755 index c93faa3b..00000000 Binary files a/static/icons/0600642D.png and /dev/null differ diff --git a/static/icons/0600642F.png b/static/icons/0600642F.png deleted file mode 100755 index 73d3e9e9..00000000 Binary files a/static/icons/0600642F.png and /dev/null differ diff --git a/static/icons/06006430.png b/static/icons/06006430.png deleted file mode 100755 index 59c7fd3f..00000000 Binary files a/static/icons/06006430.png and /dev/null differ diff --git a/static/icons/06006431.png b/static/icons/06006431.png deleted file mode 100755 index c5111c96..00000000 Binary files a/static/icons/06006431.png and /dev/null differ diff --git a/static/icons/06006432.png b/static/icons/06006432.png deleted file mode 100755 index 7a4b1f57..00000000 Binary files a/static/icons/06006432.png and /dev/null differ diff --git a/static/icons/06006434.png b/static/icons/06006434.png deleted file mode 100755 index 5d91593e..00000000 Binary files a/static/icons/06006434.png and /dev/null differ diff --git a/static/icons/06006436.png b/static/icons/06006436.png deleted file mode 100755 index 6d3d23a0..00000000 Binary files a/static/icons/06006436.png and /dev/null differ diff --git a/static/icons/06006437.png b/static/icons/06006437.png deleted file mode 100755 index 3820c134..00000000 Binary files a/static/icons/06006437.png and /dev/null differ diff --git a/static/icons/06006438.png b/static/icons/06006438.png deleted file mode 100755 index 4530969f..00000000 Binary files a/static/icons/06006438.png and /dev/null differ diff --git a/static/icons/0600643B.png b/static/icons/0600643B.png deleted file mode 100755 index 1a637dec..00000000 Binary files a/static/icons/0600643B.png and /dev/null differ diff --git a/static/icons/0600643C.png b/static/icons/0600643C.png deleted file mode 100755 index efe0717d..00000000 Binary files a/static/icons/0600643C.png and /dev/null differ diff --git a/static/icons/06006440.png b/static/icons/06006440.png deleted file mode 100755 index 2edebc27..00000000 Binary files a/static/icons/06006440.png and /dev/null differ diff --git a/static/icons/06006441.png b/static/icons/06006441.png deleted file mode 100755 index a8a891c4..00000000 Binary files a/static/icons/06006441.png and /dev/null differ diff --git a/static/icons/06006442.png b/static/icons/06006442.png deleted file mode 100755 index 23d1fcf7..00000000 Binary files a/static/icons/06006442.png and /dev/null differ diff --git a/static/icons/06006443.png b/static/icons/06006443.png deleted file mode 100755 index a8a891c4..00000000 Binary files a/static/icons/06006443.png and /dev/null differ diff --git a/static/icons/06006444.png b/static/icons/06006444.png deleted file mode 100755 index dfa9767a..00000000 Binary files a/static/icons/06006444.png and /dev/null differ diff --git a/static/icons/06006445.png b/static/icons/06006445.png deleted file mode 100755 index c4c683fa..00000000 Binary files a/static/icons/06006445.png and /dev/null differ diff --git a/static/icons/06006446.png b/static/icons/06006446.png deleted file mode 100755 index 9ddc2073..00000000 Binary files a/static/icons/06006446.png and /dev/null differ diff --git a/static/icons/06006447.png b/static/icons/06006447.png deleted file mode 100755 index dc942e12..00000000 Binary files a/static/icons/06006447.png and /dev/null differ diff --git a/static/icons/06006448.png b/static/icons/06006448.png deleted file mode 100755 index 382e502e..00000000 Binary files a/static/icons/06006448.png and /dev/null differ diff --git a/static/icons/06006449.png b/static/icons/06006449.png deleted file mode 100755 index 7becedaa..00000000 Binary files a/static/icons/06006449.png and /dev/null differ diff --git a/static/icons/0600644A.png b/static/icons/0600644A.png deleted file mode 100755 index c2f2ddeb..00000000 Binary files a/static/icons/0600644A.png and /dev/null differ diff --git a/static/icons/0600644B.png b/static/icons/0600644B.png deleted file mode 100755 index 366bf4a8..00000000 Binary files a/static/icons/0600644B.png and /dev/null differ diff --git a/static/icons/0600644C.png b/static/icons/0600644C.png deleted file mode 100755 index cb7df4e5..00000000 Binary files a/static/icons/0600644C.png and /dev/null differ diff --git a/static/icons/0600644D.png b/static/icons/0600644D.png deleted file mode 100755 index 70151b8d..00000000 Binary files a/static/icons/0600644D.png and /dev/null differ diff --git a/static/icons/0600644E.png b/static/icons/0600644E.png deleted file mode 100755 index cb8cf94c..00000000 Binary files a/static/icons/0600644E.png and /dev/null differ diff --git a/static/icons/06006450.png b/static/icons/06006450.png deleted file mode 100755 index 1dbfa7ab..00000000 Binary files a/static/icons/06006450.png and /dev/null differ diff --git a/static/icons/06006451.png b/static/icons/06006451.png deleted file mode 100755 index 267c67e8..00000000 Binary files a/static/icons/06006451.png and /dev/null differ diff --git a/static/icons/06006452.png b/static/icons/06006452.png deleted file mode 100755 index e1c2009a..00000000 Binary files a/static/icons/06006452.png and /dev/null differ diff --git a/static/icons/06006454.png b/static/icons/06006454.png deleted file mode 100755 index ee12ca15..00000000 Binary files a/static/icons/06006454.png and /dev/null differ diff --git a/static/icons/06006455.png b/static/icons/06006455.png deleted file mode 100755 index b1ba524b..00000000 Binary files a/static/icons/06006455.png and /dev/null differ diff --git a/static/icons/06006456.png b/static/icons/06006456.png deleted file mode 100755 index 39ef9ff4..00000000 Binary files a/static/icons/06006456.png and /dev/null differ diff --git a/static/icons/06006457.png b/static/icons/06006457.png deleted file mode 100755 index 45b0141f..00000000 Binary files a/static/icons/06006457.png and /dev/null differ diff --git a/static/icons/06006458.png b/static/icons/06006458.png deleted file mode 100755 index 63f59d38..00000000 Binary files a/static/icons/06006458.png and /dev/null differ diff --git a/static/icons/06006459.png b/static/icons/06006459.png deleted file mode 100755 index 4bc250ee..00000000 Binary files a/static/icons/06006459.png and /dev/null differ diff --git a/static/icons/0600645A.png b/static/icons/0600645A.png deleted file mode 100755 index 64bed333..00000000 Binary files a/static/icons/0600645A.png and /dev/null differ diff --git a/static/icons/0600645B.png b/static/icons/0600645B.png deleted file mode 100755 index 809e6820..00000000 Binary files a/static/icons/0600645B.png and /dev/null differ diff --git a/static/icons/0600645C.png b/static/icons/0600645C.png deleted file mode 100755 index c880f7d3..00000000 Binary files a/static/icons/0600645C.png and /dev/null differ diff --git a/static/icons/0600645D.png b/static/icons/0600645D.png deleted file mode 100755 index 120836f8..00000000 Binary files a/static/icons/0600645D.png and /dev/null differ diff --git a/static/icons/0600645E.png b/static/icons/0600645E.png deleted file mode 100755 index 70f27026..00000000 Binary files a/static/icons/0600645E.png and /dev/null differ diff --git a/static/icons/0600645F.png b/static/icons/0600645F.png deleted file mode 100755 index 44f73f84..00000000 Binary files a/static/icons/0600645F.png and /dev/null differ diff --git a/static/icons/06006460.png b/static/icons/06006460.png deleted file mode 100755 index 60a7a08a..00000000 Binary files a/static/icons/06006460.png and /dev/null differ diff --git a/static/icons/06006461.png b/static/icons/06006461.png deleted file mode 100755 index ce784df0..00000000 Binary files a/static/icons/06006461.png and /dev/null differ diff --git a/static/icons/06006462.png b/static/icons/06006462.png deleted file mode 100755 index ca2db7ae..00000000 Binary files a/static/icons/06006462.png and /dev/null differ diff --git a/static/icons/06006463.png b/static/icons/06006463.png deleted file mode 100755 index 7119b846..00000000 Binary files a/static/icons/06006463.png and /dev/null differ diff --git a/static/icons/06006464.png b/static/icons/06006464.png deleted file mode 100755 index 113dcfd6..00000000 Binary files a/static/icons/06006464.png and /dev/null differ diff --git a/static/icons/06006465.png b/static/icons/06006465.png deleted file mode 100755 index f8777961..00000000 Binary files a/static/icons/06006465.png and /dev/null differ diff --git a/static/icons/06006466.png b/static/icons/06006466.png deleted file mode 100755 index 00072ade..00000000 Binary files a/static/icons/06006466.png and /dev/null differ diff --git a/static/icons/06006467.png b/static/icons/06006467.png deleted file mode 100755 index a12679b2..00000000 Binary files a/static/icons/06006467.png and /dev/null differ diff --git a/static/icons/06006468.png b/static/icons/06006468.png deleted file mode 100755 index 96a5643e..00000000 Binary files a/static/icons/06006468.png and /dev/null differ diff --git a/static/icons/06006469.png b/static/icons/06006469.png deleted file mode 100755 index 16d81a0f..00000000 Binary files a/static/icons/06006469.png and /dev/null differ diff --git a/static/icons/0600646A.png b/static/icons/0600646A.png deleted file mode 100755 index a6683ae5..00000000 Binary files a/static/icons/0600646A.png and /dev/null differ diff --git a/static/icons/0600646B.png b/static/icons/0600646B.png deleted file mode 100755 index 7eaf2309..00000000 Binary files a/static/icons/0600646B.png and /dev/null differ diff --git a/static/icons/0600646C.png b/static/icons/0600646C.png deleted file mode 100755 index 4970787b..00000000 Binary files a/static/icons/0600646C.png and /dev/null differ diff --git a/static/icons/0600646D.png b/static/icons/0600646D.png deleted file mode 100755 index 2880b4d0..00000000 Binary files a/static/icons/0600646D.png and /dev/null differ diff --git a/static/icons/0600646E.png b/static/icons/0600646E.png deleted file mode 100755 index 3ba4ae48..00000000 Binary files a/static/icons/0600646E.png and /dev/null differ diff --git a/static/icons/0600646F.png b/static/icons/0600646F.png deleted file mode 100755 index 54a30cb3..00000000 Binary files a/static/icons/0600646F.png and /dev/null differ diff --git a/static/icons/06006470.png b/static/icons/06006470.png deleted file mode 100755 index cfc2e72d..00000000 Binary files a/static/icons/06006470.png and /dev/null differ diff --git a/static/icons/06006472.png b/static/icons/06006472.png deleted file mode 100755 index 793aed7a..00000000 Binary files a/static/icons/06006472.png and /dev/null differ diff --git a/static/icons/06006473.png b/static/icons/06006473.png deleted file mode 100755 index 04a00c4a..00000000 Binary files a/static/icons/06006473.png and /dev/null differ diff --git a/static/icons/06006474.png b/static/icons/06006474.png deleted file mode 100755 index 82212365..00000000 Binary files a/static/icons/06006474.png and /dev/null differ diff --git a/static/icons/06006475.png b/static/icons/06006475.png deleted file mode 100755 index 956b5ec9..00000000 Binary files a/static/icons/06006475.png and /dev/null differ diff --git a/static/icons/06006476.png b/static/icons/06006476.png deleted file mode 100755 index 2c075b73..00000000 Binary files a/static/icons/06006476.png and /dev/null differ diff --git a/static/icons/06006477.png b/static/icons/06006477.png deleted file mode 100755 index b8a15fa6..00000000 Binary files a/static/icons/06006477.png and /dev/null differ diff --git a/static/icons/06006478.png b/static/icons/06006478.png deleted file mode 100755 index b4168c0e..00000000 Binary files a/static/icons/06006478.png and /dev/null differ diff --git a/static/icons/06006479.png b/static/icons/06006479.png deleted file mode 100755 index 7efe1169..00000000 Binary files a/static/icons/06006479.png and /dev/null differ diff --git a/static/icons/0600647A.png b/static/icons/0600647A.png deleted file mode 100755 index 72612280..00000000 Binary files a/static/icons/0600647A.png and /dev/null differ diff --git a/static/icons/0600647B.png b/static/icons/0600647B.png deleted file mode 100755 index 7546d390..00000000 Binary files a/static/icons/0600647B.png and /dev/null differ diff --git a/static/icons/0600647C.png b/static/icons/0600647C.png deleted file mode 100755 index b8a15fa6..00000000 Binary files a/static/icons/0600647C.png and /dev/null differ diff --git a/static/icons/0600647D.png b/static/icons/0600647D.png deleted file mode 100755 index 4c5b6941..00000000 Binary files a/static/icons/0600647D.png and /dev/null differ diff --git a/static/icons/0600647E.png b/static/icons/0600647E.png deleted file mode 100755 index 7546d390..00000000 Binary files a/static/icons/0600647E.png and /dev/null differ diff --git a/static/icons/0600647F.png b/static/icons/0600647F.png deleted file mode 100755 index e91cf556..00000000 Binary files a/static/icons/0600647F.png and /dev/null differ diff --git a/static/icons/06006480.png b/static/icons/06006480.png deleted file mode 100755 index 3dda3ae4..00000000 Binary files a/static/icons/06006480.png and /dev/null differ diff --git a/static/icons/06006481.png b/static/icons/06006481.png deleted file mode 100755 index f9e587d2..00000000 Binary files a/static/icons/06006481.png and /dev/null differ diff --git a/static/icons/06006482.png b/static/icons/06006482.png deleted file mode 100755 index db573ff1..00000000 Binary files a/static/icons/06006482.png and /dev/null differ diff --git a/static/icons/06006483.png b/static/icons/06006483.png deleted file mode 100755 index 6bc66a84..00000000 Binary files a/static/icons/06006483.png and /dev/null differ diff --git a/static/icons/06006484.png b/static/icons/06006484.png deleted file mode 100755 index dd985c37..00000000 Binary files a/static/icons/06006484.png and /dev/null differ diff --git a/static/icons/06006485.png b/static/icons/06006485.png deleted file mode 100755 index 6f247933..00000000 Binary files a/static/icons/06006485.png and /dev/null differ diff --git a/static/icons/06006486.png b/static/icons/06006486.png deleted file mode 100755 index a10c6a76..00000000 Binary files a/static/icons/06006486.png and /dev/null differ diff --git a/static/icons/06006487.png b/static/icons/06006487.png deleted file mode 100755 index 5a868c68..00000000 Binary files a/static/icons/06006487.png and /dev/null differ diff --git a/static/icons/06006488.png b/static/icons/06006488.png deleted file mode 100755 index 369cfb2c..00000000 Binary files a/static/icons/06006488.png and /dev/null differ diff --git a/static/icons/06006489.png b/static/icons/06006489.png deleted file mode 100755 index 20ff02a3..00000000 Binary files a/static/icons/06006489.png and /dev/null differ diff --git a/static/icons/0600648A.png b/static/icons/0600648A.png deleted file mode 100755 index e524bc45..00000000 Binary files a/static/icons/0600648A.png and /dev/null differ diff --git a/static/icons/0600648B.png b/static/icons/0600648B.png deleted file mode 100755 index 4ea8e93b..00000000 Binary files a/static/icons/0600648B.png and /dev/null differ diff --git a/static/icons/0600648C.png b/static/icons/0600648C.png deleted file mode 100755 index 8c0782c5..00000000 Binary files a/static/icons/0600648C.png and /dev/null differ diff --git a/static/icons/0600648D.png b/static/icons/0600648D.png deleted file mode 100755 index b5f24023..00000000 Binary files a/static/icons/0600648D.png and /dev/null differ diff --git a/static/icons/0600648E.png b/static/icons/0600648E.png deleted file mode 100755 index 9ac920b3..00000000 Binary files a/static/icons/0600648E.png and /dev/null differ diff --git a/static/icons/0600648F.png b/static/icons/0600648F.png deleted file mode 100755 index 6ae7f2a3..00000000 Binary files a/static/icons/0600648F.png and /dev/null differ diff --git a/static/icons/06006490.png b/static/icons/06006490.png deleted file mode 100755 index d2246ae9..00000000 Binary files a/static/icons/06006490.png and /dev/null differ diff --git a/static/icons/06006492.png b/static/icons/06006492.png deleted file mode 100755 index f4fe5224..00000000 Binary files a/static/icons/06006492.png and /dev/null differ diff --git a/static/icons/06006493.png b/static/icons/06006493.png deleted file mode 100755 index 83f0cdc6..00000000 Binary files a/static/icons/06006493.png and /dev/null differ diff --git a/static/icons/06006494.png b/static/icons/06006494.png deleted file mode 100755 index 07138f6b..00000000 Binary files a/static/icons/06006494.png and /dev/null differ diff --git a/static/icons/06006495.png b/static/icons/06006495.png deleted file mode 100755 index 050a936b..00000000 Binary files a/static/icons/06006495.png and /dev/null differ diff --git a/static/icons/06006496.png b/static/icons/06006496.png deleted file mode 100755 index 377282d9..00000000 Binary files a/static/icons/06006496.png and /dev/null differ diff --git a/static/icons/06006497.png b/static/icons/06006497.png deleted file mode 100755 index f8a8db86..00000000 Binary files a/static/icons/06006497.png and /dev/null differ diff --git a/static/icons/06006498.png b/static/icons/06006498.png deleted file mode 100755 index 2a0d9d92..00000000 Binary files a/static/icons/06006498.png and /dev/null differ diff --git a/static/icons/06006499.png b/static/icons/06006499.png deleted file mode 100755 index c3600b0d..00000000 Binary files a/static/icons/06006499.png and /dev/null differ diff --git a/static/icons/0600649A.png b/static/icons/0600649A.png deleted file mode 100755 index 65980222..00000000 Binary files a/static/icons/0600649A.png and /dev/null differ diff --git a/static/icons/0600649B.png b/static/icons/0600649B.png deleted file mode 100755 index 49d0b0ff..00000000 Binary files a/static/icons/0600649B.png and /dev/null differ diff --git a/static/icons/0600649D.png b/static/icons/0600649D.png deleted file mode 100755 index c4c5cb42..00000000 Binary files a/static/icons/0600649D.png and /dev/null differ diff --git a/static/icons/0600649F.png b/static/icons/0600649F.png deleted file mode 100755 index 14ab9736..00000000 Binary files a/static/icons/0600649F.png and /dev/null differ diff --git a/static/icons/060064A1.png b/static/icons/060064A1.png deleted file mode 100755 index a3bb3eca..00000000 Binary files a/static/icons/060064A1.png and /dev/null differ diff --git a/static/icons/060064A3.png b/static/icons/060064A3.png deleted file mode 100755 index 7abd2d89..00000000 Binary files a/static/icons/060064A3.png and /dev/null differ diff --git a/static/icons/060064A5.png b/static/icons/060064A5.png deleted file mode 100755 index 767fea4a..00000000 Binary files a/static/icons/060064A5.png and /dev/null differ diff --git a/static/icons/060064A7.png b/static/icons/060064A7.png deleted file mode 100755 index 4377af32..00000000 Binary files a/static/icons/060064A7.png and /dev/null differ diff --git a/static/icons/060064A8.png b/static/icons/060064A8.png deleted file mode 100755 index 679c1fbc..00000000 Binary files a/static/icons/060064A8.png and /dev/null differ diff --git a/static/icons/060064A9.png b/static/icons/060064A9.png deleted file mode 100755 index 1b38e09c..00000000 Binary files a/static/icons/060064A9.png and /dev/null differ diff --git a/static/icons/060064AA.png b/static/icons/060064AA.png deleted file mode 100755 index 91038eaf..00000000 Binary files a/static/icons/060064AA.png and /dev/null differ diff --git a/static/icons/060064AB.png b/static/icons/060064AB.png deleted file mode 100755 index c8fa52eb..00000000 Binary files a/static/icons/060064AB.png and /dev/null differ diff --git a/static/icons/060064AC.png b/static/icons/060064AC.png deleted file mode 100755 index 6cf693ce..00000000 Binary files a/static/icons/060064AC.png and /dev/null differ diff --git a/static/icons/060064AD.png b/static/icons/060064AD.png deleted file mode 100755 index 4b810a3c..00000000 Binary files a/static/icons/060064AD.png and /dev/null differ diff --git a/static/icons/060064AE.png b/static/icons/060064AE.png deleted file mode 100755 index 7727b75d..00000000 Binary files a/static/icons/060064AE.png and /dev/null differ diff --git a/static/icons/060064AF.png b/static/icons/060064AF.png deleted file mode 100755 index 42762e4d..00000000 Binary files a/static/icons/060064AF.png and /dev/null differ diff --git a/static/icons/060064B0.png b/static/icons/060064B0.png deleted file mode 100755 index 8cf6366a..00000000 Binary files a/static/icons/060064B0.png and /dev/null differ diff --git a/static/icons/060064B1.png b/static/icons/060064B1.png deleted file mode 100755 index f02957c7..00000000 Binary files a/static/icons/060064B1.png and /dev/null differ diff --git a/static/icons/060064B2.png b/static/icons/060064B2.png deleted file mode 100755 index 6e7f5757..00000000 Binary files a/static/icons/060064B2.png and /dev/null differ diff --git a/static/icons/060064B3.png b/static/icons/060064B3.png deleted file mode 100755 index 26d37f1e..00000000 Binary files a/static/icons/060064B3.png and /dev/null differ diff --git a/static/icons/060064B4.png b/static/icons/060064B4.png deleted file mode 100755 index 9285df51..00000000 Binary files a/static/icons/060064B4.png and /dev/null differ diff --git a/static/icons/060064B5.png b/static/icons/060064B5.png deleted file mode 100755 index ca6b3f8b..00000000 Binary files a/static/icons/060064B5.png and /dev/null differ diff --git a/static/icons/060064B6.png b/static/icons/060064B6.png deleted file mode 100755 index de756569..00000000 Binary files a/static/icons/060064B6.png and /dev/null differ diff --git a/static/icons/060064B7.png b/static/icons/060064B7.png deleted file mode 100755 index 95409147..00000000 Binary files a/static/icons/060064B7.png and /dev/null differ diff --git a/static/icons/060064B8.png b/static/icons/060064B8.png deleted file mode 100755 index a50e1865..00000000 Binary files a/static/icons/060064B8.png and /dev/null differ diff --git a/static/icons/060064B9.png b/static/icons/060064B9.png deleted file mode 100755 index caebfae8..00000000 Binary files a/static/icons/060064B9.png and /dev/null differ diff --git a/static/icons/060064BA.png b/static/icons/060064BA.png deleted file mode 100755 index c11d4961..00000000 Binary files a/static/icons/060064BA.png and /dev/null differ diff --git a/static/icons/060064BB.png b/static/icons/060064BB.png deleted file mode 100755 index a367bd7f..00000000 Binary files a/static/icons/060064BB.png and /dev/null differ diff --git a/static/icons/060064BF.png b/static/icons/060064BF.png deleted file mode 100755 index 46b185c9..00000000 Binary files a/static/icons/060064BF.png and /dev/null differ diff --git a/static/icons/060064C0.png b/static/icons/060064C0.png deleted file mode 100755 index 496b6f37..00000000 Binary files a/static/icons/060064C0.png and /dev/null differ diff --git a/static/icons/060064C1.png b/static/icons/060064C1.png deleted file mode 100755 index 7d67dfc5..00000000 Binary files a/static/icons/060064C1.png and /dev/null differ diff --git a/static/icons/060064C2.png b/static/icons/060064C2.png deleted file mode 100755 index e3bf1cc2..00000000 Binary files a/static/icons/060064C2.png and /dev/null differ diff --git a/static/icons/060064C3.png b/static/icons/060064C3.png deleted file mode 100755 index 8bd03808..00000000 Binary files a/static/icons/060064C3.png and /dev/null differ diff --git a/static/icons/060064C4.png b/static/icons/060064C4.png deleted file mode 100755 index a7c3ce81..00000000 Binary files a/static/icons/060064C4.png and /dev/null differ diff --git a/static/icons/060064C5.png b/static/icons/060064C5.png deleted file mode 100755 index 65b07fb3..00000000 Binary files a/static/icons/060064C5.png and /dev/null differ diff --git a/static/icons/060064C6.png b/static/icons/060064C6.png deleted file mode 100755 index e4e1749a..00000000 Binary files a/static/icons/060064C6.png and /dev/null differ diff --git a/static/icons/060064C7.png b/static/icons/060064C7.png deleted file mode 100755 index 607999b2..00000000 Binary files a/static/icons/060064C7.png and /dev/null differ diff --git a/static/icons/060064C8.png b/static/icons/060064C8.png deleted file mode 100755 index 811320c9..00000000 Binary files a/static/icons/060064C8.png and /dev/null differ diff --git a/static/icons/060064C9.png b/static/icons/060064C9.png deleted file mode 100755 index 6dfec46c..00000000 Binary files a/static/icons/060064C9.png and /dev/null differ diff --git a/static/icons/060064CA.png b/static/icons/060064CA.png deleted file mode 100755 index c891f1c3..00000000 Binary files a/static/icons/060064CA.png and /dev/null differ diff --git a/static/icons/060064CB.png b/static/icons/060064CB.png deleted file mode 100755 index 7522b57e..00000000 Binary files a/static/icons/060064CB.png and /dev/null differ diff --git a/static/icons/060064CC.png b/static/icons/060064CC.png deleted file mode 100755 index 60a1b263..00000000 Binary files a/static/icons/060064CC.png and /dev/null differ diff --git a/static/icons/060064CD.png b/static/icons/060064CD.png deleted file mode 100755 index 83816ec7..00000000 Binary files a/static/icons/060064CD.png and /dev/null differ diff --git a/static/icons/060064CE.png b/static/icons/060064CE.png deleted file mode 100755 index bd551600..00000000 Binary files a/static/icons/060064CE.png and /dev/null differ diff --git a/static/icons/060064CF.png b/static/icons/060064CF.png deleted file mode 100755 index 229edc08..00000000 Binary files a/static/icons/060064CF.png and /dev/null differ diff --git a/static/icons/060064D0.png b/static/icons/060064D0.png deleted file mode 100755 index 86afcca0..00000000 Binary files a/static/icons/060064D0.png and /dev/null differ diff --git a/static/icons/060064D1.png b/static/icons/060064D1.png deleted file mode 100755 index 12605bf7..00000000 Binary files a/static/icons/060064D1.png and /dev/null differ diff --git a/static/icons/060064D2.png b/static/icons/060064D2.png deleted file mode 100755 index f868335d..00000000 Binary files a/static/icons/060064D2.png and /dev/null differ diff --git a/static/icons/060064D3.png b/static/icons/060064D3.png deleted file mode 100755 index aeffc017..00000000 Binary files a/static/icons/060064D3.png and /dev/null differ diff --git a/static/icons/060064D4.png b/static/icons/060064D4.png deleted file mode 100755 index f31e912a..00000000 Binary files a/static/icons/060064D4.png and /dev/null differ diff --git a/static/icons/060064D5.png b/static/icons/060064D5.png deleted file mode 100755 index d16d4536..00000000 Binary files a/static/icons/060064D5.png and /dev/null differ diff --git a/static/icons/060064D6.png b/static/icons/060064D6.png deleted file mode 100755 index d2f25b6a..00000000 Binary files a/static/icons/060064D6.png and /dev/null differ diff --git a/static/icons/060064D7.png b/static/icons/060064D7.png deleted file mode 100755 index 28eb2afb..00000000 Binary files a/static/icons/060064D7.png and /dev/null differ diff --git a/static/icons/060064D8.png b/static/icons/060064D8.png deleted file mode 100755 index c4fae176..00000000 Binary files a/static/icons/060064D8.png and /dev/null differ diff --git a/static/icons/060064D9.png b/static/icons/060064D9.png deleted file mode 100755 index 2876f52d..00000000 Binary files a/static/icons/060064D9.png and /dev/null differ diff --git a/static/icons/060064DA.png b/static/icons/060064DA.png deleted file mode 100755 index aac87f6b..00000000 Binary files a/static/icons/060064DA.png and /dev/null differ diff --git a/static/icons/060064DB.png b/static/icons/060064DB.png deleted file mode 100755 index 4e82845e..00000000 Binary files a/static/icons/060064DB.png and /dev/null differ diff --git a/static/icons/060064DC.png b/static/icons/060064DC.png deleted file mode 100755 index 35551964..00000000 Binary files a/static/icons/060064DC.png and /dev/null differ diff --git a/static/icons/060064DD.png b/static/icons/060064DD.png deleted file mode 100755 index 63035025..00000000 Binary files a/static/icons/060064DD.png and /dev/null differ diff --git a/static/icons/060064DE.png b/static/icons/060064DE.png deleted file mode 100755 index f6023d16..00000000 Binary files a/static/icons/060064DE.png and /dev/null differ diff --git a/static/icons/060064DF.png b/static/icons/060064DF.png deleted file mode 100755 index 7452c841..00000000 Binary files a/static/icons/060064DF.png and /dev/null differ diff --git a/static/icons/060064E0.png b/static/icons/060064E0.png deleted file mode 100755 index c9c71e34..00000000 Binary files a/static/icons/060064E0.png and /dev/null differ diff --git a/static/icons/060064E1.png b/static/icons/060064E1.png deleted file mode 100755 index af932407..00000000 Binary files a/static/icons/060064E1.png and /dev/null differ diff --git a/static/icons/060064E2.png b/static/icons/060064E2.png deleted file mode 100755 index 380bac9b..00000000 Binary files a/static/icons/060064E2.png and /dev/null differ diff --git a/static/icons/060064E3.png b/static/icons/060064E3.png deleted file mode 100755 index 9eb2228d..00000000 Binary files a/static/icons/060064E3.png and /dev/null differ diff --git a/static/icons/060064E4.png b/static/icons/060064E4.png deleted file mode 100755 index 0b7fc86d..00000000 Binary files a/static/icons/060064E4.png and /dev/null differ diff --git a/static/icons/060064E5.png b/static/icons/060064E5.png deleted file mode 100755 index ce739fbc..00000000 Binary files a/static/icons/060064E5.png and /dev/null differ diff --git a/static/icons/060064E6.png b/static/icons/060064E6.png deleted file mode 100755 index e8211c12..00000000 Binary files a/static/icons/060064E6.png and /dev/null differ diff --git a/static/icons/060064E7.png b/static/icons/060064E7.png deleted file mode 100755 index e653cc7b..00000000 Binary files a/static/icons/060064E7.png and /dev/null differ diff --git a/static/icons/060064E8.png b/static/icons/060064E8.png deleted file mode 100755 index eca128c6..00000000 Binary files a/static/icons/060064E8.png and /dev/null differ diff --git a/static/icons/060064E9.png b/static/icons/060064E9.png deleted file mode 100755 index e8fc3412..00000000 Binary files a/static/icons/060064E9.png and /dev/null differ diff --git a/static/icons/060064EA.png b/static/icons/060064EA.png deleted file mode 100755 index a8952dce..00000000 Binary files a/static/icons/060064EA.png and /dev/null differ diff --git a/static/icons/060064EB.png b/static/icons/060064EB.png deleted file mode 100755 index ac33f8a1..00000000 Binary files a/static/icons/060064EB.png and /dev/null differ diff --git a/static/icons/060064ED.png b/static/icons/060064ED.png deleted file mode 100755 index 907ee785..00000000 Binary files a/static/icons/060064ED.png and /dev/null differ diff --git a/static/icons/060064EF.png b/static/icons/060064EF.png deleted file mode 100755 index 578cf738..00000000 Binary files a/static/icons/060064EF.png and /dev/null differ diff --git a/static/icons/060064F0.png b/static/icons/060064F0.png deleted file mode 100755 index b3f50794..00000000 Binary files a/static/icons/060064F0.png and /dev/null differ diff --git a/static/icons/060064F1.png b/static/icons/060064F1.png deleted file mode 100755 index 10391947..00000000 Binary files a/static/icons/060064F1.png and /dev/null differ diff --git a/static/icons/060064F2.png b/static/icons/060064F2.png deleted file mode 100755 index 0254aab4..00000000 Binary files a/static/icons/060064F2.png and /dev/null differ diff --git a/static/icons/060064F3.png b/static/icons/060064F3.png deleted file mode 100755 index 935aa9e3..00000000 Binary files a/static/icons/060064F3.png and /dev/null differ diff --git a/static/icons/060064F4.png b/static/icons/060064F4.png deleted file mode 100755 index 83664d75..00000000 Binary files a/static/icons/060064F4.png and /dev/null differ diff --git a/static/icons/060064F5.png b/static/icons/060064F5.png deleted file mode 100755 index 59f3941a..00000000 Binary files a/static/icons/060064F5.png and /dev/null differ diff --git a/static/icons/060064F6.png b/static/icons/060064F6.png deleted file mode 100755 index 3a99d4c8..00000000 Binary files a/static/icons/060064F6.png and /dev/null differ diff --git a/static/icons/060064F7.png b/static/icons/060064F7.png deleted file mode 100755 index a1b65be6..00000000 Binary files a/static/icons/060064F7.png and /dev/null differ diff --git a/static/icons/060064F8.png b/static/icons/060064F8.png deleted file mode 100755 index c7559bae..00000000 Binary files a/static/icons/060064F8.png and /dev/null differ diff --git a/static/icons/060064F9.png b/static/icons/060064F9.png deleted file mode 100755 index be47cb07..00000000 Binary files a/static/icons/060064F9.png and /dev/null differ diff --git a/static/icons/060064FA.png b/static/icons/060064FA.png deleted file mode 100755 index 1f5ef141..00000000 Binary files a/static/icons/060064FA.png and /dev/null differ diff --git a/static/icons/060064FB.png b/static/icons/060064FB.png deleted file mode 100755 index f3d595f2..00000000 Binary files a/static/icons/060064FB.png and /dev/null differ diff --git a/static/icons/060064FC.png b/static/icons/060064FC.png deleted file mode 100755 index 360f3b63..00000000 Binary files a/static/icons/060064FC.png and /dev/null differ diff --git a/static/icons/060064FD.png b/static/icons/060064FD.png deleted file mode 100755 index 33b8fc9b..00000000 Binary files a/static/icons/060064FD.png and /dev/null differ diff --git a/static/icons/060064FE.png b/static/icons/060064FE.png deleted file mode 100755 index 294d3476..00000000 Binary files a/static/icons/060064FE.png and /dev/null differ diff --git a/static/icons/060064FF.png b/static/icons/060064FF.png deleted file mode 100755 index 40d6a99f..00000000 Binary files a/static/icons/060064FF.png and /dev/null differ diff --git a/static/icons/06006500.png b/static/icons/06006500.png deleted file mode 100755 index f31088d7..00000000 Binary files a/static/icons/06006500.png and /dev/null differ diff --git a/static/icons/06006501.png b/static/icons/06006501.png deleted file mode 100755 index 9390a1d7..00000000 Binary files a/static/icons/06006501.png and /dev/null differ diff --git a/static/icons/06006502.png b/static/icons/06006502.png deleted file mode 100755 index fd914e8f..00000000 Binary files a/static/icons/06006502.png and /dev/null differ diff --git a/static/icons/06006503.png b/static/icons/06006503.png deleted file mode 100755 index 406de3db..00000000 Binary files a/static/icons/06006503.png and /dev/null differ diff --git a/static/icons/06006504.png b/static/icons/06006504.png deleted file mode 100755 index 864655f5..00000000 Binary files a/static/icons/06006504.png and /dev/null differ diff --git a/static/icons/06006505.png b/static/icons/06006505.png deleted file mode 100755 index 4f597dba..00000000 Binary files a/static/icons/06006505.png and /dev/null differ diff --git a/static/icons/06006506.png b/static/icons/06006506.png deleted file mode 100755 index 8116f052..00000000 Binary files a/static/icons/06006506.png and /dev/null differ diff --git a/static/icons/06006507.png b/static/icons/06006507.png deleted file mode 100755 index 87c140d2..00000000 Binary files a/static/icons/06006507.png and /dev/null differ diff --git a/static/icons/06006508.png b/static/icons/06006508.png deleted file mode 100755 index d9c2c387..00000000 Binary files a/static/icons/06006508.png and /dev/null differ diff --git a/static/icons/06006509.png b/static/icons/06006509.png deleted file mode 100755 index 4cb677df..00000000 Binary files a/static/icons/06006509.png and /dev/null differ diff --git a/static/icons/0600650A.png b/static/icons/0600650A.png deleted file mode 100755 index b1241eee..00000000 Binary files a/static/icons/0600650A.png and /dev/null differ diff --git a/static/icons/0600650B.png b/static/icons/0600650B.png deleted file mode 100755 index 0e5edc98..00000000 Binary files a/static/icons/0600650B.png and /dev/null differ diff --git a/static/icons/0600650C.png b/static/icons/0600650C.png deleted file mode 100755 index fa5c8b7b..00000000 Binary files a/static/icons/0600650C.png and /dev/null differ diff --git a/static/icons/0600650D.png b/static/icons/0600650D.png deleted file mode 100755 index fb4d8f44..00000000 Binary files a/static/icons/0600650D.png and /dev/null differ diff --git a/static/icons/0600650E.png b/static/icons/0600650E.png deleted file mode 100755 index 9fcda49d..00000000 Binary files a/static/icons/0600650E.png and /dev/null differ diff --git a/static/icons/06006512.png b/static/icons/06006512.png deleted file mode 100755 index c8f3acea..00000000 Binary files a/static/icons/06006512.png and /dev/null differ diff --git a/static/icons/06006513.png b/static/icons/06006513.png deleted file mode 100755 index 460fa39a..00000000 Binary files a/static/icons/06006513.png and /dev/null differ diff --git a/static/icons/06006514.png b/static/icons/06006514.png deleted file mode 100755 index 7e3191f3..00000000 Binary files a/static/icons/06006514.png and /dev/null differ diff --git a/static/icons/06006515.png b/static/icons/06006515.png deleted file mode 100755 index 5a6c1e85..00000000 Binary files a/static/icons/06006515.png and /dev/null differ diff --git a/static/icons/06006516.png b/static/icons/06006516.png deleted file mode 100755 index 47a2f001..00000000 Binary files a/static/icons/06006516.png and /dev/null differ diff --git a/static/icons/06006517.png b/static/icons/06006517.png deleted file mode 100755 index d941b55c..00000000 Binary files a/static/icons/06006517.png and /dev/null differ diff --git a/static/icons/06006518.png b/static/icons/06006518.png deleted file mode 100755 index ae088403..00000000 Binary files a/static/icons/06006518.png and /dev/null differ diff --git a/static/icons/06006519.png b/static/icons/06006519.png deleted file mode 100755 index 070819a3..00000000 Binary files a/static/icons/06006519.png and /dev/null differ diff --git a/static/icons/0600651A.png b/static/icons/0600651A.png deleted file mode 100755 index 8e4c3e3e..00000000 Binary files a/static/icons/0600651A.png and /dev/null differ diff --git a/static/icons/0600651B.png b/static/icons/0600651B.png deleted file mode 100755 index 7821d1bc..00000000 Binary files a/static/icons/0600651B.png and /dev/null differ diff --git a/static/icons/0600651C.png b/static/icons/0600651C.png deleted file mode 100755 index 9dfac7e3..00000000 Binary files a/static/icons/0600651C.png and /dev/null differ diff --git a/static/icons/0600651D.png b/static/icons/0600651D.png deleted file mode 100755 index 46fe105e..00000000 Binary files a/static/icons/0600651D.png and /dev/null differ diff --git a/static/icons/0600651E.png b/static/icons/0600651E.png deleted file mode 100755 index 9984be84..00000000 Binary files a/static/icons/0600651E.png and /dev/null differ diff --git a/static/icons/0600651F.png b/static/icons/0600651F.png deleted file mode 100755 index 43c00bab..00000000 Binary files a/static/icons/0600651F.png and /dev/null differ diff --git a/static/icons/06006520.png b/static/icons/06006520.png deleted file mode 100755 index f9e286ce..00000000 Binary files a/static/icons/06006520.png and /dev/null differ diff --git a/static/icons/06006521.png b/static/icons/06006521.png deleted file mode 100755 index 36b7dd83..00000000 Binary files a/static/icons/06006521.png and /dev/null differ diff --git a/static/icons/06006522.png b/static/icons/06006522.png deleted file mode 100755 index c1d3a5fc..00000000 Binary files a/static/icons/06006522.png and /dev/null differ diff --git a/static/icons/06006523.png b/static/icons/06006523.png deleted file mode 100755 index ce9f6430..00000000 Binary files a/static/icons/06006523.png and /dev/null differ diff --git a/static/icons/06006524.png b/static/icons/06006524.png deleted file mode 100755 index bc6c919a..00000000 Binary files a/static/icons/06006524.png and /dev/null differ diff --git a/static/icons/06006525.png b/static/icons/06006525.png deleted file mode 100755 index 80c5559b..00000000 Binary files a/static/icons/06006525.png and /dev/null differ diff --git a/static/icons/06006526.png b/static/icons/06006526.png deleted file mode 100755 index c3a9bc4a..00000000 Binary files a/static/icons/06006526.png and /dev/null differ diff --git a/static/icons/06006527.png b/static/icons/06006527.png deleted file mode 100755 index 485e3afd..00000000 Binary files a/static/icons/06006527.png and /dev/null differ diff --git a/static/icons/06006528.png b/static/icons/06006528.png deleted file mode 100755 index c07b88f5..00000000 Binary files a/static/icons/06006528.png and /dev/null differ diff --git a/static/icons/06006529.png b/static/icons/06006529.png deleted file mode 100755 index 19842001..00000000 Binary files a/static/icons/06006529.png and /dev/null differ diff --git a/static/icons/0600652A.png b/static/icons/0600652A.png deleted file mode 100755 index 9de4aebf..00000000 Binary files a/static/icons/0600652A.png and /dev/null differ diff --git a/static/icons/0600652B.png b/static/icons/0600652B.png deleted file mode 100755 index 36408807..00000000 Binary files a/static/icons/0600652B.png and /dev/null differ diff --git a/static/icons/0600652C.png b/static/icons/0600652C.png deleted file mode 100755 index 95726ba7..00000000 Binary files a/static/icons/0600652C.png and /dev/null differ diff --git a/static/icons/0600652D.png b/static/icons/0600652D.png deleted file mode 100755 index e6460a78..00000000 Binary files a/static/icons/0600652D.png and /dev/null differ diff --git a/static/icons/0600652E.png b/static/icons/0600652E.png deleted file mode 100755 index 193c8f48..00000000 Binary files a/static/icons/0600652E.png and /dev/null differ diff --git a/static/icons/0600652F.png b/static/icons/0600652F.png deleted file mode 100755 index 5fc844fd..00000000 Binary files a/static/icons/0600652F.png and /dev/null differ diff --git a/static/icons/06006530.png b/static/icons/06006530.png deleted file mode 100755 index a081eed2..00000000 Binary files a/static/icons/06006530.png and /dev/null differ diff --git a/static/icons/06006531.png b/static/icons/06006531.png deleted file mode 100755 index 2101d8e3..00000000 Binary files a/static/icons/06006531.png and /dev/null differ diff --git a/static/icons/06006532.png b/static/icons/06006532.png deleted file mode 100755 index 46384ea8..00000000 Binary files a/static/icons/06006532.png and /dev/null differ diff --git a/static/icons/06006533.png b/static/icons/06006533.png deleted file mode 100755 index c3c33b24..00000000 Binary files a/static/icons/06006533.png and /dev/null differ diff --git a/static/icons/06006534.png b/static/icons/06006534.png deleted file mode 100755 index fab2dd15..00000000 Binary files a/static/icons/06006534.png and /dev/null differ diff --git a/static/icons/06006535.png b/static/icons/06006535.png deleted file mode 100755 index 5eed71e3..00000000 Binary files a/static/icons/06006535.png and /dev/null differ diff --git a/static/icons/06006536.png b/static/icons/06006536.png deleted file mode 100755 index 0ef9689c..00000000 Binary files a/static/icons/06006536.png and /dev/null differ diff --git a/static/icons/06006537.png b/static/icons/06006537.png deleted file mode 100755 index b72c68ed..00000000 Binary files a/static/icons/06006537.png and /dev/null differ diff --git a/static/icons/06006538.png b/static/icons/06006538.png deleted file mode 100755 index 4c26d250..00000000 Binary files a/static/icons/06006538.png and /dev/null differ diff --git a/static/icons/06006539.png b/static/icons/06006539.png deleted file mode 100755 index a008c748..00000000 Binary files a/static/icons/06006539.png and /dev/null differ diff --git a/static/icons/0600653A.png b/static/icons/0600653A.png deleted file mode 100755 index b60851c8..00000000 Binary files a/static/icons/0600653A.png and /dev/null differ diff --git a/static/icons/0600653B.png b/static/icons/0600653B.png deleted file mode 100755 index 197419b5..00000000 Binary files a/static/icons/0600653B.png and /dev/null differ diff --git a/static/icons/0600653C.png b/static/icons/0600653C.png deleted file mode 100755 index 2f911715..00000000 Binary files a/static/icons/0600653C.png and /dev/null differ diff --git a/static/icons/0600653D.png b/static/icons/0600653D.png deleted file mode 100755 index e99b10c2..00000000 Binary files a/static/icons/0600653D.png and /dev/null differ diff --git a/static/icons/0600653E.png b/static/icons/0600653E.png deleted file mode 100755 index 040b0688..00000000 Binary files a/static/icons/0600653E.png and /dev/null differ diff --git a/static/icons/0600653F.png b/static/icons/0600653F.png deleted file mode 100755 index 0550cdc1..00000000 Binary files a/static/icons/0600653F.png and /dev/null differ diff --git a/static/icons/06006540.png b/static/icons/06006540.png deleted file mode 100755 index acd6079f..00000000 Binary files a/static/icons/06006540.png and /dev/null differ diff --git a/static/icons/06006541.png b/static/icons/06006541.png deleted file mode 100755 index b8ec9387..00000000 Binary files a/static/icons/06006541.png and /dev/null differ diff --git a/static/icons/06006542.png b/static/icons/06006542.png deleted file mode 100755 index 051c4d73..00000000 Binary files a/static/icons/06006542.png and /dev/null differ diff --git a/static/icons/06006543.png b/static/icons/06006543.png deleted file mode 100755 index 4ef5649c..00000000 Binary files a/static/icons/06006543.png and /dev/null differ diff --git a/static/icons/06006544.png b/static/icons/06006544.png deleted file mode 100755 index e4c5bf49..00000000 Binary files a/static/icons/06006544.png and /dev/null differ diff --git a/static/icons/06006545.png b/static/icons/06006545.png deleted file mode 100755 index 9f62c666..00000000 Binary files a/static/icons/06006545.png and /dev/null differ diff --git a/static/icons/06006546.png b/static/icons/06006546.png deleted file mode 100755 index bca10e89..00000000 Binary files a/static/icons/06006546.png and /dev/null differ diff --git a/static/icons/06006547.png b/static/icons/06006547.png deleted file mode 100755 index f102216c..00000000 Binary files a/static/icons/06006547.png and /dev/null differ diff --git a/static/icons/06006548.png b/static/icons/06006548.png deleted file mode 100755 index 1faeead9..00000000 Binary files a/static/icons/06006548.png and /dev/null differ diff --git a/static/icons/06006549.png b/static/icons/06006549.png deleted file mode 100755 index 9f18eb78..00000000 Binary files a/static/icons/06006549.png and /dev/null differ diff --git a/static/icons/0600654A.png b/static/icons/0600654A.png deleted file mode 100755 index 249fb594..00000000 Binary files a/static/icons/0600654A.png and /dev/null differ diff --git a/static/icons/0600654B.png b/static/icons/0600654B.png deleted file mode 100755 index be67764a..00000000 Binary files a/static/icons/0600654B.png and /dev/null differ diff --git a/static/icons/0600654C.png b/static/icons/0600654C.png deleted file mode 100755 index 9def2bf8..00000000 Binary files a/static/icons/0600654C.png and /dev/null differ diff --git a/static/icons/0600654D.png b/static/icons/0600654D.png deleted file mode 100755 index d3cd09cb..00000000 Binary files a/static/icons/0600654D.png and /dev/null differ diff --git a/static/icons/0600654E.png b/static/icons/0600654E.png deleted file mode 100755 index 8bd42d37..00000000 Binary files a/static/icons/0600654E.png and /dev/null differ diff --git a/static/icons/0600654F.png b/static/icons/0600654F.png deleted file mode 100755 index 223e509a..00000000 Binary files a/static/icons/0600654F.png and /dev/null differ diff --git a/static/icons/06006550.png b/static/icons/06006550.png deleted file mode 100755 index f468a0ab..00000000 Binary files a/static/icons/06006550.png and /dev/null differ diff --git a/static/icons/06006551.png b/static/icons/06006551.png deleted file mode 100755 index 327b7242..00000000 Binary files a/static/icons/06006551.png and /dev/null differ diff --git a/static/icons/06006552.png b/static/icons/06006552.png deleted file mode 100755 index 24399874..00000000 Binary files a/static/icons/06006552.png and /dev/null differ diff --git a/static/icons/06006553.png b/static/icons/06006553.png deleted file mode 100755 index 2f544195..00000000 Binary files a/static/icons/06006553.png and /dev/null differ diff --git a/static/icons/06006554.png b/static/icons/06006554.png deleted file mode 100755 index f4a345c1..00000000 Binary files a/static/icons/06006554.png and /dev/null differ diff --git a/static/icons/06006555.png b/static/icons/06006555.png deleted file mode 100755 index 0656046a..00000000 Binary files a/static/icons/06006555.png and /dev/null differ diff --git a/static/icons/06006556.png b/static/icons/06006556.png deleted file mode 100755 index 8444af24..00000000 Binary files a/static/icons/06006556.png and /dev/null differ diff --git a/static/icons/06006557.png b/static/icons/06006557.png deleted file mode 100755 index 69e46d9d..00000000 Binary files a/static/icons/06006557.png and /dev/null differ diff --git a/static/icons/06006558.png b/static/icons/06006558.png deleted file mode 100755 index 0befff6b..00000000 Binary files a/static/icons/06006558.png and /dev/null differ diff --git a/static/icons/06006559.png b/static/icons/06006559.png deleted file mode 100755 index 58dbbdcc..00000000 Binary files a/static/icons/06006559.png and /dev/null differ diff --git a/static/icons/0600655A.png b/static/icons/0600655A.png deleted file mode 100755 index c4041d19..00000000 Binary files a/static/icons/0600655A.png and /dev/null differ diff --git a/static/icons/0600655B.png b/static/icons/0600655B.png deleted file mode 100755 index 975e858a..00000000 Binary files a/static/icons/0600655B.png and /dev/null differ diff --git a/static/icons/0600655C.png b/static/icons/0600655C.png deleted file mode 100755 index 37bdbed1..00000000 Binary files a/static/icons/0600655C.png and /dev/null differ diff --git a/static/icons/0600655D.png b/static/icons/0600655D.png deleted file mode 100755 index 00a4319b..00000000 Binary files a/static/icons/0600655D.png and /dev/null differ diff --git a/static/icons/0600655E.png b/static/icons/0600655E.png deleted file mode 100755 index be7dec51..00000000 Binary files a/static/icons/0600655E.png and /dev/null differ diff --git a/static/icons/0600655F.png b/static/icons/0600655F.png deleted file mode 100755 index 7cfd988d..00000000 Binary files a/static/icons/0600655F.png and /dev/null differ diff --git a/static/icons/06006560.png b/static/icons/06006560.png deleted file mode 100755 index 5f053174..00000000 Binary files a/static/icons/06006560.png and /dev/null differ diff --git a/static/icons/06006561.png b/static/icons/06006561.png deleted file mode 100755 index 0930f5b6..00000000 Binary files a/static/icons/06006561.png and /dev/null differ diff --git a/static/icons/06006562.png b/static/icons/06006562.png deleted file mode 100755 index 2728c642..00000000 Binary files a/static/icons/06006562.png and /dev/null differ diff --git a/static/icons/06006563.png b/static/icons/06006563.png deleted file mode 100755 index be63f05f..00000000 Binary files a/static/icons/06006563.png and /dev/null differ diff --git a/static/icons/06006564.png b/static/icons/06006564.png deleted file mode 100755 index a5a656ac..00000000 Binary files a/static/icons/06006564.png and /dev/null differ diff --git a/static/icons/06006565.png b/static/icons/06006565.png deleted file mode 100755 index 4f078b83..00000000 Binary files a/static/icons/06006565.png and /dev/null differ diff --git a/static/icons/06006569.png b/static/icons/06006569.png deleted file mode 100755 index bb882dc1..00000000 Binary files a/static/icons/06006569.png and /dev/null differ diff --git a/static/icons/0600656A.png b/static/icons/0600656A.png deleted file mode 100755 index a37c7739..00000000 Binary files a/static/icons/0600656A.png and /dev/null differ diff --git a/static/icons/0600656B.png b/static/icons/0600656B.png deleted file mode 100755 index bb882dc1..00000000 Binary files a/static/icons/0600656B.png and /dev/null differ diff --git a/static/icons/0600656D.png b/static/icons/0600656D.png deleted file mode 100755 index f7fce337..00000000 Binary files a/static/icons/0600656D.png and /dev/null differ diff --git a/static/icons/0600656E.png b/static/icons/0600656E.png deleted file mode 100755 index 07c5bada..00000000 Binary files a/static/icons/0600656E.png and /dev/null differ diff --git a/static/icons/0600656F.png b/static/icons/0600656F.png deleted file mode 100755 index 163ff82e..00000000 Binary files a/static/icons/0600656F.png and /dev/null differ diff --git a/static/icons/06006570.png b/static/icons/06006570.png deleted file mode 100755 index 9be2fc9a..00000000 Binary files a/static/icons/06006570.png and /dev/null differ diff --git a/static/icons/06006571.png b/static/icons/06006571.png deleted file mode 100755 index 6d7e03e3..00000000 Binary files a/static/icons/06006571.png and /dev/null differ diff --git a/static/icons/06006572.png b/static/icons/06006572.png deleted file mode 100755 index 1e0bfe14..00000000 Binary files a/static/icons/06006572.png and /dev/null differ diff --git a/static/icons/06006573.png b/static/icons/06006573.png deleted file mode 100755 index a99f69cd..00000000 Binary files a/static/icons/06006573.png and /dev/null differ diff --git a/static/icons/06006577.png b/static/icons/06006577.png deleted file mode 100755 index 20a54faa..00000000 Binary files a/static/icons/06006577.png and /dev/null differ diff --git a/static/icons/06006578.png b/static/icons/06006578.png deleted file mode 100755 index e57eb1a4..00000000 Binary files a/static/icons/06006578.png and /dev/null differ diff --git a/static/icons/06006579.png b/static/icons/06006579.png deleted file mode 100755 index cb4574f4..00000000 Binary files a/static/icons/06006579.png and /dev/null differ diff --git a/static/icons/0600657A.png b/static/icons/0600657A.png deleted file mode 100755 index f33eda8c..00000000 Binary files a/static/icons/0600657A.png and /dev/null differ diff --git a/static/icons/0600657B.png b/static/icons/0600657B.png deleted file mode 100755 index a0027852..00000000 Binary files a/static/icons/0600657B.png and /dev/null differ diff --git a/static/icons/0600657C.png b/static/icons/0600657C.png deleted file mode 100755 index 15544dc9..00000000 Binary files a/static/icons/0600657C.png and /dev/null differ diff --git a/static/icons/0600657D.png b/static/icons/0600657D.png deleted file mode 100755 index 21dcef82..00000000 Binary files a/static/icons/0600657D.png and /dev/null differ diff --git a/static/icons/0600657E.png b/static/icons/0600657E.png deleted file mode 100755 index fdca4ff5..00000000 Binary files a/static/icons/0600657E.png and /dev/null differ diff --git a/static/icons/0600657F.png b/static/icons/0600657F.png deleted file mode 100755 index 6eae3c99..00000000 Binary files a/static/icons/0600657F.png and /dev/null differ diff --git a/static/icons/06006580.png b/static/icons/06006580.png deleted file mode 100755 index c088faf3..00000000 Binary files a/static/icons/06006580.png and /dev/null differ diff --git a/static/icons/06006581.png b/static/icons/06006581.png deleted file mode 100755 index a130b94f..00000000 Binary files a/static/icons/06006581.png and /dev/null differ diff --git a/static/icons/06006582.png b/static/icons/06006582.png deleted file mode 100755 index 914c009c..00000000 Binary files a/static/icons/06006582.png and /dev/null differ diff --git a/static/icons/06006583.png b/static/icons/06006583.png deleted file mode 100755 index 3a12c424..00000000 Binary files a/static/icons/06006583.png and /dev/null differ diff --git a/static/icons/06006584.png b/static/icons/06006584.png deleted file mode 100755 index bf2b9fa1..00000000 Binary files a/static/icons/06006584.png and /dev/null differ diff --git a/static/icons/06006585.png b/static/icons/06006585.png deleted file mode 100755 index ad8c64dc..00000000 Binary files a/static/icons/06006585.png and /dev/null differ diff --git a/static/icons/06006586.png b/static/icons/06006586.png deleted file mode 100755 index 10247d2d..00000000 Binary files a/static/icons/06006586.png and /dev/null differ diff --git a/static/icons/06006587.png b/static/icons/06006587.png deleted file mode 100755 index ba38cbe9..00000000 Binary files a/static/icons/06006587.png and /dev/null differ diff --git a/static/icons/06006588.png b/static/icons/06006588.png deleted file mode 100755 index 76beeae9..00000000 Binary files a/static/icons/06006588.png and /dev/null differ diff --git a/static/icons/06006589.png b/static/icons/06006589.png deleted file mode 100755 index d346d015..00000000 Binary files a/static/icons/06006589.png and /dev/null differ diff --git a/static/icons/0600658A.png b/static/icons/0600658A.png deleted file mode 100755 index 555f77fc..00000000 Binary files a/static/icons/0600658A.png and /dev/null differ diff --git a/static/icons/0600658B.png b/static/icons/0600658B.png deleted file mode 100755 index 6eea0340..00000000 Binary files a/static/icons/0600658B.png and /dev/null differ diff --git a/static/icons/0600658C.png b/static/icons/0600658C.png deleted file mode 100755 index 1193fca2..00000000 Binary files a/static/icons/0600658C.png and /dev/null differ diff --git a/static/icons/0600658D.png b/static/icons/0600658D.png deleted file mode 100755 index 2383e413..00000000 Binary files a/static/icons/0600658D.png and /dev/null differ diff --git a/static/icons/0600658E.png b/static/icons/0600658E.png deleted file mode 100755 index 59656a20..00000000 Binary files a/static/icons/0600658E.png and /dev/null differ diff --git a/static/icons/0600658F.png b/static/icons/0600658F.png deleted file mode 100755 index 1718c7f6..00000000 Binary files a/static/icons/0600658F.png and /dev/null differ diff --git a/static/icons/06006590.png b/static/icons/06006590.png deleted file mode 100755 index a5426962..00000000 Binary files a/static/icons/06006590.png and /dev/null differ diff --git a/static/icons/06006591.png b/static/icons/06006591.png deleted file mode 100755 index e5bfd64e..00000000 Binary files a/static/icons/06006591.png and /dev/null differ diff --git a/static/icons/06006592.png b/static/icons/06006592.png deleted file mode 100755 index 043a4085..00000000 Binary files a/static/icons/06006592.png and /dev/null differ diff --git a/static/icons/06006593.png b/static/icons/06006593.png deleted file mode 100755 index 2127950f..00000000 Binary files a/static/icons/06006593.png and /dev/null differ diff --git a/static/icons/06006594.png b/static/icons/06006594.png deleted file mode 100755 index 5792e8fb..00000000 Binary files a/static/icons/06006594.png and /dev/null differ diff --git a/static/icons/06006595.png b/static/icons/06006595.png deleted file mode 100755 index 68b45624..00000000 Binary files a/static/icons/06006595.png and /dev/null differ diff --git a/static/icons/06006596.png b/static/icons/06006596.png deleted file mode 100755 index ca2f7a8b..00000000 Binary files a/static/icons/06006596.png and /dev/null differ diff --git a/static/icons/06006597.png b/static/icons/06006597.png deleted file mode 100755 index 7d0c6de2..00000000 Binary files a/static/icons/06006597.png and /dev/null differ diff --git a/static/icons/06006598.png b/static/icons/06006598.png deleted file mode 100755 index 0cb9001f..00000000 Binary files a/static/icons/06006598.png and /dev/null differ diff --git a/static/icons/06006599.png b/static/icons/06006599.png deleted file mode 100755 index 07ecaa30..00000000 Binary files a/static/icons/06006599.png and /dev/null differ diff --git a/static/icons/0600659A.png b/static/icons/0600659A.png deleted file mode 100755 index 1a10db3f..00000000 Binary files a/static/icons/0600659A.png and /dev/null differ diff --git a/static/icons/0600659B.png b/static/icons/0600659B.png deleted file mode 100755 index d65178fd..00000000 Binary files a/static/icons/0600659B.png and /dev/null differ diff --git a/static/icons/0600659C.png b/static/icons/0600659C.png deleted file mode 100755 index f5e2a8ef..00000000 Binary files a/static/icons/0600659C.png and /dev/null differ diff --git a/static/icons/0600659E.png b/static/icons/0600659E.png deleted file mode 100755 index 9ec6b39e..00000000 Binary files a/static/icons/0600659E.png and /dev/null differ diff --git a/static/icons/0600659F.png b/static/icons/0600659F.png deleted file mode 100755 index 4f7b4875..00000000 Binary files a/static/icons/0600659F.png and /dev/null differ diff --git a/static/icons/060065A0.png b/static/icons/060065A0.png deleted file mode 100755 index 0be53b50..00000000 Binary files a/static/icons/060065A0.png and /dev/null differ diff --git a/static/icons/060065A1.png b/static/icons/060065A1.png deleted file mode 100755 index cef719e1..00000000 Binary files a/static/icons/060065A1.png and /dev/null differ diff --git a/static/icons/060065A2.png b/static/icons/060065A2.png deleted file mode 100755 index 0bdf125f..00000000 Binary files a/static/icons/060065A2.png and /dev/null differ diff --git a/static/icons/060065A3.png b/static/icons/060065A3.png deleted file mode 100755 index 5a822341..00000000 Binary files a/static/icons/060065A3.png and /dev/null differ diff --git a/static/icons/060065A4.png b/static/icons/060065A4.png deleted file mode 100755 index 4dbed44d..00000000 Binary files a/static/icons/060065A4.png and /dev/null differ diff --git a/static/icons/060065A5.png b/static/icons/060065A5.png deleted file mode 100755 index c17d7b76..00000000 Binary files a/static/icons/060065A5.png and /dev/null differ diff --git a/static/icons/060065A6.png b/static/icons/060065A6.png deleted file mode 100755 index c85bd684..00000000 Binary files a/static/icons/060065A6.png and /dev/null differ diff --git a/static/icons/060065A7.png b/static/icons/060065A7.png deleted file mode 100755 index 72078156..00000000 Binary files a/static/icons/060065A7.png and /dev/null differ diff --git a/static/icons/060065A9.png b/static/icons/060065A9.png deleted file mode 100755 index 92b60238..00000000 Binary files a/static/icons/060065A9.png and /dev/null differ diff --git a/static/icons/060065AA.png b/static/icons/060065AA.png deleted file mode 100755 index 4d1ea82d..00000000 Binary files a/static/icons/060065AA.png and /dev/null differ diff --git a/static/icons/060065AB.png b/static/icons/060065AB.png deleted file mode 100755 index 80fbeaa9..00000000 Binary files a/static/icons/060065AB.png and /dev/null differ diff --git a/static/icons/060065AC.png b/static/icons/060065AC.png deleted file mode 100755 index d7281f73..00000000 Binary files a/static/icons/060065AC.png and /dev/null differ diff --git a/static/icons/060065AD.png b/static/icons/060065AD.png deleted file mode 100755 index 47ddf83e..00000000 Binary files a/static/icons/060065AD.png and /dev/null differ diff --git a/static/icons/060065AE.png b/static/icons/060065AE.png deleted file mode 100755 index 6a3edf17..00000000 Binary files a/static/icons/060065AE.png and /dev/null differ diff --git a/static/icons/060065AF.png b/static/icons/060065AF.png deleted file mode 100755 index 4574f972..00000000 Binary files a/static/icons/060065AF.png and /dev/null differ diff --git a/static/icons/060065B0.png b/static/icons/060065B0.png deleted file mode 100755 index d46e2f7c..00000000 Binary files a/static/icons/060065B0.png and /dev/null differ diff --git a/static/icons/060065B1.png b/static/icons/060065B1.png deleted file mode 100755 index 472e6783..00000000 Binary files a/static/icons/060065B1.png and /dev/null differ diff --git a/static/icons/060065B2.png b/static/icons/060065B2.png deleted file mode 100755 index bdbb911f..00000000 Binary files a/static/icons/060065B2.png and /dev/null differ diff --git a/static/icons/060065B3.png b/static/icons/060065B3.png deleted file mode 100755 index 313de3c8..00000000 Binary files a/static/icons/060065B3.png and /dev/null differ diff --git a/static/icons/060065B4.png b/static/icons/060065B4.png deleted file mode 100755 index 667d30f4..00000000 Binary files a/static/icons/060065B4.png and /dev/null differ diff --git a/static/icons/060065B5.png b/static/icons/060065B5.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060065B5.png and /dev/null differ diff --git a/static/icons/060065B6.png b/static/icons/060065B6.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060065B6.png and /dev/null differ diff --git a/static/icons/060065B7.png b/static/icons/060065B7.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060065B7.png and /dev/null differ diff --git a/static/icons/060065B8.png b/static/icons/060065B8.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060065B8.png and /dev/null differ diff --git a/static/icons/060065B9.png b/static/icons/060065B9.png deleted file mode 100755 index 1f2a2b9d..00000000 Binary files a/static/icons/060065B9.png and /dev/null differ diff --git a/static/icons/060065BB.png b/static/icons/060065BB.png deleted file mode 100755 index 0f341a86..00000000 Binary files a/static/icons/060065BB.png and /dev/null differ diff --git a/static/icons/060065BC.png b/static/icons/060065BC.png deleted file mode 100755 index 5f03c551..00000000 Binary files a/static/icons/060065BC.png and /dev/null differ diff --git a/static/icons/060065BD.png b/static/icons/060065BD.png deleted file mode 100755 index cbfe8840..00000000 Binary files a/static/icons/060065BD.png and /dev/null differ diff --git a/static/icons/060065BE.png b/static/icons/060065BE.png deleted file mode 100755 index 84e1e405..00000000 Binary files a/static/icons/060065BE.png and /dev/null differ diff --git a/static/icons/060065BF.png b/static/icons/060065BF.png deleted file mode 100755 index 6de4d0c3..00000000 Binary files a/static/icons/060065BF.png and /dev/null differ diff --git a/static/icons/060065C0.png b/static/icons/060065C0.png deleted file mode 100755 index fb3711d3..00000000 Binary files a/static/icons/060065C0.png and /dev/null differ diff --git a/static/icons/060065C1.png b/static/icons/060065C1.png deleted file mode 100755 index cad3eb5b..00000000 Binary files a/static/icons/060065C1.png and /dev/null differ diff --git a/static/icons/060065C2.png b/static/icons/060065C2.png deleted file mode 100755 index af07c2d4..00000000 Binary files a/static/icons/060065C2.png and /dev/null differ diff --git a/static/icons/060065C3.png b/static/icons/060065C3.png deleted file mode 100755 index 38e92f94..00000000 Binary files a/static/icons/060065C3.png and /dev/null differ diff --git a/static/icons/060065C4.png b/static/icons/060065C4.png deleted file mode 100755 index 52178700..00000000 Binary files a/static/icons/060065C4.png and /dev/null differ diff --git a/static/icons/060065C5.png b/static/icons/060065C5.png deleted file mode 100755 index 55e0e9be..00000000 Binary files a/static/icons/060065C5.png and /dev/null differ diff --git a/static/icons/060065C6.png b/static/icons/060065C6.png deleted file mode 100755 index a58cb379..00000000 Binary files a/static/icons/060065C6.png and /dev/null differ diff --git a/static/icons/060065C7.png b/static/icons/060065C7.png deleted file mode 100755 index 1584c5f0..00000000 Binary files a/static/icons/060065C7.png and /dev/null differ diff --git a/static/icons/060065C8.png b/static/icons/060065C8.png deleted file mode 100755 index c8253011..00000000 Binary files a/static/icons/060065C8.png and /dev/null differ diff --git a/static/icons/060065C9.png b/static/icons/060065C9.png deleted file mode 100755 index e0a3c29e..00000000 Binary files a/static/icons/060065C9.png and /dev/null differ diff --git a/static/icons/060065CA.png b/static/icons/060065CA.png deleted file mode 100755 index 8e5ae4e6..00000000 Binary files a/static/icons/060065CA.png and /dev/null differ diff --git a/static/icons/060065CB.png b/static/icons/060065CB.png deleted file mode 100755 index 727f6b98..00000000 Binary files a/static/icons/060065CB.png and /dev/null differ diff --git a/static/icons/060065CC.png b/static/icons/060065CC.png deleted file mode 100755 index 052a3cbd..00000000 Binary files a/static/icons/060065CC.png and /dev/null differ diff --git a/static/icons/060065CD.png b/static/icons/060065CD.png deleted file mode 100755 index d86c2134..00000000 Binary files a/static/icons/060065CD.png and /dev/null differ diff --git a/static/icons/060065D1.png b/static/icons/060065D1.png deleted file mode 100755 index d2f9e7a1..00000000 Binary files a/static/icons/060065D1.png and /dev/null differ diff --git a/static/icons/060065D2.png b/static/icons/060065D2.png deleted file mode 100755 index 3ab55bb0..00000000 Binary files a/static/icons/060065D2.png and /dev/null differ diff --git a/static/icons/060065D3.png b/static/icons/060065D3.png deleted file mode 100755 index 9956a43f..00000000 Binary files a/static/icons/060065D3.png and /dev/null differ diff --git a/static/icons/060065D4.png b/static/icons/060065D4.png deleted file mode 100755 index d387b5da..00000000 Binary files a/static/icons/060065D4.png and /dev/null differ diff --git a/static/icons/060065D5.png b/static/icons/060065D5.png deleted file mode 100755 index 84fa9ed7..00000000 Binary files a/static/icons/060065D5.png and /dev/null differ diff --git a/static/icons/060065D6.png b/static/icons/060065D6.png deleted file mode 100755 index e2786dd0..00000000 Binary files a/static/icons/060065D6.png and /dev/null differ diff --git a/static/icons/060065D7.png b/static/icons/060065D7.png deleted file mode 100755 index b0ca15eb..00000000 Binary files a/static/icons/060065D7.png and /dev/null differ diff --git a/static/icons/060065D8.png b/static/icons/060065D8.png deleted file mode 100755 index 55ae25a6..00000000 Binary files a/static/icons/060065D8.png and /dev/null differ diff --git a/static/icons/060065D9.png b/static/icons/060065D9.png deleted file mode 100755 index 7a35d948..00000000 Binary files a/static/icons/060065D9.png and /dev/null differ diff --git a/static/icons/060065DA.png b/static/icons/060065DA.png deleted file mode 100755 index 5397da79..00000000 Binary files a/static/icons/060065DA.png and /dev/null differ diff --git a/static/icons/060065DB.png b/static/icons/060065DB.png deleted file mode 100755 index dfe0aae2..00000000 Binary files a/static/icons/060065DB.png and /dev/null differ diff --git a/static/icons/060065DC.png b/static/icons/060065DC.png deleted file mode 100755 index 240a18e9..00000000 Binary files a/static/icons/060065DC.png and /dev/null differ diff --git a/static/icons/060065DD.png b/static/icons/060065DD.png deleted file mode 100755 index 2a675174..00000000 Binary files a/static/icons/060065DD.png and /dev/null differ diff --git a/static/icons/060065DE.png b/static/icons/060065DE.png deleted file mode 100755 index 9104459d..00000000 Binary files a/static/icons/060065DE.png and /dev/null differ diff --git a/static/icons/060065DF.png b/static/icons/060065DF.png deleted file mode 100755 index c51de3e4..00000000 Binary files a/static/icons/060065DF.png and /dev/null differ diff --git a/static/icons/060065E0.png b/static/icons/060065E0.png deleted file mode 100755 index 2048fc11..00000000 Binary files a/static/icons/060065E0.png and /dev/null differ diff --git a/static/icons/060065E2.png b/static/icons/060065E2.png deleted file mode 100755 index c873a175..00000000 Binary files a/static/icons/060065E2.png and /dev/null differ diff --git a/static/icons/060065E3.png b/static/icons/060065E3.png deleted file mode 100755 index e945250c..00000000 Binary files a/static/icons/060065E3.png and /dev/null differ diff --git a/static/icons/060065E4.png b/static/icons/060065E4.png deleted file mode 100755 index f035d053..00000000 Binary files a/static/icons/060065E4.png and /dev/null differ diff --git a/static/icons/060065E5.png b/static/icons/060065E5.png deleted file mode 100755 index 95dd7d93..00000000 Binary files a/static/icons/060065E5.png and /dev/null differ diff --git a/static/icons/060065E6.png b/static/icons/060065E6.png deleted file mode 100755 index f90151c0..00000000 Binary files a/static/icons/060065E6.png and /dev/null differ diff --git a/static/icons/060065E7.png b/static/icons/060065E7.png deleted file mode 100755 index 0818b095..00000000 Binary files a/static/icons/060065E7.png and /dev/null differ diff --git a/static/icons/060065E8.png b/static/icons/060065E8.png deleted file mode 100755 index 427e34b6..00000000 Binary files a/static/icons/060065E8.png and /dev/null differ diff --git a/static/icons/060065E9.png b/static/icons/060065E9.png deleted file mode 100755 index 98d6c222..00000000 Binary files a/static/icons/060065E9.png and /dev/null differ diff --git a/static/icons/060065EB.png b/static/icons/060065EB.png deleted file mode 100755 index 0474e784..00000000 Binary files a/static/icons/060065EB.png and /dev/null differ diff --git a/static/icons/060065EC.png b/static/icons/060065EC.png deleted file mode 100755 index b23f1b62..00000000 Binary files a/static/icons/060065EC.png and /dev/null differ diff --git a/static/icons/060065ED.png b/static/icons/060065ED.png deleted file mode 100755 index 4f5e2726..00000000 Binary files a/static/icons/060065ED.png and /dev/null differ diff --git a/static/icons/060065EE.png b/static/icons/060065EE.png deleted file mode 100755 index eb807db1..00000000 Binary files a/static/icons/060065EE.png and /dev/null differ diff --git a/static/icons/060065EF.png b/static/icons/060065EF.png deleted file mode 100755 index a26b9e5c..00000000 Binary files a/static/icons/060065EF.png and /dev/null differ diff --git a/static/icons/060065F0.png b/static/icons/060065F0.png deleted file mode 100755 index 076e6abc..00000000 Binary files a/static/icons/060065F0.png and /dev/null differ diff --git a/static/icons/060065F1.png b/static/icons/060065F1.png deleted file mode 100755 index 58a1c5bb..00000000 Binary files a/static/icons/060065F1.png and /dev/null differ diff --git a/static/icons/060065F2.png b/static/icons/060065F2.png deleted file mode 100755 index 5cb85c00..00000000 Binary files a/static/icons/060065F2.png and /dev/null differ diff --git a/static/icons/060065F3.png b/static/icons/060065F3.png deleted file mode 100755 index c317b8b3..00000000 Binary files a/static/icons/060065F3.png and /dev/null differ diff --git a/static/icons/060065F4.png b/static/icons/060065F4.png deleted file mode 100755 index ac1c0fe5..00000000 Binary files a/static/icons/060065F4.png and /dev/null differ diff --git a/static/icons/060065F6.png b/static/icons/060065F6.png deleted file mode 100755 index 092f6cc4..00000000 Binary files a/static/icons/060065F6.png and /dev/null differ diff --git a/static/icons/060065F8.png b/static/icons/060065F8.png deleted file mode 100755 index 257679a6..00000000 Binary files a/static/icons/060065F8.png and /dev/null differ diff --git a/static/icons/060065FA.png b/static/icons/060065FA.png deleted file mode 100755 index 8015762c..00000000 Binary files a/static/icons/060065FA.png and /dev/null differ diff --git a/static/icons/060065FB.png b/static/icons/060065FB.png deleted file mode 100755 index 3834e7b7..00000000 Binary files a/static/icons/060065FB.png and /dev/null differ diff --git a/static/icons/060065FC.png b/static/icons/060065FC.png deleted file mode 100755 index 0d20b2b2..00000000 Binary files a/static/icons/060065FC.png and /dev/null differ diff --git a/static/icons/060065FD.png b/static/icons/060065FD.png deleted file mode 100755 index 3e736bd9..00000000 Binary files a/static/icons/060065FD.png and /dev/null differ diff --git a/static/icons/060065FE.png b/static/icons/060065FE.png deleted file mode 100755 index 790ab100..00000000 Binary files a/static/icons/060065FE.png and /dev/null differ diff --git a/static/icons/060065FF.png b/static/icons/060065FF.png deleted file mode 100755 index f75a1826..00000000 Binary files a/static/icons/060065FF.png and /dev/null differ diff --git a/static/icons/06006600.png b/static/icons/06006600.png deleted file mode 100755 index 0843da3a..00000000 Binary files a/static/icons/06006600.png and /dev/null differ diff --git a/static/icons/06006601.png b/static/icons/06006601.png deleted file mode 100755 index 2f6c80f0..00000000 Binary files a/static/icons/06006601.png and /dev/null differ diff --git a/static/icons/06006602.png b/static/icons/06006602.png deleted file mode 100755 index 59624709..00000000 Binary files a/static/icons/06006602.png and /dev/null differ diff --git a/static/icons/06006603.png b/static/icons/06006603.png deleted file mode 100755 index 0a75f368..00000000 Binary files a/static/icons/06006603.png and /dev/null differ diff --git a/static/icons/06006604.png b/static/icons/06006604.png deleted file mode 100755 index fc157f9b..00000000 Binary files a/static/icons/06006604.png and /dev/null differ diff --git a/static/icons/06006605.png b/static/icons/06006605.png deleted file mode 100755 index b8fe7859..00000000 Binary files a/static/icons/06006605.png and /dev/null differ diff --git a/static/icons/06006606.png b/static/icons/06006606.png deleted file mode 100755 index 3dce9875..00000000 Binary files a/static/icons/06006606.png and /dev/null differ diff --git a/static/icons/06006607.png b/static/icons/06006607.png deleted file mode 100755 index 495c7971..00000000 Binary files a/static/icons/06006607.png and /dev/null differ diff --git a/static/icons/06006608.png b/static/icons/06006608.png deleted file mode 100755 index c6af4ec8..00000000 Binary files a/static/icons/06006608.png and /dev/null differ diff --git a/static/icons/06006609.png b/static/icons/06006609.png deleted file mode 100755 index f5db5742..00000000 Binary files a/static/icons/06006609.png and /dev/null differ diff --git a/static/icons/0600660A.png b/static/icons/0600660A.png deleted file mode 100755 index 62f53658..00000000 Binary files a/static/icons/0600660A.png and /dev/null differ diff --git a/static/icons/0600660B.png b/static/icons/0600660B.png deleted file mode 100755 index ca0e53ef..00000000 Binary files a/static/icons/0600660B.png and /dev/null differ diff --git a/static/icons/0600660C.png b/static/icons/0600660C.png deleted file mode 100755 index d165ee71..00000000 Binary files a/static/icons/0600660C.png and /dev/null differ diff --git a/static/icons/0600660D.png b/static/icons/0600660D.png deleted file mode 100755 index 316322cb..00000000 Binary files a/static/icons/0600660D.png and /dev/null differ diff --git a/static/icons/0600660E.png b/static/icons/0600660E.png deleted file mode 100755 index 0751f4e9..00000000 Binary files a/static/icons/0600660E.png and /dev/null differ diff --git a/static/icons/0600660F.png b/static/icons/0600660F.png deleted file mode 100755 index 84aa24c3..00000000 Binary files a/static/icons/0600660F.png and /dev/null differ diff --git a/static/icons/06006610.png b/static/icons/06006610.png deleted file mode 100755 index 714ed915..00000000 Binary files a/static/icons/06006610.png and /dev/null differ diff --git a/static/icons/06006611.png b/static/icons/06006611.png deleted file mode 100755 index d68083be..00000000 Binary files a/static/icons/06006611.png and /dev/null differ diff --git a/static/icons/06006612.png b/static/icons/06006612.png deleted file mode 100755 index fd36e419..00000000 Binary files a/static/icons/06006612.png and /dev/null differ diff --git a/static/icons/06006613.png b/static/icons/06006613.png deleted file mode 100755 index 2f36ab97..00000000 Binary files a/static/icons/06006613.png and /dev/null differ diff --git a/static/icons/06006614.png b/static/icons/06006614.png deleted file mode 100755 index 5dc3467d..00000000 Binary files a/static/icons/06006614.png and /dev/null differ diff --git a/static/icons/06006615.png b/static/icons/06006615.png deleted file mode 100755 index f4e6c31d..00000000 Binary files a/static/icons/06006615.png and /dev/null differ diff --git a/static/icons/06006616.png b/static/icons/06006616.png deleted file mode 100755 index a497079c..00000000 Binary files a/static/icons/06006616.png and /dev/null differ diff --git a/static/icons/06006617.png b/static/icons/06006617.png deleted file mode 100755 index c5f25b32..00000000 Binary files a/static/icons/06006617.png and /dev/null differ diff --git a/static/icons/06006618.png b/static/icons/06006618.png deleted file mode 100755 index 3783af02..00000000 Binary files a/static/icons/06006618.png and /dev/null differ diff --git a/static/icons/06006619.png b/static/icons/06006619.png deleted file mode 100755 index fe878b07..00000000 Binary files a/static/icons/06006619.png and /dev/null differ diff --git a/static/icons/0600661A.png b/static/icons/0600661A.png deleted file mode 100755 index 097d04c4..00000000 Binary files a/static/icons/0600661A.png and /dev/null differ diff --git a/static/icons/0600661B.png b/static/icons/0600661B.png deleted file mode 100755 index e3111b11..00000000 Binary files a/static/icons/0600661B.png and /dev/null differ diff --git a/static/icons/0600661C.png b/static/icons/0600661C.png deleted file mode 100755 index efba5125..00000000 Binary files a/static/icons/0600661C.png and /dev/null differ diff --git a/static/icons/0600661D.png b/static/icons/0600661D.png deleted file mode 100755 index 1f718568..00000000 Binary files a/static/icons/0600661D.png and /dev/null differ diff --git a/static/icons/0600661E.png b/static/icons/0600661E.png deleted file mode 100755 index a25a09b6..00000000 Binary files a/static/icons/0600661E.png and /dev/null differ diff --git a/static/icons/0600661F.png b/static/icons/0600661F.png deleted file mode 100755 index 3f46ebe7..00000000 Binary files a/static/icons/0600661F.png and /dev/null differ diff --git a/static/icons/06006620.png b/static/icons/06006620.png deleted file mode 100755 index 7bd5c35e..00000000 Binary files a/static/icons/06006620.png and /dev/null differ diff --git a/static/icons/06006621.png b/static/icons/06006621.png deleted file mode 100755 index 1fce3707..00000000 Binary files a/static/icons/06006621.png and /dev/null differ diff --git a/static/icons/06006622.png b/static/icons/06006622.png deleted file mode 100755 index 826fe545..00000000 Binary files a/static/icons/06006622.png and /dev/null differ diff --git a/static/icons/06006623.png b/static/icons/06006623.png deleted file mode 100755 index 3feeb6ad..00000000 Binary files a/static/icons/06006623.png and /dev/null differ diff --git a/static/icons/06006624.png b/static/icons/06006624.png deleted file mode 100755 index 287f533e..00000000 Binary files a/static/icons/06006624.png and /dev/null differ diff --git a/static/icons/06006625.png b/static/icons/06006625.png deleted file mode 100755 index b701bf37..00000000 Binary files a/static/icons/06006625.png and /dev/null differ diff --git a/static/icons/06006626.png b/static/icons/06006626.png deleted file mode 100755 index 4ef4ec42..00000000 Binary files a/static/icons/06006626.png and /dev/null differ diff --git a/static/icons/06006627.png b/static/icons/06006627.png deleted file mode 100755 index 94b1a898..00000000 Binary files a/static/icons/06006627.png and /dev/null differ diff --git a/static/icons/06006628.png b/static/icons/06006628.png deleted file mode 100755 index 6565241f..00000000 Binary files a/static/icons/06006628.png and /dev/null differ diff --git a/static/icons/06006629.png b/static/icons/06006629.png deleted file mode 100755 index 7b1e010e..00000000 Binary files a/static/icons/06006629.png and /dev/null differ diff --git a/static/icons/0600662A.png b/static/icons/0600662A.png deleted file mode 100755 index 03a81b71..00000000 Binary files a/static/icons/0600662A.png and /dev/null differ diff --git a/static/icons/0600662B.png b/static/icons/0600662B.png deleted file mode 100755 index 5e824e8b..00000000 Binary files a/static/icons/0600662B.png and /dev/null differ diff --git a/static/icons/0600662C.png b/static/icons/0600662C.png deleted file mode 100755 index 139e108d..00000000 Binary files a/static/icons/0600662C.png and /dev/null differ diff --git a/static/icons/0600662D.png b/static/icons/0600662D.png deleted file mode 100755 index 356a720d..00000000 Binary files a/static/icons/0600662D.png and /dev/null differ diff --git a/static/icons/0600662E.png b/static/icons/0600662E.png deleted file mode 100755 index 007b06c1..00000000 Binary files a/static/icons/0600662E.png and /dev/null differ diff --git a/static/icons/0600662F.png b/static/icons/0600662F.png deleted file mode 100755 index cb199ddb..00000000 Binary files a/static/icons/0600662F.png and /dev/null differ diff --git a/static/icons/06006631.png b/static/icons/06006631.png deleted file mode 100755 index 5f7894e9..00000000 Binary files a/static/icons/06006631.png and /dev/null differ diff --git a/static/icons/06006632.png b/static/icons/06006632.png deleted file mode 100755 index 392f0af7..00000000 Binary files a/static/icons/06006632.png and /dev/null differ diff --git a/static/icons/06006633.png b/static/icons/06006633.png deleted file mode 100755 index de819d68..00000000 Binary files a/static/icons/06006633.png and /dev/null differ diff --git a/static/icons/06006634.png b/static/icons/06006634.png deleted file mode 100755 index 430b9cda..00000000 Binary files a/static/icons/06006634.png and /dev/null differ diff --git a/static/icons/06006635.png b/static/icons/06006635.png deleted file mode 100755 index db0dba29..00000000 Binary files a/static/icons/06006635.png and /dev/null differ diff --git a/static/icons/06006636.png b/static/icons/06006636.png deleted file mode 100755 index fbfe595b..00000000 Binary files a/static/icons/06006636.png and /dev/null differ diff --git a/static/icons/06006638.png b/static/icons/06006638.png deleted file mode 100755 index 28514871..00000000 Binary files a/static/icons/06006638.png and /dev/null differ diff --git a/static/icons/06006639.png b/static/icons/06006639.png deleted file mode 100755 index d46673bc..00000000 Binary files a/static/icons/06006639.png and /dev/null differ diff --git a/static/icons/0600663A.png b/static/icons/0600663A.png deleted file mode 100755 index 0b78c21e..00000000 Binary files a/static/icons/0600663A.png and /dev/null differ diff --git a/static/icons/0600663B.png b/static/icons/0600663B.png deleted file mode 100755 index 00db1abe..00000000 Binary files a/static/icons/0600663B.png and /dev/null differ diff --git a/static/icons/0600663C.png b/static/icons/0600663C.png deleted file mode 100755 index 41a5e97e..00000000 Binary files a/static/icons/0600663C.png and /dev/null differ diff --git a/static/icons/0600663D.png b/static/icons/0600663D.png deleted file mode 100755 index b166b2ad..00000000 Binary files a/static/icons/0600663D.png and /dev/null differ diff --git a/static/icons/0600663E.png b/static/icons/0600663E.png deleted file mode 100755 index 3dbbf5d6..00000000 Binary files a/static/icons/0600663E.png and /dev/null differ diff --git a/static/icons/0600663F.png b/static/icons/0600663F.png deleted file mode 100755 index dec33754..00000000 Binary files a/static/icons/0600663F.png and /dev/null differ diff --git a/static/icons/06006640.png b/static/icons/06006640.png deleted file mode 100755 index 0face1bb..00000000 Binary files a/static/icons/06006640.png and /dev/null differ diff --git a/static/icons/06006642.png b/static/icons/06006642.png deleted file mode 100755 index f749fe60..00000000 Binary files a/static/icons/06006642.png and /dev/null differ diff --git a/static/icons/06006643.png b/static/icons/06006643.png deleted file mode 100755 index 732fa7d1..00000000 Binary files a/static/icons/06006643.png and /dev/null differ diff --git a/static/icons/06006644.png b/static/icons/06006644.png deleted file mode 100755 index c2686260..00000000 Binary files a/static/icons/06006644.png and /dev/null differ diff --git a/static/icons/06006645.png b/static/icons/06006645.png deleted file mode 100755 index 1c8b9980..00000000 Binary files a/static/icons/06006645.png and /dev/null differ diff --git a/static/icons/06006646.png b/static/icons/06006646.png deleted file mode 100755 index f8b1460f..00000000 Binary files a/static/icons/06006646.png and /dev/null differ diff --git a/static/icons/06006647.png b/static/icons/06006647.png deleted file mode 100755 index f763eb35..00000000 Binary files a/static/icons/06006647.png and /dev/null differ diff --git a/static/icons/06006648.png b/static/icons/06006648.png deleted file mode 100755 index 91a93663..00000000 Binary files a/static/icons/06006648.png and /dev/null differ diff --git a/static/icons/06006649.png b/static/icons/06006649.png deleted file mode 100755 index 91abf9da..00000000 Binary files a/static/icons/06006649.png and /dev/null differ diff --git a/static/icons/0600664A.png b/static/icons/0600664A.png deleted file mode 100755 index bc4dd0f2..00000000 Binary files a/static/icons/0600664A.png and /dev/null differ diff --git a/static/icons/0600664B.png b/static/icons/0600664B.png deleted file mode 100755 index f4763e54..00000000 Binary files a/static/icons/0600664B.png and /dev/null differ diff --git a/static/icons/0600664C.png b/static/icons/0600664C.png deleted file mode 100755 index 954e7ad9..00000000 Binary files a/static/icons/0600664C.png and /dev/null differ diff --git a/static/icons/0600664D.png b/static/icons/0600664D.png deleted file mode 100755 index dd9f6076..00000000 Binary files a/static/icons/0600664D.png and /dev/null differ diff --git a/static/icons/0600664E.png b/static/icons/0600664E.png deleted file mode 100755 index 39e22ffb..00000000 Binary files a/static/icons/0600664E.png and /dev/null differ diff --git a/static/icons/0600664F.png b/static/icons/0600664F.png deleted file mode 100755 index 5c6c66a1..00000000 Binary files a/static/icons/0600664F.png and /dev/null differ diff --git a/static/icons/06006650.png b/static/icons/06006650.png deleted file mode 100755 index 181af0da..00000000 Binary files a/static/icons/06006650.png and /dev/null differ diff --git a/static/icons/06006651.png b/static/icons/06006651.png deleted file mode 100755 index baeb0a03..00000000 Binary files a/static/icons/06006651.png and /dev/null differ diff --git a/static/icons/06006652.png b/static/icons/06006652.png deleted file mode 100755 index d616ed86..00000000 Binary files a/static/icons/06006652.png and /dev/null differ diff --git a/static/icons/06006653.png b/static/icons/06006653.png deleted file mode 100755 index dad83156..00000000 Binary files a/static/icons/06006653.png and /dev/null differ diff --git a/static/icons/06006654.png b/static/icons/06006654.png deleted file mode 100755 index e659e263..00000000 Binary files a/static/icons/06006654.png and /dev/null differ diff --git a/static/icons/06006655.png b/static/icons/06006655.png deleted file mode 100755 index 23b11827..00000000 Binary files a/static/icons/06006655.png and /dev/null differ diff --git a/static/icons/06006656.png b/static/icons/06006656.png deleted file mode 100755 index aaad2e97..00000000 Binary files a/static/icons/06006656.png and /dev/null differ diff --git a/static/icons/06006657.png b/static/icons/06006657.png deleted file mode 100755 index bc784bba..00000000 Binary files a/static/icons/06006657.png and /dev/null differ diff --git a/static/icons/06006658.png b/static/icons/06006658.png deleted file mode 100755 index ba2ed177..00000000 Binary files a/static/icons/06006658.png and /dev/null differ diff --git a/static/icons/06006659.png b/static/icons/06006659.png deleted file mode 100755 index 13e37c47..00000000 Binary files a/static/icons/06006659.png and /dev/null differ diff --git a/static/icons/0600665A.png b/static/icons/0600665A.png deleted file mode 100755 index 5ca317f1..00000000 Binary files a/static/icons/0600665A.png and /dev/null differ diff --git a/static/icons/0600665B.png b/static/icons/0600665B.png deleted file mode 100755 index bc192b39..00000000 Binary files a/static/icons/0600665B.png and /dev/null differ diff --git a/static/icons/0600665D.png b/static/icons/0600665D.png deleted file mode 100755 index 4cd740d8..00000000 Binary files a/static/icons/0600665D.png and /dev/null differ diff --git a/static/icons/0600665E.png b/static/icons/0600665E.png deleted file mode 100755 index ceeb5dd6..00000000 Binary files a/static/icons/0600665E.png and /dev/null differ diff --git a/static/icons/0600665F.png b/static/icons/0600665F.png deleted file mode 100755 index a27d5178..00000000 Binary files a/static/icons/0600665F.png and /dev/null differ diff --git a/static/icons/06006660.png b/static/icons/06006660.png deleted file mode 100755 index 5c0e8e7d..00000000 Binary files a/static/icons/06006660.png and /dev/null differ diff --git a/static/icons/06006661.png b/static/icons/06006661.png deleted file mode 100755 index 52d53be4..00000000 Binary files a/static/icons/06006661.png and /dev/null differ diff --git a/static/icons/06006662.png b/static/icons/06006662.png deleted file mode 100755 index fa4f1762..00000000 Binary files a/static/icons/06006662.png and /dev/null differ diff --git a/static/icons/06006663.png b/static/icons/06006663.png deleted file mode 100755 index abbe4954..00000000 Binary files a/static/icons/06006663.png and /dev/null differ diff --git a/static/icons/06006664.png b/static/icons/06006664.png deleted file mode 100755 index c5bb011e..00000000 Binary files a/static/icons/06006664.png and /dev/null differ diff --git a/static/icons/06006665.png b/static/icons/06006665.png deleted file mode 100755 index db3b9d39..00000000 Binary files a/static/icons/06006665.png and /dev/null differ diff --git a/static/icons/06006666.png b/static/icons/06006666.png deleted file mode 100755 index 107625af..00000000 Binary files a/static/icons/06006666.png and /dev/null differ diff --git a/static/icons/06006667.png b/static/icons/06006667.png deleted file mode 100755 index b5ed92fb..00000000 Binary files a/static/icons/06006667.png and /dev/null differ diff --git a/static/icons/06006668.png b/static/icons/06006668.png deleted file mode 100755 index 8a13231e..00000000 Binary files a/static/icons/06006668.png and /dev/null differ diff --git a/static/icons/0600666A.png b/static/icons/0600666A.png deleted file mode 100755 index 071b313a..00000000 Binary files a/static/icons/0600666A.png and /dev/null differ diff --git a/static/icons/0600666B.png b/static/icons/0600666B.png deleted file mode 100755 index af484ee1..00000000 Binary files a/static/icons/0600666B.png and /dev/null differ diff --git a/static/icons/0600666C.png b/static/icons/0600666C.png deleted file mode 100755 index 8215a221..00000000 Binary files a/static/icons/0600666C.png and /dev/null differ diff --git a/static/icons/0600666D.png b/static/icons/0600666D.png deleted file mode 100755 index 1b98678d..00000000 Binary files a/static/icons/0600666D.png and /dev/null differ diff --git a/static/icons/0600666E.png b/static/icons/0600666E.png deleted file mode 100755 index 81236713..00000000 Binary files a/static/icons/0600666E.png and /dev/null differ diff --git a/static/icons/06006671.png b/static/icons/06006671.png deleted file mode 100755 index 9b366e97..00000000 Binary files a/static/icons/06006671.png and /dev/null differ diff --git a/static/icons/06006672.png b/static/icons/06006672.png deleted file mode 100755 index 17e5d734..00000000 Binary files a/static/icons/06006672.png and /dev/null differ diff --git a/static/icons/06006673.png b/static/icons/06006673.png deleted file mode 100755 index 037cd3ad..00000000 Binary files a/static/icons/06006673.png and /dev/null differ diff --git a/static/icons/06006674.png b/static/icons/06006674.png deleted file mode 100755 index 7a23c236..00000000 Binary files a/static/icons/06006674.png and /dev/null differ diff --git a/static/icons/06006675.png b/static/icons/06006675.png deleted file mode 100755 index d4fada4e..00000000 Binary files a/static/icons/06006675.png and /dev/null differ diff --git a/static/icons/06006676.png b/static/icons/06006676.png deleted file mode 100755 index 0437bcf1..00000000 Binary files a/static/icons/06006676.png and /dev/null differ diff --git a/static/icons/06006677.png b/static/icons/06006677.png deleted file mode 100755 index 949b8681..00000000 Binary files a/static/icons/06006677.png and /dev/null differ diff --git a/static/icons/06006678.png b/static/icons/06006678.png deleted file mode 100755 index c3dabf86..00000000 Binary files a/static/icons/06006678.png and /dev/null differ diff --git a/static/icons/06006679.png b/static/icons/06006679.png deleted file mode 100755 index 41bb516e..00000000 Binary files a/static/icons/06006679.png and /dev/null differ diff --git a/static/icons/0600667A.png b/static/icons/0600667A.png deleted file mode 100755 index 4ada3a25..00000000 Binary files a/static/icons/0600667A.png and /dev/null differ diff --git a/static/icons/0600667B.png b/static/icons/0600667B.png deleted file mode 100755 index e29d7806..00000000 Binary files a/static/icons/0600667B.png and /dev/null differ diff --git a/static/icons/0600667C.png b/static/icons/0600667C.png deleted file mode 100755 index a7df7d4b..00000000 Binary files a/static/icons/0600667C.png and /dev/null differ diff --git a/static/icons/0600667D.png b/static/icons/0600667D.png deleted file mode 100755 index da6e329c..00000000 Binary files a/static/icons/0600667D.png and /dev/null differ diff --git a/static/icons/0600667E.png b/static/icons/0600667E.png deleted file mode 100755 index ebf463e6..00000000 Binary files a/static/icons/0600667E.png and /dev/null differ diff --git a/static/icons/0600667F.png b/static/icons/0600667F.png deleted file mode 100755 index 13d389e6..00000000 Binary files a/static/icons/0600667F.png and /dev/null differ diff --git a/static/icons/06006680.png b/static/icons/06006680.png deleted file mode 100755 index b9bae0ce..00000000 Binary files a/static/icons/06006680.png and /dev/null differ diff --git a/static/icons/06006681.png b/static/icons/06006681.png deleted file mode 100755 index 9a8996d1..00000000 Binary files a/static/icons/06006681.png and /dev/null differ diff --git a/static/icons/06006682.png b/static/icons/06006682.png deleted file mode 100755 index f6ca1b96..00000000 Binary files a/static/icons/06006682.png and /dev/null differ diff --git a/static/icons/06006683.png b/static/icons/06006683.png deleted file mode 100755 index cac42e13..00000000 Binary files a/static/icons/06006683.png and /dev/null differ diff --git a/static/icons/06006684.png b/static/icons/06006684.png deleted file mode 100755 index 23bcb179..00000000 Binary files a/static/icons/06006684.png and /dev/null differ diff --git a/static/icons/06006685.png b/static/icons/06006685.png deleted file mode 100755 index 28abef65..00000000 Binary files a/static/icons/06006685.png and /dev/null differ diff --git a/static/icons/06006686.png b/static/icons/06006686.png deleted file mode 100755 index e9ff1095..00000000 Binary files a/static/icons/06006686.png and /dev/null differ diff --git a/static/icons/06006687.png b/static/icons/06006687.png deleted file mode 100755 index a939d95d..00000000 Binary files a/static/icons/06006687.png and /dev/null differ diff --git a/static/icons/06006688.png b/static/icons/06006688.png deleted file mode 100755 index 84140e34..00000000 Binary files a/static/icons/06006688.png and /dev/null differ diff --git a/static/icons/06006689.png b/static/icons/06006689.png deleted file mode 100755 index aa836e02..00000000 Binary files a/static/icons/06006689.png and /dev/null differ diff --git a/static/icons/0600668A.png b/static/icons/0600668A.png deleted file mode 100755 index a756f077..00000000 Binary files a/static/icons/0600668A.png and /dev/null differ diff --git a/static/icons/0600668B.png b/static/icons/0600668B.png deleted file mode 100755 index 564800cf..00000000 Binary files a/static/icons/0600668B.png and /dev/null differ diff --git a/static/icons/0600668C.png b/static/icons/0600668C.png deleted file mode 100755 index e822ffad..00000000 Binary files a/static/icons/0600668C.png and /dev/null differ diff --git a/static/icons/0600668D.png b/static/icons/0600668D.png deleted file mode 100755 index fd11ec26..00000000 Binary files a/static/icons/0600668D.png and /dev/null differ diff --git a/static/icons/06006690.png b/static/icons/06006690.png deleted file mode 100755 index e1b77ee2..00000000 Binary files a/static/icons/06006690.png and /dev/null differ diff --git a/static/icons/06006691.png b/static/icons/06006691.png deleted file mode 100755 index 4a9e0ab1..00000000 Binary files a/static/icons/06006691.png and /dev/null differ diff --git a/static/icons/06006692.png b/static/icons/06006692.png deleted file mode 100755 index eec8e287..00000000 Binary files a/static/icons/06006692.png and /dev/null differ diff --git a/static/icons/06006693.png b/static/icons/06006693.png deleted file mode 100755 index 19db738c..00000000 Binary files a/static/icons/06006693.png and /dev/null differ diff --git a/static/icons/06006694.png b/static/icons/06006694.png deleted file mode 100755 index 0dc1d647..00000000 Binary files a/static/icons/06006694.png and /dev/null differ diff --git a/static/icons/06006695.png b/static/icons/06006695.png deleted file mode 100755 index 9e342696..00000000 Binary files a/static/icons/06006695.png and /dev/null differ diff --git a/static/icons/06006696.png b/static/icons/06006696.png deleted file mode 100755 index 68471cdd..00000000 Binary files a/static/icons/06006696.png and /dev/null differ diff --git a/static/icons/06006697.png b/static/icons/06006697.png deleted file mode 100755 index 54acb349..00000000 Binary files a/static/icons/06006697.png and /dev/null differ diff --git a/static/icons/06006698.png b/static/icons/06006698.png deleted file mode 100755 index f4837df2..00000000 Binary files a/static/icons/06006698.png and /dev/null differ diff --git a/static/icons/06006699.png b/static/icons/06006699.png deleted file mode 100755 index 4ab884a6..00000000 Binary files a/static/icons/06006699.png and /dev/null differ diff --git a/static/icons/0600669A.png b/static/icons/0600669A.png deleted file mode 100755 index b77a442b..00000000 Binary files a/static/icons/0600669A.png and /dev/null differ diff --git a/static/icons/0600669B.png b/static/icons/0600669B.png deleted file mode 100755 index dfd72792..00000000 Binary files a/static/icons/0600669B.png and /dev/null differ diff --git a/static/icons/0600669C.png b/static/icons/0600669C.png deleted file mode 100755 index fb9fc960..00000000 Binary files a/static/icons/0600669C.png and /dev/null differ diff --git a/static/icons/0600669D.png b/static/icons/0600669D.png deleted file mode 100755 index 6d79fec8..00000000 Binary files a/static/icons/0600669D.png and /dev/null differ diff --git a/static/icons/0600669E.png b/static/icons/0600669E.png deleted file mode 100755 index fb16bd17..00000000 Binary files a/static/icons/0600669E.png and /dev/null differ diff --git a/static/icons/0600669F.png b/static/icons/0600669F.png deleted file mode 100755 index 13c1d8b1..00000000 Binary files a/static/icons/0600669F.png and /dev/null differ diff --git a/static/icons/060066A0.png b/static/icons/060066A0.png deleted file mode 100755 index b2399489..00000000 Binary files a/static/icons/060066A0.png and /dev/null differ diff --git a/static/icons/060066A1.png b/static/icons/060066A1.png deleted file mode 100755 index 7e8b686d..00000000 Binary files a/static/icons/060066A1.png and /dev/null differ diff --git a/static/icons/060066A2.png b/static/icons/060066A2.png deleted file mode 100755 index 146f68ed..00000000 Binary files a/static/icons/060066A2.png and /dev/null differ diff --git a/static/icons/060066A3.png b/static/icons/060066A3.png deleted file mode 100755 index 262971b0..00000000 Binary files a/static/icons/060066A3.png and /dev/null differ diff --git a/static/icons/060066A4.png b/static/icons/060066A4.png deleted file mode 100755 index 4c5f30e7..00000000 Binary files a/static/icons/060066A4.png and /dev/null differ diff --git a/static/icons/060066A5.png b/static/icons/060066A5.png deleted file mode 100755 index c6d3f38c..00000000 Binary files a/static/icons/060066A5.png and /dev/null differ diff --git a/static/icons/060066A6.png b/static/icons/060066A6.png deleted file mode 100755 index 4130c389..00000000 Binary files a/static/icons/060066A6.png and /dev/null differ diff --git a/static/icons/060066A7.png b/static/icons/060066A7.png deleted file mode 100755 index 823987fd..00000000 Binary files a/static/icons/060066A7.png and /dev/null differ diff --git a/static/icons/060066A8.png b/static/icons/060066A8.png deleted file mode 100755 index 651068d1..00000000 Binary files a/static/icons/060066A8.png and /dev/null differ diff --git a/static/icons/060066A9.png b/static/icons/060066A9.png deleted file mode 100755 index 0e973498..00000000 Binary files a/static/icons/060066A9.png and /dev/null differ diff --git a/static/icons/060066AA.png b/static/icons/060066AA.png deleted file mode 100755 index 0c2d6048..00000000 Binary files a/static/icons/060066AA.png and /dev/null differ diff --git a/static/icons/060066AB.png b/static/icons/060066AB.png deleted file mode 100755 index 28a80ab0..00000000 Binary files a/static/icons/060066AB.png and /dev/null differ diff --git a/static/icons/060066AC.png b/static/icons/060066AC.png deleted file mode 100755 index e87ef6b2..00000000 Binary files a/static/icons/060066AC.png and /dev/null differ diff --git a/static/icons/060066AD.png b/static/icons/060066AD.png deleted file mode 100755 index 8fba3ba3..00000000 Binary files a/static/icons/060066AD.png and /dev/null differ diff --git a/static/icons/060066AE.png b/static/icons/060066AE.png deleted file mode 100755 index b26bda9a..00000000 Binary files a/static/icons/060066AE.png and /dev/null differ diff --git a/static/icons/060066AF.png b/static/icons/060066AF.png deleted file mode 100755 index 07954105..00000000 Binary files a/static/icons/060066AF.png and /dev/null differ diff --git a/static/icons/060066B0.png b/static/icons/060066B0.png deleted file mode 100755 index 8e138374..00000000 Binary files a/static/icons/060066B0.png and /dev/null differ diff --git a/static/icons/060066B1.png b/static/icons/060066B1.png deleted file mode 100755 index 75d24048..00000000 Binary files a/static/icons/060066B1.png and /dev/null differ diff --git a/static/icons/060066B2.png b/static/icons/060066B2.png deleted file mode 100755 index 9e4f5b99..00000000 Binary files a/static/icons/060066B2.png and /dev/null differ diff --git a/static/icons/060066B3.png b/static/icons/060066B3.png deleted file mode 100755 index 06147d2b..00000000 Binary files a/static/icons/060066B3.png and /dev/null differ diff --git a/static/icons/060066B4.png b/static/icons/060066B4.png deleted file mode 100755 index 2c270d15..00000000 Binary files a/static/icons/060066B4.png and /dev/null differ diff --git a/static/icons/060066B5.png b/static/icons/060066B5.png deleted file mode 100755 index d5673789..00000000 Binary files a/static/icons/060066B5.png and /dev/null differ diff --git a/static/icons/060066B6.png b/static/icons/060066B6.png deleted file mode 100755 index a6c94cfc..00000000 Binary files a/static/icons/060066B6.png and /dev/null differ diff --git a/static/icons/060066B7.png b/static/icons/060066B7.png deleted file mode 100755 index e556413c..00000000 Binary files a/static/icons/060066B7.png and /dev/null differ diff --git a/static/icons/060066B8.png b/static/icons/060066B8.png deleted file mode 100755 index d1ffc0f2..00000000 Binary files a/static/icons/060066B8.png and /dev/null differ diff --git a/static/icons/060066B9.png b/static/icons/060066B9.png deleted file mode 100755 index a764e27c..00000000 Binary files a/static/icons/060066B9.png and /dev/null differ diff --git a/static/icons/060066BA.png b/static/icons/060066BA.png deleted file mode 100755 index 006fc439..00000000 Binary files a/static/icons/060066BA.png and /dev/null differ diff --git a/static/icons/060066BB.png b/static/icons/060066BB.png deleted file mode 100755 index ee4ba126..00000000 Binary files a/static/icons/060066BB.png and /dev/null differ diff --git a/static/icons/060066BC.png b/static/icons/060066BC.png deleted file mode 100755 index fcacb0e8..00000000 Binary files a/static/icons/060066BC.png and /dev/null differ diff --git a/static/icons/060066BD.png b/static/icons/060066BD.png deleted file mode 100755 index 58434deb..00000000 Binary files a/static/icons/060066BD.png and /dev/null differ diff --git a/static/icons/060066BE.png b/static/icons/060066BE.png deleted file mode 100755 index f9672114..00000000 Binary files a/static/icons/060066BE.png and /dev/null differ diff --git a/static/icons/060066BF.png b/static/icons/060066BF.png deleted file mode 100755 index f6ac0754..00000000 Binary files a/static/icons/060066BF.png and /dev/null differ diff --git a/static/icons/060066C0.png b/static/icons/060066C0.png deleted file mode 100755 index 4da9cb9a..00000000 Binary files a/static/icons/060066C0.png and /dev/null differ diff --git a/static/icons/060066C1.png b/static/icons/060066C1.png deleted file mode 100755 index 1410f9f0..00000000 Binary files a/static/icons/060066C1.png and /dev/null differ diff --git a/static/icons/060066C2.png b/static/icons/060066C2.png deleted file mode 100755 index 2d14c9f7..00000000 Binary files a/static/icons/060066C2.png and /dev/null differ diff --git a/static/icons/060066C3.png b/static/icons/060066C3.png deleted file mode 100755 index 49e3c505..00000000 Binary files a/static/icons/060066C3.png and /dev/null differ diff --git a/static/icons/060066C4.png b/static/icons/060066C4.png deleted file mode 100755 index ecbc08f3..00000000 Binary files a/static/icons/060066C4.png and /dev/null differ diff --git a/static/icons/060066C5.png b/static/icons/060066C5.png deleted file mode 100755 index 0765c08a..00000000 Binary files a/static/icons/060066C5.png and /dev/null differ diff --git a/static/icons/060066C6.png b/static/icons/060066C6.png deleted file mode 100755 index 045587bf..00000000 Binary files a/static/icons/060066C6.png and /dev/null differ diff --git a/static/icons/060066C7.png b/static/icons/060066C7.png deleted file mode 100755 index 6abe8101..00000000 Binary files a/static/icons/060066C7.png and /dev/null differ diff --git a/static/icons/060066C8.png b/static/icons/060066C8.png deleted file mode 100755 index 0e0d4f1f..00000000 Binary files a/static/icons/060066C8.png and /dev/null differ diff --git a/static/icons/060066C9.png b/static/icons/060066C9.png deleted file mode 100755 index 082c798b..00000000 Binary files a/static/icons/060066C9.png and /dev/null differ diff --git a/static/icons/060066CA.png b/static/icons/060066CA.png deleted file mode 100755 index 59fc18b1..00000000 Binary files a/static/icons/060066CA.png and /dev/null differ diff --git a/static/icons/060066CB.png b/static/icons/060066CB.png deleted file mode 100755 index 87c657c5..00000000 Binary files a/static/icons/060066CB.png and /dev/null differ diff --git a/static/icons/060066CC.png b/static/icons/060066CC.png deleted file mode 100755 index 010f3c9c..00000000 Binary files a/static/icons/060066CC.png and /dev/null differ diff --git a/static/icons/060066CD.png b/static/icons/060066CD.png deleted file mode 100755 index 310fb414..00000000 Binary files a/static/icons/060066CD.png and /dev/null differ diff --git a/static/icons/060066CE.png b/static/icons/060066CE.png deleted file mode 100755 index 8368c5af..00000000 Binary files a/static/icons/060066CE.png and /dev/null differ diff --git a/static/icons/060066CF.png b/static/icons/060066CF.png deleted file mode 100755 index 020fea7a..00000000 Binary files a/static/icons/060066CF.png and /dev/null differ diff --git a/static/icons/060066D0.png b/static/icons/060066D0.png deleted file mode 100755 index a651674a..00000000 Binary files a/static/icons/060066D0.png and /dev/null differ diff --git a/static/icons/060066D1.png b/static/icons/060066D1.png deleted file mode 100755 index a6aee539..00000000 Binary files a/static/icons/060066D1.png and /dev/null differ diff --git a/static/icons/060066D2.png b/static/icons/060066D2.png deleted file mode 100755 index e96c58b6..00000000 Binary files a/static/icons/060066D2.png and /dev/null differ diff --git a/static/icons/060066D3.png b/static/icons/060066D3.png deleted file mode 100755 index d047e5db..00000000 Binary files a/static/icons/060066D3.png and /dev/null differ diff --git a/static/icons/060066D4.png b/static/icons/060066D4.png deleted file mode 100755 index 45027ac8..00000000 Binary files a/static/icons/060066D4.png and /dev/null differ diff --git a/static/icons/060066D5.png b/static/icons/060066D5.png deleted file mode 100755 index 9aca0ec2..00000000 Binary files a/static/icons/060066D5.png and /dev/null differ diff --git a/static/icons/060066D6.png b/static/icons/060066D6.png deleted file mode 100755 index 91ed0dd2..00000000 Binary files a/static/icons/060066D6.png and /dev/null differ diff --git a/static/icons/060066D7.png b/static/icons/060066D7.png deleted file mode 100755 index 327ee53f..00000000 Binary files a/static/icons/060066D7.png and /dev/null differ diff --git a/static/icons/060066D8.png b/static/icons/060066D8.png deleted file mode 100755 index b8dcc4f0..00000000 Binary files a/static/icons/060066D8.png and /dev/null differ diff --git a/static/icons/060066D9.png b/static/icons/060066D9.png deleted file mode 100755 index d849185f..00000000 Binary files a/static/icons/060066D9.png and /dev/null differ diff --git a/static/icons/060066DA.png b/static/icons/060066DA.png deleted file mode 100755 index fc41662e..00000000 Binary files a/static/icons/060066DA.png and /dev/null differ diff --git a/static/icons/060066DB.png b/static/icons/060066DB.png deleted file mode 100755 index fc41662e..00000000 Binary files a/static/icons/060066DB.png and /dev/null differ diff --git a/static/icons/060066DC.png b/static/icons/060066DC.png deleted file mode 100755 index 3f664111..00000000 Binary files a/static/icons/060066DC.png and /dev/null differ diff --git a/static/icons/060066DE.png b/static/icons/060066DE.png deleted file mode 100755 index f03da4d9..00000000 Binary files a/static/icons/060066DE.png and /dev/null differ diff --git a/static/icons/060066DF.png b/static/icons/060066DF.png deleted file mode 100755 index 2ad146ef..00000000 Binary files a/static/icons/060066DF.png and /dev/null differ diff --git a/static/icons/060066E0.png b/static/icons/060066E0.png deleted file mode 100755 index 66c2b8b9..00000000 Binary files a/static/icons/060066E0.png and /dev/null differ diff --git a/static/icons/060066E1.png b/static/icons/060066E1.png deleted file mode 100755 index c11a70f7..00000000 Binary files a/static/icons/060066E1.png and /dev/null differ diff --git a/static/icons/060066E2.png b/static/icons/060066E2.png deleted file mode 100755 index e75f8da0..00000000 Binary files a/static/icons/060066E2.png and /dev/null differ diff --git a/static/icons/060066E7.png b/static/icons/060066E7.png deleted file mode 100755 index 8fbe3dc3..00000000 Binary files a/static/icons/060066E7.png and /dev/null differ diff --git a/static/icons/060066E8.png b/static/icons/060066E8.png deleted file mode 100755 index 82f1ad12..00000000 Binary files a/static/icons/060066E8.png and /dev/null differ diff --git a/static/icons/060066E9.png b/static/icons/060066E9.png deleted file mode 100755 index ebf04252..00000000 Binary files a/static/icons/060066E9.png and /dev/null differ diff --git a/static/icons/060066EA.png b/static/icons/060066EA.png deleted file mode 100755 index d413a098..00000000 Binary files a/static/icons/060066EA.png and /dev/null differ diff --git a/static/icons/060066EB.png b/static/icons/060066EB.png deleted file mode 100755 index cc8e9e32..00000000 Binary files a/static/icons/060066EB.png and /dev/null differ diff --git a/static/icons/060066EC.png b/static/icons/060066EC.png deleted file mode 100755 index 0b79295f..00000000 Binary files a/static/icons/060066EC.png and /dev/null differ diff --git a/static/icons/060066ED.png b/static/icons/060066ED.png deleted file mode 100755 index a86a27b1..00000000 Binary files a/static/icons/060066ED.png and /dev/null differ diff --git a/static/icons/060066EE.png b/static/icons/060066EE.png deleted file mode 100755 index 5b6831f1..00000000 Binary files a/static/icons/060066EE.png and /dev/null differ diff --git a/static/icons/060066EF.png b/static/icons/060066EF.png deleted file mode 100755 index 3e5d79e8..00000000 Binary files a/static/icons/060066EF.png and /dev/null differ diff --git a/static/icons/060066F0.png b/static/icons/060066F0.png deleted file mode 100755 index 1e3acc90..00000000 Binary files a/static/icons/060066F0.png and /dev/null differ diff --git a/static/icons/060066F1.png b/static/icons/060066F1.png deleted file mode 100755 index f95e43a5..00000000 Binary files a/static/icons/060066F1.png and /dev/null differ diff --git a/static/icons/060066F2.png b/static/icons/060066F2.png deleted file mode 100755 index 6cf7a8ef..00000000 Binary files a/static/icons/060066F2.png and /dev/null differ diff --git a/static/icons/060066F3.png b/static/icons/060066F3.png deleted file mode 100755 index 73870815..00000000 Binary files a/static/icons/060066F3.png and /dev/null differ diff --git a/static/icons/060066F4.png b/static/icons/060066F4.png deleted file mode 100755 index b2690f66..00000000 Binary files a/static/icons/060066F4.png and /dev/null differ diff --git a/static/icons/060066F5.png b/static/icons/060066F5.png deleted file mode 100755 index 5ce08d1c..00000000 Binary files a/static/icons/060066F5.png and /dev/null differ diff --git a/static/icons/060066F6.png b/static/icons/060066F6.png deleted file mode 100755 index d543cf3c..00000000 Binary files a/static/icons/060066F6.png and /dev/null differ diff --git a/static/icons/060066F7.png b/static/icons/060066F7.png deleted file mode 100755 index 7b9b36ad..00000000 Binary files a/static/icons/060066F7.png and /dev/null differ diff --git a/static/icons/060066F9.png b/static/icons/060066F9.png deleted file mode 100755 index 4d6b3fad..00000000 Binary files a/static/icons/060066F9.png and /dev/null differ diff --git a/static/icons/060066FA.png b/static/icons/060066FA.png deleted file mode 100755 index 2a495b31..00000000 Binary files a/static/icons/060066FA.png and /dev/null differ diff --git a/static/icons/060066FB.png b/static/icons/060066FB.png deleted file mode 100755 index 747c0e13..00000000 Binary files a/static/icons/060066FB.png and /dev/null differ diff --git a/static/icons/060066FC.png b/static/icons/060066FC.png deleted file mode 100755 index aeaba507..00000000 Binary files a/static/icons/060066FC.png and /dev/null differ diff --git a/static/icons/060066FD.png b/static/icons/060066FD.png deleted file mode 100755 index 2360e638..00000000 Binary files a/static/icons/060066FD.png and /dev/null differ diff --git a/static/icons/060066FF.png b/static/icons/060066FF.png deleted file mode 100755 index 4f985119..00000000 Binary files a/static/icons/060066FF.png and /dev/null differ diff --git a/static/icons/06006700.png b/static/icons/06006700.png deleted file mode 100755 index 085e92fc..00000000 Binary files a/static/icons/06006700.png and /dev/null differ diff --git a/static/icons/06006701.png b/static/icons/06006701.png deleted file mode 100755 index 37049cb9..00000000 Binary files a/static/icons/06006701.png and /dev/null differ diff --git a/static/icons/06006702.png b/static/icons/06006702.png deleted file mode 100755 index 6627ceb0..00000000 Binary files a/static/icons/06006702.png and /dev/null differ diff --git a/static/icons/06006703.png b/static/icons/06006703.png deleted file mode 100755 index 9d0b3f29..00000000 Binary files a/static/icons/06006703.png and /dev/null differ diff --git a/static/icons/06006704.png b/static/icons/06006704.png deleted file mode 100755 index dfc14a3c..00000000 Binary files a/static/icons/06006704.png and /dev/null differ diff --git a/static/icons/06006705.png b/static/icons/06006705.png deleted file mode 100755 index 4d4be763..00000000 Binary files a/static/icons/06006705.png and /dev/null differ diff --git a/static/icons/06006706.png b/static/icons/06006706.png deleted file mode 100755 index 0ae6d661..00000000 Binary files a/static/icons/06006706.png and /dev/null differ diff --git a/static/icons/06006707.png b/static/icons/06006707.png deleted file mode 100755 index d3a04254..00000000 Binary files a/static/icons/06006707.png and /dev/null differ diff --git a/static/icons/06006708.png b/static/icons/06006708.png deleted file mode 100755 index fcb05dba..00000000 Binary files a/static/icons/06006708.png and /dev/null differ diff --git a/static/icons/0600670A.png b/static/icons/0600670A.png deleted file mode 100755 index 829e241e..00000000 Binary files a/static/icons/0600670A.png and /dev/null differ diff --git a/static/icons/0600670B.png b/static/icons/0600670B.png deleted file mode 100755 index 0f583ad8..00000000 Binary files a/static/icons/0600670B.png and /dev/null differ diff --git a/static/icons/0600670C.png b/static/icons/0600670C.png deleted file mode 100755 index dc5f175d..00000000 Binary files a/static/icons/0600670C.png and /dev/null differ diff --git a/static/icons/0600670D.png b/static/icons/0600670D.png deleted file mode 100755 index 1aece6ce..00000000 Binary files a/static/icons/0600670D.png and /dev/null differ diff --git a/static/icons/0600670F.png b/static/icons/0600670F.png deleted file mode 100755 index a3a69a58..00000000 Binary files a/static/icons/0600670F.png and /dev/null differ diff --git a/static/icons/06006710.png b/static/icons/06006710.png deleted file mode 100755 index c0e55d7b..00000000 Binary files a/static/icons/06006710.png and /dev/null differ diff --git a/static/icons/06006712.png b/static/icons/06006712.png deleted file mode 100755 index 1240d7ca..00000000 Binary files a/static/icons/06006712.png and /dev/null differ diff --git a/static/icons/06006713.png b/static/icons/06006713.png deleted file mode 100755 index 6f563e58..00000000 Binary files a/static/icons/06006713.png and /dev/null differ diff --git a/static/icons/06006714.png b/static/icons/06006714.png deleted file mode 100755 index 57526e34..00000000 Binary files a/static/icons/06006714.png and /dev/null differ diff --git a/static/icons/06006715.png b/static/icons/06006715.png deleted file mode 100755 index 8e77b65f..00000000 Binary files a/static/icons/06006715.png and /dev/null differ diff --git a/static/icons/06006717.png b/static/icons/06006717.png deleted file mode 100755 index 71a6d572..00000000 Binary files a/static/icons/06006717.png and /dev/null differ diff --git a/static/icons/06006718.png b/static/icons/06006718.png deleted file mode 100755 index 903345e1..00000000 Binary files a/static/icons/06006718.png and /dev/null differ diff --git a/static/icons/06006719.png b/static/icons/06006719.png deleted file mode 100755 index 477d4135..00000000 Binary files a/static/icons/06006719.png and /dev/null differ diff --git a/static/icons/0600671A.png b/static/icons/0600671A.png deleted file mode 100755 index 04bd846e..00000000 Binary files a/static/icons/0600671A.png and /dev/null differ diff --git a/static/icons/0600671B.png b/static/icons/0600671B.png deleted file mode 100755 index 9e9d02eb..00000000 Binary files a/static/icons/0600671B.png and /dev/null differ diff --git a/static/icons/0600671C.png b/static/icons/0600671C.png deleted file mode 100755 index 08e2f8ea..00000000 Binary files a/static/icons/0600671C.png and /dev/null differ diff --git a/static/icons/0600671D.png b/static/icons/0600671D.png deleted file mode 100755 index 6806402d..00000000 Binary files a/static/icons/0600671D.png and /dev/null differ diff --git a/static/icons/0600671E.png b/static/icons/0600671E.png deleted file mode 100755 index 915304bc..00000000 Binary files a/static/icons/0600671E.png and /dev/null differ diff --git a/static/icons/0600671F.png b/static/icons/0600671F.png deleted file mode 100755 index 34e2c4ef..00000000 Binary files a/static/icons/0600671F.png and /dev/null differ diff --git a/static/icons/06006720.png b/static/icons/06006720.png deleted file mode 100755 index 063d4dfb..00000000 Binary files a/static/icons/06006720.png and /dev/null differ diff --git a/static/icons/06006721.png b/static/icons/06006721.png deleted file mode 100755 index 2dc5a477..00000000 Binary files a/static/icons/06006721.png and /dev/null differ diff --git a/static/icons/06006722.png b/static/icons/06006722.png deleted file mode 100755 index 7ea81485..00000000 Binary files a/static/icons/06006722.png and /dev/null differ diff --git a/static/icons/06006723.png b/static/icons/06006723.png deleted file mode 100755 index 31f50dda..00000000 Binary files a/static/icons/06006723.png and /dev/null differ diff --git a/static/icons/06006724.png b/static/icons/06006724.png deleted file mode 100755 index 0f53beea..00000000 Binary files a/static/icons/06006724.png and /dev/null differ diff --git a/static/icons/06006725.png b/static/icons/06006725.png deleted file mode 100755 index 135632c0..00000000 Binary files a/static/icons/06006725.png and /dev/null differ diff --git a/static/icons/06006726.png b/static/icons/06006726.png deleted file mode 100755 index b177395f..00000000 Binary files a/static/icons/06006726.png and /dev/null differ diff --git a/static/icons/06006727.png b/static/icons/06006727.png deleted file mode 100755 index 58d635ed..00000000 Binary files a/static/icons/06006727.png and /dev/null differ diff --git a/static/icons/06006728.png b/static/icons/06006728.png deleted file mode 100755 index ef0ae184..00000000 Binary files a/static/icons/06006728.png and /dev/null differ diff --git a/static/icons/06006729.png b/static/icons/06006729.png deleted file mode 100755 index e6daba9f..00000000 Binary files a/static/icons/06006729.png and /dev/null differ diff --git a/static/icons/0600672A.png b/static/icons/0600672A.png deleted file mode 100755 index 2a0a5d8e..00000000 Binary files a/static/icons/0600672A.png and /dev/null differ diff --git a/static/icons/0600672B.png b/static/icons/0600672B.png deleted file mode 100755 index 7b22d0ea..00000000 Binary files a/static/icons/0600672B.png and /dev/null differ diff --git a/static/icons/0600672C.png b/static/icons/0600672C.png deleted file mode 100755 index 074419e6..00000000 Binary files a/static/icons/0600672C.png and /dev/null differ diff --git a/static/icons/0600672D.png b/static/icons/0600672D.png deleted file mode 100755 index e0662f49..00000000 Binary files a/static/icons/0600672D.png and /dev/null differ diff --git a/static/icons/0600672E.png b/static/icons/0600672E.png deleted file mode 100755 index c55950cb..00000000 Binary files a/static/icons/0600672E.png and /dev/null differ diff --git a/static/icons/0600672F.png b/static/icons/0600672F.png deleted file mode 100755 index 6b477087..00000000 Binary files a/static/icons/0600672F.png and /dev/null differ diff --git a/static/icons/06006730.png b/static/icons/06006730.png deleted file mode 100755 index df9e0ae4..00000000 Binary files a/static/icons/06006730.png and /dev/null differ diff --git a/static/icons/06006731.png b/static/icons/06006731.png deleted file mode 100755 index b1fc7601..00000000 Binary files a/static/icons/06006731.png and /dev/null differ diff --git a/static/icons/06006732.png b/static/icons/06006732.png deleted file mode 100755 index f2293467..00000000 Binary files a/static/icons/06006732.png and /dev/null differ diff --git a/static/icons/06006733.png b/static/icons/06006733.png deleted file mode 100755 index 710d6f2d..00000000 Binary files a/static/icons/06006733.png and /dev/null differ diff --git a/static/icons/06006734.png b/static/icons/06006734.png deleted file mode 100755 index efcc6104..00000000 Binary files a/static/icons/06006734.png and /dev/null differ diff --git a/static/icons/06006735.png b/static/icons/06006735.png deleted file mode 100755 index 7a83c041..00000000 Binary files a/static/icons/06006735.png and /dev/null differ diff --git a/static/icons/06006736.png b/static/icons/06006736.png deleted file mode 100755 index 5144b21a..00000000 Binary files a/static/icons/06006736.png and /dev/null differ diff --git a/static/icons/06006737.png b/static/icons/06006737.png deleted file mode 100755 index 90a51669..00000000 Binary files a/static/icons/06006737.png and /dev/null differ diff --git a/static/icons/06006738.png b/static/icons/06006738.png deleted file mode 100755 index 1ebc44d0..00000000 Binary files a/static/icons/06006738.png and /dev/null differ diff --git a/static/icons/06006739.png b/static/icons/06006739.png deleted file mode 100755 index 91720678..00000000 Binary files a/static/icons/06006739.png and /dev/null differ diff --git a/static/icons/0600673A.png b/static/icons/0600673A.png deleted file mode 100755 index 53af2460..00000000 Binary files a/static/icons/0600673A.png and /dev/null differ diff --git a/static/icons/0600673B.png b/static/icons/0600673B.png deleted file mode 100755 index 96708304..00000000 Binary files a/static/icons/0600673B.png and /dev/null differ diff --git a/static/icons/0600673C.png b/static/icons/0600673C.png deleted file mode 100755 index 54e43102..00000000 Binary files a/static/icons/0600673C.png and /dev/null differ diff --git a/static/icons/0600673D.png b/static/icons/0600673D.png deleted file mode 100755 index 7b7d3f87..00000000 Binary files a/static/icons/0600673D.png and /dev/null differ diff --git a/static/icons/0600673E.png b/static/icons/0600673E.png deleted file mode 100755 index ef537dec..00000000 Binary files a/static/icons/0600673E.png and /dev/null differ diff --git a/static/icons/0600673F.png b/static/icons/0600673F.png deleted file mode 100755 index 038e39fb..00000000 Binary files a/static/icons/0600673F.png and /dev/null differ diff --git a/static/icons/06006740.png b/static/icons/06006740.png deleted file mode 100755 index 9c6717c6..00000000 Binary files a/static/icons/06006740.png and /dev/null differ diff --git a/static/icons/06006744.png b/static/icons/06006744.png deleted file mode 100755 index bb09c354..00000000 Binary files a/static/icons/06006744.png and /dev/null differ diff --git a/static/icons/06006745.png b/static/icons/06006745.png deleted file mode 100755 index a01d71b1..00000000 Binary files a/static/icons/06006745.png and /dev/null differ diff --git a/static/icons/06006746.png b/static/icons/06006746.png deleted file mode 100755 index d65155a0..00000000 Binary files a/static/icons/06006746.png and /dev/null differ diff --git a/static/icons/06006747.png b/static/icons/06006747.png deleted file mode 100755 index 7e29d206..00000000 Binary files a/static/icons/06006747.png and /dev/null differ diff --git a/static/icons/06006749.png b/static/icons/06006749.png deleted file mode 100755 index 2b3d77d4..00000000 Binary files a/static/icons/06006749.png and /dev/null differ diff --git a/static/icons/0600674B.png b/static/icons/0600674B.png deleted file mode 100755 index ff5c82b0..00000000 Binary files a/static/icons/0600674B.png and /dev/null differ diff --git a/static/icons/0600674C.png b/static/icons/0600674C.png deleted file mode 100755 index 1bc17776..00000000 Binary files a/static/icons/0600674C.png and /dev/null differ diff --git a/static/icons/0600674D.png b/static/icons/0600674D.png deleted file mode 100755 index 3bae533b..00000000 Binary files a/static/icons/0600674D.png and /dev/null differ diff --git a/static/icons/0600674E.png b/static/icons/0600674E.png deleted file mode 100755 index 05bf295d..00000000 Binary files a/static/icons/0600674E.png and /dev/null differ diff --git a/static/icons/0600674F.png b/static/icons/0600674F.png deleted file mode 100755 index 4a2a1405..00000000 Binary files a/static/icons/0600674F.png and /dev/null differ diff --git a/static/icons/06006750.png b/static/icons/06006750.png deleted file mode 100755 index 506c6607..00000000 Binary files a/static/icons/06006750.png and /dev/null differ diff --git a/static/icons/06006751.png b/static/icons/06006751.png deleted file mode 100755 index 8dd257b0..00000000 Binary files a/static/icons/06006751.png and /dev/null differ diff --git a/static/icons/06006752.png b/static/icons/06006752.png deleted file mode 100755 index b14b5cd7..00000000 Binary files a/static/icons/06006752.png and /dev/null differ diff --git a/static/icons/06006753.png b/static/icons/06006753.png deleted file mode 100755 index 363f0ed5..00000000 Binary files a/static/icons/06006753.png and /dev/null differ diff --git a/static/icons/06006754.png b/static/icons/06006754.png deleted file mode 100755 index f054bb5b..00000000 Binary files a/static/icons/06006754.png and /dev/null differ diff --git a/static/icons/06006755.png b/static/icons/06006755.png deleted file mode 100755 index f69a0920..00000000 Binary files a/static/icons/06006755.png and /dev/null differ diff --git a/static/icons/06006756.png b/static/icons/06006756.png deleted file mode 100755 index 10135bf3..00000000 Binary files a/static/icons/06006756.png and /dev/null differ diff --git a/static/icons/06006757.png b/static/icons/06006757.png deleted file mode 100755 index ab64814a..00000000 Binary files a/static/icons/06006757.png and /dev/null differ diff --git a/static/icons/06006758.png b/static/icons/06006758.png deleted file mode 100755 index 38a6fc15..00000000 Binary files a/static/icons/06006758.png and /dev/null differ diff --git a/static/icons/06006759.png b/static/icons/06006759.png deleted file mode 100755 index d06f1aae..00000000 Binary files a/static/icons/06006759.png and /dev/null differ diff --git a/static/icons/0600675A.png b/static/icons/0600675A.png deleted file mode 100755 index 1e68b53e..00000000 Binary files a/static/icons/0600675A.png and /dev/null differ diff --git a/static/icons/0600675B.png b/static/icons/0600675B.png deleted file mode 100755 index 85a61601..00000000 Binary files a/static/icons/0600675B.png and /dev/null differ diff --git a/static/icons/0600675C.png b/static/icons/0600675C.png deleted file mode 100755 index 8ef430bd..00000000 Binary files a/static/icons/0600675C.png and /dev/null differ diff --git a/static/icons/0600675D.png b/static/icons/0600675D.png deleted file mode 100755 index ce4fb221..00000000 Binary files a/static/icons/0600675D.png and /dev/null differ diff --git a/static/icons/0600675E.png b/static/icons/0600675E.png deleted file mode 100755 index 57ab9af9..00000000 Binary files a/static/icons/0600675E.png and /dev/null differ diff --git a/static/icons/0600675F.png b/static/icons/0600675F.png deleted file mode 100755 index ad58a5f7..00000000 Binary files a/static/icons/0600675F.png and /dev/null differ diff --git a/static/icons/06006760.png b/static/icons/06006760.png deleted file mode 100755 index d47a8c65..00000000 Binary files a/static/icons/06006760.png and /dev/null differ diff --git a/static/icons/06006761.png b/static/icons/06006761.png deleted file mode 100755 index bf3f491b..00000000 Binary files a/static/icons/06006761.png and /dev/null differ diff --git a/static/icons/06006762.png b/static/icons/06006762.png deleted file mode 100755 index cd3b13d8..00000000 Binary files a/static/icons/06006762.png and /dev/null differ diff --git a/static/icons/06006763.png b/static/icons/06006763.png deleted file mode 100755 index 9990def4..00000000 Binary files a/static/icons/06006763.png and /dev/null differ diff --git a/static/icons/0600676B.png b/static/icons/0600676B.png deleted file mode 100755 index 91690949..00000000 Binary files a/static/icons/0600676B.png and /dev/null differ diff --git a/static/icons/0600677C.png b/static/icons/0600677C.png deleted file mode 100755 index e9fa2dd3..00000000 Binary files a/static/icons/0600677C.png and /dev/null differ diff --git a/static/icons/0600677D.png b/static/icons/0600677D.png deleted file mode 100755 index a928881a..00000000 Binary files a/static/icons/0600677D.png and /dev/null differ diff --git a/static/icons/0600677E.png b/static/icons/0600677E.png deleted file mode 100755 index 4488516d..00000000 Binary files a/static/icons/0600677E.png and /dev/null differ diff --git a/static/icons/0600677F.png b/static/icons/0600677F.png deleted file mode 100755 index 58f2dcda..00000000 Binary files a/static/icons/0600677F.png and /dev/null differ diff --git a/static/icons/06006780.png b/static/icons/06006780.png deleted file mode 100755 index dd22f013..00000000 Binary files a/static/icons/06006780.png and /dev/null differ diff --git a/static/icons/06006781.png b/static/icons/06006781.png deleted file mode 100755 index c7b9d8cf..00000000 Binary files a/static/icons/06006781.png and /dev/null differ diff --git a/static/icons/06006782.png b/static/icons/06006782.png deleted file mode 100755 index 9282d46f..00000000 Binary files a/static/icons/06006782.png and /dev/null differ diff --git a/static/icons/06006783.png b/static/icons/06006783.png deleted file mode 100755 index 5bd9e58f..00000000 Binary files a/static/icons/06006783.png and /dev/null differ diff --git a/static/icons/06006784.png b/static/icons/06006784.png deleted file mode 100755 index e61d9976..00000000 Binary files a/static/icons/06006784.png and /dev/null differ diff --git a/static/icons/06006785.png b/static/icons/06006785.png deleted file mode 100755 index 5b0739eb..00000000 Binary files a/static/icons/06006785.png and /dev/null differ diff --git a/static/icons/06006786.png b/static/icons/06006786.png deleted file mode 100755 index 299455c4..00000000 Binary files a/static/icons/06006786.png and /dev/null differ diff --git a/static/icons/06006788.png b/static/icons/06006788.png deleted file mode 100755 index 34d083cb..00000000 Binary files a/static/icons/06006788.png and /dev/null differ diff --git a/static/icons/0600678A.png b/static/icons/0600678A.png deleted file mode 100755 index d99e7814..00000000 Binary files a/static/icons/0600678A.png and /dev/null differ diff --git a/static/icons/0600678B.png b/static/icons/0600678B.png deleted file mode 100755 index 2d13a627..00000000 Binary files a/static/icons/0600678B.png and /dev/null differ diff --git a/static/icons/0600678C.png b/static/icons/0600678C.png deleted file mode 100755 index ae0136bc..00000000 Binary files a/static/icons/0600678C.png and /dev/null differ diff --git a/static/icons/0600678D.png b/static/icons/0600678D.png deleted file mode 100755 index 2bd2b7f6..00000000 Binary files a/static/icons/0600678D.png and /dev/null differ diff --git a/static/icons/0600678E.png b/static/icons/0600678E.png deleted file mode 100755 index 6fc92861..00000000 Binary files a/static/icons/0600678E.png and /dev/null differ diff --git a/static/icons/0600678F.png b/static/icons/0600678F.png deleted file mode 100755 index 19b0ad97..00000000 Binary files a/static/icons/0600678F.png and /dev/null differ diff --git a/static/icons/06006790.png b/static/icons/06006790.png deleted file mode 100755 index 0421da5f..00000000 Binary files a/static/icons/06006790.png and /dev/null differ diff --git a/static/icons/06006791.png b/static/icons/06006791.png deleted file mode 100755 index 4962efef..00000000 Binary files a/static/icons/06006791.png and /dev/null differ diff --git a/static/icons/06006792.png b/static/icons/06006792.png deleted file mode 100755 index 86a1ddc7..00000000 Binary files a/static/icons/06006792.png and /dev/null differ diff --git a/static/icons/06006793.png b/static/icons/06006793.png deleted file mode 100755 index 88b4fccc..00000000 Binary files a/static/icons/06006793.png and /dev/null differ diff --git a/static/icons/06006794.png b/static/icons/06006794.png deleted file mode 100755 index c3d3e9bf..00000000 Binary files a/static/icons/06006794.png and /dev/null differ diff --git a/static/icons/06006795.png b/static/icons/06006795.png deleted file mode 100755 index 179ebc00..00000000 Binary files a/static/icons/06006795.png and /dev/null differ diff --git a/static/icons/06006796.png b/static/icons/06006796.png deleted file mode 100755 index f1624f8e..00000000 Binary files a/static/icons/06006796.png and /dev/null differ diff --git a/static/icons/06006797.png b/static/icons/06006797.png deleted file mode 100755 index 2eb27bf7..00000000 Binary files a/static/icons/06006797.png and /dev/null differ diff --git a/static/icons/06006798.png b/static/icons/06006798.png deleted file mode 100755 index 17bee5d1..00000000 Binary files a/static/icons/06006798.png and /dev/null differ diff --git a/static/icons/06006799.png b/static/icons/06006799.png deleted file mode 100755 index 1ce92528..00000000 Binary files a/static/icons/06006799.png and /dev/null differ diff --git a/static/icons/0600679A.png b/static/icons/0600679A.png deleted file mode 100755 index ec603c2b..00000000 Binary files a/static/icons/0600679A.png and /dev/null differ diff --git a/static/icons/0600679B.png b/static/icons/0600679B.png deleted file mode 100755 index 093545b1..00000000 Binary files a/static/icons/0600679B.png and /dev/null differ diff --git a/static/icons/0600679C.png b/static/icons/0600679C.png deleted file mode 100755 index 356edf0e..00000000 Binary files a/static/icons/0600679C.png and /dev/null differ diff --git a/static/icons/0600679D.png b/static/icons/0600679D.png deleted file mode 100755 index 90e19bc4..00000000 Binary files a/static/icons/0600679D.png and /dev/null differ diff --git a/static/icons/0600679E.png b/static/icons/0600679E.png deleted file mode 100755 index 5719ab61..00000000 Binary files a/static/icons/0600679E.png and /dev/null differ diff --git a/static/icons/0600679F.png b/static/icons/0600679F.png deleted file mode 100755 index 73a08ef4..00000000 Binary files a/static/icons/0600679F.png and /dev/null differ diff --git a/static/icons/060067A0.png b/static/icons/060067A0.png deleted file mode 100755 index 3ede4f81..00000000 Binary files a/static/icons/060067A0.png and /dev/null differ diff --git a/static/icons/060067A1.png b/static/icons/060067A1.png deleted file mode 100755 index ca0c305c..00000000 Binary files a/static/icons/060067A1.png and /dev/null differ diff --git a/static/icons/060067A2.png b/static/icons/060067A2.png deleted file mode 100755 index 06f392c9..00000000 Binary files a/static/icons/060067A2.png and /dev/null differ diff --git a/static/icons/060067A3.png b/static/icons/060067A3.png deleted file mode 100755 index 89109577..00000000 Binary files a/static/icons/060067A3.png and /dev/null differ diff --git a/static/icons/060067A5.png b/static/icons/060067A5.png deleted file mode 100755 index e050ca52..00000000 Binary files a/static/icons/060067A5.png and /dev/null differ diff --git a/static/icons/060067A6.png b/static/icons/060067A6.png deleted file mode 100755 index 4a321648..00000000 Binary files a/static/icons/060067A6.png and /dev/null differ diff --git a/static/icons/060067A7.png b/static/icons/060067A7.png deleted file mode 100755 index 726bda7e..00000000 Binary files a/static/icons/060067A7.png and /dev/null differ diff --git a/static/icons/060067A9.png b/static/icons/060067A9.png deleted file mode 100755 index 05cdb47a..00000000 Binary files a/static/icons/060067A9.png and /dev/null differ diff --git a/static/icons/060067AC.png b/static/icons/060067AC.png deleted file mode 100755 index bc87fd2c..00000000 Binary files a/static/icons/060067AC.png and /dev/null differ diff --git a/static/icons/060067AD.png b/static/icons/060067AD.png deleted file mode 100755 index 22ad6e50..00000000 Binary files a/static/icons/060067AD.png and /dev/null differ diff --git a/static/icons/060067AE.png b/static/icons/060067AE.png deleted file mode 100755 index f048b712..00000000 Binary files a/static/icons/060067AE.png and /dev/null differ diff --git a/static/icons/060067AF.png b/static/icons/060067AF.png deleted file mode 100755 index 7058ba90..00000000 Binary files a/static/icons/060067AF.png and /dev/null differ diff --git a/static/icons/060067B0.png b/static/icons/060067B0.png deleted file mode 100755 index ebe22fee..00000000 Binary files a/static/icons/060067B0.png and /dev/null differ diff --git a/static/icons/060067B1.png b/static/icons/060067B1.png deleted file mode 100755 index d65097f9..00000000 Binary files a/static/icons/060067B1.png and /dev/null differ diff --git a/static/icons/060067B2.png b/static/icons/060067B2.png deleted file mode 100755 index cb06b4a0..00000000 Binary files a/static/icons/060067B2.png and /dev/null differ diff --git a/static/icons/060067B3.png b/static/icons/060067B3.png deleted file mode 100755 index ed946418..00000000 Binary files a/static/icons/060067B3.png and /dev/null differ diff --git a/static/icons/060067B4.png b/static/icons/060067B4.png deleted file mode 100755 index 0a9254f6..00000000 Binary files a/static/icons/060067B4.png and /dev/null differ diff --git a/static/icons/060067B5.png b/static/icons/060067B5.png deleted file mode 100755 index 602cf07f..00000000 Binary files a/static/icons/060067B5.png and /dev/null differ diff --git a/static/icons/060067B6.png b/static/icons/060067B6.png deleted file mode 100755 index 462ebae2..00000000 Binary files a/static/icons/060067B6.png and /dev/null differ diff --git a/static/icons/060067B7.png b/static/icons/060067B7.png deleted file mode 100755 index 152de75e..00000000 Binary files a/static/icons/060067B7.png and /dev/null differ diff --git a/static/icons/060067B8.png b/static/icons/060067B8.png deleted file mode 100755 index a45fbd77..00000000 Binary files a/static/icons/060067B8.png and /dev/null differ diff --git a/static/icons/060067BC.png b/static/icons/060067BC.png deleted file mode 100755 index 52ce33d6..00000000 Binary files a/static/icons/060067BC.png and /dev/null differ diff --git a/static/icons/060067BD.png b/static/icons/060067BD.png deleted file mode 100755 index 1d0962d2..00000000 Binary files a/static/icons/060067BD.png and /dev/null differ diff --git a/static/icons/060067BE.png b/static/icons/060067BE.png deleted file mode 100755 index 588efb45..00000000 Binary files a/static/icons/060067BE.png and /dev/null differ diff --git a/static/icons/060067BF.png b/static/icons/060067BF.png deleted file mode 100755 index bac01634..00000000 Binary files a/static/icons/060067BF.png and /dev/null differ diff --git a/static/icons/060067C0.png b/static/icons/060067C0.png deleted file mode 100755 index 8d52be77..00000000 Binary files a/static/icons/060067C0.png and /dev/null differ diff --git a/static/icons/060067C1.png b/static/icons/060067C1.png deleted file mode 100755 index c8bbe4aa..00000000 Binary files a/static/icons/060067C1.png and /dev/null differ diff --git a/static/icons/060067C2.png b/static/icons/060067C2.png deleted file mode 100755 index c5aa5b13..00000000 Binary files a/static/icons/060067C2.png and /dev/null differ diff --git a/static/icons/060067C3.png b/static/icons/060067C3.png deleted file mode 100755 index a544cb76..00000000 Binary files a/static/icons/060067C3.png and /dev/null differ diff --git a/static/icons/060067C4.png b/static/icons/060067C4.png deleted file mode 100755 index d6974174..00000000 Binary files a/static/icons/060067C4.png and /dev/null differ diff --git a/static/icons/060067C5.png b/static/icons/060067C5.png deleted file mode 100755 index 7ff97cc4..00000000 Binary files a/static/icons/060067C5.png and /dev/null differ diff --git a/static/icons/060067C6.png b/static/icons/060067C6.png deleted file mode 100755 index 6d0d1a97..00000000 Binary files a/static/icons/060067C6.png and /dev/null differ diff --git a/static/icons/060067C7.png b/static/icons/060067C7.png deleted file mode 100755 index 93406d81..00000000 Binary files a/static/icons/060067C7.png and /dev/null differ diff --git a/static/icons/060067C8.png b/static/icons/060067C8.png deleted file mode 100755 index a216305f..00000000 Binary files a/static/icons/060067C8.png and /dev/null differ diff --git a/static/icons/060067C9.png b/static/icons/060067C9.png deleted file mode 100755 index 3c093eac..00000000 Binary files a/static/icons/060067C9.png and /dev/null differ diff --git a/static/icons/060067CA.png b/static/icons/060067CA.png deleted file mode 100755 index 0d502fb8..00000000 Binary files a/static/icons/060067CA.png and /dev/null differ diff --git a/static/icons/060067CB.png b/static/icons/060067CB.png deleted file mode 100755 index 06d8c243..00000000 Binary files a/static/icons/060067CB.png and /dev/null differ diff --git a/static/icons/060067CC.png b/static/icons/060067CC.png deleted file mode 100755 index 960023c1..00000000 Binary files a/static/icons/060067CC.png and /dev/null differ diff --git a/static/icons/060067CD.png b/static/icons/060067CD.png deleted file mode 100755 index daa36b1a..00000000 Binary files a/static/icons/060067CD.png and /dev/null differ diff --git a/static/icons/060067CE.png b/static/icons/060067CE.png deleted file mode 100755 index ccba0dcf..00000000 Binary files a/static/icons/060067CE.png and /dev/null differ diff --git a/static/icons/060067CF.png b/static/icons/060067CF.png deleted file mode 100755 index 5010799c..00000000 Binary files a/static/icons/060067CF.png and /dev/null differ diff --git a/static/icons/060067D0.png b/static/icons/060067D0.png deleted file mode 100755 index 68329465..00000000 Binary files a/static/icons/060067D0.png and /dev/null differ diff --git a/static/icons/060067D1.png b/static/icons/060067D1.png deleted file mode 100755 index 9f8580dd..00000000 Binary files a/static/icons/060067D1.png and /dev/null differ diff --git a/static/icons/060067D2.png b/static/icons/060067D2.png deleted file mode 100755 index 92dab85e..00000000 Binary files a/static/icons/060067D2.png and /dev/null differ diff --git a/static/icons/060067D3.png b/static/icons/060067D3.png deleted file mode 100755 index ea946a80..00000000 Binary files a/static/icons/060067D3.png and /dev/null differ diff --git a/static/icons/060067D4.png b/static/icons/060067D4.png deleted file mode 100755 index 36eccaee..00000000 Binary files a/static/icons/060067D4.png and /dev/null differ diff --git a/static/icons/060067D5.png b/static/icons/060067D5.png deleted file mode 100755 index c726c4f3..00000000 Binary files a/static/icons/060067D5.png and /dev/null differ diff --git a/static/icons/060067D6.png b/static/icons/060067D6.png deleted file mode 100755 index 116e19b5..00000000 Binary files a/static/icons/060067D6.png and /dev/null differ diff --git a/static/icons/060067D7.png b/static/icons/060067D7.png deleted file mode 100755 index 22f16994..00000000 Binary files a/static/icons/060067D7.png and /dev/null differ diff --git a/static/icons/060067D8.png b/static/icons/060067D8.png deleted file mode 100755 index 44b47f50..00000000 Binary files a/static/icons/060067D8.png and /dev/null differ diff --git a/static/icons/060067D9.png b/static/icons/060067D9.png deleted file mode 100755 index ea1def1e..00000000 Binary files a/static/icons/060067D9.png and /dev/null differ diff --git a/static/icons/060067DA.png b/static/icons/060067DA.png deleted file mode 100755 index ab4bc3e8..00000000 Binary files a/static/icons/060067DA.png and /dev/null differ diff --git a/static/icons/060067DB.png b/static/icons/060067DB.png deleted file mode 100755 index 22a1fe49..00000000 Binary files a/static/icons/060067DB.png and /dev/null differ diff --git a/static/icons/060067DD.png b/static/icons/060067DD.png deleted file mode 100755 index 643f2252..00000000 Binary files a/static/icons/060067DD.png and /dev/null differ diff --git a/static/icons/060067DE.png b/static/icons/060067DE.png deleted file mode 100755 index d8f3a13c..00000000 Binary files a/static/icons/060067DE.png and /dev/null differ diff --git a/static/icons/060067DF.png b/static/icons/060067DF.png deleted file mode 100755 index e16379e3..00000000 Binary files a/static/icons/060067DF.png and /dev/null differ diff --git a/static/icons/060067E0.png b/static/icons/060067E0.png deleted file mode 100755 index 40b99665..00000000 Binary files a/static/icons/060067E0.png and /dev/null differ diff --git a/static/icons/060067E1.png b/static/icons/060067E1.png deleted file mode 100755 index f1745692..00000000 Binary files a/static/icons/060067E1.png and /dev/null differ diff --git a/static/icons/060067E2.png b/static/icons/060067E2.png deleted file mode 100755 index 399b191e..00000000 Binary files a/static/icons/060067E2.png and /dev/null differ diff --git a/static/icons/060067E3.png b/static/icons/060067E3.png deleted file mode 100755 index a97b936d..00000000 Binary files a/static/icons/060067E3.png and /dev/null differ diff --git a/static/icons/060067E4.png b/static/icons/060067E4.png deleted file mode 100755 index 63329b9b..00000000 Binary files a/static/icons/060067E4.png and /dev/null differ diff --git a/static/icons/060067E5.png b/static/icons/060067E5.png deleted file mode 100755 index 8e0c5fd1..00000000 Binary files a/static/icons/060067E5.png and /dev/null differ diff --git a/static/icons/060067E6.png b/static/icons/060067E6.png deleted file mode 100755 index 16632965..00000000 Binary files a/static/icons/060067E6.png and /dev/null differ diff --git a/static/icons/060067E7.png b/static/icons/060067E7.png deleted file mode 100755 index 0cb4eec1..00000000 Binary files a/static/icons/060067E7.png and /dev/null differ diff --git a/static/icons/060067E8.png b/static/icons/060067E8.png deleted file mode 100755 index 32259f36..00000000 Binary files a/static/icons/060067E8.png and /dev/null differ diff --git a/static/icons/060067E9.png b/static/icons/060067E9.png deleted file mode 100755 index c9a68c34..00000000 Binary files a/static/icons/060067E9.png and /dev/null differ diff --git a/static/icons/060067EA.png b/static/icons/060067EA.png deleted file mode 100755 index 3c9269e2..00000000 Binary files a/static/icons/060067EA.png and /dev/null differ diff --git a/static/icons/060067EB.png b/static/icons/060067EB.png deleted file mode 100755 index 195e7fee..00000000 Binary files a/static/icons/060067EB.png and /dev/null differ diff --git a/static/icons/060067EC.png b/static/icons/060067EC.png deleted file mode 100755 index 2a186b25..00000000 Binary files a/static/icons/060067EC.png and /dev/null differ diff --git a/static/icons/060067ED.png b/static/icons/060067ED.png deleted file mode 100755 index 832b60b4..00000000 Binary files a/static/icons/060067ED.png and /dev/null differ diff --git a/static/icons/060067EE.png b/static/icons/060067EE.png deleted file mode 100755 index a2b30ab1..00000000 Binary files a/static/icons/060067EE.png and /dev/null differ diff --git a/static/icons/060067EF.png b/static/icons/060067EF.png deleted file mode 100755 index f88ca209..00000000 Binary files a/static/icons/060067EF.png and /dev/null differ diff --git a/static/icons/060067F0.png b/static/icons/060067F0.png deleted file mode 100755 index 464f9898..00000000 Binary files a/static/icons/060067F0.png and /dev/null differ diff --git a/static/icons/060067F1.png b/static/icons/060067F1.png deleted file mode 100755 index df3a96d8..00000000 Binary files a/static/icons/060067F1.png and /dev/null differ diff --git a/static/icons/060067F2.png b/static/icons/060067F2.png deleted file mode 100755 index facf9967..00000000 Binary files a/static/icons/060067F2.png and /dev/null differ diff --git a/static/icons/060067F5.png b/static/icons/060067F5.png deleted file mode 100755 index fe2e601a..00000000 Binary files a/static/icons/060067F5.png and /dev/null differ diff --git a/static/icons/060067F6.png b/static/icons/060067F6.png deleted file mode 100755 index 29bca03d..00000000 Binary files a/static/icons/060067F6.png and /dev/null differ diff --git a/static/icons/060067F7.png b/static/icons/060067F7.png deleted file mode 100755 index 2e9cea6f..00000000 Binary files a/static/icons/060067F7.png and /dev/null differ diff --git a/static/icons/060067F8.png b/static/icons/060067F8.png deleted file mode 100755 index c269542a..00000000 Binary files a/static/icons/060067F8.png and /dev/null differ diff --git a/static/icons/060067F9.png b/static/icons/060067F9.png deleted file mode 100755 index c92a8d85..00000000 Binary files a/static/icons/060067F9.png and /dev/null differ diff --git a/static/icons/060067FA.png b/static/icons/060067FA.png deleted file mode 100755 index 730cee2c..00000000 Binary files a/static/icons/060067FA.png and /dev/null differ diff --git a/static/icons/060067FB.png b/static/icons/060067FB.png deleted file mode 100755 index 7bbde572..00000000 Binary files a/static/icons/060067FB.png and /dev/null differ diff --git a/static/icons/060067FC.png b/static/icons/060067FC.png deleted file mode 100755 index f3c8ac9d..00000000 Binary files a/static/icons/060067FC.png and /dev/null differ diff --git a/static/icons/060067FD.png b/static/icons/060067FD.png deleted file mode 100755 index cf57efe9..00000000 Binary files a/static/icons/060067FD.png and /dev/null differ diff --git a/static/icons/060067FE.png b/static/icons/060067FE.png deleted file mode 100755 index 52ad6efd..00000000 Binary files a/static/icons/060067FE.png and /dev/null differ diff --git a/static/icons/060067FF.png b/static/icons/060067FF.png deleted file mode 100755 index 4a94a9aa..00000000 Binary files a/static/icons/060067FF.png and /dev/null differ diff --git a/static/icons/06006800.png b/static/icons/06006800.png deleted file mode 100755 index 4bcee5e2..00000000 Binary files a/static/icons/06006800.png and /dev/null differ diff --git a/static/icons/06006801.png b/static/icons/06006801.png deleted file mode 100755 index 5eb26ac7..00000000 Binary files a/static/icons/06006801.png and /dev/null differ diff --git a/static/icons/06006802.png b/static/icons/06006802.png deleted file mode 100755 index 13f904f4..00000000 Binary files a/static/icons/06006802.png and /dev/null differ diff --git a/static/icons/06006803.png b/static/icons/06006803.png deleted file mode 100755 index dd5cb9a7..00000000 Binary files a/static/icons/06006803.png and /dev/null differ diff --git a/static/icons/06006804.png b/static/icons/06006804.png deleted file mode 100755 index 82f8bff5..00000000 Binary files a/static/icons/06006804.png and /dev/null differ diff --git a/static/icons/06006805.png b/static/icons/06006805.png deleted file mode 100755 index c3cc25d1..00000000 Binary files a/static/icons/06006805.png and /dev/null differ diff --git a/static/icons/06006806.png b/static/icons/06006806.png deleted file mode 100755 index 613058e6..00000000 Binary files a/static/icons/06006806.png and /dev/null differ diff --git a/static/icons/06006807.png b/static/icons/06006807.png deleted file mode 100755 index b0630cd8..00000000 Binary files a/static/icons/06006807.png and /dev/null differ diff --git a/static/icons/06006808.png b/static/icons/06006808.png deleted file mode 100755 index 4f9cc771..00000000 Binary files a/static/icons/06006808.png and /dev/null differ diff --git a/static/icons/06006809.png b/static/icons/06006809.png deleted file mode 100755 index 96b46601..00000000 Binary files a/static/icons/06006809.png and /dev/null differ diff --git a/static/icons/0600680A.png b/static/icons/0600680A.png deleted file mode 100755 index 9e93e5ff..00000000 Binary files a/static/icons/0600680A.png and /dev/null differ diff --git a/static/icons/0600680B.png b/static/icons/0600680B.png deleted file mode 100755 index 055ad648..00000000 Binary files a/static/icons/0600680B.png and /dev/null differ diff --git a/static/icons/0600680C.png b/static/icons/0600680C.png deleted file mode 100755 index 730359e9..00000000 Binary files a/static/icons/0600680C.png and /dev/null differ diff --git a/static/icons/0600680D.png b/static/icons/0600680D.png deleted file mode 100755 index 5ed6faf9..00000000 Binary files a/static/icons/0600680D.png and /dev/null differ diff --git a/static/icons/0600680E.png b/static/icons/0600680E.png deleted file mode 100755 index 5a27b94a..00000000 Binary files a/static/icons/0600680E.png and /dev/null differ diff --git a/static/icons/0600680F.png b/static/icons/0600680F.png deleted file mode 100755 index f5938893..00000000 Binary files a/static/icons/0600680F.png and /dev/null differ diff --git a/static/icons/06006810.png b/static/icons/06006810.png deleted file mode 100755 index e672c1ed..00000000 Binary files a/static/icons/06006810.png and /dev/null differ diff --git a/static/icons/06006811.png b/static/icons/06006811.png deleted file mode 100755 index 1d6fdfa0..00000000 Binary files a/static/icons/06006811.png and /dev/null differ diff --git a/static/icons/06006814.png b/static/icons/06006814.png deleted file mode 100755 index 02bb2a2b..00000000 Binary files a/static/icons/06006814.png and /dev/null differ diff --git a/static/icons/06006815.png b/static/icons/06006815.png deleted file mode 100755 index 21067e8c..00000000 Binary files a/static/icons/06006815.png and /dev/null differ diff --git a/static/icons/06006816.png b/static/icons/06006816.png deleted file mode 100755 index 112e92b4..00000000 Binary files a/static/icons/06006816.png and /dev/null differ diff --git a/static/icons/06006817.png b/static/icons/06006817.png deleted file mode 100755 index 0e91e60a..00000000 Binary files a/static/icons/06006817.png and /dev/null differ diff --git a/static/icons/06006818.png b/static/icons/06006818.png deleted file mode 100755 index 14116705..00000000 Binary files a/static/icons/06006818.png and /dev/null differ diff --git a/static/icons/06006819.png b/static/icons/06006819.png deleted file mode 100755 index e9dd2e29..00000000 Binary files a/static/icons/06006819.png and /dev/null differ diff --git a/static/icons/0600681A.png b/static/icons/0600681A.png deleted file mode 100755 index d496118c..00000000 Binary files a/static/icons/0600681A.png and /dev/null differ diff --git a/static/icons/0600681B.png b/static/icons/0600681B.png deleted file mode 100755 index dc95b6b7..00000000 Binary files a/static/icons/0600681B.png and /dev/null differ diff --git a/static/icons/0600681C.png b/static/icons/0600681C.png deleted file mode 100755 index 19476928..00000000 Binary files a/static/icons/0600681C.png and /dev/null differ diff --git a/static/icons/0600681D.png b/static/icons/0600681D.png deleted file mode 100755 index 783d46b6..00000000 Binary files a/static/icons/0600681D.png and /dev/null differ diff --git a/static/icons/0600681E.png b/static/icons/0600681E.png deleted file mode 100755 index 04844365..00000000 Binary files a/static/icons/0600681E.png and /dev/null differ diff --git a/static/icons/06006831.png b/static/icons/06006831.png deleted file mode 100755 index e5fdeacc..00000000 Binary files a/static/icons/06006831.png and /dev/null differ diff --git a/static/icons/06006832.png b/static/icons/06006832.png deleted file mode 100755 index 6c329698..00000000 Binary files a/static/icons/06006832.png and /dev/null differ diff --git a/static/icons/06006833.png b/static/icons/06006833.png deleted file mode 100755 index 9843e4ca..00000000 Binary files a/static/icons/06006833.png and /dev/null differ diff --git a/static/icons/06006834.png b/static/icons/06006834.png deleted file mode 100755 index 34052000..00000000 Binary files a/static/icons/06006834.png and /dev/null differ diff --git a/static/icons/06006835.png b/static/icons/06006835.png deleted file mode 100755 index d613fff2..00000000 Binary files a/static/icons/06006835.png and /dev/null differ diff --git a/static/icons/06006838.png b/static/icons/06006838.png deleted file mode 100755 index 786333cc..00000000 Binary files a/static/icons/06006838.png and /dev/null differ diff --git a/static/icons/06006839.png b/static/icons/06006839.png deleted file mode 100755 index fc08259f..00000000 Binary files a/static/icons/06006839.png and /dev/null differ diff --git a/static/icons/0600683A.png b/static/icons/0600683A.png deleted file mode 100755 index 8bcec18f..00000000 Binary files a/static/icons/0600683A.png and /dev/null differ diff --git a/static/icons/0600683B.png b/static/icons/0600683B.png deleted file mode 100755 index 43f52935..00000000 Binary files a/static/icons/0600683B.png and /dev/null differ diff --git a/static/icons/0600683C.png b/static/icons/0600683C.png deleted file mode 100755 index 91ca3669..00000000 Binary files a/static/icons/0600683C.png and /dev/null differ diff --git a/static/icons/0600683D.png b/static/icons/0600683D.png deleted file mode 100755 index cd5cad99..00000000 Binary files a/static/icons/0600683D.png and /dev/null differ diff --git a/static/icons/0600683E.png b/static/icons/0600683E.png deleted file mode 100755 index 04f77d2a..00000000 Binary files a/static/icons/0600683E.png and /dev/null differ diff --git a/static/icons/0600683F.png b/static/icons/0600683F.png deleted file mode 100755 index 38591347..00000000 Binary files a/static/icons/0600683F.png and /dev/null differ diff --git a/static/icons/06006840.png b/static/icons/06006840.png deleted file mode 100755 index fd30d92f..00000000 Binary files a/static/icons/06006840.png and /dev/null differ diff --git a/static/icons/06006841.png b/static/icons/06006841.png deleted file mode 100755 index ed0f3b48..00000000 Binary files a/static/icons/06006841.png and /dev/null differ diff --git a/static/icons/06006842.png b/static/icons/06006842.png deleted file mode 100755 index ee66035c..00000000 Binary files a/static/icons/06006842.png and /dev/null differ diff --git a/static/icons/06006843.png b/static/icons/06006843.png deleted file mode 100755 index 2effe0c4..00000000 Binary files a/static/icons/06006843.png and /dev/null differ diff --git a/static/icons/06006844.png b/static/icons/06006844.png deleted file mode 100755 index 02e6dc2f..00000000 Binary files a/static/icons/06006844.png and /dev/null differ diff --git a/static/icons/06006845.png b/static/icons/06006845.png deleted file mode 100755 index 2573eb26..00000000 Binary files a/static/icons/06006845.png and /dev/null differ diff --git a/static/icons/06006846.png b/static/icons/06006846.png deleted file mode 100755 index c7b374e1..00000000 Binary files a/static/icons/06006846.png and /dev/null differ diff --git a/static/icons/06006847.png b/static/icons/06006847.png deleted file mode 100755 index 92768300..00000000 Binary files a/static/icons/06006847.png and /dev/null differ diff --git a/static/icons/06006848.png b/static/icons/06006848.png deleted file mode 100755 index c0f2056d..00000000 Binary files a/static/icons/06006848.png and /dev/null differ diff --git a/static/icons/06006849.png b/static/icons/06006849.png deleted file mode 100755 index 27086695..00000000 Binary files a/static/icons/06006849.png and /dev/null differ diff --git a/static/icons/0600684A.png b/static/icons/0600684A.png deleted file mode 100755 index d2a224c5..00000000 Binary files a/static/icons/0600684A.png and /dev/null differ diff --git a/static/icons/0600684B.png b/static/icons/0600684B.png deleted file mode 100755 index 08ddd6df..00000000 Binary files a/static/icons/0600684B.png and /dev/null differ diff --git a/static/icons/0600684C.png b/static/icons/0600684C.png deleted file mode 100755 index 8eb6265e..00000000 Binary files a/static/icons/0600684C.png and /dev/null differ diff --git a/static/icons/0600684D.png b/static/icons/0600684D.png deleted file mode 100755 index b9331fca..00000000 Binary files a/static/icons/0600684D.png and /dev/null differ diff --git a/static/icons/0600684E.png b/static/icons/0600684E.png deleted file mode 100755 index b07079f9..00000000 Binary files a/static/icons/0600684E.png and /dev/null differ diff --git a/static/icons/06006852.png b/static/icons/06006852.png deleted file mode 100755 index 7f69c47f..00000000 Binary files a/static/icons/06006852.png and /dev/null differ diff --git a/static/icons/06006853.png b/static/icons/06006853.png deleted file mode 100755 index 6e9e7d3d..00000000 Binary files a/static/icons/06006853.png and /dev/null differ diff --git a/static/icons/06006854.png b/static/icons/06006854.png deleted file mode 100755 index f2ec847f..00000000 Binary files a/static/icons/06006854.png and /dev/null differ diff --git a/static/icons/06006855.png b/static/icons/06006855.png deleted file mode 100755 index 5ff3f218..00000000 Binary files a/static/icons/06006855.png and /dev/null differ diff --git a/static/icons/06006856.png b/static/icons/06006856.png deleted file mode 100755 index a53c7386..00000000 Binary files a/static/icons/06006856.png and /dev/null differ diff --git a/static/icons/06006857.png b/static/icons/06006857.png deleted file mode 100755 index 297006c2..00000000 Binary files a/static/icons/06006857.png and /dev/null differ diff --git a/static/icons/06006858.png b/static/icons/06006858.png deleted file mode 100755 index 87ee6f4c..00000000 Binary files a/static/icons/06006858.png and /dev/null differ diff --git a/static/icons/06006859.png b/static/icons/06006859.png deleted file mode 100755 index cb4c0cb1..00000000 Binary files a/static/icons/06006859.png and /dev/null differ diff --git a/static/icons/0600685A.png b/static/icons/0600685A.png deleted file mode 100755 index b4d4b472..00000000 Binary files a/static/icons/0600685A.png and /dev/null differ diff --git a/static/icons/0600685B.png b/static/icons/0600685B.png deleted file mode 100755 index 5c1352a9..00000000 Binary files a/static/icons/0600685B.png and /dev/null differ diff --git a/static/icons/0600685C.png b/static/icons/0600685C.png deleted file mode 100755 index e3ef3cb2..00000000 Binary files a/static/icons/0600685C.png and /dev/null differ diff --git a/static/icons/0600685D.png b/static/icons/0600685D.png deleted file mode 100755 index 451a3403..00000000 Binary files a/static/icons/0600685D.png and /dev/null differ diff --git a/static/icons/0600685E.png b/static/icons/0600685E.png deleted file mode 100755 index 9dcf1866..00000000 Binary files a/static/icons/0600685E.png and /dev/null differ diff --git a/static/icons/0600685F.png b/static/icons/0600685F.png deleted file mode 100755 index 5c0e52ce..00000000 Binary files a/static/icons/0600685F.png and /dev/null differ diff --git a/static/icons/06006860.png b/static/icons/06006860.png deleted file mode 100755 index d1b23a6b..00000000 Binary files a/static/icons/06006860.png and /dev/null differ diff --git a/static/icons/06006861.png b/static/icons/06006861.png deleted file mode 100755 index 306a19a7..00000000 Binary files a/static/icons/06006861.png and /dev/null differ diff --git a/static/icons/06006862.png b/static/icons/06006862.png deleted file mode 100755 index d7240bd9..00000000 Binary files a/static/icons/06006862.png and /dev/null differ diff --git a/static/icons/06006863.png b/static/icons/06006863.png deleted file mode 100755 index d4bdc1f3..00000000 Binary files a/static/icons/06006863.png and /dev/null differ diff --git a/static/icons/06006864.png b/static/icons/06006864.png deleted file mode 100755 index d4ec5457..00000000 Binary files a/static/icons/06006864.png and /dev/null differ diff --git a/static/icons/06006865.png b/static/icons/06006865.png deleted file mode 100755 index 82bc10dd..00000000 Binary files a/static/icons/06006865.png and /dev/null differ diff --git a/static/icons/06006866.png b/static/icons/06006866.png deleted file mode 100755 index 933beae1..00000000 Binary files a/static/icons/06006866.png and /dev/null differ diff --git a/static/icons/06006869.png b/static/icons/06006869.png deleted file mode 100755 index b125b6ce..00000000 Binary files a/static/icons/06006869.png and /dev/null differ diff --git a/static/icons/0600686A.png b/static/icons/0600686A.png deleted file mode 100755 index 6aead7ad..00000000 Binary files a/static/icons/0600686A.png and /dev/null differ diff --git a/static/icons/0600686B.png b/static/icons/0600686B.png deleted file mode 100755 index d0f081da..00000000 Binary files a/static/icons/0600686B.png and /dev/null differ diff --git a/static/icons/0600686C.png b/static/icons/0600686C.png deleted file mode 100755 index 0d8075f2..00000000 Binary files a/static/icons/0600686C.png and /dev/null differ diff --git a/static/icons/0600686D.png b/static/icons/0600686D.png deleted file mode 100755 index 6bbc6233..00000000 Binary files a/static/icons/0600686D.png and /dev/null differ diff --git a/static/icons/0600686E.png b/static/icons/0600686E.png deleted file mode 100755 index 2f34969e..00000000 Binary files a/static/icons/0600686E.png and /dev/null differ diff --git a/static/icons/0600686F.png b/static/icons/0600686F.png deleted file mode 100755 index d63245ab..00000000 Binary files a/static/icons/0600686F.png and /dev/null differ diff --git a/static/icons/06006870.png b/static/icons/06006870.png deleted file mode 100755 index 66df482f..00000000 Binary files a/static/icons/06006870.png and /dev/null differ diff --git a/static/icons/06006871.png b/static/icons/06006871.png deleted file mode 100755 index b269d2e5..00000000 Binary files a/static/icons/06006871.png and /dev/null differ diff --git a/static/icons/06006872.png b/static/icons/06006872.png deleted file mode 100755 index 1b7ba1b9..00000000 Binary files a/static/icons/06006872.png and /dev/null differ diff --git a/static/icons/06006873.png b/static/icons/06006873.png deleted file mode 100755 index 2f0049d3..00000000 Binary files a/static/icons/06006873.png and /dev/null differ diff --git a/static/icons/06006876.png b/static/icons/06006876.png deleted file mode 100755 index d6d317fe..00000000 Binary files a/static/icons/06006876.png and /dev/null differ diff --git a/static/icons/06006877.png b/static/icons/06006877.png deleted file mode 100755 index 996e4d46..00000000 Binary files a/static/icons/06006877.png and /dev/null differ diff --git a/static/icons/06006878.png b/static/icons/06006878.png deleted file mode 100755 index 776547e4..00000000 Binary files a/static/icons/06006878.png and /dev/null differ diff --git a/static/icons/06006879.png b/static/icons/06006879.png deleted file mode 100755 index 050560f9..00000000 Binary files a/static/icons/06006879.png and /dev/null differ diff --git a/static/icons/0600687A.png b/static/icons/0600687A.png deleted file mode 100755 index 76ff4458..00000000 Binary files a/static/icons/0600687A.png and /dev/null differ diff --git a/static/icons/0600687B.png b/static/icons/0600687B.png deleted file mode 100755 index 32bbdeaa..00000000 Binary files a/static/icons/0600687B.png and /dev/null differ diff --git a/static/icons/0600687C.png b/static/icons/0600687C.png deleted file mode 100755 index 96b3978e..00000000 Binary files a/static/icons/0600687C.png and /dev/null differ diff --git a/static/icons/0600687D.png b/static/icons/0600687D.png deleted file mode 100755 index 801e45dc..00000000 Binary files a/static/icons/0600687D.png and /dev/null differ diff --git a/static/icons/0600687E.png b/static/icons/0600687E.png deleted file mode 100755 index 631f7a06..00000000 Binary files a/static/icons/0600687E.png and /dev/null differ diff --git a/static/icons/0600687F.png b/static/icons/0600687F.png deleted file mode 100755 index 9a2d12f9..00000000 Binary files a/static/icons/0600687F.png and /dev/null differ diff --git a/static/icons/06006880.png b/static/icons/06006880.png deleted file mode 100755 index 07eddab0..00000000 Binary files a/static/icons/06006880.png and /dev/null differ diff --git a/static/icons/06006881.png b/static/icons/06006881.png deleted file mode 100755 index b6df24ff..00000000 Binary files a/static/icons/06006881.png and /dev/null differ diff --git a/static/icons/06006882.png b/static/icons/06006882.png deleted file mode 100755 index 1d5ebfec..00000000 Binary files a/static/icons/06006882.png and /dev/null differ diff --git a/static/icons/06006884.png b/static/icons/06006884.png deleted file mode 100755 index 69bb7798..00000000 Binary files a/static/icons/06006884.png and /dev/null differ diff --git a/static/icons/06006885.png b/static/icons/06006885.png deleted file mode 100755 index df7429e8..00000000 Binary files a/static/icons/06006885.png and /dev/null differ diff --git a/static/icons/06006886.png b/static/icons/06006886.png deleted file mode 100755 index 58e03300..00000000 Binary files a/static/icons/06006886.png and /dev/null differ diff --git a/static/icons/06006887.png b/static/icons/06006887.png deleted file mode 100755 index 5999658b..00000000 Binary files a/static/icons/06006887.png and /dev/null differ diff --git a/static/icons/06006888.png b/static/icons/06006888.png deleted file mode 100755 index 6815caa0..00000000 Binary files a/static/icons/06006888.png and /dev/null differ diff --git a/static/icons/06006889.png b/static/icons/06006889.png deleted file mode 100755 index 6b42d075..00000000 Binary files a/static/icons/06006889.png and /dev/null differ diff --git a/static/icons/0600688A.png b/static/icons/0600688A.png deleted file mode 100755 index a4a378e5..00000000 Binary files a/static/icons/0600688A.png and /dev/null differ diff --git a/static/icons/0600688B.png b/static/icons/0600688B.png deleted file mode 100755 index 3c378555..00000000 Binary files a/static/icons/0600688B.png and /dev/null differ diff --git a/static/icons/0600688C.png b/static/icons/0600688C.png deleted file mode 100755 index 5a4c99fe..00000000 Binary files a/static/icons/0600688C.png and /dev/null differ diff --git a/static/icons/0600688D.png b/static/icons/0600688D.png deleted file mode 100755 index fea5cc34..00000000 Binary files a/static/icons/0600688D.png and /dev/null differ diff --git a/static/icons/0600688E.png b/static/icons/0600688E.png deleted file mode 100755 index 8f06b439..00000000 Binary files a/static/icons/0600688E.png and /dev/null differ diff --git a/static/icons/0600688F.png b/static/icons/0600688F.png deleted file mode 100755 index 39caf140..00000000 Binary files a/static/icons/0600688F.png and /dev/null differ diff --git a/static/icons/06006891.png b/static/icons/06006891.png deleted file mode 100755 index dbef86a9..00000000 Binary files a/static/icons/06006891.png and /dev/null differ diff --git a/static/icons/06006892.png b/static/icons/06006892.png deleted file mode 100755 index 6a9909db..00000000 Binary files a/static/icons/06006892.png and /dev/null differ diff --git a/static/icons/06006893.png b/static/icons/06006893.png deleted file mode 100755 index 167269a4..00000000 Binary files a/static/icons/06006893.png and /dev/null differ diff --git a/static/icons/06006894.png b/static/icons/06006894.png deleted file mode 100755 index 9e4088ca..00000000 Binary files a/static/icons/06006894.png and /dev/null differ diff --git a/static/icons/06006895.png b/static/icons/06006895.png deleted file mode 100755 index b5baac2c..00000000 Binary files a/static/icons/06006895.png and /dev/null differ diff --git a/static/icons/06006896.png b/static/icons/06006896.png deleted file mode 100755 index 85599538..00000000 Binary files a/static/icons/06006896.png and /dev/null differ diff --git a/static/icons/06006897.png b/static/icons/06006897.png deleted file mode 100755 index b071f8c7..00000000 Binary files a/static/icons/06006897.png and /dev/null differ diff --git a/static/icons/06006898.png b/static/icons/06006898.png deleted file mode 100755 index fc9cba5c..00000000 Binary files a/static/icons/06006898.png and /dev/null differ diff --git a/static/icons/06006899.png b/static/icons/06006899.png deleted file mode 100755 index 1f882461..00000000 Binary files a/static/icons/06006899.png and /dev/null differ diff --git a/static/icons/0600689A.png b/static/icons/0600689A.png deleted file mode 100755 index 436c9af3..00000000 Binary files a/static/icons/0600689A.png and /dev/null differ diff --git a/static/icons/0600689B.png b/static/icons/0600689B.png deleted file mode 100755 index b28666b8..00000000 Binary files a/static/icons/0600689B.png and /dev/null differ diff --git a/static/icons/0600689C.png b/static/icons/0600689C.png deleted file mode 100755 index eea11a78..00000000 Binary files a/static/icons/0600689C.png and /dev/null differ diff --git a/static/icons/0600689D.png b/static/icons/0600689D.png deleted file mode 100755 index 1270211d..00000000 Binary files a/static/icons/0600689D.png and /dev/null differ diff --git a/static/icons/0600689E.png b/static/icons/0600689E.png deleted file mode 100755 index d99c16c7..00000000 Binary files a/static/icons/0600689E.png and /dev/null differ diff --git a/static/icons/0600689F.png b/static/icons/0600689F.png deleted file mode 100755 index 09a5d20c..00000000 Binary files a/static/icons/0600689F.png and /dev/null differ diff --git a/static/icons/060068A0.png b/static/icons/060068A0.png deleted file mode 100755 index b945b02f..00000000 Binary files a/static/icons/060068A0.png and /dev/null differ diff --git a/static/icons/060068A1.png b/static/icons/060068A1.png deleted file mode 100755 index 43ce38c4..00000000 Binary files a/static/icons/060068A1.png and /dev/null differ diff --git a/static/icons/060068A2.png b/static/icons/060068A2.png deleted file mode 100755 index baf9909d..00000000 Binary files a/static/icons/060068A2.png and /dev/null differ diff --git a/static/icons/060068A3.png b/static/icons/060068A3.png deleted file mode 100755 index 1c6e9835..00000000 Binary files a/static/icons/060068A3.png and /dev/null differ diff --git a/static/icons/060068A4.png b/static/icons/060068A4.png deleted file mode 100755 index ae11950f..00000000 Binary files a/static/icons/060068A4.png and /dev/null differ diff --git a/static/icons/060068A5.png b/static/icons/060068A5.png deleted file mode 100755 index e8c2571c..00000000 Binary files a/static/icons/060068A5.png and /dev/null differ diff --git a/static/icons/060068A6.png b/static/icons/060068A6.png deleted file mode 100755 index 00bd66f2..00000000 Binary files a/static/icons/060068A6.png and /dev/null differ diff --git a/static/icons/060068A7.png b/static/icons/060068A7.png deleted file mode 100755 index 47e0277f..00000000 Binary files a/static/icons/060068A7.png and /dev/null differ diff --git a/static/icons/060068A8.png b/static/icons/060068A8.png deleted file mode 100755 index 3565b231..00000000 Binary files a/static/icons/060068A8.png and /dev/null differ diff --git a/static/icons/060068A9.png b/static/icons/060068A9.png deleted file mode 100755 index 85621715..00000000 Binary files a/static/icons/060068A9.png and /dev/null differ diff --git a/static/icons/060068AA.png b/static/icons/060068AA.png deleted file mode 100755 index 2237ea37..00000000 Binary files a/static/icons/060068AA.png and /dev/null differ diff --git a/static/icons/060068AB.png b/static/icons/060068AB.png deleted file mode 100755 index b6d62c4f..00000000 Binary files a/static/icons/060068AB.png and /dev/null differ diff --git a/static/icons/060068AC.png b/static/icons/060068AC.png deleted file mode 100755 index 450bc8e3..00000000 Binary files a/static/icons/060068AC.png and /dev/null differ diff --git a/static/icons/060068AD.png b/static/icons/060068AD.png deleted file mode 100755 index 8128fe3b..00000000 Binary files a/static/icons/060068AD.png and /dev/null differ diff --git a/static/icons/060068AE.png b/static/icons/060068AE.png deleted file mode 100755 index 2197072c..00000000 Binary files a/static/icons/060068AE.png and /dev/null differ diff --git a/static/icons/060068AF.png b/static/icons/060068AF.png deleted file mode 100755 index e754d2a1..00000000 Binary files a/static/icons/060068AF.png and /dev/null differ diff --git a/static/icons/060068B0.png b/static/icons/060068B0.png deleted file mode 100755 index d796ad05..00000000 Binary files a/static/icons/060068B0.png and /dev/null differ diff --git a/static/icons/060068B1.png b/static/icons/060068B1.png deleted file mode 100755 index b1c4d0ed..00000000 Binary files a/static/icons/060068B1.png and /dev/null differ diff --git a/static/icons/060068B2.png b/static/icons/060068B2.png deleted file mode 100755 index 0563ff7f..00000000 Binary files a/static/icons/060068B2.png and /dev/null differ diff --git a/static/icons/060068B3.png b/static/icons/060068B3.png deleted file mode 100755 index d05fcda3..00000000 Binary files a/static/icons/060068B3.png and /dev/null differ diff --git a/static/icons/060068B4.png b/static/icons/060068B4.png deleted file mode 100755 index 6e6a4dc0..00000000 Binary files a/static/icons/060068B4.png and /dev/null differ diff --git a/static/icons/060068B5.png b/static/icons/060068B5.png deleted file mode 100755 index ad897969..00000000 Binary files a/static/icons/060068B5.png and /dev/null differ diff --git a/static/icons/060068B6.png b/static/icons/060068B6.png deleted file mode 100755 index 3d75b523..00000000 Binary files a/static/icons/060068B6.png and /dev/null differ diff --git a/static/icons/060068B7.png b/static/icons/060068B7.png deleted file mode 100755 index c8082e61..00000000 Binary files a/static/icons/060068B7.png and /dev/null differ diff --git a/static/icons/060068B8.png b/static/icons/060068B8.png deleted file mode 100755 index c8f7e562..00000000 Binary files a/static/icons/060068B8.png and /dev/null differ diff --git a/static/icons/060068B9.png b/static/icons/060068B9.png deleted file mode 100755 index 50e52c00..00000000 Binary files a/static/icons/060068B9.png and /dev/null differ diff --git a/static/icons/060068BA.png b/static/icons/060068BA.png deleted file mode 100755 index e59c3779..00000000 Binary files a/static/icons/060068BA.png and /dev/null differ diff --git a/static/icons/060068BB.png b/static/icons/060068BB.png deleted file mode 100755 index cec674d6..00000000 Binary files a/static/icons/060068BB.png and /dev/null differ diff --git a/static/icons/060068BC.png b/static/icons/060068BC.png deleted file mode 100755 index b2b365e9..00000000 Binary files a/static/icons/060068BC.png and /dev/null differ diff --git a/static/icons/060068BD.png b/static/icons/060068BD.png deleted file mode 100755 index 6f623cd9..00000000 Binary files a/static/icons/060068BD.png and /dev/null differ diff --git a/static/icons/060068BE.png b/static/icons/060068BE.png deleted file mode 100755 index f9c31289..00000000 Binary files a/static/icons/060068BE.png and /dev/null differ diff --git a/static/icons/060068BF.png b/static/icons/060068BF.png deleted file mode 100755 index b9b32ea2..00000000 Binary files a/static/icons/060068BF.png and /dev/null differ diff --git a/static/icons/060068C0.png b/static/icons/060068C0.png deleted file mode 100755 index 1297ecf1..00000000 Binary files a/static/icons/060068C0.png and /dev/null differ diff --git a/static/icons/060068C1.png b/static/icons/060068C1.png deleted file mode 100755 index b9d31037..00000000 Binary files a/static/icons/060068C1.png and /dev/null differ diff --git a/static/icons/060068C2.png b/static/icons/060068C2.png deleted file mode 100755 index 9572b8ef..00000000 Binary files a/static/icons/060068C2.png and /dev/null differ diff --git a/static/icons/060068C3.png b/static/icons/060068C3.png deleted file mode 100755 index 72d9f23c..00000000 Binary files a/static/icons/060068C3.png and /dev/null differ diff --git a/static/icons/060068C4.png b/static/icons/060068C4.png deleted file mode 100755 index bc4aa47f..00000000 Binary files a/static/icons/060068C4.png and /dev/null differ diff --git a/static/icons/060068C5.png b/static/icons/060068C5.png deleted file mode 100755 index 64ec3786..00000000 Binary files a/static/icons/060068C5.png and /dev/null differ diff --git a/static/icons/060068C6.png b/static/icons/060068C6.png deleted file mode 100755 index 5898d54f..00000000 Binary files a/static/icons/060068C6.png and /dev/null differ diff --git a/static/icons/060068C7.png b/static/icons/060068C7.png deleted file mode 100755 index 7ff974d5..00000000 Binary files a/static/icons/060068C7.png and /dev/null differ diff --git a/static/icons/060068C8.png b/static/icons/060068C8.png deleted file mode 100755 index 5eb1b419..00000000 Binary files a/static/icons/060068C8.png and /dev/null differ diff --git a/static/icons/060068C9.png b/static/icons/060068C9.png deleted file mode 100755 index 76247e0f..00000000 Binary files a/static/icons/060068C9.png and /dev/null differ diff --git a/static/icons/060068CA.png b/static/icons/060068CA.png deleted file mode 100755 index a7e58bc7..00000000 Binary files a/static/icons/060068CA.png and /dev/null differ diff --git a/static/icons/060068CB.png b/static/icons/060068CB.png deleted file mode 100755 index cbe43131..00000000 Binary files a/static/icons/060068CB.png and /dev/null differ diff --git a/static/icons/060068CC.png b/static/icons/060068CC.png deleted file mode 100755 index d2df376c..00000000 Binary files a/static/icons/060068CC.png and /dev/null differ diff --git a/static/icons/060068CD.png b/static/icons/060068CD.png deleted file mode 100755 index 2d661aa9..00000000 Binary files a/static/icons/060068CD.png and /dev/null differ diff --git a/static/icons/060068CE.png b/static/icons/060068CE.png deleted file mode 100755 index df94cc4e..00000000 Binary files a/static/icons/060068CE.png and /dev/null differ diff --git a/static/icons/060068CF.png b/static/icons/060068CF.png deleted file mode 100755 index 83b76a60..00000000 Binary files a/static/icons/060068CF.png and /dev/null differ diff --git a/static/icons/060068D0.png b/static/icons/060068D0.png deleted file mode 100755 index 6e8e5248..00000000 Binary files a/static/icons/060068D0.png and /dev/null differ diff --git a/static/icons/060068D1.png b/static/icons/060068D1.png deleted file mode 100755 index 5459bcab..00000000 Binary files a/static/icons/060068D1.png and /dev/null differ diff --git a/static/icons/060068D2.png b/static/icons/060068D2.png deleted file mode 100755 index c1e061fa..00000000 Binary files a/static/icons/060068D2.png and /dev/null differ diff --git a/static/icons/060068D3.png b/static/icons/060068D3.png deleted file mode 100755 index 6dd91cd2..00000000 Binary files a/static/icons/060068D3.png and /dev/null differ diff --git a/static/icons/060068D4.png b/static/icons/060068D4.png deleted file mode 100755 index c19173dc..00000000 Binary files a/static/icons/060068D4.png and /dev/null differ diff --git a/static/icons/060068D5.png b/static/icons/060068D5.png deleted file mode 100755 index 3d8930f8..00000000 Binary files a/static/icons/060068D5.png and /dev/null differ diff --git a/static/icons/060068D6.png b/static/icons/060068D6.png deleted file mode 100755 index 19861659..00000000 Binary files a/static/icons/060068D6.png and /dev/null differ diff --git a/static/icons/060068D7.png b/static/icons/060068D7.png deleted file mode 100755 index feb82172..00000000 Binary files a/static/icons/060068D7.png and /dev/null differ diff --git a/static/icons/060068D8.png b/static/icons/060068D8.png deleted file mode 100755 index 54d7dcab..00000000 Binary files a/static/icons/060068D8.png and /dev/null differ diff --git a/static/icons/060068D9.png b/static/icons/060068D9.png deleted file mode 100755 index a5bab2d0..00000000 Binary files a/static/icons/060068D9.png and /dev/null differ diff --git a/static/icons/060068DA.png b/static/icons/060068DA.png deleted file mode 100755 index a177afc6..00000000 Binary files a/static/icons/060068DA.png and /dev/null differ diff --git a/static/icons/060068DB.png b/static/icons/060068DB.png deleted file mode 100755 index b4cbc475..00000000 Binary files a/static/icons/060068DB.png and /dev/null differ diff --git a/static/icons/060068DC.png b/static/icons/060068DC.png deleted file mode 100755 index 182cc31a..00000000 Binary files a/static/icons/060068DC.png and /dev/null differ diff --git a/static/icons/060068DD.png b/static/icons/060068DD.png deleted file mode 100755 index 5aeeef08..00000000 Binary files a/static/icons/060068DD.png and /dev/null differ diff --git a/static/icons/060068DE.png b/static/icons/060068DE.png deleted file mode 100755 index 1d692e0e..00000000 Binary files a/static/icons/060068DE.png and /dev/null differ diff --git a/static/icons/060068DF.png b/static/icons/060068DF.png deleted file mode 100755 index cb6b46e4..00000000 Binary files a/static/icons/060068DF.png and /dev/null differ diff --git a/static/icons/060068E0.png b/static/icons/060068E0.png deleted file mode 100755 index effa4d47..00000000 Binary files a/static/icons/060068E0.png and /dev/null differ diff --git a/static/icons/060068E1.png b/static/icons/060068E1.png deleted file mode 100755 index 02b0c30e..00000000 Binary files a/static/icons/060068E1.png and /dev/null differ diff --git a/static/icons/060068E2.png b/static/icons/060068E2.png deleted file mode 100755 index ca0518fb..00000000 Binary files a/static/icons/060068E2.png and /dev/null differ diff --git a/static/icons/060068E3.png b/static/icons/060068E3.png deleted file mode 100755 index 1b824229..00000000 Binary files a/static/icons/060068E3.png and /dev/null differ diff --git a/static/icons/060068E4.png b/static/icons/060068E4.png deleted file mode 100755 index 4d004389..00000000 Binary files a/static/icons/060068E4.png and /dev/null differ diff --git a/static/icons/060068E5.png b/static/icons/060068E5.png deleted file mode 100755 index 3052b3f7..00000000 Binary files a/static/icons/060068E5.png and /dev/null differ diff --git a/static/icons/060068E6.png b/static/icons/060068E6.png deleted file mode 100755 index 4325e467..00000000 Binary files a/static/icons/060068E6.png and /dev/null differ diff --git a/static/icons/060068E7.png b/static/icons/060068E7.png deleted file mode 100755 index 54e6b0fb..00000000 Binary files a/static/icons/060068E7.png and /dev/null differ diff --git a/static/icons/060068E8.png b/static/icons/060068E8.png deleted file mode 100755 index 5f385ddf..00000000 Binary files a/static/icons/060068E8.png and /dev/null differ diff --git a/static/icons/060068E9.png b/static/icons/060068E9.png deleted file mode 100755 index b1d4ea33..00000000 Binary files a/static/icons/060068E9.png and /dev/null differ diff --git a/static/icons/060068EA.png b/static/icons/060068EA.png deleted file mode 100755 index 327c5a85..00000000 Binary files a/static/icons/060068EA.png and /dev/null differ diff --git a/static/icons/060068EB.png b/static/icons/060068EB.png deleted file mode 100755 index e3c11516..00000000 Binary files a/static/icons/060068EB.png and /dev/null differ diff --git a/static/icons/060068EC.png b/static/icons/060068EC.png deleted file mode 100755 index 8656dda5..00000000 Binary files a/static/icons/060068EC.png and /dev/null differ diff --git a/static/icons/060068ED.png b/static/icons/060068ED.png deleted file mode 100755 index 2e82bdff..00000000 Binary files a/static/icons/060068ED.png and /dev/null differ diff --git a/static/icons/060068EE.png b/static/icons/060068EE.png deleted file mode 100755 index 58cde498..00000000 Binary files a/static/icons/060068EE.png and /dev/null differ diff --git a/static/icons/060068EF.png b/static/icons/060068EF.png deleted file mode 100755 index 4eb1390c..00000000 Binary files a/static/icons/060068EF.png and /dev/null differ diff --git a/static/icons/060068F0.png b/static/icons/060068F0.png deleted file mode 100755 index 99447488..00000000 Binary files a/static/icons/060068F0.png and /dev/null differ diff --git a/static/icons/060068F1.png b/static/icons/060068F1.png deleted file mode 100755 index 9a00ee95..00000000 Binary files a/static/icons/060068F1.png and /dev/null differ diff --git a/static/icons/060068F2.png b/static/icons/060068F2.png deleted file mode 100755 index 7eacb2f7..00000000 Binary files a/static/icons/060068F2.png and /dev/null differ diff --git a/static/icons/060068F3.png b/static/icons/060068F3.png deleted file mode 100755 index 249a26f2..00000000 Binary files a/static/icons/060068F3.png and /dev/null differ diff --git a/static/icons/060068F4.png b/static/icons/060068F4.png deleted file mode 100755 index 27dfdc20..00000000 Binary files a/static/icons/060068F4.png and /dev/null differ diff --git a/static/icons/060068F5.png b/static/icons/060068F5.png deleted file mode 100755 index ba28d3e9..00000000 Binary files a/static/icons/060068F5.png and /dev/null differ diff --git a/static/icons/060068F6.png b/static/icons/060068F6.png deleted file mode 100755 index 366fbf06..00000000 Binary files a/static/icons/060068F6.png and /dev/null differ diff --git a/static/icons/060068F7.png b/static/icons/060068F7.png deleted file mode 100755 index 9bf0e415..00000000 Binary files a/static/icons/060068F7.png and /dev/null differ diff --git a/static/icons/060068F8.png b/static/icons/060068F8.png deleted file mode 100755 index 0137be35..00000000 Binary files a/static/icons/060068F8.png and /dev/null differ diff --git a/static/icons/060068F9.png b/static/icons/060068F9.png deleted file mode 100755 index 0cbd5b17..00000000 Binary files a/static/icons/060068F9.png and /dev/null differ diff --git a/static/icons/060068FA.png b/static/icons/060068FA.png deleted file mode 100755 index a975a06d..00000000 Binary files a/static/icons/060068FA.png and /dev/null differ diff --git a/static/icons/060068FB.png b/static/icons/060068FB.png deleted file mode 100755 index 2d0cab69..00000000 Binary files a/static/icons/060068FB.png and /dev/null differ diff --git a/static/icons/060068FC.png b/static/icons/060068FC.png deleted file mode 100755 index 6892a0b1..00000000 Binary files a/static/icons/060068FC.png and /dev/null differ diff --git a/static/icons/060068FD.png b/static/icons/060068FD.png deleted file mode 100755 index 1c421680..00000000 Binary files a/static/icons/060068FD.png and /dev/null differ diff --git a/static/icons/060068FE.png b/static/icons/060068FE.png deleted file mode 100755 index 6aecdd36..00000000 Binary files a/static/icons/060068FE.png and /dev/null differ diff --git a/static/icons/060068FF.png b/static/icons/060068FF.png deleted file mode 100755 index e8c68e13..00000000 Binary files a/static/icons/060068FF.png and /dev/null differ diff --git a/static/icons/06006900.png b/static/icons/06006900.png deleted file mode 100755 index d7776185..00000000 Binary files a/static/icons/06006900.png and /dev/null differ diff --git a/static/icons/06006901.png b/static/icons/06006901.png deleted file mode 100755 index 2a9cfdb6..00000000 Binary files a/static/icons/06006901.png and /dev/null differ diff --git a/static/icons/06006902.png b/static/icons/06006902.png deleted file mode 100755 index df8789a5..00000000 Binary files a/static/icons/06006902.png and /dev/null differ diff --git a/static/icons/06006903.png b/static/icons/06006903.png deleted file mode 100755 index 403f383e..00000000 Binary files a/static/icons/06006903.png and /dev/null differ diff --git a/static/icons/06006904.png b/static/icons/06006904.png deleted file mode 100755 index fa03a1f5..00000000 Binary files a/static/icons/06006904.png and /dev/null differ diff --git a/static/icons/06006905.png b/static/icons/06006905.png deleted file mode 100755 index 069d4f59..00000000 Binary files a/static/icons/06006905.png and /dev/null differ diff --git a/static/icons/06006906.png b/static/icons/06006906.png deleted file mode 100755 index f96cf433..00000000 Binary files a/static/icons/06006906.png and /dev/null differ diff --git a/static/icons/06006907.png b/static/icons/06006907.png deleted file mode 100755 index 8210a541..00000000 Binary files a/static/icons/06006907.png and /dev/null differ diff --git a/static/icons/06006908.png b/static/icons/06006908.png deleted file mode 100755 index 587bc5cb..00000000 Binary files a/static/icons/06006908.png and /dev/null differ diff --git a/static/icons/06006909.png b/static/icons/06006909.png deleted file mode 100755 index b89e20d9..00000000 Binary files a/static/icons/06006909.png and /dev/null differ diff --git a/static/icons/0600690A.png b/static/icons/0600690A.png deleted file mode 100755 index 50a6ff2d..00000000 Binary files a/static/icons/0600690A.png and /dev/null differ diff --git a/static/icons/0600690B.png b/static/icons/0600690B.png deleted file mode 100755 index 5e301f62..00000000 Binary files a/static/icons/0600690B.png and /dev/null differ diff --git a/static/icons/0600690C.png b/static/icons/0600690C.png deleted file mode 100755 index b8750e71..00000000 Binary files a/static/icons/0600690C.png and /dev/null differ diff --git a/static/icons/0600690D.png b/static/icons/0600690D.png deleted file mode 100755 index 6a5e1740..00000000 Binary files a/static/icons/0600690D.png and /dev/null differ diff --git a/static/icons/0600690E.png b/static/icons/0600690E.png deleted file mode 100755 index 94306eee..00000000 Binary files a/static/icons/0600690E.png and /dev/null differ diff --git a/static/icons/0600690F.png b/static/icons/0600690F.png deleted file mode 100755 index 35f4ca90..00000000 Binary files a/static/icons/0600690F.png and /dev/null differ diff --git a/static/icons/06006910.png b/static/icons/06006910.png deleted file mode 100755 index 567bdbd9..00000000 Binary files a/static/icons/06006910.png and /dev/null differ diff --git a/static/icons/06006911.png b/static/icons/06006911.png deleted file mode 100755 index de8b87d1..00000000 Binary files a/static/icons/06006911.png and /dev/null differ diff --git a/static/icons/06006912.png b/static/icons/06006912.png deleted file mode 100755 index 2cfd191b..00000000 Binary files a/static/icons/06006912.png and /dev/null differ diff --git a/static/icons/06006913.png b/static/icons/06006913.png deleted file mode 100755 index 946f4b0c..00000000 Binary files a/static/icons/06006913.png and /dev/null differ diff --git a/static/icons/06006914.png b/static/icons/06006914.png deleted file mode 100755 index b533da81..00000000 Binary files a/static/icons/06006914.png and /dev/null differ diff --git a/static/icons/06006915.png b/static/icons/06006915.png deleted file mode 100755 index 9da8009f..00000000 Binary files a/static/icons/06006915.png and /dev/null differ diff --git a/static/icons/06006916.png b/static/icons/06006916.png deleted file mode 100755 index 940f57db..00000000 Binary files a/static/icons/06006916.png and /dev/null differ diff --git a/static/icons/06006917.png b/static/icons/06006917.png deleted file mode 100755 index 8177ee81..00000000 Binary files a/static/icons/06006917.png and /dev/null differ diff --git a/static/icons/06006918.png b/static/icons/06006918.png deleted file mode 100755 index c348f450..00000000 Binary files a/static/icons/06006918.png and /dev/null differ diff --git a/static/icons/06006919.png b/static/icons/06006919.png deleted file mode 100755 index 747347c4..00000000 Binary files a/static/icons/06006919.png and /dev/null differ diff --git a/static/icons/0600691A.png b/static/icons/0600691A.png deleted file mode 100755 index d92e3e7b..00000000 Binary files a/static/icons/0600691A.png and /dev/null differ diff --git a/static/icons/0600691B.png b/static/icons/0600691B.png deleted file mode 100755 index 775b03dd..00000000 Binary files a/static/icons/0600691B.png and /dev/null differ diff --git a/static/icons/0600691C.png b/static/icons/0600691C.png deleted file mode 100755 index 651ce955..00000000 Binary files a/static/icons/0600691C.png and /dev/null differ diff --git a/static/icons/0600691D.png b/static/icons/0600691D.png deleted file mode 100755 index 952e532c..00000000 Binary files a/static/icons/0600691D.png and /dev/null differ diff --git a/static/icons/0600691E.png b/static/icons/0600691E.png deleted file mode 100755 index 3bddd590..00000000 Binary files a/static/icons/0600691E.png and /dev/null differ diff --git a/static/icons/0600691F.png b/static/icons/0600691F.png deleted file mode 100755 index ac306b5e..00000000 Binary files a/static/icons/0600691F.png and /dev/null differ diff --git a/static/icons/06006920.png b/static/icons/06006920.png deleted file mode 100755 index 5276918b..00000000 Binary files a/static/icons/06006920.png and /dev/null differ diff --git a/static/icons/06006921.png b/static/icons/06006921.png deleted file mode 100755 index bf22b607..00000000 Binary files a/static/icons/06006921.png and /dev/null differ diff --git a/static/icons/06006922.png b/static/icons/06006922.png deleted file mode 100755 index cd26fdd7..00000000 Binary files a/static/icons/06006922.png and /dev/null differ diff --git a/static/icons/06006923.png b/static/icons/06006923.png deleted file mode 100755 index 2eefb770..00000000 Binary files a/static/icons/06006923.png and /dev/null differ diff --git a/static/icons/06006924.png b/static/icons/06006924.png deleted file mode 100755 index 13827863..00000000 Binary files a/static/icons/06006924.png and /dev/null differ diff --git a/static/icons/06006925.png b/static/icons/06006925.png deleted file mode 100755 index d8f5e01d..00000000 Binary files a/static/icons/06006925.png and /dev/null differ diff --git a/static/icons/06006926.png b/static/icons/06006926.png deleted file mode 100755 index 49f0abf7..00000000 Binary files a/static/icons/06006926.png and /dev/null differ diff --git a/static/icons/06006927.png b/static/icons/06006927.png deleted file mode 100755 index 6d26965b..00000000 Binary files a/static/icons/06006927.png and /dev/null differ diff --git a/static/icons/06006929.png b/static/icons/06006929.png deleted file mode 100755 index e3c3b6ec..00000000 Binary files a/static/icons/06006929.png and /dev/null differ diff --git a/static/icons/0600692A.png b/static/icons/0600692A.png deleted file mode 100755 index 40de6dca..00000000 Binary files a/static/icons/0600692A.png and /dev/null differ diff --git a/static/icons/0600692B.png b/static/icons/0600692B.png deleted file mode 100755 index bd7efb97..00000000 Binary files a/static/icons/0600692B.png and /dev/null differ diff --git a/static/icons/0600692C.png b/static/icons/0600692C.png deleted file mode 100755 index e1b795b8..00000000 Binary files a/static/icons/0600692C.png and /dev/null differ diff --git a/static/icons/0600692D.png b/static/icons/0600692D.png deleted file mode 100755 index 96368c6d..00000000 Binary files a/static/icons/0600692D.png and /dev/null differ diff --git a/static/icons/0600692E.png b/static/icons/0600692E.png deleted file mode 100755 index b6bf9fbb..00000000 Binary files a/static/icons/0600692E.png and /dev/null differ diff --git a/static/icons/0600692F.png b/static/icons/0600692F.png deleted file mode 100755 index c69de8c9..00000000 Binary files a/static/icons/0600692F.png and /dev/null differ diff --git a/static/icons/06006930.png b/static/icons/06006930.png deleted file mode 100755 index 86d5ebf7..00000000 Binary files a/static/icons/06006930.png and /dev/null differ diff --git a/static/icons/06006931.png b/static/icons/06006931.png deleted file mode 100755 index 8be33e27..00000000 Binary files a/static/icons/06006931.png and /dev/null differ diff --git a/static/icons/06006932.png b/static/icons/06006932.png deleted file mode 100755 index 1050821d..00000000 Binary files a/static/icons/06006932.png and /dev/null differ diff --git a/static/icons/06006933.png b/static/icons/06006933.png deleted file mode 100755 index 06529e5e..00000000 Binary files a/static/icons/06006933.png and /dev/null differ diff --git a/static/icons/06006934.png b/static/icons/06006934.png deleted file mode 100755 index 3b981cee..00000000 Binary files a/static/icons/06006934.png and /dev/null differ diff --git a/static/icons/06006935.png b/static/icons/06006935.png deleted file mode 100755 index 012db0c3..00000000 Binary files a/static/icons/06006935.png and /dev/null differ diff --git a/static/icons/06006936.png b/static/icons/06006936.png deleted file mode 100755 index 587c8a78..00000000 Binary files a/static/icons/06006936.png and /dev/null differ diff --git a/static/icons/06006937.png b/static/icons/06006937.png deleted file mode 100755 index d4289d79..00000000 Binary files a/static/icons/06006937.png and /dev/null differ diff --git a/static/icons/06006938.png b/static/icons/06006938.png deleted file mode 100755 index 7cbd4a21..00000000 Binary files a/static/icons/06006938.png and /dev/null differ diff --git a/static/icons/06006939.png b/static/icons/06006939.png deleted file mode 100755 index 57e61f69..00000000 Binary files a/static/icons/06006939.png and /dev/null differ diff --git a/static/icons/0600693A.png b/static/icons/0600693A.png deleted file mode 100755 index 19e02eca..00000000 Binary files a/static/icons/0600693A.png and /dev/null differ diff --git a/static/icons/0600693B.png b/static/icons/0600693B.png deleted file mode 100755 index 5c277633..00000000 Binary files a/static/icons/0600693B.png and /dev/null differ diff --git a/static/icons/0600693C.png b/static/icons/0600693C.png deleted file mode 100755 index 95df2d0f..00000000 Binary files a/static/icons/0600693C.png and /dev/null differ diff --git a/static/icons/0600693D.png b/static/icons/0600693D.png deleted file mode 100755 index fccecb9a..00000000 Binary files a/static/icons/0600693D.png and /dev/null differ diff --git a/static/icons/0600693E.png b/static/icons/0600693E.png deleted file mode 100755 index 312506e4..00000000 Binary files a/static/icons/0600693E.png and /dev/null differ diff --git a/static/icons/0600693F.png b/static/icons/0600693F.png deleted file mode 100755 index a583a40a..00000000 Binary files a/static/icons/0600693F.png and /dev/null differ diff --git a/static/icons/06006940.png b/static/icons/06006940.png deleted file mode 100755 index a299702b..00000000 Binary files a/static/icons/06006940.png and /dev/null differ diff --git a/static/icons/06006941.png b/static/icons/06006941.png deleted file mode 100755 index 57e61f69..00000000 Binary files a/static/icons/06006941.png and /dev/null differ diff --git a/static/icons/06006942.png b/static/icons/06006942.png deleted file mode 100755 index 35b65ba3..00000000 Binary files a/static/icons/06006942.png and /dev/null differ diff --git a/static/icons/06006943.png b/static/icons/06006943.png deleted file mode 100755 index a299702b..00000000 Binary files a/static/icons/06006943.png and /dev/null differ diff --git a/static/icons/06006944.png b/static/icons/06006944.png deleted file mode 100755 index 6bd53ad0..00000000 Binary files a/static/icons/06006944.png and /dev/null differ diff --git a/static/icons/06006945.png b/static/icons/06006945.png deleted file mode 100755 index fb347417..00000000 Binary files a/static/icons/06006945.png and /dev/null differ diff --git a/static/icons/06006946.png b/static/icons/06006946.png deleted file mode 100755 index 555ef4f3..00000000 Binary files a/static/icons/06006946.png and /dev/null differ diff --git a/static/icons/06006947.png b/static/icons/06006947.png deleted file mode 100755 index 78d0f2d2..00000000 Binary files a/static/icons/06006947.png and /dev/null differ diff --git a/static/icons/06006948.png b/static/icons/06006948.png deleted file mode 100755 index 59aeb13f..00000000 Binary files a/static/icons/06006948.png and /dev/null differ diff --git a/static/icons/06006949.png b/static/icons/06006949.png deleted file mode 100755 index 32e66c9b..00000000 Binary files a/static/icons/06006949.png and /dev/null differ diff --git a/static/icons/0600694A.png b/static/icons/0600694A.png deleted file mode 100755 index 84285077..00000000 Binary files a/static/icons/0600694A.png and /dev/null differ diff --git a/static/icons/0600694B.png b/static/icons/0600694B.png deleted file mode 100755 index de9797cd..00000000 Binary files a/static/icons/0600694B.png and /dev/null differ diff --git a/static/icons/0600694C.png b/static/icons/0600694C.png deleted file mode 100755 index 9add5d11..00000000 Binary files a/static/icons/0600694C.png and /dev/null differ diff --git a/static/icons/0600694D.png b/static/icons/0600694D.png deleted file mode 100755 index 4282c694..00000000 Binary files a/static/icons/0600694D.png and /dev/null differ diff --git a/static/icons/0600694E.png b/static/icons/0600694E.png deleted file mode 100755 index 66fa5e37..00000000 Binary files a/static/icons/0600694E.png and /dev/null differ diff --git a/static/icons/0600694F.png b/static/icons/0600694F.png deleted file mode 100755 index d7d8ba1a..00000000 Binary files a/static/icons/0600694F.png and /dev/null differ diff --git a/static/icons/06006950.png b/static/icons/06006950.png deleted file mode 100755 index 5f13ea62..00000000 Binary files a/static/icons/06006950.png and /dev/null differ diff --git a/static/icons/06006951.png b/static/icons/06006951.png deleted file mode 100755 index 6e47ee57..00000000 Binary files a/static/icons/06006951.png and /dev/null differ diff --git a/static/icons/06006952.png b/static/icons/06006952.png deleted file mode 100755 index 9dc78b3f..00000000 Binary files a/static/icons/06006952.png and /dev/null differ diff --git a/static/icons/06006953.png b/static/icons/06006953.png deleted file mode 100755 index f39882d4..00000000 Binary files a/static/icons/06006953.png and /dev/null differ diff --git a/static/icons/06006954.png b/static/icons/06006954.png deleted file mode 100755 index ae5f236a..00000000 Binary files a/static/icons/06006954.png and /dev/null differ diff --git a/static/icons/06006955.png b/static/icons/06006955.png deleted file mode 100755 index 2dd8760e..00000000 Binary files a/static/icons/06006955.png and /dev/null differ diff --git a/static/icons/06006956.png b/static/icons/06006956.png deleted file mode 100755 index a6c63725..00000000 Binary files a/static/icons/06006956.png and /dev/null differ diff --git a/static/icons/06006957.png b/static/icons/06006957.png deleted file mode 100755 index dafc7353..00000000 Binary files a/static/icons/06006957.png and /dev/null differ diff --git a/static/icons/06006958.png b/static/icons/06006958.png deleted file mode 100755 index da98e3d4..00000000 Binary files a/static/icons/06006958.png and /dev/null differ diff --git a/static/icons/06006959.png b/static/icons/06006959.png deleted file mode 100755 index f5c1d886..00000000 Binary files a/static/icons/06006959.png and /dev/null differ diff --git a/static/icons/0600695A.png b/static/icons/0600695A.png deleted file mode 100755 index 889f94df..00000000 Binary files a/static/icons/0600695A.png and /dev/null differ diff --git a/static/icons/0600695B.png b/static/icons/0600695B.png deleted file mode 100755 index 435b5859..00000000 Binary files a/static/icons/0600695B.png and /dev/null differ diff --git a/static/icons/0600695C.png b/static/icons/0600695C.png deleted file mode 100755 index 158ee831..00000000 Binary files a/static/icons/0600695C.png and /dev/null differ diff --git a/static/icons/0600695D.png b/static/icons/0600695D.png deleted file mode 100755 index 5ce991cf..00000000 Binary files a/static/icons/0600695D.png and /dev/null differ diff --git a/static/icons/0600695E.png b/static/icons/0600695E.png deleted file mode 100755 index 1888a8a2..00000000 Binary files a/static/icons/0600695E.png and /dev/null differ diff --git a/static/icons/0600695F.png b/static/icons/0600695F.png deleted file mode 100755 index f408758e..00000000 Binary files a/static/icons/0600695F.png and /dev/null differ diff --git a/static/icons/06006960.png b/static/icons/06006960.png deleted file mode 100755 index 81dc0d99..00000000 Binary files a/static/icons/06006960.png and /dev/null differ diff --git a/static/icons/06006961.png b/static/icons/06006961.png deleted file mode 100755 index 2cd4a461..00000000 Binary files a/static/icons/06006961.png and /dev/null differ diff --git a/static/icons/06006962.png b/static/icons/06006962.png deleted file mode 100755 index aa999b0d..00000000 Binary files a/static/icons/06006962.png and /dev/null differ diff --git a/static/icons/06006963.png b/static/icons/06006963.png deleted file mode 100755 index 51ba38ff..00000000 Binary files a/static/icons/06006963.png and /dev/null differ diff --git a/static/icons/06006964.png b/static/icons/06006964.png deleted file mode 100755 index ebe5c620..00000000 Binary files a/static/icons/06006964.png and /dev/null differ diff --git a/static/icons/06006965.png b/static/icons/06006965.png deleted file mode 100755 index 13fc8e19..00000000 Binary files a/static/icons/06006965.png and /dev/null differ diff --git a/static/icons/06006966.png b/static/icons/06006966.png deleted file mode 100755 index d204b534..00000000 Binary files a/static/icons/06006966.png and /dev/null differ diff --git a/static/icons/06006967.png b/static/icons/06006967.png deleted file mode 100755 index ab936c92..00000000 Binary files a/static/icons/06006967.png and /dev/null differ diff --git a/static/icons/06006968.png b/static/icons/06006968.png deleted file mode 100755 index 2f44b9df..00000000 Binary files a/static/icons/06006968.png and /dev/null differ diff --git a/static/icons/06006969.png b/static/icons/06006969.png deleted file mode 100755 index 384d5dff..00000000 Binary files a/static/icons/06006969.png and /dev/null differ diff --git a/static/icons/0600696A.png b/static/icons/0600696A.png deleted file mode 100755 index 73ce43f1..00000000 Binary files a/static/icons/0600696A.png and /dev/null differ diff --git a/static/icons/0600696B.png b/static/icons/0600696B.png deleted file mode 100755 index 1862e316..00000000 Binary files a/static/icons/0600696B.png and /dev/null differ diff --git a/static/icons/0600696C.png b/static/icons/0600696C.png deleted file mode 100755 index 27ef6285..00000000 Binary files a/static/icons/0600696C.png and /dev/null differ diff --git a/static/icons/0600696D.png b/static/icons/0600696D.png deleted file mode 100755 index 2d106cf2..00000000 Binary files a/static/icons/0600696D.png and /dev/null differ diff --git a/static/icons/0600696E.png b/static/icons/0600696E.png deleted file mode 100755 index 0320ecad..00000000 Binary files a/static/icons/0600696E.png and /dev/null differ diff --git a/static/icons/0600696F.png b/static/icons/0600696F.png deleted file mode 100755 index 8ce33184..00000000 Binary files a/static/icons/0600696F.png and /dev/null differ diff --git a/static/icons/06006970.png b/static/icons/06006970.png deleted file mode 100755 index 3c844ec6..00000000 Binary files a/static/icons/06006970.png and /dev/null differ diff --git a/static/icons/06006971.png b/static/icons/06006971.png deleted file mode 100755 index 051a5bf5..00000000 Binary files a/static/icons/06006971.png and /dev/null differ diff --git a/static/icons/06006972.png b/static/icons/06006972.png deleted file mode 100755 index e199378e..00000000 Binary files a/static/icons/06006972.png and /dev/null differ diff --git a/static/icons/06006973.png b/static/icons/06006973.png deleted file mode 100755 index 2cf1ce84..00000000 Binary files a/static/icons/06006973.png and /dev/null differ diff --git a/static/icons/06006974.png b/static/icons/06006974.png deleted file mode 100755 index 9605c68e..00000000 Binary files a/static/icons/06006974.png and /dev/null differ diff --git a/static/icons/06006975.png b/static/icons/06006975.png deleted file mode 100755 index b1edac21..00000000 Binary files a/static/icons/06006975.png and /dev/null differ diff --git a/static/icons/06006976.png b/static/icons/06006976.png deleted file mode 100755 index 6a19d70f..00000000 Binary files a/static/icons/06006976.png and /dev/null differ diff --git a/static/icons/06006977.png b/static/icons/06006977.png deleted file mode 100755 index b5841c36..00000000 Binary files a/static/icons/06006977.png and /dev/null differ diff --git a/static/icons/06006978.png b/static/icons/06006978.png deleted file mode 100755 index 6a50a027..00000000 Binary files a/static/icons/06006978.png and /dev/null differ diff --git a/static/icons/06006979.png b/static/icons/06006979.png deleted file mode 100755 index f25ff9f1..00000000 Binary files a/static/icons/06006979.png and /dev/null differ diff --git a/static/icons/0600697A.png b/static/icons/0600697A.png deleted file mode 100755 index 56402139..00000000 Binary files a/static/icons/0600697A.png and /dev/null differ diff --git a/static/icons/0600697B.png b/static/icons/0600697B.png deleted file mode 100755 index 407ed81a..00000000 Binary files a/static/icons/0600697B.png and /dev/null differ diff --git a/static/icons/0600697C.png b/static/icons/0600697C.png deleted file mode 100755 index e7de608b..00000000 Binary files a/static/icons/0600697C.png and /dev/null differ diff --git a/static/icons/0600697D.png b/static/icons/0600697D.png deleted file mode 100755 index 21c78fbf..00000000 Binary files a/static/icons/0600697D.png and /dev/null differ diff --git a/static/icons/0600697E.png b/static/icons/0600697E.png deleted file mode 100755 index 88dce1f9..00000000 Binary files a/static/icons/0600697E.png and /dev/null differ diff --git a/static/icons/0600697F.png b/static/icons/0600697F.png deleted file mode 100755 index 0bfb4633..00000000 Binary files a/static/icons/0600697F.png and /dev/null differ diff --git a/static/icons/06006980.png b/static/icons/06006980.png deleted file mode 100755 index c5e7124f..00000000 Binary files a/static/icons/06006980.png and /dev/null differ diff --git a/static/icons/06006981.png b/static/icons/06006981.png deleted file mode 100755 index a5f212c7..00000000 Binary files a/static/icons/06006981.png and /dev/null differ diff --git a/static/icons/06006982.png b/static/icons/06006982.png deleted file mode 100755 index 1bb9e256..00000000 Binary files a/static/icons/06006982.png and /dev/null differ diff --git a/static/icons/06006983.png b/static/icons/06006983.png deleted file mode 100755 index 4badc574..00000000 Binary files a/static/icons/06006983.png and /dev/null differ diff --git a/static/icons/06006984.png b/static/icons/06006984.png deleted file mode 100755 index 4940117f..00000000 Binary files a/static/icons/06006984.png and /dev/null differ diff --git a/static/icons/06006985.png b/static/icons/06006985.png deleted file mode 100755 index 6c5e907b..00000000 Binary files a/static/icons/06006985.png and /dev/null differ diff --git a/static/icons/06006986.png b/static/icons/06006986.png deleted file mode 100755 index 81b9154b..00000000 Binary files a/static/icons/06006986.png and /dev/null differ diff --git a/static/icons/06006987.png b/static/icons/06006987.png deleted file mode 100755 index 220cc737..00000000 Binary files a/static/icons/06006987.png and /dev/null differ diff --git a/static/icons/06006988.png b/static/icons/06006988.png deleted file mode 100755 index bff652dd..00000000 Binary files a/static/icons/06006988.png and /dev/null differ diff --git a/static/icons/06006989.png b/static/icons/06006989.png deleted file mode 100755 index 110c134a..00000000 Binary files a/static/icons/06006989.png and /dev/null differ diff --git a/static/icons/0600698A.png b/static/icons/0600698A.png deleted file mode 100755 index a461a647..00000000 Binary files a/static/icons/0600698A.png and /dev/null differ diff --git a/static/icons/0600698B.png b/static/icons/0600698B.png deleted file mode 100755 index 58c92b74..00000000 Binary files a/static/icons/0600698B.png and /dev/null differ diff --git a/static/icons/0600698C.png b/static/icons/0600698C.png deleted file mode 100755 index 014cd263..00000000 Binary files a/static/icons/0600698C.png and /dev/null differ diff --git a/static/icons/0600698D.png b/static/icons/0600698D.png deleted file mode 100755 index dd483571..00000000 Binary files a/static/icons/0600698D.png and /dev/null differ diff --git a/static/icons/0600698E.png b/static/icons/0600698E.png deleted file mode 100755 index 4732b216..00000000 Binary files a/static/icons/0600698E.png and /dev/null differ diff --git a/static/icons/0600698F.png b/static/icons/0600698F.png deleted file mode 100755 index 1b040cd2..00000000 Binary files a/static/icons/0600698F.png and /dev/null differ diff --git a/static/icons/06006990.png b/static/icons/06006990.png deleted file mode 100755 index a767e107..00000000 Binary files a/static/icons/06006990.png and /dev/null differ diff --git a/static/icons/06006991.png b/static/icons/06006991.png deleted file mode 100755 index b8d57e1d..00000000 Binary files a/static/icons/06006991.png and /dev/null differ diff --git a/static/icons/06006992.png b/static/icons/06006992.png deleted file mode 100755 index d15a5658..00000000 Binary files a/static/icons/06006992.png and /dev/null differ diff --git a/static/icons/06006993.png b/static/icons/06006993.png deleted file mode 100755 index 779bdf35..00000000 Binary files a/static/icons/06006993.png and /dev/null differ diff --git a/static/icons/06006994.png b/static/icons/06006994.png deleted file mode 100755 index 46ceabf7..00000000 Binary files a/static/icons/06006994.png and /dev/null differ diff --git a/static/icons/06006995.png b/static/icons/06006995.png deleted file mode 100755 index b6d1bac1..00000000 Binary files a/static/icons/06006995.png and /dev/null differ diff --git a/static/icons/06006996.png b/static/icons/06006996.png deleted file mode 100755 index 861a71f9..00000000 Binary files a/static/icons/06006996.png and /dev/null differ diff --git a/static/icons/06006997.png b/static/icons/06006997.png deleted file mode 100755 index f91fbeac..00000000 Binary files a/static/icons/06006997.png and /dev/null differ diff --git a/static/icons/06006998.png b/static/icons/06006998.png deleted file mode 100755 index e79f1d64..00000000 Binary files a/static/icons/06006998.png and /dev/null differ diff --git a/static/icons/06006999.png b/static/icons/06006999.png deleted file mode 100755 index d1367f80..00000000 Binary files a/static/icons/06006999.png and /dev/null differ diff --git a/static/icons/0600699A.png b/static/icons/0600699A.png deleted file mode 100755 index 8fac3a85..00000000 Binary files a/static/icons/0600699A.png and /dev/null differ diff --git a/static/icons/0600699B.png b/static/icons/0600699B.png deleted file mode 100755 index 3b0aed9f..00000000 Binary files a/static/icons/0600699B.png and /dev/null differ diff --git a/static/icons/0600699C.png b/static/icons/0600699C.png deleted file mode 100755 index 76f90fa9..00000000 Binary files a/static/icons/0600699C.png and /dev/null differ diff --git a/static/icons/0600699E.png b/static/icons/0600699E.png deleted file mode 100755 index badb1067..00000000 Binary files a/static/icons/0600699E.png and /dev/null differ diff --git a/static/icons/0600699F.png b/static/icons/0600699F.png deleted file mode 100755 index 7b80288d..00000000 Binary files a/static/icons/0600699F.png and /dev/null differ diff --git a/static/icons/060069A0.png b/static/icons/060069A0.png deleted file mode 100755 index 4a6db8a1..00000000 Binary files a/static/icons/060069A0.png and /dev/null differ diff --git a/static/icons/060069A1.png b/static/icons/060069A1.png deleted file mode 100755 index 152dc5fb..00000000 Binary files a/static/icons/060069A1.png and /dev/null differ diff --git a/static/icons/060069A2.png b/static/icons/060069A2.png deleted file mode 100755 index 3f3d7498..00000000 Binary files a/static/icons/060069A2.png and /dev/null differ diff --git a/static/icons/060069A3.png b/static/icons/060069A3.png deleted file mode 100755 index b3ae9f81..00000000 Binary files a/static/icons/060069A3.png and /dev/null differ diff --git a/static/icons/060069A4.png b/static/icons/060069A4.png deleted file mode 100755 index e0efbf4e..00000000 Binary files a/static/icons/060069A4.png and /dev/null differ diff --git a/static/icons/060069A5.png b/static/icons/060069A5.png deleted file mode 100755 index a36f6ea9..00000000 Binary files a/static/icons/060069A5.png and /dev/null differ diff --git a/static/icons/060069A6.png b/static/icons/060069A6.png deleted file mode 100755 index f882559d..00000000 Binary files a/static/icons/060069A6.png and /dev/null differ diff --git a/static/icons/060069A7.png b/static/icons/060069A7.png deleted file mode 100755 index de26e4ca..00000000 Binary files a/static/icons/060069A7.png and /dev/null differ diff --git a/static/icons/060069A8.png b/static/icons/060069A8.png deleted file mode 100755 index 06cdbe9c..00000000 Binary files a/static/icons/060069A8.png and /dev/null differ diff --git a/static/icons/060069AB.png b/static/icons/060069AB.png deleted file mode 100755 index 80727919..00000000 Binary files a/static/icons/060069AB.png and /dev/null differ diff --git a/static/icons/060069AC.png b/static/icons/060069AC.png deleted file mode 100755 index 082d99bd..00000000 Binary files a/static/icons/060069AC.png and /dev/null differ diff --git a/static/icons/060069AD.png b/static/icons/060069AD.png deleted file mode 100755 index 662e0895..00000000 Binary files a/static/icons/060069AD.png and /dev/null differ diff --git a/static/icons/060069AE.png b/static/icons/060069AE.png deleted file mode 100755 index a19df817..00000000 Binary files a/static/icons/060069AE.png and /dev/null differ diff --git a/static/icons/060069AF.png b/static/icons/060069AF.png deleted file mode 100755 index 4d15a711..00000000 Binary files a/static/icons/060069AF.png and /dev/null differ diff --git a/static/icons/060069B1.png b/static/icons/060069B1.png deleted file mode 100755 index e30bd1b3..00000000 Binary files a/static/icons/060069B1.png and /dev/null differ diff --git a/static/icons/060069B2.png b/static/icons/060069B2.png deleted file mode 100755 index c513368d..00000000 Binary files a/static/icons/060069B2.png and /dev/null differ diff --git a/static/icons/060069B3.png b/static/icons/060069B3.png deleted file mode 100755 index 5a95163b..00000000 Binary files a/static/icons/060069B3.png and /dev/null differ diff --git a/static/icons/060069B4.png b/static/icons/060069B4.png deleted file mode 100755 index 87bfbf8d..00000000 Binary files a/static/icons/060069B4.png and /dev/null differ diff --git a/static/icons/060069B5.png b/static/icons/060069B5.png deleted file mode 100755 index 0e415200..00000000 Binary files a/static/icons/060069B5.png and /dev/null differ diff --git a/static/icons/060069B6.png b/static/icons/060069B6.png deleted file mode 100755 index 563ae040..00000000 Binary files a/static/icons/060069B6.png and /dev/null differ diff --git a/static/icons/060069B7.png b/static/icons/060069B7.png deleted file mode 100755 index 4832f353..00000000 Binary files a/static/icons/060069B7.png and /dev/null differ diff --git a/static/icons/060069B8.png b/static/icons/060069B8.png deleted file mode 100755 index ec3e7573..00000000 Binary files a/static/icons/060069B8.png and /dev/null differ diff --git a/static/icons/060069B9.png b/static/icons/060069B9.png deleted file mode 100755 index 75581cc4..00000000 Binary files a/static/icons/060069B9.png and /dev/null differ diff --git a/static/icons/060069BA.png b/static/icons/060069BA.png deleted file mode 100755 index 03d32a7b..00000000 Binary files a/static/icons/060069BA.png and /dev/null differ diff --git a/static/icons/060069BB.png b/static/icons/060069BB.png deleted file mode 100755 index 48ec4819..00000000 Binary files a/static/icons/060069BB.png and /dev/null differ diff --git a/static/icons/060069BC.png b/static/icons/060069BC.png deleted file mode 100755 index 28e29cbc..00000000 Binary files a/static/icons/060069BC.png and /dev/null differ diff --git a/static/icons/060069BD.png b/static/icons/060069BD.png deleted file mode 100755 index 85f322ec..00000000 Binary files a/static/icons/060069BD.png and /dev/null differ diff --git a/static/icons/060069BE.png b/static/icons/060069BE.png deleted file mode 100755 index d742c31d..00000000 Binary files a/static/icons/060069BE.png and /dev/null differ diff --git a/static/icons/060069BF.png b/static/icons/060069BF.png deleted file mode 100755 index bb8b1ffd..00000000 Binary files a/static/icons/060069BF.png and /dev/null differ diff --git a/static/icons/060069C0.png b/static/icons/060069C0.png deleted file mode 100755 index 286abde3..00000000 Binary files a/static/icons/060069C0.png and /dev/null differ diff --git a/static/icons/060069C1.png b/static/icons/060069C1.png deleted file mode 100755 index 55180b97..00000000 Binary files a/static/icons/060069C1.png and /dev/null differ diff --git a/static/icons/060069C2.png b/static/icons/060069C2.png deleted file mode 100755 index d5e85247..00000000 Binary files a/static/icons/060069C2.png and /dev/null differ diff --git a/static/icons/060069C3.png b/static/icons/060069C3.png deleted file mode 100755 index 3a240576..00000000 Binary files a/static/icons/060069C3.png and /dev/null differ diff --git a/static/icons/060069C4.png b/static/icons/060069C4.png deleted file mode 100755 index 5dd7a31b..00000000 Binary files a/static/icons/060069C4.png and /dev/null differ diff --git a/static/icons/060069C5.png b/static/icons/060069C5.png deleted file mode 100755 index ba842893..00000000 Binary files a/static/icons/060069C5.png and /dev/null differ diff --git a/static/icons/060069C6.png b/static/icons/060069C6.png deleted file mode 100755 index 262b5b76..00000000 Binary files a/static/icons/060069C6.png and /dev/null differ diff --git a/static/icons/060069CA.png b/static/icons/060069CA.png deleted file mode 100755 index aa48d89a..00000000 Binary files a/static/icons/060069CA.png and /dev/null differ diff --git a/static/icons/060069CB.png b/static/icons/060069CB.png deleted file mode 100755 index af2ae099..00000000 Binary files a/static/icons/060069CB.png and /dev/null differ diff --git a/static/icons/060069CC.png b/static/icons/060069CC.png deleted file mode 100755 index 445207d5..00000000 Binary files a/static/icons/060069CC.png and /dev/null differ diff --git a/static/icons/060069CD.png b/static/icons/060069CD.png deleted file mode 100755 index 76b30690..00000000 Binary files a/static/icons/060069CD.png and /dev/null differ diff --git a/static/icons/060069CE.png b/static/icons/060069CE.png deleted file mode 100755 index db145824..00000000 Binary files a/static/icons/060069CE.png and /dev/null differ diff --git a/static/icons/060069CF.png b/static/icons/060069CF.png deleted file mode 100755 index 737aa1e2..00000000 Binary files a/static/icons/060069CF.png and /dev/null differ diff --git a/static/icons/060069D1.png b/static/icons/060069D1.png deleted file mode 100755 index df7491e8..00000000 Binary files a/static/icons/060069D1.png and /dev/null differ diff --git a/static/icons/060069D7.png b/static/icons/060069D7.png deleted file mode 100755 index e37c2e2d..00000000 Binary files a/static/icons/060069D7.png and /dev/null differ diff --git a/static/icons/060069D8.png b/static/icons/060069D8.png deleted file mode 100755 index b35b9854..00000000 Binary files a/static/icons/060069D8.png and /dev/null differ diff --git a/static/icons/060069D9.png b/static/icons/060069D9.png deleted file mode 100755 index 3b078856..00000000 Binary files a/static/icons/060069D9.png and /dev/null differ diff --git a/static/icons/060069DA.png b/static/icons/060069DA.png deleted file mode 100755 index f93aba12..00000000 Binary files a/static/icons/060069DA.png and /dev/null differ diff --git a/static/icons/060069DB.png b/static/icons/060069DB.png deleted file mode 100755 index 6c234598..00000000 Binary files a/static/icons/060069DB.png and /dev/null differ diff --git a/static/icons/060069DC.png b/static/icons/060069DC.png deleted file mode 100755 index 74717194..00000000 Binary files a/static/icons/060069DC.png and /dev/null differ diff --git a/static/icons/060069DD.png b/static/icons/060069DD.png deleted file mode 100755 index 308bd87b..00000000 Binary files a/static/icons/060069DD.png and /dev/null differ diff --git a/static/icons/060069DE.png b/static/icons/060069DE.png deleted file mode 100755 index 5d7e9324..00000000 Binary files a/static/icons/060069DE.png and /dev/null differ diff --git a/static/icons/060069DF.png b/static/icons/060069DF.png deleted file mode 100755 index 7a9ae999..00000000 Binary files a/static/icons/060069DF.png and /dev/null differ diff --git a/static/icons/060069E0.png b/static/icons/060069E0.png deleted file mode 100755 index bf559607..00000000 Binary files a/static/icons/060069E0.png and /dev/null differ diff --git a/static/icons/060069E1.png b/static/icons/060069E1.png deleted file mode 100755 index 846d382b..00000000 Binary files a/static/icons/060069E1.png and /dev/null differ diff --git a/static/icons/060069E2.png b/static/icons/060069E2.png deleted file mode 100755 index 1ba2072d..00000000 Binary files a/static/icons/060069E2.png and /dev/null differ diff --git a/static/icons/060069E3.png b/static/icons/060069E3.png deleted file mode 100755 index 25fa0907..00000000 Binary files a/static/icons/060069E3.png and /dev/null differ diff --git a/static/icons/060069E4.png b/static/icons/060069E4.png deleted file mode 100755 index 57abf74d..00000000 Binary files a/static/icons/060069E4.png and /dev/null differ diff --git a/static/icons/060069E5.png b/static/icons/060069E5.png deleted file mode 100755 index e993739f..00000000 Binary files a/static/icons/060069E5.png and /dev/null differ diff --git a/static/icons/060069E6.png b/static/icons/060069E6.png deleted file mode 100755 index 6b7ef06f..00000000 Binary files a/static/icons/060069E6.png and /dev/null differ diff --git a/static/icons/060069E7.png b/static/icons/060069E7.png deleted file mode 100755 index 1881e3d7..00000000 Binary files a/static/icons/060069E7.png and /dev/null differ diff --git a/static/icons/060069E8.png b/static/icons/060069E8.png deleted file mode 100755 index 60ba3f4e..00000000 Binary files a/static/icons/060069E8.png and /dev/null differ diff --git a/static/icons/060069E9.png b/static/icons/060069E9.png deleted file mode 100755 index bc770305..00000000 Binary files a/static/icons/060069E9.png and /dev/null differ diff --git a/static/icons/060069EA.png b/static/icons/060069EA.png deleted file mode 100755 index d90b3fbc..00000000 Binary files a/static/icons/060069EA.png and /dev/null differ diff --git a/static/icons/060069EB.png b/static/icons/060069EB.png deleted file mode 100755 index 1de77fe1..00000000 Binary files a/static/icons/060069EB.png and /dev/null differ diff --git a/static/icons/060069EC.png b/static/icons/060069EC.png deleted file mode 100755 index 2ef0e3ab..00000000 Binary files a/static/icons/060069EC.png and /dev/null differ diff --git a/static/icons/060069ED.png b/static/icons/060069ED.png deleted file mode 100755 index 69a68d40..00000000 Binary files a/static/icons/060069ED.png and /dev/null differ diff --git a/static/icons/060069EE.png b/static/icons/060069EE.png deleted file mode 100755 index ccc7195b..00000000 Binary files a/static/icons/060069EE.png and /dev/null differ diff --git a/static/icons/060069EF.png b/static/icons/060069EF.png deleted file mode 100755 index 4022cc69..00000000 Binary files a/static/icons/060069EF.png and /dev/null differ diff --git a/static/icons/060069F0.png b/static/icons/060069F0.png deleted file mode 100755 index 101dbdd9..00000000 Binary files a/static/icons/060069F0.png and /dev/null differ diff --git a/static/icons/060069F1.png b/static/icons/060069F1.png deleted file mode 100755 index 4b0bb995..00000000 Binary files a/static/icons/060069F1.png and /dev/null differ diff --git a/static/icons/060069F2.png b/static/icons/060069F2.png deleted file mode 100755 index 68ab9f1e..00000000 Binary files a/static/icons/060069F2.png and /dev/null differ diff --git a/static/icons/060069F3.png b/static/icons/060069F3.png deleted file mode 100755 index 351642b0..00000000 Binary files a/static/icons/060069F3.png and /dev/null differ diff --git a/static/icons/060069F4.png b/static/icons/060069F4.png deleted file mode 100755 index 06873051..00000000 Binary files a/static/icons/060069F4.png and /dev/null differ diff --git a/static/icons/060069F5.png b/static/icons/060069F5.png deleted file mode 100755 index 2b7ff3eb..00000000 Binary files a/static/icons/060069F5.png and /dev/null differ diff --git a/static/icons/060069F6.png b/static/icons/060069F6.png deleted file mode 100755 index afe30dd8..00000000 Binary files a/static/icons/060069F6.png and /dev/null differ diff --git a/static/icons/060069F7.png b/static/icons/060069F7.png deleted file mode 100755 index f92dba65..00000000 Binary files a/static/icons/060069F7.png and /dev/null differ diff --git a/static/icons/060069F8.png b/static/icons/060069F8.png deleted file mode 100755 index 0f41cbd5..00000000 Binary files a/static/icons/060069F8.png and /dev/null differ diff --git a/static/icons/060069F9.png b/static/icons/060069F9.png deleted file mode 100755 index 027206aa..00000000 Binary files a/static/icons/060069F9.png and /dev/null differ diff --git a/static/icons/060069FA.png b/static/icons/060069FA.png deleted file mode 100755 index d2dce0b7..00000000 Binary files a/static/icons/060069FA.png and /dev/null differ diff --git a/static/icons/060069FB.png b/static/icons/060069FB.png deleted file mode 100755 index 9b15ebc7..00000000 Binary files a/static/icons/060069FB.png and /dev/null differ diff --git a/static/icons/060069FC.png b/static/icons/060069FC.png deleted file mode 100755 index f5dfe51e..00000000 Binary files a/static/icons/060069FC.png and /dev/null differ diff --git a/static/icons/060069FD.png b/static/icons/060069FD.png deleted file mode 100755 index 7c799709..00000000 Binary files a/static/icons/060069FD.png and /dev/null differ diff --git a/static/icons/060069FE.png b/static/icons/060069FE.png deleted file mode 100755 index f0719c35..00000000 Binary files a/static/icons/060069FE.png and /dev/null differ diff --git a/static/icons/060069FF.png b/static/icons/060069FF.png deleted file mode 100755 index ca27b840..00000000 Binary files a/static/icons/060069FF.png and /dev/null differ diff --git a/static/icons/06006A00.png b/static/icons/06006A00.png deleted file mode 100755 index 76190dcf..00000000 Binary files a/static/icons/06006A00.png and /dev/null differ diff --git a/static/icons/06006A01.png b/static/icons/06006A01.png deleted file mode 100755 index e6665df0..00000000 Binary files a/static/icons/06006A01.png and /dev/null differ diff --git a/static/icons/06006A03.png b/static/icons/06006A03.png deleted file mode 100755 index 656f6239..00000000 Binary files a/static/icons/06006A03.png and /dev/null differ diff --git a/static/icons/06006A04.png b/static/icons/06006A04.png deleted file mode 100755 index 9dc85e9a..00000000 Binary files a/static/icons/06006A04.png and /dev/null differ diff --git a/static/icons/06006A05.png b/static/icons/06006A05.png deleted file mode 100755 index 15c4ca69..00000000 Binary files a/static/icons/06006A05.png and /dev/null differ diff --git a/static/icons/06006A06.png b/static/icons/06006A06.png deleted file mode 100755 index c90ee681..00000000 Binary files a/static/icons/06006A06.png and /dev/null differ diff --git a/static/icons/06006A07.png b/static/icons/06006A07.png deleted file mode 100755 index ee8340dc..00000000 Binary files a/static/icons/06006A07.png and /dev/null differ diff --git a/static/icons/06006A08.png b/static/icons/06006A08.png deleted file mode 100755 index 31799044..00000000 Binary files a/static/icons/06006A08.png and /dev/null differ diff --git a/static/icons/06006A09.png b/static/icons/06006A09.png deleted file mode 100755 index c773f2ef..00000000 Binary files a/static/icons/06006A09.png and /dev/null differ diff --git a/static/icons/06006A0A.png b/static/icons/06006A0A.png deleted file mode 100755 index 6028527a..00000000 Binary files a/static/icons/06006A0A.png and /dev/null differ diff --git a/static/icons/06006A0B.png b/static/icons/06006A0B.png deleted file mode 100755 index a2cf8519..00000000 Binary files a/static/icons/06006A0B.png and /dev/null differ diff --git a/static/icons/06006A0C.png b/static/icons/06006A0C.png deleted file mode 100755 index 1c21d898..00000000 Binary files a/static/icons/06006A0C.png and /dev/null differ diff --git a/static/icons/06006A0D.png b/static/icons/06006A0D.png deleted file mode 100755 index 25aec506..00000000 Binary files a/static/icons/06006A0D.png and /dev/null differ diff --git a/static/icons/06006A0E.png b/static/icons/06006A0E.png deleted file mode 100755 index a7e66acb..00000000 Binary files a/static/icons/06006A0E.png and /dev/null differ diff --git a/static/icons/06006A0F.png b/static/icons/06006A0F.png deleted file mode 100755 index e71f2a15..00000000 Binary files a/static/icons/06006A0F.png and /dev/null differ diff --git a/static/icons/06006A10.png b/static/icons/06006A10.png deleted file mode 100755 index f844b1b8..00000000 Binary files a/static/icons/06006A10.png and /dev/null differ diff --git a/static/icons/06006A11.png b/static/icons/06006A11.png deleted file mode 100755 index f099610a..00000000 Binary files a/static/icons/06006A11.png and /dev/null differ diff --git a/static/icons/06006A12.png b/static/icons/06006A12.png deleted file mode 100755 index 42a7df80..00000000 Binary files a/static/icons/06006A12.png and /dev/null differ diff --git a/static/icons/06006A13.png b/static/icons/06006A13.png deleted file mode 100755 index a1e8b037..00000000 Binary files a/static/icons/06006A13.png and /dev/null differ diff --git a/static/icons/06006A1E.png b/static/icons/06006A1E.png deleted file mode 100755 index eb539f3f..00000000 Binary files a/static/icons/06006A1E.png and /dev/null differ diff --git a/static/icons/06006A1F.png b/static/icons/06006A1F.png deleted file mode 100755 index 907c16d9..00000000 Binary files a/static/icons/06006A1F.png and /dev/null differ diff --git a/static/icons/06006A20.png b/static/icons/06006A20.png deleted file mode 100755 index 66c95cf4..00000000 Binary files a/static/icons/06006A20.png and /dev/null differ diff --git a/static/icons/06006A21.png b/static/icons/06006A21.png deleted file mode 100755 index 229e7c88..00000000 Binary files a/static/icons/06006A21.png and /dev/null differ diff --git a/static/icons/06006A22.png b/static/icons/06006A22.png deleted file mode 100755 index bf436fed..00000000 Binary files a/static/icons/06006A22.png and /dev/null differ diff --git a/static/icons/06006A23.png b/static/icons/06006A23.png deleted file mode 100755 index 3a9d4a54..00000000 Binary files a/static/icons/06006A23.png and /dev/null differ diff --git a/static/icons/06006A24.png b/static/icons/06006A24.png deleted file mode 100755 index 97e7f28d..00000000 Binary files a/static/icons/06006A24.png and /dev/null differ diff --git a/static/icons/06006A25.png b/static/icons/06006A25.png deleted file mode 100755 index 45554517..00000000 Binary files a/static/icons/06006A25.png and /dev/null differ diff --git a/static/icons/06006A26.png b/static/icons/06006A26.png deleted file mode 100755 index 78ee6510..00000000 Binary files a/static/icons/06006A26.png and /dev/null differ diff --git a/static/icons/06006A27.png b/static/icons/06006A27.png deleted file mode 100755 index 803fc0b5..00000000 Binary files a/static/icons/06006A27.png and /dev/null differ diff --git a/static/icons/06006A28.png b/static/icons/06006A28.png deleted file mode 100755 index def2cf7f..00000000 Binary files a/static/icons/06006A28.png and /dev/null differ diff --git a/static/icons/06006A29.png b/static/icons/06006A29.png deleted file mode 100755 index 5fc0313d..00000000 Binary files a/static/icons/06006A29.png and /dev/null differ diff --git a/static/icons/06006A2A.png b/static/icons/06006A2A.png deleted file mode 100755 index 83521492..00000000 Binary files a/static/icons/06006A2A.png and /dev/null differ diff --git a/static/icons/06006A2B.png b/static/icons/06006A2B.png deleted file mode 100755 index 2957ddaa..00000000 Binary files a/static/icons/06006A2B.png and /dev/null differ diff --git a/static/icons/06006A2C.png b/static/icons/06006A2C.png deleted file mode 100755 index 80d39423..00000000 Binary files a/static/icons/06006A2C.png and /dev/null differ diff --git a/static/icons/06006A2D.png b/static/icons/06006A2D.png deleted file mode 100755 index a9c224d6..00000000 Binary files a/static/icons/06006A2D.png and /dev/null differ diff --git a/static/icons/06006A2E.png b/static/icons/06006A2E.png deleted file mode 100755 index cca24e17..00000000 Binary files a/static/icons/06006A2E.png and /dev/null differ diff --git a/static/icons/06006A2F.png b/static/icons/06006A2F.png deleted file mode 100755 index b194c56a..00000000 Binary files a/static/icons/06006A2F.png and /dev/null differ diff --git a/static/icons/06006A30.png b/static/icons/06006A30.png deleted file mode 100755 index 6f83a3b8..00000000 Binary files a/static/icons/06006A30.png and /dev/null differ diff --git a/static/icons/06006A31.png b/static/icons/06006A31.png deleted file mode 100755 index 83b0901a..00000000 Binary files a/static/icons/06006A31.png and /dev/null differ diff --git a/static/icons/06006A32.png b/static/icons/06006A32.png deleted file mode 100755 index 6e3bb672..00000000 Binary files a/static/icons/06006A32.png and /dev/null differ diff --git a/static/icons/06006A33.png b/static/icons/06006A33.png deleted file mode 100755 index 9b19df2b..00000000 Binary files a/static/icons/06006A33.png and /dev/null differ diff --git a/static/icons/06006A34.png b/static/icons/06006A34.png deleted file mode 100755 index eee05e89..00000000 Binary files a/static/icons/06006A34.png and /dev/null differ diff --git a/static/icons/06006A35.png b/static/icons/06006A35.png deleted file mode 100755 index d24c9b07..00000000 Binary files a/static/icons/06006A35.png and /dev/null differ diff --git a/static/icons/06006A36.png b/static/icons/06006A36.png deleted file mode 100755 index 24657a9e..00000000 Binary files a/static/icons/06006A36.png and /dev/null differ diff --git a/static/icons/06006A37.png b/static/icons/06006A37.png deleted file mode 100755 index 4669c3d2..00000000 Binary files a/static/icons/06006A37.png and /dev/null differ diff --git a/static/icons/06006A38.png b/static/icons/06006A38.png deleted file mode 100755 index 94bcd04a..00000000 Binary files a/static/icons/06006A38.png and /dev/null differ diff --git a/static/icons/06006A39.png b/static/icons/06006A39.png deleted file mode 100755 index a72f9f6c..00000000 Binary files a/static/icons/06006A39.png and /dev/null differ diff --git a/static/icons/06006A3A.png b/static/icons/06006A3A.png deleted file mode 100755 index 18a8bee3..00000000 Binary files a/static/icons/06006A3A.png and /dev/null differ diff --git a/static/icons/06006A3B.png b/static/icons/06006A3B.png deleted file mode 100755 index 738fe183..00000000 Binary files a/static/icons/06006A3B.png and /dev/null differ diff --git a/static/icons/06006A3C.png b/static/icons/06006A3C.png deleted file mode 100755 index ada09f52..00000000 Binary files a/static/icons/06006A3C.png and /dev/null differ diff --git a/static/icons/06006A3D.png b/static/icons/06006A3D.png deleted file mode 100755 index 57082e0d..00000000 Binary files a/static/icons/06006A3D.png and /dev/null differ diff --git a/static/icons/06006A3E.png b/static/icons/06006A3E.png deleted file mode 100755 index 3a99fe20..00000000 Binary files a/static/icons/06006A3E.png and /dev/null differ diff --git a/static/icons/06006A3F.png b/static/icons/06006A3F.png deleted file mode 100755 index 8be448b1..00000000 Binary files a/static/icons/06006A3F.png and /dev/null differ diff --git a/static/icons/06006A40.png b/static/icons/06006A40.png deleted file mode 100755 index 745c79b7..00000000 Binary files a/static/icons/06006A40.png and /dev/null differ diff --git a/static/icons/06006A41.png b/static/icons/06006A41.png deleted file mode 100755 index 5e08032a..00000000 Binary files a/static/icons/06006A41.png and /dev/null differ diff --git a/static/icons/06006A42.png b/static/icons/06006A42.png deleted file mode 100755 index 4dce6986..00000000 Binary files a/static/icons/06006A42.png and /dev/null differ diff --git a/static/icons/06006A43.png b/static/icons/06006A43.png deleted file mode 100755 index a477dcdf..00000000 Binary files a/static/icons/06006A43.png and /dev/null differ diff --git a/static/icons/06006A44.png b/static/icons/06006A44.png deleted file mode 100755 index 8f95fb4e..00000000 Binary files a/static/icons/06006A44.png and /dev/null differ diff --git a/static/icons/06006A45.png b/static/icons/06006A45.png deleted file mode 100755 index 745fd848..00000000 Binary files a/static/icons/06006A45.png and /dev/null differ diff --git a/static/icons/06006A46.png b/static/icons/06006A46.png deleted file mode 100755 index fbd1f291..00000000 Binary files a/static/icons/06006A46.png and /dev/null differ diff --git a/static/icons/06006A47.png b/static/icons/06006A47.png deleted file mode 100755 index b8b1e6ba..00000000 Binary files a/static/icons/06006A47.png and /dev/null differ diff --git a/static/icons/06006A48.png b/static/icons/06006A48.png deleted file mode 100755 index 9d1212a9..00000000 Binary files a/static/icons/06006A48.png and /dev/null differ diff --git a/static/icons/06006A49.png b/static/icons/06006A49.png deleted file mode 100755 index ec6ac2d0..00000000 Binary files a/static/icons/06006A49.png and /dev/null differ diff --git a/static/icons/06006A4A.png b/static/icons/06006A4A.png deleted file mode 100755 index a00ff8c2..00000000 Binary files a/static/icons/06006A4A.png and /dev/null differ diff --git a/static/icons/06006A4B.png b/static/icons/06006A4B.png deleted file mode 100755 index 75b66560..00000000 Binary files a/static/icons/06006A4B.png and /dev/null differ diff --git a/static/icons/06006A4C.png b/static/icons/06006A4C.png deleted file mode 100755 index 325bfc81..00000000 Binary files a/static/icons/06006A4C.png and /dev/null differ diff --git a/static/icons/06006A4D.png b/static/icons/06006A4D.png deleted file mode 100755 index 16988cee..00000000 Binary files a/static/icons/06006A4D.png and /dev/null differ diff --git a/static/icons/06006A4E.png b/static/icons/06006A4E.png deleted file mode 100755 index 405fd667..00000000 Binary files a/static/icons/06006A4E.png and /dev/null differ diff --git a/static/icons/06006A4F.png b/static/icons/06006A4F.png deleted file mode 100755 index af2b2364..00000000 Binary files a/static/icons/06006A4F.png and /dev/null differ diff --git a/static/icons/06006A50.png b/static/icons/06006A50.png deleted file mode 100755 index a1b5c222..00000000 Binary files a/static/icons/06006A50.png and /dev/null differ diff --git a/static/icons/06006A51.png b/static/icons/06006A51.png deleted file mode 100755 index 2f9d1843..00000000 Binary files a/static/icons/06006A51.png and /dev/null differ diff --git a/static/icons/06006A52.png b/static/icons/06006A52.png deleted file mode 100755 index aa1aa9b4..00000000 Binary files a/static/icons/06006A52.png and /dev/null differ diff --git a/static/icons/06006A53.png b/static/icons/06006A53.png deleted file mode 100755 index ec8c369c..00000000 Binary files a/static/icons/06006A53.png and /dev/null differ diff --git a/static/icons/06006A54.png b/static/icons/06006A54.png deleted file mode 100755 index b9eb8705..00000000 Binary files a/static/icons/06006A54.png and /dev/null differ diff --git a/static/icons/06006A55.png b/static/icons/06006A55.png deleted file mode 100755 index 2965e847..00000000 Binary files a/static/icons/06006A55.png and /dev/null differ diff --git a/static/icons/06006A56.png b/static/icons/06006A56.png deleted file mode 100755 index 671cbd29..00000000 Binary files a/static/icons/06006A56.png and /dev/null differ diff --git a/static/icons/06006A57.png b/static/icons/06006A57.png deleted file mode 100755 index 1d9eea99..00000000 Binary files a/static/icons/06006A57.png and /dev/null differ diff --git a/static/icons/06006A58.png b/static/icons/06006A58.png deleted file mode 100755 index 1192aff1..00000000 Binary files a/static/icons/06006A58.png and /dev/null differ diff --git a/static/icons/06006A59.png b/static/icons/06006A59.png deleted file mode 100755 index 8dcd8971..00000000 Binary files a/static/icons/06006A59.png and /dev/null differ diff --git a/static/icons/06006A5A.png b/static/icons/06006A5A.png deleted file mode 100755 index 0231a899..00000000 Binary files a/static/icons/06006A5A.png and /dev/null differ diff --git a/static/icons/06006A5B.png b/static/icons/06006A5B.png deleted file mode 100755 index 2ea47ab8..00000000 Binary files a/static/icons/06006A5B.png and /dev/null differ diff --git a/static/icons/06006A5C.png b/static/icons/06006A5C.png deleted file mode 100755 index c91d0479..00000000 Binary files a/static/icons/06006A5C.png and /dev/null differ diff --git a/static/icons/06006A5D.png b/static/icons/06006A5D.png deleted file mode 100755 index 6d9ac929..00000000 Binary files a/static/icons/06006A5D.png and /dev/null differ diff --git a/static/icons/06006A5E.png b/static/icons/06006A5E.png deleted file mode 100755 index 0d534e15..00000000 Binary files a/static/icons/06006A5E.png and /dev/null differ diff --git a/static/icons/06006A5F.png b/static/icons/06006A5F.png deleted file mode 100755 index 68ea8d3c..00000000 Binary files a/static/icons/06006A5F.png and /dev/null differ diff --git a/static/icons/06006A60.png b/static/icons/06006A60.png deleted file mode 100755 index e1108d1e..00000000 Binary files a/static/icons/06006A60.png and /dev/null differ diff --git a/static/icons/06006A61.png b/static/icons/06006A61.png deleted file mode 100755 index 99bf19e1..00000000 Binary files a/static/icons/06006A61.png and /dev/null differ diff --git a/static/icons/06006A62.png b/static/icons/06006A62.png deleted file mode 100755 index 0e777ea8..00000000 Binary files a/static/icons/06006A62.png and /dev/null differ diff --git a/static/icons/06006A63.png b/static/icons/06006A63.png deleted file mode 100755 index 37bd1f5d..00000000 Binary files a/static/icons/06006A63.png and /dev/null differ diff --git a/static/icons/06006A64.png b/static/icons/06006A64.png deleted file mode 100755 index 4e1ebe3f..00000000 Binary files a/static/icons/06006A64.png and /dev/null differ diff --git a/static/icons/06006A65.png b/static/icons/06006A65.png deleted file mode 100755 index 8da30a16..00000000 Binary files a/static/icons/06006A65.png and /dev/null differ diff --git a/static/icons/06006A66.png b/static/icons/06006A66.png deleted file mode 100755 index 870cd514..00000000 Binary files a/static/icons/06006A66.png and /dev/null differ diff --git a/static/icons/06006A67.png b/static/icons/06006A67.png deleted file mode 100755 index 7bb47306..00000000 Binary files a/static/icons/06006A67.png and /dev/null differ diff --git a/static/icons/06006A68.png b/static/icons/06006A68.png deleted file mode 100755 index c9f5ac49..00000000 Binary files a/static/icons/06006A68.png and /dev/null differ diff --git a/static/icons/06006A69.png b/static/icons/06006A69.png deleted file mode 100755 index 27a5293f..00000000 Binary files a/static/icons/06006A69.png and /dev/null differ diff --git a/static/icons/06006A6A.png b/static/icons/06006A6A.png deleted file mode 100755 index c3e10bf9..00000000 Binary files a/static/icons/06006A6A.png and /dev/null differ diff --git a/static/icons/06006A6B.png b/static/icons/06006A6B.png deleted file mode 100755 index af2f3443..00000000 Binary files a/static/icons/06006A6B.png and /dev/null differ diff --git a/static/icons/06006A6C.png b/static/icons/06006A6C.png deleted file mode 100755 index c5c0dbc0..00000000 Binary files a/static/icons/06006A6C.png and /dev/null differ diff --git a/static/icons/06006A6D.png b/static/icons/06006A6D.png deleted file mode 100755 index 1ea5cf16..00000000 Binary files a/static/icons/06006A6D.png and /dev/null differ diff --git a/static/icons/06006A6E.png b/static/icons/06006A6E.png deleted file mode 100755 index 79f5b51e..00000000 Binary files a/static/icons/06006A6E.png and /dev/null differ diff --git a/static/icons/06006A6F.png b/static/icons/06006A6F.png deleted file mode 100755 index a27f9f2f..00000000 Binary files a/static/icons/06006A6F.png and /dev/null differ diff --git a/static/icons/06006A70.png b/static/icons/06006A70.png deleted file mode 100755 index 54844e76..00000000 Binary files a/static/icons/06006A70.png and /dev/null differ diff --git a/static/icons/06006A71.png b/static/icons/06006A71.png deleted file mode 100755 index e1ed7184..00000000 Binary files a/static/icons/06006A71.png and /dev/null differ diff --git a/static/icons/06006A72.png b/static/icons/06006A72.png deleted file mode 100755 index 66f907e5..00000000 Binary files a/static/icons/06006A72.png and /dev/null differ diff --git a/static/icons/06006A73.png b/static/icons/06006A73.png deleted file mode 100755 index 3b47f7f2..00000000 Binary files a/static/icons/06006A73.png and /dev/null differ diff --git a/static/icons/06006A74.png b/static/icons/06006A74.png deleted file mode 100755 index 02c9e77e..00000000 Binary files a/static/icons/06006A74.png and /dev/null differ diff --git a/static/icons/06006A75.png b/static/icons/06006A75.png deleted file mode 100755 index b0d05040..00000000 Binary files a/static/icons/06006A75.png and /dev/null differ diff --git a/static/icons/06006A76.png b/static/icons/06006A76.png deleted file mode 100755 index 2045b3b3..00000000 Binary files a/static/icons/06006A76.png and /dev/null differ diff --git a/static/icons/06006A77.png b/static/icons/06006A77.png deleted file mode 100755 index 6011faa4..00000000 Binary files a/static/icons/06006A77.png and /dev/null differ diff --git a/static/icons/06006A78.png b/static/icons/06006A78.png deleted file mode 100755 index 1a8ddeb9..00000000 Binary files a/static/icons/06006A78.png and /dev/null differ diff --git a/static/icons/06006A79.png b/static/icons/06006A79.png deleted file mode 100755 index 1bf2decb..00000000 Binary files a/static/icons/06006A79.png and /dev/null differ diff --git a/static/icons/06006A7A.png b/static/icons/06006A7A.png deleted file mode 100755 index 4ba63880..00000000 Binary files a/static/icons/06006A7A.png and /dev/null differ diff --git a/static/icons/06006A7B.png b/static/icons/06006A7B.png deleted file mode 100755 index 0068817b..00000000 Binary files a/static/icons/06006A7B.png and /dev/null differ diff --git a/static/icons/06006A7C.png b/static/icons/06006A7C.png deleted file mode 100755 index 292f73b6..00000000 Binary files a/static/icons/06006A7C.png and /dev/null differ diff --git a/static/icons/06006A7D.png b/static/icons/06006A7D.png deleted file mode 100755 index c493b1b6..00000000 Binary files a/static/icons/06006A7D.png and /dev/null differ diff --git a/static/icons/06006A7E.png b/static/icons/06006A7E.png deleted file mode 100755 index af585f70..00000000 Binary files a/static/icons/06006A7E.png and /dev/null differ diff --git a/static/icons/06006A7F.png b/static/icons/06006A7F.png deleted file mode 100755 index 12e16eb4..00000000 Binary files a/static/icons/06006A7F.png and /dev/null differ diff --git a/static/icons/06006A80.png b/static/icons/06006A80.png deleted file mode 100755 index d6ab45ff..00000000 Binary files a/static/icons/06006A80.png and /dev/null differ diff --git a/static/icons/06006A81.png b/static/icons/06006A81.png deleted file mode 100755 index ea736713..00000000 Binary files a/static/icons/06006A81.png and /dev/null differ diff --git a/static/icons/06006A82.png b/static/icons/06006A82.png deleted file mode 100755 index 34509b72..00000000 Binary files a/static/icons/06006A82.png and /dev/null differ diff --git a/static/icons/06006A83.png b/static/icons/06006A83.png deleted file mode 100755 index ede5f730..00000000 Binary files a/static/icons/06006A83.png and /dev/null differ diff --git a/static/icons/06006A86.png b/static/icons/06006A86.png deleted file mode 100755 index 123c288a..00000000 Binary files a/static/icons/06006A86.png and /dev/null differ diff --git a/static/icons/06006A87.png b/static/icons/06006A87.png deleted file mode 100755 index 76985103..00000000 Binary files a/static/icons/06006A87.png and /dev/null differ diff --git a/static/icons/06006A88.png b/static/icons/06006A88.png deleted file mode 100755 index bbb45a1f..00000000 Binary files a/static/icons/06006A88.png and /dev/null differ diff --git a/static/icons/06006A89.png b/static/icons/06006A89.png deleted file mode 100755 index d1c1b173..00000000 Binary files a/static/icons/06006A89.png and /dev/null differ diff --git a/static/icons/06006A8A.png b/static/icons/06006A8A.png deleted file mode 100755 index 96dac7a2..00000000 Binary files a/static/icons/06006A8A.png and /dev/null differ diff --git a/static/icons/06006A8B.png b/static/icons/06006A8B.png deleted file mode 100755 index b48a00fe..00000000 Binary files a/static/icons/06006A8B.png and /dev/null differ diff --git a/static/icons/06006A8C.png b/static/icons/06006A8C.png deleted file mode 100755 index 2c21b379..00000000 Binary files a/static/icons/06006A8C.png and /dev/null differ diff --git a/static/icons/06006A8D.png b/static/icons/06006A8D.png deleted file mode 100755 index f8782ce9..00000000 Binary files a/static/icons/06006A8D.png and /dev/null differ diff --git a/static/icons/06006A8E.png b/static/icons/06006A8E.png deleted file mode 100755 index 05c7b283..00000000 Binary files a/static/icons/06006A8E.png and /dev/null differ diff --git a/static/icons/06006A8F.png b/static/icons/06006A8F.png deleted file mode 100755 index b6a97059..00000000 Binary files a/static/icons/06006A8F.png and /dev/null differ diff --git a/static/icons/06006A90.png b/static/icons/06006A90.png deleted file mode 100755 index f360f132..00000000 Binary files a/static/icons/06006A90.png and /dev/null differ diff --git a/static/icons/06006A91.png b/static/icons/06006A91.png deleted file mode 100755 index ade12151..00000000 Binary files a/static/icons/06006A91.png and /dev/null differ diff --git a/static/icons/06006A92.png b/static/icons/06006A92.png deleted file mode 100755 index 7454cab3..00000000 Binary files a/static/icons/06006A92.png and /dev/null differ diff --git a/static/icons/06006A93.png b/static/icons/06006A93.png deleted file mode 100755 index 49fd8cf3..00000000 Binary files a/static/icons/06006A93.png and /dev/null differ diff --git a/static/icons/06006A94.png b/static/icons/06006A94.png deleted file mode 100755 index 7e410912..00000000 Binary files a/static/icons/06006A94.png and /dev/null differ diff --git a/static/icons/06006A95.png b/static/icons/06006A95.png deleted file mode 100755 index 565f14e2..00000000 Binary files a/static/icons/06006A95.png and /dev/null differ diff --git a/static/icons/06006A96.png b/static/icons/06006A96.png deleted file mode 100755 index 92e73fad..00000000 Binary files a/static/icons/06006A96.png and /dev/null differ diff --git a/static/icons/06006A97.png b/static/icons/06006A97.png deleted file mode 100755 index b3ee8a14..00000000 Binary files a/static/icons/06006A97.png and /dev/null differ diff --git a/static/icons/06006A98.png b/static/icons/06006A98.png deleted file mode 100755 index a16fc800..00000000 Binary files a/static/icons/06006A98.png and /dev/null differ diff --git a/static/icons/06006A99.png b/static/icons/06006A99.png deleted file mode 100755 index 6c53e476..00000000 Binary files a/static/icons/06006A99.png and /dev/null differ diff --git a/static/icons/06006A9A.png b/static/icons/06006A9A.png deleted file mode 100755 index a0045b77..00000000 Binary files a/static/icons/06006A9A.png and /dev/null differ diff --git a/static/icons/06006A9B.png b/static/icons/06006A9B.png deleted file mode 100755 index 8d62e416..00000000 Binary files a/static/icons/06006A9B.png and /dev/null differ diff --git a/static/icons/06006A9C.png b/static/icons/06006A9C.png deleted file mode 100755 index 2c4c3271..00000000 Binary files a/static/icons/06006A9C.png and /dev/null differ diff --git a/static/icons/06006A9D.png b/static/icons/06006A9D.png deleted file mode 100755 index 3dbfee8e..00000000 Binary files a/static/icons/06006A9D.png and /dev/null differ diff --git a/static/icons/06006A9E.png b/static/icons/06006A9E.png deleted file mode 100755 index 1f7d6598..00000000 Binary files a/static/icons/06006A9E.png and /dev/null differ diff --git a/static/icons/06006AA0.png b/static/icons/06006AA0.png deleted file mode 100755 index d3bbac93..00000000 Binary files a/static/icons/06006AA0.png and /dev/null differ diff --git a/static/icons/06006AA1.png b/static/icons/06006AA1.png deleted file mode 100755 index 4e9b359c..00000000 Binary files a/static/icons/06006AA1.png and /dev/null differ diff --git a/static/icons/06006AA2.png b/static/icons/06006AA2.png deleted file mode 100755 index d5f25c7c..00000000 Binary files a/static/icons/06006AA2.png and /dev/null differ diff --git a/static/icons/06006AA3.png b/static/icons/06006AA3.png deleted file mode 100755 index 156c9196..00000000 Binary files a/static/icons/06006AA3.png and /dev/null differ diff --git a/static/icons/06006AA4.png b/static/icons/06006AA4.png deleted file mode 100755 index 2206d464..00000000 Binary files a/static/icons/06006AA4.png and /dev/null differ diff --git a/static/icons/06006AA5.png b/static/icons/06006AA5.png deleted file mode 100755 index 978e2cef..00000000 Binary files a/static/icons/06006AA5.png and /dev/null differ diff --git a/static/icons/06006AA6.png b/static/icons/06006AA6.png deleted file mode 100755 index dc3678e2..00000000 Binary files a/static/icons/06006AA6.png and /dev/null differ diff --git a/static/icons/06006AA7.png b/static/icons/06006AA7.png deleted file mode 100755 index f1dc2ccd..00000000 Binary files a/static/icons/06006AA7.png and /dev/null differ diff --git a/static/icons/06006AA8.png b/static/icons/06006AA8.png deleted file mode 100755 index 1c843380..00000000 Binary files a/static/icons/06006AA8.png and /dev/null differ diff --git a/static/icons/06006AA9.png b/static/icons/06006AA9.png deleted file mode 100755 index 22886314..00000000 Binary files a/static/icons/06006AA9.png and /dev/null differ diff --git a/static/icons/06006AAA.png b/static/icons/06006AAA.png deleted file mode 100755 index 759d41e3..00000000 Binary files a/static/icons/06006AAA.png and /dev/null differ diff --git a/static/icons/06006AAB.png b/static/icons/06006AAB.png deleted file mode 100755 index d2403e66..00000000 Binary files a/static/icons/06006AAB.png and /dev/null differ diff --git a/static/icons/06006AAC.png b/static/icons/06006AAC.png deleted file mode 100755 index adcb739a..00000000 Binary files a/static/icons/06006AAC.png and /dev/null differ diff --git a/static/icons/06006AAD.png b/static/icons/06006AAD.png deleted file mode 100755 index c59c74e8..00000000 Binary files a/static/icons/06006AAD.png and /dev/null differ diff --git a/static/icons/06006AAE.png b/static/icons/06006AAE.png deleted file mode 100755 index afe5f364..00000000 Binary files a/static/icons/06006AAE.png and /dev/null differ diff --git a/static/icons/06006AAF.png b/static/icons/06006AAF.png deleted file mode 100755 index 714c8c15..00000000 Binary files a/static/icons/06006AAF.png and /dev/null differ diff --git a/static/icons/06006AB0.png b/static/icons/06006AB0.png deleted file mode 100755 index 363f36ef..00000000 Binary files a/static/icons/06006AB0.png and /dev/null differ diff --git a/static/icons/06006AB1.png b/static/icons/06006AB1.png deleted file mode 100755 index a957bce1..00000000 Binary files a/static/icons/06006AB1.png and /dev/null differ diff --git a/static/icons/06006AB2.png b/static/icons/06006AB2.png deleted file mode 100755 index 16d0f04c..00000000 Binary files a/static/icons/06006AB2.png and /dev/null differ diff --git a/static/icons/06006AB3.png b/static/icons/06006AB3.png deleted file mode 100755 index bb057dbb..00000000 Binary files a/static/icons/06006AB3.png and /dev/null differ diff --git a/static/icons/06006AB4.png b/static/icons/06006AB4.png deleted file mode 100755 index 144742e1..00000000 Binary files a/static/icons/06006AB4.png and /dev/null differ diff --git a/static/icons/06006AB5.png b/static/icons/06006AB5.png deleted file mode 100755 index 324973c1..00000000 Binary files a/static/icons/06006AB5.png and /dev/null differ diff --git a/static/icons/06006AB6.png b/static/icons/06006AB6.png deleted file mode 100755 index 937e4ff7..00000000 Binary files a/static/icons/06006AB6.png and /dev/null differ diff --git a/static/icons/06006AB7.png b/static/icons/06006AB7.png deleted file mode 100755 index 9ad45b2b..00000000 Binary files a/static/icons/06006AB7.png and /dev/null differ diff --git a/static/icons/06006AB8.png b/static/icons/06006AB8.png deleted file mode 100755 index 6c9c23b5..00000000 Binary files a/static/icons/06006AB8.png and /dev/null differ diff --git a/static/icons/06006AB9.png b/static/icons/06006AB9.png deleted file mode 100755 index 1bd9c7b5..00000000 Binary files a/static/icons/06006AB9.png and /dev/null differ diff --git a/static/icons/06006ABA.png b/static/icons/06006ABA.png deleted file mode 100755 index 6b10ead1..00000000 Binary files a/static/icons/06006ABA.png and /dev/null differ diff --git a/static/icons/06006ABB.png b/static/icons/06006ABB.png deleted file mode 100755 index b87c1b28..00000000 Binary files a/static/icons/06006ABB.png and /dev/null differ diff --git a/static/icons/06006ABC.png b/static/icons/06006ABC.png deleted file mode 100755 index 3e01368c..00000000 Binary files a/static/icons/06006ABC.png and /dev/null differ diff --git a/static/icons/06006ABD.png b/static/icons/06006ABD.png deleted file mode 100755 index 9a1d4185..00000000 Binary files a/static/icons/06006ABD.png and /dev/null differ diff --git a/static/icons/06006ABE.png b/static/icons/06006ABE.png deleted file mode 100755 index 9799bf24..00000000 Binary files a/static/icons/06006ABE.png and /dev/null differ diff --git a/static/icons/06006ABF.png b/static/icons/06006ABF.png deleted file mode 100755 index c1f5b550..00000000 Binary files a/static/icons/06006ABF.png and /dev/null differ diff --git a/static/icons/06006AC0.png b/static/icons/06006AC0.png deleted file mode 100755 index a1669131..00000000 Binary files a/static/icons/06006AC0.png and /dev/null differ diff --git a/static/icons/06006AC1.png b/static/icons/06006AC1.png deleted file mode 100755 index 8b4a78ce..00000000 Binary files a/static/icons/06006AC1.png and /dev/null differ diff --git a/static/icons/06006AC2.png b/static/icons/06006AC2.png deleted file mode 100755 index 450f9ef2..00000000 Binary files a/static/icons/06006AC2.png and /dev/null differ diff --git a/static/icons/06006AC3.png b/static/icons/06006AC3.png deleted file mode 100755 index ae8a9ed1..00000000 Binary files a/static/icons/06006AC3.png and /dev/null differ diff --git a/static/icons/06006AC4.png b/static/icons/06006AC4.png deleted file mode 100755 index 47bec52b..00000000 Binary files a/static/icons/06006AC4.png and /dev/null differ diff --git a/static/icons/06006AC5.png b/static/icons/06006AC5.png deleted file mode 100755 index fc92a332..00000000 Binary files a/static/icons/06006AC5.png and /dev/null differ diff --git a/static/icons/06006AC6.png b/static/icons/06006AC6.png deleted file mode 100755 index 58a03827..00000000 Binary files a/static/icons/06006AC6.png and /dev/null differ diff --git a/static/icons/06006AC7.png b/static/icons/06006AC7.png deleted file mode 100755 index b6428e26..00000000 Binary files a/static/icons/06006AC7.png and /dev/null differ diff --git a/static/icons/06006AC8.png b/static/icons/06006AC8.png deleted file mode 100755 index b8c83d43..00000000 Binary files a/static/icons/06006AC8.png and /dev/null differ diff --git a/static/icons/06006AC9.png b/static/icons/06006AC9.png deleted file mode 100755 index 32993d0e..00000000 Binary files a/static/icons/06006AC9.png and /dev/null differ diff --git a/static/icons/06006ACA.png b/static/icons/06006ACA.png deleted file mode 100755 index faa55320..00000000 Binary files a/static/icons/06006ACA.png and /dev/null differ diff --git a/static/icons/06006ACB.png b/static/icons/06006ACB.png deleted file mode 100755 index 98cb6d14..00000000 Binary files a/static/icons/06006ACB.png and /dev/null differ diff --git a/static/icons/06006ACC.png b/static/icons/06006ACC.png deleted file mode 100755 index 0c7ad1ee..00000000 Binary files a/static/icons/06006ACC.png and /dev/null differ diff --git a/static/icons/06006ACD.png b/static/icons/06006ACD.png deleted file mode 100755 index 9cc352ea..00000000 Binary files a/static/icons/06006ACD.png and /dev/null differ diff --git a/static/icons/06006ACE.png b/static/icons/06006ACE.png deleted file mode 100755 index 1680099f..00000000 Binary files a/static/icons/06006ACE.png and /dev/null differ diff --git a/static/icons/06006ACF.png b/static/icons/06006ACF.png deleted file mode 100755 index 13fcfda2..00000000 Binary files a/static/icons/06006ACF.png and /dev/null differ diff --git a/static/icons/06006AD0.png b/static/icons/06006AD0.png deleted file mode 100755 index 15a79144..00000000 Binary files a/static/icons/06006AD0.png and /dev/null differ diff --git a/static/icons/06006AD1.png b/static/icons/06006AD1.png deleted file mode 100755 index 30235d88..00000000 Binary files a/static/icons/06006AD1.png and /dev/null differ diff --git a/static/icons/06006AD2.png b/static/icons/06006AD2.png deleted file mode 100755 index da444907..00000000 Binary files a/static/icons/06006AD2.png and /dev/null differ diff --git a/static/icons/06006AD3.png b/static/icons/06006AD3.png deleted file mode 100755 index a7df05f2..00000000 Binary files a/static/icons/06006AD3.png and /dev/null differ diff --git a/static/icons/06006AD4.png b/static/icons/06006AD4.png deleted file mode 100755 index 33b1cd40..00000000 Binary files a/static/icons/06006AD4.png and /dev/null differ diff --git a/static/icons/06006AD5.png b/static/icons/06006AD5.png deleted file mode 100755 index 31fa9d13..00000000 Binary files a/static/icons/06006AD5.png and /dev/null differ diff --git a/static/icons/06006AD6.png b/static/icons/06006AD6.png deleted file mode 100755 index dab3c56b..00000000 Binary files a/static/icons/06006AD6.png and /dev/null differ diff --git a/static/icons/06006AD7.png b/static/icons/06006AD7.png deleted file mode 100755 index d266da26..00000000 Binary files a/static/icons/06006AD7.png and /dev/null differ diff --git a/static/icons/06006AD8.png b/static/icons/06006AD8.png deleted file mode 100755 index 749bb943..00000000 Binary files a/static/icons/06006AD8.png and /dev/null differ diff --git a/static/icons/06006AD9.png b/static/icons/06006AD9.png deleted file mode 100755 index 64c31d7a..00000000 Binary files a/static/icons/06006AD9.png and /dev/null differ diff --git a/static/icons/06006ADA.png b/static/icons/06006ADA.png deleted file mode 100755 index 99849a00..00000000 Binary files a/static/icons/06006ADA.png and /dev/null differ diff --git a/static/icons/06006ADB.png b/static/icons/06006ADB.png deleted file mode 100755 index 66042fa9..00000000 Binary files a/static/icons/06006ADB.png and /dev/null differ diff --git a/static/icons/06006ADC.png b/static/icons/06006ADC.png deleted file mode 100755 index a778b06f..00000000 Binary files a/static/icons/06006ADC.png and /dev/null differ diff --git a/static/icons/06006ADD.png b/static/icons/06006ADD.png deleted file mode 100755 index 0dd75398..00000000 Binary files a/static/icons/06006ADD.png and /dev/null differ diff --git a/static/icons/06006ADE.png b/static/icons/06006ADE.png deleted file mode 100755 index 55dd24cd..00000000 Binary files a/static/icons/06006ADE.png and /dev/null differ diff --git a/static/icons/06006ADF.png b/static/icons/06006ADF.png deleted file mode 100755 index 790cbae4..00000000 Binary files a/static/icons/06006ADF.png and /dev/null differ diff --git a/static/icons/06006AE0.png b/static/icons/06006AE0.png deleted file mode 100755 index c4901a77..00000000 Binary files a/static/icons/06006AE0.png and /dev/null differ diff --git a/static/icons/06006AE1.png b/static/icons/06006AE1.png deleted file mode 100755 index f6218d62..00000000 Binary files a/static/icons/06006AE1.png and /dev/null differ diff --git a/static/icons/06006AE2.png b/static/icons/06006AE2.png deleted file mode 100755 index 2248f104..00000000 Binary files a/static/icons/06006AE2.png and /dev/null differ diff --git a/static/icons/06006AE3.png b/static/icons/06006AE3.png deleted file mode 100755 index 93ed6b93..00000000 Binary files a/static/icons/06006AE3.png and /dev/null differ diff --git a/static/icons/06006AE4.png b/static/icons/06006AE4.png deleted file mode 100755 index a26d5aee..00000000 Binary files a/static/icons/06006AE4.png and /dev/null differ diff --git a/static/icons/06006AE5.png b/static/icons/06006AE5.png deleted file mode 100755 index cff84ed4..00000000 Binary files a/static/icons/06006AE5.png and /dev/null differ diff --git a/static/icons/06006AE6.png b/static/icons/06006AE6.png deleted file mode 100755 index 054aa74a..00000000 Binary files a/static/icons/06006AE6.png and /dev/null differ diff --git a/static/icons/06006AE7.png b/static/icons/06006AE7.png deleted file mode 100755 index 99e0327a..00000000 Binary files a/static/icons/06006AE7.png and /dev/null differ diff --git a/static/icons/06006AE8.png b/static/icons/06006AE8.png deleted file mode 100755 index 8a6af9e1..00000000 Binary files a/static/icons/06006AE8.png and /dev/null differ diff --git a/static/icons/06006AE9.png b/static/icons/06006AE9.png deleted file mode 100755 index 26e694c6..00000000 Binary files a/static/icons/06006AE9.png and /dev/null differ diff --git a/static/icons/06006AEA.png b/static/icons/06006AEA.png deleted file mode 100755 index 7f3a56a3..00000000 Binary files a/static/icons/06006AEA.png and /dev/null differ diff --git a/static/icons/06006AEC.png b/static/icons/06006AEC.png deleted file mode 100755 index 4b199ff1..00000000 Binary files a/static/icons/06006AEC.png and /dev/null differ diff --git a/static/icons/06006AED.png b/static/icons/06006AED.png deleted file mode 100755 index b2756c19..00000000 Binary files a/static/icons/06006AED.png and /dev/null differ diff --git a/static/icons/06006AEE.png b/static/icons/06006AEE.png deleted file mode 100755 index ce0627c6..00000000 Binary files a/static/icons/06006AEE.png and /dev/null differ diff --git a/static/icons/06006AEF.png b/static/icons/06006AEF.png deleted file mode 100755 index b0e18257..00000000 Binary files a/static/icons/06006AEF.png and /dev/null differ diff --git a/static/icons/06006AF0.png b/static/icons/06006AF0.png deleted file mode 100755 index 9e84d365..00000000 Binary files a/static/icons/06006AF0.png and /dev/null differ diff --git a/static/icons/06006AF1.png b/static/icons/06006AF1.png deleted file mode 100755 index ac48b3f2..00000000 Binary files a/static/icons/06006AF1.png and /dev/null differ diff --git a/static/icons/06006AF2.png b/static/icons/06006AF2.png deleted file mode 100755 index 11358684..00000000 Binary files a/static/icons/06006AF2.png and /dev/null differ diff --git a/static/icons/06006AF3.png b/static/icons/06006AF3.png deleted file mode 100755 index a172eb8e..00000000 Binary files a/static/icons/06006AF3.png and /dev/null differ diff --git a/static/icons/06006AF4.png b/static/icons/06006AF4.png deleted file mode 100755 index a227c60e..00000000 Binary files a/static/icons/06006AF4.png and /dev/null differ diff --git a/static/icons/06006AF5.png b/static/icons/06006AF5.png deleted file mode 100755 index 0a4be66e..00000000 Binary files a/static/icons/06006AF5.png and /dev/null differ diff --git a/static/icons/06006AF7.png b/static/icons/06006AF7.png deleted file mode 100755 index 559e0d57..00000000 Binary files a/static/icons/06006AF7.png and /dev/null differ diff --git a/static/icons/06006AF8.png b/static/icons/06006AF8.png deleted file mode 100755 index fd47c08a..00000000 Binary files a/static/icons/06006AF8.png and /dev/null differ diff --git a/static/icons/06006AF9.png b/static/icons/06006AF9.png deleted file mode 100755 index b7f93a03..00000000 Binary files a/static/icons/06006AF9.png and /dev/null differ diff --git a/static/icons/06006AFA.png b/static/icons/06006AFA.png deleted file mode 100755 index 3fad31fa..00000000 Binary files a/static/icons/06006AFA.png and /dev/null differ diff --git a/static/icons/06006AFB.png b/static/icons/06006AFB.png deleted file mode 100755 index fa8ddc37..00000000 Binary files a/static/icons/06006AFB.png and /dev/null differ diff --git a/static/icons/06006AFC.png b/static/icons/06006AFC.png deleted file mode 100755 index 0bf2a1ea..00000000 Binary files a/static/icons/06006AFC.png and /dev/null differ diff --git a/static/icons/06006AFD.png b/static/icons/06006AFD.png deleted file mode 100755 index d38c9183..00000000 Binary files a/static/icons/06006AFD.png and /dev/null differ diff --git a/static/icons/06006AFE.png b/static/icons/06006AFE.png deleted file mode 100755 index 20951b30..00000000 Binary files a/static/icons/06006AFE.png and /dev/null differ diff --git a/static/icons/06006AFF.png b/static/icons/06006AFF.png deleted file mode 100755 index 302d5ad6..00000000 Binary files a/static/icons/06006AFF.png and /dev/null differ diff --git a/static/icons/06006B00.png b/static/icons/06006B00.png deleted file mode 100755 index 95ffc86b..00000000 Binary files a/static/icons/06006B00.png and /dev/null differ diff --git a/static/icons/06006B01.png b/static/icons/06006B01.png deleted file mode 100755 index 5ac8b044..00000000 Binary files a/static/icons/06006B01.png and /dev/null differ diff --git a/static/icons/06006B02.png b/static/icons/06006B02.png deleted file mode 100755 index 71526313..00000000 Binary files a/static/icons/06006B02.png and /dev/null differ diff --git a/static/icons/06006B03.png b/static/icons/06006B03.png deleted file mode 100755 index 9d929fd1..00000000 Binary files a/static/icons/06006B03.png and /dev/null differ diff --git a/static/icons/06006B04.png b/static/icons/06006B04.png deleted file mode 100755 index 349cf9b6..00000000 Binary files a/static/icons/06006B04.png and /dev/null differ diff --git a/static/icons/06006B05.png b/static/icons/06006B05.png deleted file mode 100755 index 194ad4c3..00000000 Binary files a/static/icons/06006B05.png and /dev/null differ diff --git a/static/icons/06006B08.png b/static/icons/06006B08.png deleted file mode 100755 index 2bceee79..00000000 Binary files a/static/icons/06006B08.png and /dev/null differ diff --git a/static/icons/06006B0A.png b/static/icons/06006B0A.png deleted file mode 100755 index b9e72e0e..00000000 Binary files a/static/icons/06006B0A.png and /dev/null differ diff --git a/static/icons/06006B0B.png b/static/icons/06006B0B.png deleted file mode 100755 index a21155c8..00000000 Binary files a/static/icons/06006B0B.png and /dev/null differ diff --git a/static/icons/06006B0C.png b/static/icons/06006B0C.png deleted file mode 100755 index 9250ed9b..00000000 Binary files a/static/icons/06006B0C.png and /dev/null differ diff --git a/static/icons/06006B0D.png b/static/icons/06006B0D.png deleted file mode 100755 index 237db7f6..00000000 Binary files a/static/icons/06006B0D.png and /dev/null differ diff --git a/static/icons/06006B0E.png b/static/icons/06006B0E.png deleted file mode 100755 index 184d4cfb..00000000 Binary files a/static/icons/06006B0E.png and /dev/null differ diff --git a/static/icons/06006B0F.png b/static/icons/06006B0F.png deleted file mode 100755 index 55b1bfee..00000000 Binary files a/static/icons/06006B0F.png and /dev/null differ diff --git a/static/icons/06006B10.png b/static/icons/06006B10.png deleted file mode 100755 index 1eec66e2..00000000 Binary files a/static/icons/06006B10.png and /dev/null differ diff --git a/static/icons/06006B11.png b/static/icons/06006B11.png deleted file mode 100755 index 2147c402..00000000 Binary files a/static/icons/06006B11.png and /dev/null differ diff --git a/static/icons/06006B12.png b/static/icons/06006B12.png deleted file mode 100755 index a9088d65..00000000 Binary files a/static/icons/06006B12.png and /dev/null differ diff --git a/static/icons/06006B13.png b/static/icons/06006B13.png deleted file mode 100755 index 725d1033..00000000 Binary files a/static/icons/06006B13.png and /dev/null differ diff --git a/static/icons/06006B14.png b/static/icons/06006B14.png deleted file mode 100755 index 04bde831..00000000 Binary files a/static/icons/06006B14.png and /dev/null differ diff --git a/static/icons/06006B15.png b/static/icons/06006B15.png deleted file mode 100755 index dba03efc..00000000 Binary files a/static/icons/06006B15.png and /dev/null differ diff --git a/static/icons/06006B16.png b/static/icons/06006B16.png deleted file mode 100755 index 8b66860e..00000000 Binary files a/static/icons/06006B16.png and /dev/null differ diff --git a/static/icons/06006B17.png b/static/icons/06006B17.png deleted file mode 100755 index 090ef879..00000000 Binary files a/static/icons/06006B17.png and /dev/null differ diff --git a/static/icons/06006B18.png b/static/icons/06006B18.png deleted file mode 100755 index 772c91c0..00000000 Binary files a/static/icons/06006B18.png and /dev/null differ diff --git a/static/icons/06006B19.png b/static/icons/06006B19.png deleted file mode 100755 index cb1b5319..00000000 Binary files a/static/icons/06006B19.png and /dev/null differ diff --git a/static/icons/06006B1A.png b/static/icons/06006B1A.png deleted file mode 100755 index 576e943e..00000000 Binary files a/static/icons/06006B1A.png and /dev/null differ diff --git a/static/icons/06006B1B.png b/static/icons/06006B1B.png deleted file mode 100755 index 1d7e1c33..00000000 Binary files a/static/icons/06006B1B.png and /dev/null differ diff --git a/static/icons/06006B1C.png b/static/icons/06006B1C.png deleted file mode 100755 index 8c4ceb7a..00000000 Binary files a/static/icons/06006B1C.png and /dev/null differ diff --git a/static/icons/06006B1D.png b/static/icons/06006B1D.png deleted file mode 100755 index f2ec634c..00000000 Binary files a/static/icons/06006B1D.png and /dev/null differ diff --git a/static/icons/06006B1E.png b/static/icons/06006B1E.png deleted file mode 100755 index 6c3b38f6..00000000 Binary files a/static/icons/06006B1E.png and /dev/null differ diff --git a/static/icons/06006B1F.png b/static/icons/06006B1F.png deleted file mode 100755 index 6ad67544..00000000 Binary files a/static/icons/06006B1F.png and /dev/null differ diff --git a/static/icons/06006B20.png b/static/icons/06006B20.png deleted file mode 100755 index e251dfcc..00000000 Binary files a/static/icons/06006B20.png and /dev/null differ diff --git a/static/icons/06006B21.png b/static/icons/06006B21.png deleted file mode 100755 index ab4d0a38..00000000 Binary files a/static/icons/06006B21.png and /dev/null differ diff --git a/static/icons/06006B22.png b/static/icons/06006B22.png deleted file mode 100755 index 159f5825..00000000 Binary files a/static/icons/06006B22.png and /dev/null differ diff --git a/static/icons/06006B23.png b/static/icons/06006B23.png deleted file mode 100755 index f194bb39..00000000 Binary files a/static/icons/06006B23.png and /dev/null differ diff --git a/static/icons/06006B24.png b/static/icons/06006B24.png deleted file mode 100755 index cb36a67d..00000000 Binary files a/static/icons/06006B24.png and /dev/null differ diff --git a/static/icons/06006B25.png b/static/icons/06006B25.png deleted file mode 100755 index bc5b98c7..00000000 Binary files a/static/icons/06006B25.png and /dev/null differ diff --git a/static/icons/06006B26.png b/static/icons/06006B26.png deleted file mode 100755 index c368ce0a..00000000 Binary files a/static/icons/06006B26.png and /dev/null differ diff --git a/static/icons/06006B27.png b/static/icons/06006B27.png deleted file mode 100755 index ba7b87ff..00000000 Binary files a/static/icons/06006B27.png and /dev/null differ diff --git a/static/icons/06006B28.png b/static/icons/06006B28.png deleted file mode 100755 index 7fae927f..00000000 Binary files a/static/icons/06006B28.png and /dev/null differ diff --git a/static/icons/06006B29.png b/static/icons/06006B29.png deleted file mode 100755 index 5198f9e0..00000000 Binary files a/static/icons/06006B29.png and /dev/null differ diff --git a/static/icons/06006B2A.png b/static/icons/06006B2A.png deleted file mode 100755 index 6f2501a1..00000000 Binary files a/static/icons/06006B2A.png and /dev/null differ diff --git a/static/icons/06006B2B.png b/static/icons/06006B2B.png deleted file mode 100755 index 62a2a89a..00000000 Binary files a/static/icons/06006B2B.png and /dev/null differ diff --git a/static/icons/06006B2C.png b/static/icons/06006B2C.png deleted file mode 100755 index 7df62f6a..00000000 Binary files a/static/icons/06006B2C.png and /dev/null differ diff --git a/static/icons/06006B2D.png b/static/icons/06006B2D.png deleted file mode 100755 index 14002c26..00000000 Binary files a/static/icons/06006B2D.png and /dev/null differ diff --git a/static/icons/06006B2E.png b/static/icons/06006B2E.png deleted file mode 100755 index fa04ac72..00000000 Binary files a/static/icons/06006B2E.png and /dev/null differ diff --git a/static/icons/06006B2F.png b/static/icons/06006B2F.png deleted file mode 100755 index 0d80ab26..00000000 Binary files a/static/icons/06006B2F.png and /dev/null differ diff --git a/static/icons/06006B30.png b/static/icons/06006B30.png deleted file mode 100755 index 691a1ae6..00000000 Binary files a/static/icons/06006B30.png and /dev/null differ diff --git a/static/icons/06006B31.png b/static/icons/06006B31.png deleted file mode 100755 index ad267f3c..00000000 Binary files a/static/icons/06006B31.png and /dev/null differ diff --git a/static/icons/06006B32.png b/static/icons/06006B32.png deleted file mode 100755 index 66dc83e5..00000000 Binary files a/static/icons/06006B32.png and /dev/null differ diff --git a/static/icons/06006B33.png b/static/icons/06006B33.png deleted file mode 100755 index 95343f76..00000000 Binary files a/static/icons/06006B33.png and /dev/null differ diff --git a/static/icons/06006B34.png b/static/icons/06006B34.png deleted file mode 100755 index ffaf7c42..00000000 Binary files a/static/icons/06006B34.png and /dev/null differ diff --git a/static/icons/06006B35.png b/static/icons/06006B35.png deleted file mode 100755 index b2bc0de9..00000000 Binary files a/static/icons/06006B35.png and /dev/null differ diff --git a/static/icons/06006B36.png b/static/icons/06006B36.png deleted file mode 100755 index 80c19df9..00000000 Binary files a/static/icons/06006B36.png and /dev/null differ diff --git a/static/icons/06006B37.png b/static/icons/06006B37.png deleted file mode 100755 index d736b4c8..00000000 Binary files a/static/icons/06006B37.png and /dev/null differ diff --git a/static/icons/06006B38.png b/static/icons/06006B38.png deleted file mode 100755 index 39545a5c..00000000 Binary files a/static/icons/06006B38.png and /dev/null differ diff --git a/static/icons/06006B39.png b/static/icons/06006B39.png deleted file mode 100755 index 1e110f69..00000000 Binary files a/static/icons/06006B39.png and /dev/null differ diff --git a/static/icons/06006B3A.png b/static/icons/06006B3A.png deleted file mode 100755 index 248b6895..00000000 Binary files a/static/icons/06006B3A.png and /dev/null differ diff --git a/static/icons/06006B3B.png b/static/icons/06006B3B.png deleted file mode 100755 index 6e597cbc..00000000 Binary files a/static/icons/06006B3B.png and /dev/null differ diff --git a/static/icons/06006B3C.png b/static/icons/06006B3C.png deleted file mode 100755 index 72a6f918..00000000 Binary files a/static/icons/06006B3C.png and /dev/null differ diff --git a/static/icons/06006B3D.png b/static/icons/06006B3D.png deleted file mode 100755 index 3f1edcf0..00000000 Binary files a/static/icons/06006B3D.png and /dev/null differ diff --git a/static/icons/06006B3E.png b/static/icons/06006B3E.png deleted file mode 100755 index 8507dd58..00000000 Binary files a/static/icons/06006B3E.png and /dev/null differ diff --git a/static/icons/06006B3F.png b/static/icons/06006B3F.png deleted file mode 100755 index 79f57ee2..00000000 Binary files a/static/icons/06006B3F.png and /dev/null differ diff --git a/static/icons/06006B40.png b/static/icons/06006B40.png deleted file mode 100755 index f292370b..00000000 Binary files a/static/icons/06006B40.png and /dev/null differ diff --git a/static/icons/06006B41.png b/static/icons/06006B41.png deleted file mode 100755 index c1ea81db..00000000 Binary files a/static/icons/06006B41.png and /dev/null differ diff --git a/static/icons/06006B42.png b/static/icons/06006B42.png deleted file mode 100755 index 6ac58921..00000000 Binary files a/static/icons/06006B42.png and /dev/null differ diff --git a/static/icons/06006B43.png b/static/icons/06006B43.png deleted file mode 100755 index 5a43094a..00000000 Binary files a/static/icons/06006B43.png and /dev/null differ diff --git a/static/icons/06006B44.png b/static/icons/06006B44.png deleted file mode 100755 index 603a67bd..00000000 Binary files a/static/icons/06006B44.png and /dev/null differ diff --git a/static/icons/06006B45.png b/static/icons/06006B45.png deleted file mode 100755 index 2c0d1542..00000000 Binary files a/static/icons/06006B45.png and /dev/null differ diff --git a/static/icons/06006B46.png b/static/icons/06006B46.png deleted file mode 100755 index f3265adb..00000000 Binary files a/static/icons/06006B46.png and /dev/null differ diff --git a/static/icons/06006B47.png b/static/icons/06006B47.png deleted file mode 100755 index e7f104ce..00000000 Binary files a/static/icons/06006B47.png and /dev/null differ diff --git a/static/icons/06006B48.png b/static/icons/06006B48.png deleted file mode 100755 index 4c547688..00000000 Binary files a/static/icons/06006B48.png and /dev/null differ diff --git a/static/icons/06006B49.png b/static/icons/06006B49.png deleted file mode 100755 index 6ab001fe..00000000 Binary files a/static/icons/06006B49.png and /dev/null differ diff --git a/static/icons/06006B4A.png b/static/icons/06006B4A.png deleted file mode 100755 index e212fc23..00000000 Binary files a/static/icons/06006B4A.png and /dev/null differ diff --git a/static/icons/06006B4B.png b/static/icons/06006B4B.png deleted file mode 100755 index 004e2231..00000000 Binary files a/static/icons/06006B4B.png and /dev/null differ diff --git a/static/icons/06006B4C.png b/static/icons/06006B4C.png deleted file mode 100755 index dda9f139..00000000 Binary files a/static/icons/06006B4C.png and /dev/null differ diff --git a/static/icons/06006B4D.png b/static/icons/06006B4D.png deleted file mode 100755 index f088494a..00000000 Binary files a/static/icons/06006B4D.png and /dev/null differ diff --git a/static/icons/06006B4E.png b/static/icons/06006B4E.png deleted file mode 100755 index 0d528166..00000000 Binary files a/static/icons/06006B4E.png and /dev/null differ diff --git a/static/icons/06006B4F.png b/static/icons/06006B4F.png deleted file mode 100755 index 97397cb8..00000000 Binary files a/static/icons/06006B4F.png and /dev/null differ diff --git a/static/icons/06006B50.png b/static/icons/06006B50.png deleted file mode 100755 index d6f9360a..00000000 Binary files a/static/icons/06006B50.png and /dev/null differ diff --git a/static/icons/06006B51.png b/static/icons/06006B51.png deleted file mode 100755 index 2af47869..00000000 Binary files a/static/icons/06006B51.png and /dev/null differ diff --git a/static/icons/06006B52.png b/static/icons/06006B52.png deleted file mode 100755 index c1d4cc51..00000000 Binary files a/static/icons/06006B52.png and /dev/null differ diff --git a/static/icons/06006B53.png b/static/icons/06006B53.png deleted file mode 100755 index 8adb1c23..00000000 Binary files a/static/icons/06006B53.png and /dev/null differ diff --git a/static/icons/06006B54.png b/static/icons/06006B54.png deleted file mode 100755 index d7787270..00000000 Binary files a/static/icons/06006B54.png and /dev/null differ diff --git a/static/icons/06006B55.png b/static/icons/06006B55.png deleted file mode 100755 index 98c71877..00000000 Binary files a/static/icons/06006B55.png and /dev/null differ diff --git a/static/icons/06006B56.png b/static/icons/06006B56.png deleted file mode 100755 index 909e8b7c..00000000 Binary files a/static/icons/06006B56.png and /dev/null differ diff --git a/static/icons/06006B57.png b/static/icons/06006B57.png deleted file mode 100755 index 80f5b42c..00000000 Binary files a/static/icons/06006B57.png and /dev/null differ diff --git a/static/icons/06006B58.png b/static/icons/06006B58.png deleted file mode 100755 index e49fea24..00000000 Binary files a/static/icons/06006B58.png and /dev/null differ diff --git a/static/icons/06006B59.png b/static/icons/06006B59.png deleted file mode 100755 index 9b6248ad..00000000 Binary files a/static/icons/06006B59.png and /dev/null differ diff --git a/static/icons/06006B5A.png b/static/icons/06006B5A.png deleted file mode 100755 index 16621d24..00000000 Binary files a/static/icons/06006B5A.png and /dev/null differ diff --git a/static/icons/06006B5B.png b/static/icons/06006B5B.png deleted file mode 100755 index bf1f7c24..00000000 Binary files a/static/icons/06006B5B.png and /dev/null differ diff --git a/static/icons/06006B5C.png b/static/icons/06006B5C.png deleted file mode 100755 index ec30aa2b..00000000 Binary files a/static/icons/06006B5C.png and /dev/null differ diff --git a/static/icons/06006B5D.png b/static/icons/06006B5D.png deleted file mode 100755 index 8e63d937..00000000 Binary files a/static/icons/06006B5D.png and /dev/null differ diff --git a/static/icons/06006B5E.png b/static/icons/06006B5E.png deleted file mode 100755 index ce3d5610..00000000 Binary files a/static/icons/06006B5E.png and /dev/null differ diff --git a/static/icons/06006B5F.png b/static/icons/06006B5F.png deleted file mode 100755 index d2c41a2c..00000000 Binary files a/static/icons/06006B5F.png and /dev/null differ diff --git a/static/icons/06006B60.png b/static/icons/06006B60.png deleted file mode 100755 index 9cc334ec..00000000 Binary files a/static/icons/06006B60.png and /dev/null differ diff --git a/static/icons/06006B61.png b/static/icons/06006B61.png deleted file mode 100755 index 6608a862..00000000 Binary files a/static/icons/06006B61.png and /dev/null differ diff --git a/static/icons/06006B62.png b/static/icons/06006B62.png deleted file mode 100755 index 0c78aa70..00000000 Binary files a/static/icons/06006B62.png and /dev/null differ diff --git a/static/icons/06006B63.png b/static/icons/06006B63.png deleted file mode 100755 index dabd1ec3..00000000 Binary files a/static/icons/06006B63.png and /dev/null differ diff --git a/static/icons/06006B64.png b/static/icons/06006B64.png deleted file mode 100755 index 9cb58bfc..00000000 Binary files a/static/icons/06006B64.png and /dev/null differ diff --git a/static/icons/06006B65.png b/static/icons/06006B65.png deleted file mode 100755 index f06d25de..00000000 Binary files a/static/icons/06006B65.png and /dev/null differ diff --git a/static/icons/06006B66.png b/static/icons/06006B66.png deleted file mode 100755 index 62faf2c5..00000000 Binary files a/static/icons/06006B66.png and /dev/null differ diff --git a/static/icons/06006B67.png b/static/icons/06006B67.png deleted file mode 100755 index 0596e7ab..00000000 Binary files a/static/icons/06006B67.png and /dev/null differ diff --git a/static/icons/06006B68.png b/static/icons/06006B68.png deleted file mode 100755 index df3ef6f7..00000000 Binary files a/static/icons/06006B68.png and /dev/null differ diff --git a/static/icons/06006B69.png b/static/icons/06006B69.png deleted file mode 100755 index a1bfad75..00000000 Binary files a/static/icons/06006B69.png and /dev/null differ diff --git a/static/icons/06006B6A.png b/static/icons/06006B6A.png deleted file mode 100755 index c672f367..00000000 Binary files a/static/icons/06006B6A.png and /dev/null differ diff --git a/static/icons/06006B6B.png b/static/icons/06006B6B.png deleted file mode 100755 index acee297f..00000000 Binary files a/static/icons/06006B6B.png and /dev/null differ diff --git a/static/icons/06006B6C.png b/static/icons/06006B6C.png deleted file mode 100755 index eb233720..00000000 Binary files a/static/icons/06006B6C.png and /dev/null differ diff --git a/static/icons/06006B6D.png b/static/icons/06006B6D.png deleted file mode 100755 index dd314cd9..00000000 Binary files a/static/icons/06006B6D.png and /dev/null differ diff --git a/static/icons/06006B6E.png b/static/icons/06006B6E.png deleted file mode 100755 index a3563a6b..00000000 Binary files a/static/icons/06006B6E.png and /dev/null differ diff --git a/static/icons/06006B6F.png b/static/icons/06006B6F.png deleted file mode 100755 index 3d5d2af5..00000000 Binary files a/static/icons/06006B6F.png and /dev/null differ diff --git a/static/icons/06006B70.png b/static/icons/06006B70.png deleted file mode 100755 index b9cf6467..00000000 Binary files a/static/icons/06006B70.png and /dev/null differ diff --git a/static/icons/06006B71.png b/static/icons/06006B71.png deleted file mode 100755 index 8b40acac..00000000 Binary files a/static/icons/06006B71.png and /dev/null differ diff --git a/static/icons/06006B72.png b/static/icons/06006B72.png deleted file mode 100755 index f25c0326..00000000 Binary files a/static/icons/06006B72.png and /dev/null differ diff --git a/static/icons/06006B73.png b/static/icons/06006B73.png deleted file mode 100755 index a4827418..00000000 Binary files a/static/icons/06006B73.png and /dev/null differ diff --git a/static/icons/06006B74.png b/static/icons/06006B74.png deleted file mode 100755 index 8fabf004..00000000 Binary files a/static/icons/06006B74.png and /dev/null differ diff --git a/static/icons/06006B75.png b/static/icons/06006B75.png deleted file mode 100755 index 49e28be1..00000000 Binary files a/static/icons/06006B75.png and /dev/null differ diff --git a/static/icons/06006B76.png b/static/icons/06006B76.png deleted file mode 100755 index a8646471..00000000 Binary files a/static/icons/06006B76.png and /dev/null differ diff --git a/static/icons/06006B77.png b/static/icons/06006B77.png deleted file mode 100755 index b8ed8a22..00000000 Binary files a/static/icons/06006B77.png and /dev/null differ diff --git a/static/icons/06006B78.png b/static/icons/06006B78.png deleted file mode 100755 index b53ee8d2..00000000 Binary files a/static/icons/06006B78.png and /dev/null differ diff --git a/static/icons/06006B79.png b/static/icons/06006B79.png deleted file mode 100755 index 8adb833a..00000000 Binary files a/static/icons/06006B79.png and /dev/null differ diff --git a/static/icons/06006B7A.png b/static/icons/06006B7A.png deleted file mode 100755 index a2154382..00000000 Binary files a/static/icons/06006B7A.png and /dev/null differ diff --git a/static/icons/06006B7B.png b/static/icons/06006B7B.png deleted file mode 100755 index 8ccd9ab9..00000000 Binary files a/static/icons/06006B7B.png and /dev/null differ diff --git a/static/icons/06006B7C.png b/static/icons/06006B7C.png deleted file mode 100755 index 44d95925..00000000 Binary files a/static/icons/06006B7C.png and /dev/null differ diff --git a/static/icons/06006B7D.png b/static/icons/06006B7D.png deleted file mode 100755 index 8f8f611f..00000000 Binary files a/static/icons/06006B7D.png and /dev/null differ diff --git a/static/icons/06006B7E.png b/static/icons/06006B7E.png deleted file mode 100755 index db6de4bf..00000000 Binary files a/static/icons/06006B7E.png and /dev/null differ diff --git a/static/icons/06006B7F.png b/static/icons/06006B7F.png deleted file mode 100755 index 0886d803..00000000 Binary files a/static/icons/06006B7F.png and /dev/null differ diff --git a/static/icons/06006B80.png b/static/icons/06006B80.png deleted file mode 100755 index bc03cf79..00000000 Binary files a/static/icons/06006B80.png and /dev/null differ diff --git a/static/icons/06006B81.png b/static/icons/06006B81.png deleted file mode 100755 index 74abc2bf..00000000 Binary files a/static/icons/06006B81.png and /dev/null differ diff --git a/static/icons/06006B82.png b/static/icons/06006B82.png deleted file mode 100755 index c420804c..00000000 Binary files a/static/icons/06006B82.png and /dev/null differ diff --git a/static/icons/06006B83.png b/static/icons/06006B83.png deleted file mode 100755 index 560938f4..00000000 Binary files a/static/icons/06006B83.png and /dev/null differ diff --git a/static/icons/06006B84.png b/static/icons/06006B84.png deleted file mode 100755 index 3d461438..00000000 Binary files a/static/icons/06006B84.png and /dev/null differ diff --git a/static/icons/06006B85.png b/static/icons/06006B85.png deleted file mode 100755 index 1f8e846e..00000000 Binary files a/static/icons/06006B85.png and /dev/null differ diff --git a/static/icons/06006B86.png b/static/icons/06006B86.png deleted file mode 100755 index 2ad22729..00000000 Binary files a/static/icons/06006B86.png and /dev/null differ diff --git a/static/icons/06006B87.png b/static/icons/06006B87.png deleted file mode 100755 index 12a2bf85..00000000 Binary files a/static/icons/06006B87.png and /dev/null differ diff --git a/static/icons/06006B88.png b/static/icons/06006B88.png deleted file mode 100755 index a8a323b2..00000000 Binary files a/static/icons/06006B88.png and /dev/null differ diff --git a/static/icons/06006B89.png b/static/icons/06006B89.png deleted file mode 100755 index 0b326318..00000000 Binary files a/static/icons/06006B89.png and /dev/null differ diff --git a/static/icons/06006B8A.png b/static/icons/06006B8A.png deleted file mode 100755 index d77b8457..00000000 Binary files a/static/icons/06006B8A.png and /dev/null differ diff --git a/static/icons/06006B8B.png b/static/icons/06006B8B.png deleted file mode 100755 index b7c2e3e7..00000000 Binary files a/static/icons/06006B8B.png and /dev/null differ diff --git a/static/icons/06006B8C.png b/static/icons/06006B8C.png deleted file mode 100755 index a2b62d3e..00000000 Binary files a/static/icons/06006B8C.png and /dev/null differ diff --git a/static/icons/06006B8D.png b/static/icons/06006B8D.png deleted file mode 100755 index a364e835..00000000 Binary files a/static/icons/06006B8D.png and /dev/null differ diff --git a/static/icons/06006B8E.png b/static/icons/06006B8E.png deleted file mode 100755 index d22c9dd0..00000000 Binary files a/static/icons/06006B8E.png and /dev/null differ diff --git a/static/icons/06006B8F.png b/static/icons/06006B8F.png deleted file mode 100755 index ca206646..00000000 Binary files a/static/icons/06006B8F.png and /dev/null differ diff --git a/static/icons/06006B90.png b/static/icons/06006B90.png deleted file mode 100755 index c62ff1c1..00000000 Binary files a/static/icons/06006B90.png and /dev/null differ diff --git a/static/icons/06006B91.png b/static/icons/06006B91.png deleted file mode 100755 index d34075ee..00000000 Binary files a/static/icons/06006B91.png and /dev/null differ diff --git a/static/icons/06006B92.png b/static/icons/06006B92.png deleted file mode 100755 index 3f6157c0..00000000 Binary files a/static/icons/06006B92.png and /dev/null differ diff --git a/static/icons/06006B93.png b/static/icons/06006B93.png deleted file mode 100755 index f2ed589c..00000000 Binary files a/static/icons/06006B93.png and /dev/null differ diff --git a/static/icons/06006B94.png b/static/icons/06006B94.png deleted file mode 100755 index ef3e7ee1..00000000 Binary files a/static/icons/06006B94.png and /dev/null differ diff --git a/static/icons/06006B95.png b/static/icons/06006B95.png deleted file mode 100755 index c7f15c61..00000000 Binary files a/static/icons/06006B95.png and /dev/null differ diff --git a/static/icons/06006B96.png b/static/icons/06006B96.png deleted file mode 100755 index 1863b43d..00000000 Binary files a/static/icons/06006B96.png and /dev/null differ diff --git a/static/icons/06006B97.png b/static/icons/06006B97.png deleted file mode 100755 index bc28c617..00000000 Binary files a/static/icons/06006B97.png and /dev/null differ diff --git a/static/icons/06006B98.png b/static/icons/06006B98.png deleted file mode 100755 index dc348c94..00000000 Binary files a/static/icons/06006B98.png and /dev/null differ diff --git a/static/icons/06006B99.png b/static/icons/06006B99.png deleted file mode 100755 index 7e64595c..00000000 Binary files a/static/icons/06006B99.png and /dev/null differ diff --git a/static/icons/06006B9A.png b/static/icons/06006B9A.png deleted file mode 100755 index fa0d7eef..00000000 Binary files a/static/icons/06006B9A.png and /dev/null differ diff --git a/static/icons/06006B9B.png b/static/icons/06006B9B.png deleted file mode 100755 index 5a69b2b9..00000000 Binary files a/static/icons/06006B9B.png and /dev/null differ diff --git a/static/icons/06006B9C.png b/static/icons/06006B9C.png deleted file mode 100755 index e84ba9af..00000000 Binary files a/static/icons/06006B9C.png and /dev/null differ diff --git a/static/icons/06006B9D.png b/static/icons/06006B9D.png deleted file mode 100755 index 38ef381d..00000000 Binary files a/static/icons/06006B9D.png and /dev/null differ diff --git a/static/icons/06006B9E.png b/static/icons/06006B9E.png deleted file mode 100755 index bd02e1f2..00000000 Binary files a/static/icons/06006B9E.png and /dev/null differ diff --git a/static/icons/06006B9F.png b/static/icons/06006B9F.png deleted file mode 100755 index c89be1f8..00000000 Binary files a/static/icons/06006B9F.png and /dev/null differ diff --git a/static/icons/06006BA0.png b/static/icons/06006BA0.png deleted file mode 100755 index fbe69d8a..00000000 Binary files a/static/icons/06006BA0.png and /dev/null differ diff --git a/static/icons/06006BA1.png b/static/icons/06006BA1.png deleted file mode 100755 index e722c1ac..00000000 Binary files a/static/icons/06006BA1.png and /dev/null differ diff --git a/static/icons/06006BA2.png b/static/icons/06006BA2.png deleted file mode 100755 index 8e5ca513..00000000 Binary files a/static/icons/06006BA2.png and /dev/null differ diff --git a/static/icons/06006BA3.png b/static/icons/06006BA3.png deleted file mode 100755 index 9f7e60e8..00000000 Binary files a/static/icons/06006BA3.png and /dev/null differ diff --git a/static/icons/06006BA4.png b/static/icons/06006BA4.png deleted file mode 100755 index 9f7e60e8..00000000 Binary files a/static/icons/06006BA4.png and /dev/null differ diff --git a/static/icons/06006BA5.png b/static/icons/06006BA5.png deleted file mode 100755 index d6194c1f..00000000 Binary files a/static/icons/06006BA5.png and /dev/null differ diff --git a/static/icons/06006BA6.png b/static/icons/06006BA6.png deleted file mode 100755 index db5550e6..00000000 Binary files a/static/icons/06006BA6.png and /dev/null differ diff --git a/static/icons/06006BA7.png b/static/icons/06006BA7.png deleted file mode 100755 index c410b41e..00000000 Binary files a/static/icons/06006BA7.png and /dev/null differ diff --git a/static/icons/06006BA8.png b/static/icons/06006BA8.png deleted file mode 100755 index 45033a82..00000000 Binary files a/static/icons/06006BA8.png and /dev/null differ diff --git a/static/icons/06006BA9.png b/static/icons/06006BA9.png deleted file mode 100755 index 1037f1fe..00000000 Binary files a/static/icons/06006BA9.png and /dev/null differ diff --git a/static/icons/06006BAA.png b/static/icons/06006BAA.png deleted file mode 100755 index ca88dd81..00000000 Binary files a/static/icons/06006BAA.png and /dev/null differ diff --git a/static/icons/06006BAB.png b/static/icons/06006BAB.png deleted file mode 100755 index 501a6c90..00000000 Binary files a/static/icons/06006BAB.png and /dev/null differ diff --git a/static/icons/06006BAC.png b/static/icons/06006BAC.png deleted file mode 100755 index 24d40d2f..00000000 Binary files a/static/icons/06006BAC.png and /dev/null differ diff --git a/static/icons/06006BAD.png b/static/icons/06006BAD.png deleted file mode 100755 index a4932e54..00000000 Binary files a/static/icons/06006BAD.png and /dev/null differ diff --git a/static/icons/06006BAE.png b/static/icons/06006BAE.png deleted file mode 100755 index e7050173..00000000 Binary files a/static/icons/06006BAE.png and /dev/null differ diff --git a/static/icons/06006BAF.png b/static/icons/06006BAF.png deleted file mode 100755 index a30a34e6..00000000 Binary files a/static/icons/06006BAF.png and /dev/null differ diff --git a/static/icons/06006BB0.png b/static/icons/06006BB0.png deleted file mode 100755 index 365b9097..00000000 Binary files a/static/icons/06006BB0.png and /dev/null differ diff --git a/static/icons/06006BB1.png b/static/icons/06006BB1.png deleted file mode 100755 index f852f822..00000000 Binary files a/static/icons/06006BB1.png and /dev/null differ diff --git a/static/icons/06006BB2.png b/static/icons/06006BB2.png deleted file mode 100755 index 70e67d9d..00000000 Binary files a/static/icons/06006BB2.png and /dev/null differ diff --git a/static/icons/06006BB3.png b/static/icons/06006BB3.png deleted file mode 100755 index 61c3d8e7..00000000 Binary files a/static/icons/06006BB3.png and /dev/null differ diff --git a/static/icons/06006BB4.png b/static/icons/06006BB4.png deleted file mode 100755 index 0830780b..00000000 Binary files a/static/icons/06006BB4.png and /dev/null differ diff --git a/static/icons/06006BB5.png b/static/icons/06006BB5.png deleted file mode 100755 index 9361a96b..00000000 Binary files a/static/icons/06006BB5.png and /dev/null differ diff --git a/static/icons/06006BB6.png b/static/icons/06006BB6.png deleted file mode 100755 index cb23ce6b..00000000 Binary files a/static/icons/06006BB6.png and /dev/null differ diff --git a/static/icons/06006BB7.png b/static/icons/06006BB7.png deleted file mode 100755 index 0c77d405..00000000 Binary files a/static/icons/06006BB7.png and /dev/null differ diff --git a/static/icons/06006BB8.png b/static/icons/06006BB8.png deleted file mode 100755 index 4e07c22b..00000000 Binary files a/static/icons/06006BB8.png and /dev/null differ diff --git a/static/icons/06006BB9.png b/static/icons/06006BB9.png deleted file mode 100755 index a4ccde4d..00000000 Binary files a/static/icons/06006BB9.png and /dev/null differ diff --git a/static/icons/06006BBA.png b/static/icons/06006BBA.png deleted file mode 100755 index be3ab8bd..00000000 Binary files a/static/icons/06006BBA.png and /dev/null differ diff --git a/static/icons/06006BBB.png b/static/icons/06006BBB.png deleted file mode 100755 index 876065ec..00000000 Binary files a/static/icons/06006BBB.png and /dev/null differ diff --git a/static/icons/06006BBC.png b/static/icons/06006BBC.png deleted file mode 100755 index 2fa728c3..00000000 Binary files a/static/icons/06006BBC.png and /dev/null differ diff --git a/static/icons/06006BBD.png b/static/icons/06006BBD.png deleted file mode 100755 index ee7070be..00000000 Binary files a/static/icons/06006BBD.png and /dev/null differ diff --git a/static/icons/06006BC0.png b/static/icons/06006BC0.png deleted file mode 100755 index 1bdc434f..00000000 Binary files a/static/icons/06006BC0.png and /dev/null differ diff --git a/static/icons/06006BC1.png b/static/icons/06006BC1.png deleted file mode 100755 index 38872e59..00000000 Binary files a/static/icons/06006BC1.png and /dev/null differ diff --git a/static/icons/06006BC2.png b/static/icons/06006BC2.png deleted file mode 100755 index 223ab605..00000000 Binary files a/static/icons/06006BC2.png and /dev/null differ diff --git a/static/icons/06006BC3.png b/static/icons/06006BC3.png deleted file mode 100755 index f89e80f0..00000000 Binary files a/static/icons/06006BC3.png and /dev/null differ diff --git a/static/icons/06006BC4.png b/static/icons/06006BC4.png deleted file mode 100755 index c1df6117..00000000 Binary files a/static/icons/06006BC4.png and /dev/null differ diff --git a/static/icons/06006BC5.png b/static/icons/06006BC5.png deleted file mode 100755 index ddc0a2fe..00000000 Binary files a/static/icons/06006BC5.png and /dev/null differ diff --git a/static/icons/06006BC6.png b/static/icons/06006BC6.png deleted file mode 100755 index 16904d38..00000000 Binary files a/static/icons/06006BC6.png and /dev/null differ diff --git a/static/icons/06006BC7.png b/static/icons/06006BC7.png deleted file mode 100755 index 447177dd..00000000 Binary files a/static/icons/06006BC7.png and /dev/null differ diff --git a/static/icons/06006BC8.png b/static/icons/06006BC8.png deleted file mode 100755 index edad1dfa..00000000 Binary files a/static/icons/06006BC8.png and /dev/null differ diff --git a/static/icons/06006BC9.png b/static/icons/06006BC9.png deleted file mode 100755 index c9e00163..00000000 Binary files a/static/icons/06006BC9.png and /dev/null differ diff --git a/static/icons/06006BCA.png b/static/icons/06006BCA.png deleted file mode 100755 index 46f8c2f5..00000000 Binary files a/static/icons/06006BCA.png and /dev/null differ diff --git a/static/icons/06006BCB.png b/static/icons/06006BCB.png deleted file mode 100755 index 9b099450..00000000 Binary files a/static/icons/06006BCB.png and /dev/null differ diff --git a/static/icons/06006BCC.png b/static/icons/06006BCC.png deleted file mode 100755 index 42745837..00000000 Binary files a/static/icons/06006BCC.png and /dev/null differ diff --git a/static/icons/06006BCD.png b/static/icons/06006BCD.png deleted file mode 100755 index 60c93d3b..00000000 Binary files a/static/icons/06006BCD.png and /dev/null differ diff --git a/static/icons/06006BCE.png b/static/icons/06006BCE.png deleted file mode 100755 index f900b927..00000000 Binary files a/static/icons/06006BCE.png and /dev/null differ diff --git a/static/icons/06006BCF.png b/static/icons/06006BCF.png deleted file mode 100755 index 5428043b..00000000 Binary files a/static/icons/06006BCF.png and /dev/null differ diff --git a/static/icons/06006BD0.png b/static/icons/06006BD0.png deleted file mode 100755 index f37646dd..00000000 Binary files a/static/icons/06006BD0.png and /dev/null differ diff --git a/static/icons/06006BD1.png b/static/icons/06006BD1.png deleted file mode 100755 index e1902fd2..00000000 Binary files a/static/icons/06006BD1.png and /dev/null differ diff --git a/static/icons/06006BD2.png b/static/icons/06006BD2.png deleted file mode 100755 index bec3daa2..00000000 Binary files a/static/icons/06006BD2.png and /dev/null differ diff --git a/static/icons/06006BD3.png b/static/icons/06006BD3.png deleted file mode 100755 index 78bb9dc1..00000000 Binary files a/static/icons/06006BD3.png and /dev/null differ diff --git a/static/icons/06006BD4.png b/static/icons/06006BD4.png deleted file mode 100755 index 43813a87..00000000 Binary files a/static/icons/06006BD4.png and /dev/null differ diff --git a/static/icons/06006BD5.png b/static/icons/06006BD5.png deleted file mode 100755 index 370ba808..00000000 Binary files a/static/icons/06006BD5.png and /dev/null differ diff --git a/static/icons/06006BD6.png b/static/icons/06006BD6.png deleted file mode 100755 index 892516fb..00000000 Binary files a/static/icons/06006BD6.png and /dev/null differ diff --git a/static/icons/06006BD7.png b/static/icons/06006BD7.png deleted file mode 100755 index 26551ac0..00000000 Binary files a/static/icons/06006BD7.png and /dev/null differ diff --git a/static/icons/06006BDA.png b/static/icons/06006BDA.png deleted file mode 100755 index d353c29e..00000000 Binary files a/static/icons/06006BDA.png and /dev/null differ diff --git a/static/icons/06006BDB.png b/static/icons/06006BDB.png deleted file mode 100755 index ef0587fe..00000000 Binary files a/static/icons/06006BDB.png and /dev/null differ diff --git a/static/icons/06006BDC.png b/static/icons/06006BDC.png deleted file mode 100755 index 12e13132..00000000 Binary files a/static/icons/06006BDC.png and /dev/null differ diff --git a/static/icons/06006BDD.png b/static/icons/06006BDD.png deleted file mode 100755 index 866c73ce..00000000 Binary files a/static/icons/06006BDD.png and /dev/null differ diff --git a/static/icons/06006BDE.png b/static/icons/06006BDE.png deleted file mode 100755 index 5f327f51..00000000 Binary files a/static/icons/06006BDE.png and /dev/null differ diff --git a/static/icons/06006BDF.png b/static/icons/06006BDF.png deleted file mode 100755 index 23ecc248..00000000 Binary files a/static/icons/06006BDF.png and /dev/null differ diff --git a/static/icons/06006BE0.png b/static/icons/06006BE0.png deleted file mode 100755 index 8be4cb40..00000000 Binary files a/static/icons/06006BE0.png and /dev/null differ diff --git a/static/icons/06006BE1.png b/static/icons/06006BE1.png deleted file mode 100755 index 039a992b..00000000 Binary files a/static/icons/06006BE1.png and /dev/null differ diff --git a/static/icons/06006BE2.png b/static/icons/06006BE2.png deleted file mode 100755 index b73b5b6f..00000000 Binary files a/static/icons/06006BE2.png and /dev/null differ diff --git a/static/icons/06006BE3.png b/static/icons/06006BE3.png deleted file mode 100755 index 15e671b1..00000000 Binary files a/static/icons/06006BE3.png and /dev/null differ diff --git a/static/icons/06006BE4.png b/static/icons/06006BE4.png deleted file mode 100755 index bb9ab108..00000000 Binary files a/static/icons/06006BE4.png and /dev/null differ diff --git a/static/icons/06006BE5.png b/static/icons/06006BE5.png deleted file mode 100755 index 9da22108..00000000 Binary files a/static/icons/06006BE5.png and /dev/null differ diff --git a/static/icons/06006BE6.png b/static/icons/06006BE6.png deleted file mode 100755 index a975f8cd..00000000 Binary files a/static/icons/06006BE6.png and /dev/null differ diff --git a/static/icons/06006BE7.png b/static/icons/06006BE7.png deleted file mode 100755 index 1555fe16..00000000 Binary files a/static/icons/06006BE7.png and /dev/null differ diff --git a/static/icons/06006BE8.png b/static/icons/06006BE8.png deleted file mode 100755 index 623c939c..00000000 Binary files a/static/icons/06006BE8.png and /dev/null differ diff --git a/static/icons/06006BE9.png b/static/icons/06006BE9.png deleted file mode 100755 index e2d6b2ad..00000000 Binary files a/static/icons/06006BE9.png and /dev/null differ diff --git a/static/icons/06006BEF.png b/static/icons/06006BEF.png deleted file mode 100755 index 3c5ee5f4..00000000 Binary files a/static/icons/06006BEF.png and /dev/null differ diff --git a/static/icons/06006BF0.png b/static/icons/06006BF0.png deleted file mode 100755 index bb9cf8e4..00000000 Binary files a/static/icons/06006BF0.png and /dev/null differ diff --git a/static/icons/06006BF1.png b/static/icons/06006BF1.png deleted file mode 100755 index ea0f6101..00000000 Binary files a/static/icons/06006BF1.png and /dev/null differ diff --git a/static/icons/06006BF2.png b/static/icons/06006BF2.png deleted file mode 100755 index d320f079..00000000 Binary files a/static/icons/06006BF2.png and /dev/null differ diff --git a/static/icons/06006BF3.png b/static/icons/06006BF3.png deleted file mode 100755 index 3e31b48e..00000000 Binary files a/static/icons/06006BF3.png and /dev/null differ diff --git a/static/icons/06006BF4.png b/static/icons/06006BF4.png deleted file mode 100755 index 41ef0971..00000000 Binary files a/static/icons/06006BF4.png and /dev/null differ diff --git a/static/icons/06006BFD.png b/static/icons/06006BFD.png deleted file mode 100755 index d96ef0cd..00000000 Binary files a/static/icons/06006BFD.png and /dev/null differ diff --git a/static/icons/06006BFE.png b/static/icons/06006BFE.png deleted file mode 100755 index a45db7c1..00000000 Binary files a/static/icons/06006BFE.png and /dev/null differ diff --git a/static/icons/06006BFF.png b/static/icons/06006BFF.png deleted file mode 100755 index 87548221..00000000 Binary files a/static/icons/06006BFF.png and /dev/null differ diff --git a/static/icons/06006C00.png b/static/icons/06006C00.png deleted file mode 100755 index b0bd17b9..00000000 Binary files a/static/icons/06006C00.png and /dev/null differ diff --git a/static/icons/06006C01.png b/static/icons/06006C01.png deleted file mode 100755 index 224e2ce5..00000000 Binary files a/static/icons/06006C01.png and /dev/null differ diff --git a/static/icons/06006C02.png b/static/icons/06006C02.png deleted file mode 100755 index 0e740058..00000000 Binary files a/static/icons/06006C02.png and /dev/null differ diff --git a/static/icons/06006C03.png b/static/icons/06006C03.png deleted file mode 100755 index cc1b7825..00000000 Binary files a/static/icons/06006C03.png and /dev/null differ diff --git a/static/icons/06006C04.png b/static/icons/06006C04.png deleted file mode 100755 index 9c4a0c9c..00000000 Binary files a/static/icons/06006C04.png and /dev/null differ diff --git a/static/icons/06006C05.png b/static/icons/06006C05.png deleted file mode 100755 index 95274fa6..00000000 Binary files a/static/icons/06006C05.png and /dev/null differ diff --git a/static/icons/06006C06.png b/static/icons/06006C06.png deleted file mode 100755 index 2beb55ab..00000000 Binary files a/static/icons/06006C06.png and /dev/null differ diff --git a/static/icons/06006C07.png b/static/icons/06006C07.png deleted file mode 100755 index d97f28bf..00000000 Binary files a/static/icons/06006C07.png and /dev/null differ diff --git a/static/icons/06006C08.png b/static/icons/06006C08.png deleted file mode 100755 index f3c89378..00000000 Binary files a/static/icons/06006C08.png and /dev/null differ diff --git a/static/icons/06006C0A.png b/static/icons/06006C0A.png deleted file mode 100755 index b46e4244..00000000 Binary files a/static/icons/06006C0A.png and /dev/null differ diff --git a/static/icons/06006C0B.png b/static/icons/06006C0B.png deleted file mode 100755 index 6484e276..00000000 Binary files a/static/icons/06006C0B.png and /dev/null differ diff --git a/static/icons/06006C0C.png b/static/icons/06006C0C.png deleted file mode 100755 index 21d5c370..00000000 Binary files a/static/icons/06006C0C.png and /dev/null differ diff --git a/static/icons/06006C0D.png b/static/icons/06006C0D.png deleted file mode 100755 index dabb3f07..00000000 Binary files a/static/icons/06006C0D.png and /dev/null differ diff --git a/static/icons/06006C0E.png b/static/icons/06006C0E.png deleted file mode 100755 index f718ecb2..00000000 Binary files a/static/icons/06006C0E.png and /dev/null differ diff --git a/static/icons/06006C11.png b/static/icons/06006C11.png deleted file mode 100755 index 48b6af4b..00000000 Binary files a/static/icons/06006C11.png and /dev/null differ diff --git a/static/icons/06006C12.png b/static/icons/06006C12.png deleted file mode 100755 index 20d48b36..00000000 Binary files a/static/icons/06006C12.png and /dev/null differ diff --git a/static/icons/06006C13.png b/static/icons/06006C13.png deleted file mode 100755 index 16a6e9c9..00000000 Binary files a/static/icons/06006C13.png and /dev/null differ diff --git a/static/icons/06006C14.png b/static/icons/06006C14.png deleted file mode 100755 index d114521b..00000000 Binary files a/static/icons/06006C14.png and /dev/null differ diff --git a/static/icons/06006C15.png b/static/icons/06006C15.png deleted file mode 100755 index 5158c9c5..00000000 Binary files a/static/icons/06006C15.png and /dev/null differ diff --git a/static/icons/06006C16.png b/static/icons/06006C16.png deleted file mode 100755 index a1bb8ae2..00000000 Binary files a/static/icons/06006C16.png and /dev/null differ diff --git a/static/icons/06006C17.png b/static/icons/06006C17.png deleted file mode 100755 index b1b9e600..00000000 Binary files a/static/icons/06006C17.png and /dev/null differ diff --git a/static/icons/06006C18.png b/static/icons/06006C18.png deleted file mode 100755 index 6eda72d7..00000000 Binary files a/static/icons/06006C18.png and /dev/null differ diff --git a/static/icons/06006C19.png b/static/icons/06006C19.png deleted file mode 100755 index 9ec7db65..00000000 Binary files a/static/icons/06006C19.png and /dev/null differ diff --git a/static/icons/06006C1A.png b/static/icons/06006C1A.png deleted file mode 100755 index e64276f0..00000000 Binary files a/static/icons/06006C1A.png and /dev/null differ diff --git a/static/icons/06006C1B.png b/static/icons/06006C1B.png deleted file mode 100755 index d1bb0201..00000000 Binary files a/static/icons/06006C1B.png and /dev/null differ diff --git a/static/icons/06006C1C.png b/static/icons/06006C1C.png deleted file mode 100755 index 83812052..00000000 Binary files a/static/icons/06006C1C.png and /dev/null differ diff --git a/static/icons/06006C1E.png b/static/icons/06006C1E.png deleted file mode 100755 index 4aadc9e3..00000000 Binary files a/static/icons/06006C1E.png and /dev/null differ diff --git a/static/icons/06006C1F.png b/static/icons/06006C1F.png deleted file mode 100755 index 8160624c..00000000 Binary files a/static/icons/06006C1F.png and /dev/null differ diff --git a/static/icons/06006C20.png b/static/icons/06006C20.png deleted file mode 100755 index d8f3cc5c..00000000 Binary files a/static/icons/06006C20.png and /dev/null differ diff --git a/static/icons/06006C21.png b/static/icons/06006C21.png deleted file mode 100755 index 2601bbe5..00000000 Binary files a/static/icons/06006C21.png and /dev/null differ diff --git a/static/icons/06006C22.png b/static/icons/06006C22.png deleted file mode 100755 index b2620854..00000000 Binary files a/static/icons/06006C22.png and /dev/null differ diff --git a/static/icons/06006C23.png b/static/icons/06006C23.png deleted file mode 100755 index 25bebd5c..00000000 Binary files a/static/icons/06006C23.png and /dev/null differ diff --git a/static/icons/06006C24.png b/static/icons/06006C24.png deleted file mode 100755 index b59dca85..00000000 Binary files a/static/icons/06006C24.png and /dev/null differ diff --git a/static/icons/06006C25.png b/static/icons/06006C25.png deleted file mode 100755 index 11d6d8b5..00000000 Binary files a/static/icons/06006C25.png and /dev/null differ diff --git a/static/icons/06006C26.png b/static/icons/06006C26.png deleted file mode 100755 index 5f593643..00000000 Binary files a/static/icons/06006C26.png and /dev/null differ diff --git a/static/icons/06006C27.png b/static/icons/06006C27.png deleted file mode 100755 index c70d373f..00000000 Binary files a/static/icons/06006C27.png and /dev/null differ diff --git a/static/icons/06006C28.png b/static/icons/06006C28.png deleted file mode 100755 index e0452dbd..00000000 Binary files a/static/icons/06006C28.png and /dev/null differ diff --git a/static/icons/06006C33.png b/static/icons/06006C33.png deleted file mode 100755 index 30b01c28..00000000 Binary files a/static/icons/06006C33.png and /dev/null differ diff --git a/static/icons/06006C34.png b/static/icons/06006C34.png deleted file mode 100755 index 1aa7ea49..00000000 Binary files a/static/icons/06006C34.png and /dev/null differ diff --git a/static/icons/06006C35.png b/static/icons/06006C35.png deleted file mode 100755 index 6d12079d..00000000 Binary files a/static/icons/06006C35.png and /dev/null differ diff --git a/static/icons/06006C36.png b/static/icons/06006C36.png deleted file mode 100755 index 96a01be7..00000000 Binary files a/static/icons/06006C36.png and /dev/null differ diff --git a/static/icons/06006C37.png b/static/icons/06006C37.png deleted file mode 100755 index 76a47100..00000000 Binary files a/static/icons/06006C37.png and /dev/null differ diff --git a/static/icons/06006C38.png b/static/icons/06006C38.png deleted file mode 100755 index 0274768b..00000000 Binary files a/static/icons/06006C38.png and /dev/null differ diff --git a/static/icons/06006C39.png b/static/icons/06006C39.png deleted file mode 100755 index 1bc97371..00000000 Binary files a/static/icons/06006C39.png and /dev/null differ diff --git a/static/icons/06006C3A.png b/static/icons/06006C3A.png deleted file mode 100755 index 401bfd15..00000000 Binary files a/static/icons/06006C3A.png and /dev/null differ diff --git a/static/icons/06006C3B.png b/static/icons/06006C3B.png deleted file mode 100755 index 7278d0f9..00000000 Binary files a/static/icons/06006C3B.png and /dev/null differ diff --git a/static/icons/06006C3C.png b/static/icons/06006C3C.png deleted file mode 100755 index 3dac82fb..00000000 Binary files a/static/icons/06006C3C.png and /dev/null differ diff --git a/static/icons/06006C3D.png b/static/icons/06006C3D.png deleted file mode 100755 index c8e2dfcf..00000000 Binary files a/static/icons/06006C3D.png and /dev/null differ diff --git a/static/icons/06006C3E.png b/static/icons/06006C3E.png deleted file mode 100755 index 733ece85..00000000 Binary files a/static/icons/06006C3E.png and /dev/null differ diff --git a/static/icons/06006C3F.png b/static/icons/06006C3F.png deleted file mode 100755 index aa8639b5..00000000 Binary files a/static/icons/06006C3F.png and /dev/null differ diff --git a/static/icons/06006C40.png b/static/icons/06006C40.png deleted file mode 100755 index 9ac590c9..00000000 Binary files a/static/icons/06006C40.png and /dev/null differ diff --git a/static/icons/06006C41.png b/static/icons/06006C41.png deleted file mode 100755 index 1b1c47af..00000000 Binary files a/static/icons/06006C41.png and /dev/null differ diff --git a/static/icons/06006C42.png b/static/icons/06006C42.png deleted file mode 100755 index 10e8736f..00000000 Binary files a/static/icons/06006C42.png and /dev/null differ diff --git a/static/icons/06006C43.png b/static/icons/06006C43.png deleted file mode 100755 index f14da6aa..00000000 Binary files a/static/icons/06006C43.png and /dev/null differ diff --git a/static/icons/06006C44.png b/static/icons/06006C44.png deleted file mode 100755 index ff8627a1..00000000 Binary files a/static/icons/06006C44.png and /dev/null differ diff --git a/static/icons/06006C45.png b/static/icons/06006C45.png deleted file mode 100755 index b284387a..00000000 Binary files a/static/icons/06006C45.png and /dev/null differ diff --git a/static/icons/06006C46.png b/static/icons/06006C46.png deleted file mode 100755 index fbac36fb..00000000 Binary files a/static/icons/06006C46.png and /dev/null differ diff --git a/static/icons/06006C47.png b/static/icons/06006C47.png deleted file mode 100755 index 602be714..00000000 Binary files a/static/icons/06006C47.png and /dev/null differ diff --git a/static/icons/06006C48.png b/static/icons/06006C48.png deleted file mode 100755 index 8ebe8c72..00000000 Binary files a/static/icons/06006C48.png and /dev/null differ diff --git a/static/icons/06006C49.png b/static/icons/06006C49.png deleted file mode 100755 index 1749c886..00000000 Binary files a/static/icons/06006C49.png and /dev/null differ diff --git a/static/icons/06006C4A.png b/static/icons/06006C4A.png deleted file mode 100755 index f68895d9..00000000 Binary files a/static/icons/06006C4A.png and /dev/null differ diff --git a/static/icons/06006C4B.png b/static/icons/06006C4B.png deleted file mode 100755 index 236cda40..00000000 Binary files a/static/icons/06006C4B.png and /dev/null differ diff --git a/static/icons/06006C4C.png b/static/icons/06006C4C.png deleted file mode 100755 index aa606575..00000000 Binary files a/static/icons/06006C4C.png and /dev/null differ diff --git a/static/icons/06006C4D.png b/static/icons/06006C4D.png deleted file mode 100755 index c80a2e3a..00000000 Binary files a/static/icons/06006C4D.png and /dev/null differ diff --git a/static/icons/06006C4E.png b/static/icons/06006C4E.png deleted file mode 100755 index 91c1ff40..00000000 Binary files a/static/icons/06006C4E.png and /dev/null differ diff --git a/static/icons/06006C4F.png b/static/icons/06006C4F.png deleted file mode 100755 index 33c49995..00000000 Binary files a/static/icons/06006C4F.png and /dev/null differ diff --git a/static/icons/06006C50.png b/static/icons/06006C50.png deleted file mode 100755 index b149b699..00000000 Binary files a/static/icons/06006C50.png and /dev/null differ diff --git a/static/icons/06006C51.png b/static/icons/06006C51.png deleted file mode 100755 index aba4e79f..00000000 Binary files a/static/icons/06006C51.png and /dev/null differ diff --git a/static/icons/06006C52.png b/static/icons/06006C52.png deleted file mode 100755 index 0b3c510c..00000000 Binary files a/static/icons/06006C52.png and /dev/null differ diff --git a/static/icons/06006C53.png b/static/icons/06006C53.png deleted file mode 100755 index a917e955..00000000 Binary files a/static/icons/06006C53.png and /dev/null differ diff --git a/static/icons/06006C54.png b/static/icons/06006C54.png deleted file mode 100755 index 13ea9d05..00000000 Binary files a/static/icons/06006C54.png and /dev/null differ diff --git a/static/icons/06006C55.png b/static/icons/06006C55.png deleted file mode 100755 index f3633f3b..00000000 Binary files a/static/icons/06006C55.png and /dev/null differ diff --git a/static/icons/06006C56.png b/static/icons/06006C56.png deleted file mode 100755 index 3168870a..00000000 Binary files a/static/icons/06006C56.png and /dev/null differ diff --git a/static/icons/06006C57.png b/static/icons/06006C57.png deleted file mode 100755 index 61cea752..00000000 Binary files a/static/icons/06006C57.png and /dev/null differ diff --git a/static/icons/06006C58.png b/static/icons/06006C58.png deleted file mode 100755 index c23594cf..00000000 Binary files a/static/icons/06006C58.png and /dev/null differ diff --git a/static/icons/06006C59.png b/static/icons/06006C59.png deleted file mode 100755 index 3b27735b..00000000 Binary files a/static/icons/06006C59.png and /dev/null differ diff --git a/static/icons/06006C5A.png b/static/icons/06006C5A.png deleted file mode 100755 index 145908f0..00000000 Binary files a/static/icons/06006C5A.png and /dev/null differ diff --git a/static/icons/06006C5B.png b/static/icons/06006C5B.png deleted file mode 100755 index 902dd58e..00000000 Binary files a/static/icons/06006C5B.png and /dev/null differ diff --git a/static/icons/06006C5C.png b/static/icons/06006C5C.png deleted file mode 100755 index 68789e83..00000000 Binary files a/static/icons/06006C5C.png and /dev/null differ diff --git a/static/icons/06006C5D.png b/static/icons/06006C5D.png deleted file mode 100755 index 03c441b2..00000000 Binary files a/static/icons/06006C5D.png and /dev/null differ diff --git a/static/icons/06006C5E.png b/static/icons/06006C5E.png deleted file mode 100755 index a59609fa..00000000 Binary files a/static/icons/06006C5E.png and /dev/null differ diff --git a/static/icons/06006C5F.png b/static/icons/06006C5F.png deleted file mode 100755 index 7439ab34..00000000 Binary files a/static/icons/06006C5F.png and /dev/null differ diff --git a/static/icons/06006C60.png b/static/icons/06006C60.png deleted file mode 100755 index d8790c3e..00000000 Binary files a/static/icons/06006C60.png and /dev/null differ diff --git a/static/icons/06006C61.png b/static/icons/06006C61.png deleted file mode 100755 index 8abd961b..00000000 Binary files a/static/icons/06006C61.png and /dev/null differ diff --git a/static/icons/06006C62.png b/static/icons/06006C62.png deleted file mode 100755 index 5345a488..00000000 Binary files a/static/icons/06006C62.png and /dev/null differ diff --git a/static/icons/06006C63.png b/static/icons/06006C63.png deleted file mode 100755 index 6c14daed..00000000 Binary files a/static/icons/06006C63.png and /dev/null differ diff --git a/static/icons/06006C64.png b/static/icons/06006C64.png deleted file mode 100755 index 75b941bd..00000000 Binary files a/static/icons/06006C64.png and /dev/null differ diff --git a/static/icons/06006C65.png b/static/icons/06006C65.png deleted file mode 100755 index d7f21d57..00000000 Binary files a/static/icons/06006C65.png and /dev/null differ diff --git a/static/icons/06006C66.png b/static/icons/06006C66.png deleted file mode 100755 index b7f58417..00000000 Binary files a/static/icons/06006C66.png and /dev/null differ diff --git a/static/icons/06006C67.png b/static/icons/06006C67.png deleted file mode 100755 index fce7e7ff..00000000 Binary files a/static/icons/06006C67.png and /dev/null differ diff --git a/static/icons/06006C68.png b/static/icons/06006C68.png deleted file mode 100755 index 6e6dbb5f..00000000 Binary files a/static/icons/06006C68.png and /dev/null differ diff --git a/static/icons/06006C69.png b/static/icons/06006C69.png deleted file mode 100755 index 44650012..00000000 Binary files a/static/icons/06006C69.png and /dev/null differ diff --git a/static/icons/06006C6A.png b/static/icons/06006C6A.png deleted file mode 100755 index 1c9525bb..00000000 Binary files a/static/icons/06006C6A.png and /dev/null differ diff --git a/static/icons/06006C6B.png b/static/icons/06006C6B.png deleted file mode 100755 index 6ec88c87..00000000 Binary files a/static/icons/06006C6B.png and /dev/null differ diff --git a/static/icons/06006C6C.png b/static/icons/06006C6C.png deleted file mode 100755 index 66319002..00000000 Binary files a/static/icons/06006C6C.png and /dev/null differ diff --git a/static/icons/06006C76.png b/static/icons/06006C76.png deleted file mode 100755 index a8ddf85c..00000000 Binary files a/static/icons/06006C76.png and /dev/null differ diff --git a/static/icons/06006C77.png b/static/icons/06006C77.png deleted file mode 100755 index a3ccb5a5..00000000 Binary files a/static/icons/06006C77.png and /dev/null differ diff --git a/static/icons/06006C78.png b/static/icons/06006C78.png deleted file mode 100755 index ac4669c0..00000000 Binary files a/static/icons/06006C78.png and /dev/null differ diff --git a/static/icons/06006C79.png b/static/icons/06006C79.png deleted file mode 100755 index 79762a66..00000000 Binary files a/static/icons/06006C79.png and /dev/null differ diff --git a/static/icons/06006C7A.png b/static/icons/06006C7A.png deleted file mode 100755 index b9524936..00000000 Binary files a/static/icons/06006C7A.png and /dev/null differ diff --git a/static/icons/06006C7B.png b/static/icons/06006C7B.png deleted file mode 100755 index 16d44d16..00000000 Binary files a/static/icons/06006C7B.png and /dev/null differ diff --git a/static/icons/06006C7C.png b/static/icons/06006C7C.png deleted file mode 100755 index 7827ea55..00000000 Binary files a/static/icons/06006C7C.png and /dev/null differ diff --git a/static/icons/06006C7D.png b/static/icons/06006C7D.png deleted file mode 100755 index 4154c984..00000000 Binary files a/static/icons/06006C7D.png and /dev/null differ diff --git a/static/icons/06006C7E.png b/static/icons/06006C7E.png deleted file mode 100755 index d0a410e3..00000000 Binary files a/static/icons/06006C7E.png and /dev/null differ diff --git a/static/icons/06006C7F.png b/static/icons/06006C7F.png deleted file mode 100755 index b4d14b32..00000000 Binary files a/static/icons/06006C7F.png and /dev/null differ diff --git a/static/icons/06006C80.png b/static/icons/06006C80.png deleted file mode 100755 index 2f5cc55e..00000000 Binary files a/static/icons/06006C80.png and /dev/null differ diff --git a/static/icons/06006C81.png b/static/icons/06006C81.png deleted file mode 100755 index 1fe08837..00000000 Binary files a/static/icons/06006C81.png and /dev/null differ diff --git a/static/icons/06006C82.png b/static/icons/06006C82.png deleted file mode 100755 index d3db1c4f..00000000 Binary files a/static/icons/06006C82.png and /dev/null differ diff --git a/static/icons/06006C83.png b/static/icons/06006C83.png deleted file mode 100755 index 4f9e6a56..00000000 Binary files a/static/icons/06006C83.png and /dev/null differ diff --git a/static/icons/06006C84.png b/static/icons/06006C84.png deleted file mode 100755 index 8969d14b..00000000 Binary files a/static/icons/06006C84.png and /dev/null differ diff --git a/static/icons/06006C85.png b/static/icons/06006C85.png deleted file mode 100755 index 70d712b6..00000000 Binary files a/static/icons/06006C85.png and /dev/null differ diff --git a/static/icons/06006C86.png b/static/icons/06006C86.png deleted file mode 100755 index f9d95822..00000000 Binary files a/static/icons/06006C86.png and /dev/null differ diff --git a/static/icons/06006C87.png b/static/icons/06006C87.png deleted file mode 100755 index f3df5169..00000000 Binary files a/static/icons/06006C87.png and /dev/null differ diff --git a/static/icons/06006C88.png b/static/icons/06006C88.png deleted file mode 100755 index 5f0db7bb..00000000 Binary files a/static/icons/06006C88.png and /dev/null differ diff --git a/static/icons/06006C89.png b/static/icons/06006C89.png deleted file mode 100755 index 536c703b..00000000 Binary files a/static/icons/06006C89.png and /dev/null differ diff --git a/static/icons/06006C8A.png b/static/icons/06006C8A.png deleted file mode 100755 index 7d033444..00000000 Binary files a/static/icons/06006C8A.png and /dev/null differ diff --git a/static/icons/06006C8B.png b/static/icons/06006C8B.png deleted file mode 100755 index 461afe91..00000000 Binary files a/static/icons/06006C8B.png and /dev/null differ diff --git a/static/icons/06006C8C.png b/static/icons/06006C8C.png deleted file mode 100755 index d1afb3fa..00000000 Binary files a/static/icons/06006C8C.png and /dev/null differ diff --git a/static/icons/06006C8D.png b/static/icons/06006C8D.png deleted file mode 100755 index 98f96ca2..00000000 Binary files a/static/icons/06006C8D.png and /dev/null differ diff --git a/static/icons/06006C8E.png b/static/icons/06006C8E.png deleted file mode 100755 index 0190066c..00000000 Binary files a/static/icons/06006C8E.png and /dev/null differ diff --git a/static/icons/06006C8F.png b/static/icons/06006C8F.png deleted file mode 100755 index 82c02b05..00000000 Binary files a/static/icons/06006C8F.png and /dev/null differ diff --git a/static/icons/06006C90.png b/static/icons/06006C90.png deleted file mode 100755 index 7d774cd7..00000000 Binary files a/static/icons/06006C90.png and /dev/null differ diff --git a/static/icons/06006C91.png b/static/icons/06006C91.png deleted file mode 100755 index 2b5eb5e0..00000000 Binary files a/static/icons/06006C91.png and /dev/null differ diff --git a/static/icons/06006C92.png b/static/icons/06006C92.png deleted file mode 100755 index c637af72..00000000 Binary files a/static/icons/06006C92.png and /dev/null differ diff --git a/static/icons/06006C93.png b/static/icons/06006C93.png deleted file mode 100755 index 066d9e57..00000000 Binary files a/static/icons/06006C93.png and /dev/null differ diff --git a/static/icons/06006C94.png b/static/icons/06006C94.png deleted file mode 100755 index 3bf4750c..00000000 Binary files a/static/icons/06006C94.png and /dev/null differ diff --git a/static/icons/06006C95.png b/static/icons/06006C95.png deleted file mode 100755 index b5fce713..00000000 Binary files a/static/icons/06006C95.png and /dev/null differ diff --git a/static/icons/06006C96.png b/static/icons/06006C96.png deleted file mode 100755 index b17d97c8..00000000 Binary files a/static/icons/06006C96.png and /dev/null differ diff --git a/static/icons/06006C97.png b/static/icons/06006C97.png deleted file mode 100755 index e0802645..00000000 Binary files a/static/icons/06006C97.png and /dev/null differ diff --git a/static/icons/06006C98.png b/static/icons/06006C98.png deleted file mode 100755 index 01d34b50..00000000 Binary files a/static/icons/06006C98.png and /dev/null differ diff --git a/static/icons/06006C99.png b/static/icons/06006C99.png deleted file mode 100755 index 1fbd4453..00000000 Binary files a/static/icons/06006C99.png and /dev/null differ diff --git a/static/icons/06006C9A.png b/static/icons/06006C9A.png deleted file mode 100755 index 91b37ba0..00000000 Binary files a/static/icons/06006C9A.png and /dev/null differ diff --git a/static/icons/06006C9B.png b/static/icons/06006C9B.png deleted file mode 100755 index ce60884b..00000000 Binary files a/static/icons/06006C9B.png and /dev/null differ diff --git a/static/icons/06006C9C.png b/static/icons/06006C9C.png deleted file mode 100755 index b0dc7ffc..00000000 Binary files a/static/icons/06006C9C.png and /dev/null differ diff --git a/static/icons/06006C9D.png b/static/icons/06006C9D.png deleted file mode 100755 index b19849e9..00000000 Binary files a/static/icons/06006C9D.png and /dev/null differ diff --git a/static/icons/06006C9E.png b/static/icons/06006C9E.png deleted file mode 100755 index 3a6445b8..00000000 Binary files a/static/icons/06006C9E.png and /dev/null differ diff --git a/static/icons/06006C9F.png b/static/icons/06006C9F.png deleted file mode 100755 index ca5f1279..00000000 Binary files a/static/icons/06006C9F.png and /dev/null differ diff --git a/static/icons/06006CA0.png b/static/icons/06006CA0.png deleted file mode 100755 index 9c8dbf67..00000000 Binary files a/static/icons/06006CA0.png and /dev/null differ diff --git a/static/icons/06006CA1.png b/static/icons/06006CA1.png deleted file mode 100755 index 6cfcf8fc..00000000 Binary files a/static/icons/06006CA1.png and /dev/null differ diff --git a/static/icons/06006CA2.png b/static/icons/06006CA2.png deleted file mode 100755 index 185bdce7..00000000 Binary files a/static/icons/06006CA2.png and /dev/null differ diff --git a/static/icons/06006CA3.png b/static/icons/06006CA3.png deleted file mode 100755 index b80b4997..00000000 Binary files a/static/icons/06006CA3.png and /dev/null differ diff --git a/static/icons/06006CA4.png b/static/icons/06006CA4.png deleted file mode 100755 index ecfc13f1..00000000 Binary files a/static/icons/06006CA4.png and /dev/null differ diff --git a/static/icons/06006CA5.png b/static/icons/06006CA5.png deleted file mode 100755 index b074ff6f..00000000 Binary files a/static/icons/06006CA5.png and /dev/null differ diff --git a/static/icons/06006CA6.png b/static/icons/06006CA6.png deleted file mode 100755 index a74a4e13..00000000 Binary files a/static/icons/06006CA6.png and /dev/null differ diff --git a/static/icons/06006CA7.png b/static/icons/06006CA7.png deleted file mode 100755 index 653376a7..00000000 Binary files a/static/icons/06006CA7.png and /dev/null differ diff --git a/static/icons/06006CA8.png b/static/icons/06006CA8.png deleted file mode 100755 index b0f61cc1..00000000 Binary files a/static/icons/06006CA8.png and /dev/null differ diff --git a/static/icons/06006CA9.png b/static/icons/06006CA9.png deleted file mode 100755 index 1032155c..00000000 Binary files a/static/icons/06006CA9.png and /dev/null differ diff --git a/static/icons/06006CAA.png b/static/icons/06006CAA.png deleted file mode 100755 index 3ec8d07c..00000000 Binary files a/static/icons/06006CAA.png and /dev/null differ diff --git a/static/icons/06006CAB.png b/static/icons/06006CAB.png deleted file mode 100755 index dfee7335..00000000 Binary files a/static/icons/06006CAB.png and /dev/null differ diff --git a/static/icons/06006CAC.png b/static/icons/06006CAC.png deleted file mode 100755 index bd93a68f..00000000 Binary files a/static/icons/06006CAC.png and /dev/null differ diff --git a/static/icons/06006CAD.png b/static/icons/06006CAD.png deleted file mode 100755 index c675aa4c..00000000 Binary files a/static/icons/06006CAD.png and /dev/null differ diff --git a/static/icons/06006CAE.png b/static/icons/06006CAE.png deleted file mode 100755 index 5e6c4e10..00000000 Binary files a/static/icons/06006CAE.png and /dev/null differ diff --git a/static/icons/06006CAF.png b/static/icons/06006CAF.png deleted file mode 100755 index b68195c1..00000000 Binary files a/static/icons/06006CAF.png and /dev/null differ diff --git a/static/icons/06006CB0.png b/static/icons/06006CB0.png deleted file mode 100755 index a45618fd..00000000 Binary files a/static/icons/06006CB0.png and /dev/null differ diff --git a/static/icons/06006CB1.png b/static/icons/06006CB1.png deleted file mode 100755 index 1eaf9a1f..00000000 Binary files a/static/icons/06006CB1.png and /dev/null differ diff --git a/static/icons/06006CB2.png b/static/icons/06006CB2.png deleted file mode 100755 index 03a1ab53..00000000 Binary files a/static/icons/06006CB2.png and /dev/null differ diff --git a/static/icons/06006CB3.png b/static/icons/06006CB3.png deleted file mode 100755 index a8788c4e..00000000 Binary files a/static/icons/06006CB3.png and /dev/null differ diff --git a/static/icons/06006CB4.png b/static/icons/06006CB4.png deleted file mode 100755 index dad7ab61..00000000 Binary files a/static/icons/06006CB4.png and /dev/null differ diff --git a/static/icons/06006CB5.png b/static/icons/06006CB5.png deleted file mode 100755 index 33b25059..00000000 Binary files a/static/icons/06006CB5.png and /dev/null differ diff --git a/static/icons/06006CB6.png b/static/icons/06006CB6.png deleted file mode 100755 index 1e3c330e..00000000 Binary files a/static/icons/06006CB6.png and /dev/null differ diff --git a/static/icons/06006CB7.png b/static/icons/06006CB7.png deleted file mode 100755 index a3f3af22..00000000 Binary files a/static/icons/06006CB7.png and /dev/null differ diff --git a/static/icons/06006CB8.png b/static/icons/06006CB8.png deleted file mode 100755 index 9026be6f..00000000 Binary files a/static/icons/06006CB8.png and /dev/null differ diff --git a/static/icons/06006CB9.png b/static/icons/06006CB9.png deleted file mode 100755 index 4aa46070..00000000 Binary files a/static/icons/06006CB9.png and /dev/null differ diff --git a/static/icons/06006CBA.png b/static/icons/06006CBA.png deleted file mode 100755 index 6e4dc1c6..00000000 Binary files a/static/icons/06006CBA.png and /dev/null differ diff --git a/static/icons/06006CBB.png b/static/icons/06006CBB.png deleted file mode 100755 index ed768c07..00000000 Binary files a/static/icons/06006CBB.png and /dev/null differ diff --git a/static/icons/06006CBC.png b/static/icons/06006CBC.png deleted file mode 100755 index dc2e2cbb..00000000 Binary files a/static/icons/06006CBC.png and /dev/null differ diff --git a/static/icons/06006CBD.png b/static/icons/06006CBD.png deleted file mode 100755 index b7b04a53..00000000 Binary files a/static/icons/06006CBD.png and /dev/null differ diff --git a/static/icons/06006CBE.png b/static/icons/06006CBE.png deleted file mode 100755 index 8397bd99..00000000 Binary files a/static/icons/06006CBE.png and /dev/null differ diff --git a/static/icons/06006CBF.png b/static/icons/06006CBF.png deleted file mode 100755 index 7cc4418f..00000000 Binary files a/static/icons/06006CBF.png and /dev/null differ diff --git a/static/icons/06006CC0.png b/static/icons/06006CC0.png deleted file mode 100755 index c33802dc..00000000 Binary files a/static/icons/06006CC0.png and /dev/null differ diff --git a/static/icons/06006CC1.png b/static/icons/06006CC1.png deleted file mode 100755 index 8372b6e2..00000000 Binary files a/static/icons/06006CC1.png and /dev/null differ diff --git a/static/icons/06006CC2.png b/static/icons/06006CC2.png deleted file mode 100755 index bed21c3a..00000000 Binary files a/static/icons/06006CC2.png and /dev/null differ diff --git a/static/icons/06006CC3.png b/static/icons/06006CC3.png deleted file mode 100755 index ce55cf8e..00000000 Binary files a/static/icons/06006CC3.png and /dev/null differ diff --git a/static/icons/06006CC4.png b/static/icons/06006CC4.png deleted file mode 100755 index 4786d6be..00000000 Binary files a/static/icons/06006CC4.png and /dev/null differ diff --git a/static/icons/06006CC5.png b/static/icons/06006CC5.png deleted file mode 100755 index 121d9d72..00000000 Binary files a/static/icons/06006CC5.png and /dev/null differ diff --git a/static/icons/06006CC6.png b/static/icons/06006CC6.png deleted file mode 100755 index f6bf80f5..00000000 Binary files a/static/icons/06006CC6.png and /dev/null differ diff --git a/static/icons/06006CC7.png b/static/icons/06006CC7.png deleted file mode 100755 index 5b7932ca..00000000 Binary files a/static/icons/06006CC7.png and /dev/null differ diff --git a/static/icons/06006CC8.png b/static/icons/06006CC8.png deleted file mode 100755 index e6f44b3d..00000000 Binary files a/static/icons/06006CC8.png and /dev/null differ diff --git a/static/icons/06006CC9.png b/static/icons/06006CC9.png deleted file mode 100755 index e93ceee3..00000000 Binary files a/static/icons/06006CC9.png and /dev/null differ diff --git a/static/icons/06006CCA.png b/static/icons/06006CCA.png deleted file mode 100755 index 72bf8255..00000000 Binary files a/static/icons/06006CCA.png and /dev/null differ diff --git a/static/icons/06006CCB.png b/static/icons/06006CCB.png deleted file mode 100755 index 36703c2c..00000000 Binary files a/static/icons/06006CCB.png and /dev/null differ diff --git a/static/icons/06006CCC.png b/static/icons/06006CCC.png deleted file mode 100755 index ef0b8519..00000000 Binary files a/static/icons/06006CCC.png and /dev/null differ diff --git a/static/icons/06006CCD.png b/static/icons/06006CCD.png deleted file mode 100755 index 41c7a51e..00000000 Binary files a/static/icons/06006CCD.png and /dev/null differ diff --git a/static/icons/06006CCE.png b/static/icons/06006CCE.png deleted file mode 100755 index f60a1cad..00000000 Binary files a/static/icons/06006CCE.png and /dev/null differ diff --git a/static/icons/06006CCF.png b/static/icons/06006CCF.png deleted file mode 100755 index 28e49457..00000000 Binary files a/static/icons/06006CCF.png and /dev/null differ diff --git a/static/icons/06006CD0.png b/static/icons/06006CD0.png deleted file mode 100755 index 367afec8..00000000 Binary files a/static/icons/06006CD0.png and /dev/null differ diff --git a/static/icons/06006CD1.png b/static/icons/06006CD1.png deleted file mode 100755 index 80f6001d..00000000 Binary files a/static/icons/06006CD1.png and /dev/null differ diff --git a/static/icons/06006CD2.png b/static/icons/06006CD2.png deleted file mode 100755 index b7aafaa6..00000000 Binary files a/static/icons/06006CD2.png and /dev/null differ diff --git a/static/icons/06006CD3.png b/static/icons/06006CD3.png deleted file mode 100755 index 881bdad0..00000000 Binary files a/static/icons/06006CD3.png and /dev/null differ diff --git a/static/icons/06006CD4.png b/static/icons/06006CD4.png deleted file mode 100755 index 47b00a7c..00000000 Binary files a/static/icons/06006CD4.png and /dev/null differ diff --git a/static/icons/06006CD5.png b/static/icons/06006CD5.png deleted file mode 100755 index 59fc5e0a..00000000 Binary files a/static/icons/06006CD5.png and /dev/null differ diff --git a/static/icons/06006CD6.png b/static/icons/06006CD6.png deleted file mode 100755 index f85eeab5..00000000 Binary files a/static/icons/06006CD6.png and /dev/null differ diff --git a/static/icons/06006CD7.png b/static/icons/06006CD7.png deleted file mode 100755 index b8b5df62..00000000 Binary files a/static/icons/06006CD7.png and /dev/null differ diff --git a/static/icons/06006CD8.png b/static/icons/06006CD8.png deleted file mode 100755 index db434efd..00000000 Binary files a/static/icons/06006CD8.png and /dev/null differ diff --git a/static/icons/06006CD9.png b/static/icons/06006CD9.png deleted file mode 100755 index 5941c81a..00000000 Binary files a/static/icons/06006CD9.png and /dev/null differ diff --git a/static/icons/06006CDA.png b/static/icons/06006CDA.png deleted file mode 100755 index 38378705..00000000 Binary files a/static/icons/06006CDA.png and /dev/null differ diff --git a/static/icons/06006CDB.png b/static/icons/06006CDB.png deleted file mode 100755 index cd7e04fb..00000000 Binary files a/static/icons/06006CDB.png and /dev/null differ diff --git a/static/icons/06006CDC.png b/static/icons/06006CDC.png deleted file mode 100755 index fc07a1f9..00000000 Binary files a/static/icons/06006CDC.png and /dev/null differ diff --git a/static/icons/06006CDD.png b/static/icons/06006CDD.png deleted file mode 100755 index 1704768e..00000000 Binary files a/static/icons/06006CDD.png and /dev/null differ diff --git a/static/icons/06006CDE.png b/static/icons/06006CDE.png deleted file mode 100755 index 565f7a2a..00000000 Binary files a/static/icons/06006CDE.png and /dev/null differ diff --git a/static/icons/06006CDF.png b/static/icons/06006CDF.png deleted file mode 100755 index 01de45e0..00000000 Binary files a/static/icons/06006CDF.png and /dev/null differ diff --git a/static/icons/06006CE0.png b/static/icons/06006CE0.png deleted file mode 100755 index 6b10c8dc..00000000 Binary files a/static/icons/06006CE0.png and /dev/null differ diff --git a/static/icons/06006CE1.png b/static/icons/06006CE1.png deleted file mode 100755 index 16101cc6..00000000 Binary files a/static/icons/06006CE1.png and /dev/null differ diff --git a/static/icons/06006CE2.png b/static/icons/06006CE2.png deleted file mode 100755 index 581bc793..00000000 Binary files a/static/icons/06006CE2.png and /dev/null differ diff --git a/static/icons/06006CE3.png b/static/icons/06006CE3.png deleted file mode 100755 index bd0b8081..00000000 Binary files a/static/icons/06006CE3.png and /dev/null differ diff --git a/static/icons/06006CE4.png b/static/icons/06006CE4.png deleted file mode 100755 index 0ec3641c..00000000 Binary files a/static/icons/06006CE4.png and /dev/null differ diff --git a/static/icons/06006CE5.png b/static/icons/06006CE5.png deleted file mode 100755 index d71bee13..00000000 Binary files a/static/icons/06006CE5.png and /dev/null differ diff --git a/static/icons/06006CE6.png b/static/icons/06006CE6.png deleted file mode 100755 index 1ff29e14..00000000 Binary files a/static/icons/06006CE6.png and /dev/null differ diff --git a/static/icons/06006CE7.png b/static/icons/06006CE7.png deleted file mode 100755 index db0500d5..00000000 Binary files a/static/icons/06006CE7.png and /dev/null differ diff --git a/static/icons/06006CE8.png b/static/icons/06006CE8.png deleted file mode 100755 index 1c46c21a..00000000 Binary files a/static/icons/06006CE8.png and /dev/null differ diff --git a/static/icons/06006CE9.png b/static/icons/06006CE9.png deleted file mode 100755 index 35d5baad..00000000 Binary files a/static/icons/06006CE9.png and /dev/null differ diff --git a/static/icons/06006CEA.png b/static/icons/06006CEA.png deleted file mode 100755 index 2c342797..00000000 Binary files a/static/icons/06006CEA.png and /dev/null differ diff --git a/static/icons/06006CEB.png b/static/icons/06006CEB.png deleted file mode 100755 index 18654f0c..00000000 Binary files a/static/icons/06006CEB.png and /dev/null differ diff --git a/static/icons/06006CEC.png b/static/icons/06006CEC.png deleted file mode 100755 index 889111af..00000000 Binary files a/static/icons/06006CEC.png and /dev/null differ diff --git a/static/icons/06006CED.png b/static/icons/06006CED.png deleted file mode 100755 index c05e90d8..00000000 Binary files a/static/icons/06006CED.png and /dev/null differ diff --git a/static/icons/06006CEE.png b/static/icons/06006CEE.png deleted file mode 100755 index ea5ab1e5..00000000 Binary files a/static/icons/06006CEE.png and /dev/null differ diff --git a/static/icons/06006CEF.png b/static/icons/06006CEF.png deleted file mode 100755 index 4e3119f0..00000000 Binary files a/static/icons/06006CEF.png and /dev/null differ diff --git a/static/icons/06006CF0.png b/static/icons/06006CF0.png deleted file mode 100755 index bbad9319..00000000 Binary files a/static/icons/06006CF0.png and /dev/null differ diff --git a/static/icons/06006CF1.png b/static/icons/06006CF1.png deleted file mode 100755 index 00f62dd2..00000000 Binary files a/static/icons/06006CF1.png and /dev/null differ diff --git a/static/icons/06006CF2.png b/static/icons/06006CF2.png deleted file mode 100755 index c64b807f..00000000 Binary files a/static/icons/06006CF2.png and /dev/null differ diff --git a/static/icons/06006CF3.png b/static/icons/06006CF3.png deleted file mode 100755 index fb8c720f..00000000 Binary files a/static/icons/06006CF3.png and /dev/null differ diff --git a/static/icons/06006CF4.png b/static/icons/06006CF4.png deleted file mode 100755 index 03bde317..00000000 Binary files a/static/icons/06006CF4.png and /dev/null differ diff --git a/static/icons/06006CF5.png b/static/icons/06006CF5.png deleted file mode 100755 index f8e2865f..00000000 Binary files a/static/icons/06006CF5.png and /dev/null differ diff --git a/static/icons/06006CF6.png b/static/icons/06006CF6.png deleted file mode 100755 index de3c39a9..00000000 Binary files a/static/icons/06006CF6.png and /dev/null differ diff --git a/static/icons/06006CF7.png b/static/icons/06006CF7.png deleted file mode 100755 index 5b614351..00000000 Binary files a/static/icons/06006CF7.png and /dev/null differ diff --git a/static/icons/06006CF8.png b/static/icons/06006CF8.png deleted file mode 100755 index 5b4ab9f9..00000000 Binary files a/static/icons/06006CF8.png and /dev/null differ diff --git a/static/icons/06006CF9.png b/static/icons/06006CF9.png deleted file mode 100755 index e2f70e06..00000000 Binary files a/static/icons/06006CF9.png and /dev/null differ diff --git a/static/icons/06006CFA.png b/static/icons/06006CFA.png deleted file mode 100755 index 3463b5c2..00000000 Binary files a/static/icons/06006CFA.png and /dev/null differ diff --git a/static/icons/06006D06.png b/static/icons/06006D06.png deleted file mode 100755 index 47a6cf1a..00000000 Binary files a/static/icons/06006D06.png and /dev/null differ diff --git a/static/icons/06006D27.png b/static/icons/06006D27.png deleted file mode 100755 index 16b2ec95..00000000 Binary files a/static/icons/06006D27.png and /dev/null differ diff --git a/static/icons/06006D30.png b/static/icons/06006D30.png deleted file mode 100755 index 1960bdf3..00000000 Binary files a/static/icons/06006D30.png and /dev/null differ diff --git a/static/icons/06006D32.png b/static/icons/06006D32.png deleted file mode 100755 index 47afd53a..00000000 Binary files a/static/icons/06006D32.png and /dev/null differ diff --git a/static/icons/06006D36.png b/static/icons/06006D36.png deleted file mode 100755 index 78f74422..00000000 Binary files a/static/icons/06006D36.png and /dev/null differ diff --git a/static/icons/06006D37.png b/static/icons/06006D37.png deleted file mode 100755 index fec05bdc..00000000 Binary files a/static/icons/06006D37.png and /dev/null differ diff --git a/static/icons/06006D3C.png b/static/icons/06006D3C.png deleted file mode 100755 index dd6e6c0a..00000000 Binary files a/static/icons/06006D3C.png and /dev/null differ diff --git a/static/icons/06006D3D.png b/static/icons/06006D3D.png deleted file mode 100755 index 39537a89..00000000 Binary files a/static/icons/06006D3D.png and /dev/null differ diff --git a/static/icons/06006D3E.png b/static/icons/06006D3E.png deleted file mode 100755 index 52c85f7a..00000000 Binary files a/static/icons/06006D3E.png and /dev/null differ diff --git a/static/icons/06006D3F.png b/static/icons/06006D3F.png deleted file mode 100755 index ad2798d8..00000000 Binary files a/static/icons/06006D3F.png and /dev/null differ diff --git a/static/icons/06006D40.png b/static/icons/06006D40.png deleted file mode 100755 index ce21cf4e..00000000 Binary files a/static/icons/06006D40.png and /dev/null differ diff --git a/static/icons/06006D41.png b/static/icons/06006D41.png deleted file mode 100755 index d3d8fe61..00000000 Binary files a/static/icons/06006D41.png and /dev/null differ diff --git a/static/icons/06006D42.png b/static/icons/06006D42.png deleted file mode 100755 index dae32fbb..00000000 Binary files a/static/icons/06006D42.png and /dev/null differ diff --git a/static/icons/06006D43.png b/static/icons/06006D43.png deleted file mode 100755 index 8781f2af..00000000 Binary files a/static/icons/06006D43.png and /dev/null differ diff --git a/static/icons/06006D44.png b/static/icons/06006D44.png deleted file mode 100755 index cdef274b..00000000 Binary files a/static/icons/06006D44.png and /dev/null differ diff --git a/static/icons/06006D45.png b/static/icons/06006D45.png deleted file mode 100755 index 9324d737..00000000 Binary files a/static/icons/06006D45.png and /dev/null differ diff --git a/static/icons/06006D46.png b/static/icons/06006D46.png deleted file mode 100755 index 10fcf151..00000000 Binary files a/static/icons/06006D46.png and /dev/null differ diff --git a/static/icons/06006D47.png b/static/icons/06006D47.png deleted file mode 100755 index 4d39e3b1..00000000 Binary files a/static/icons/06006D47.png and /dev/null differ diff --git a/static/icons/06006D48.png b/static/icons/06006D48.png deleted file mode 100755 index 8e7db480..00000000 Binary files a/static/icons/06006D48.png and /dev/null differ diff --git a/static/icons/06006D49.png b/static/icons/06006D49.png deleted file mode 100755 index 38e2a36d..00000000 Binary files a/static/icons/06006D49.png and /dev/null differ diff --git a/static/icons/06006D4A.png b/static/icons/06006D4A.png deleted file mode 100755 index 3c4a4752..00000000 Binary files a/static/icons/06006D4A.png and /dev/null differ diff --git a/static/icons/06006D4B.png b/static/icons/06006D4B.png deleted file mode 100755 index 74e768ed..00000000 Binary files a/static/icons/06006D4B.png and /dev/null differ diff --git a/static/icons/06006D4C.png b/static/icons/06006D4C.png deleted file mode 100755 index 927a9952..00000000 Binary files a/static/icons/06006D4C.png and /dev/null differ diff --git a/static/icons/06006D4D.png b/static/icons/06006D4D.png deleted file mode 100755 index 2d6e179e..00000000 Binary files a/static/icons/06006D4D.png and /dev/null differ diff --git a/static/icons/06006D4E.png b/static/icons/06006D4E.png deleted file mode 100755 index 16e75bc3..00000000 Binary files a/static/icons/06006D4E.png and /dev/null differ diff --git a/static/icons/06006D4F.png b/static/icons/06006D4F.png deleted file mode 100755 index 56649bf9..00000000 Binary files a/static/icons/06006D4F.png and /dev/null differ diff --git a/static/icons/06006D50.png b/static/icons/06006D50.png deleted file mode 100755 index 330fde11..00000000 Binary files a/static/icons/06006D50.png and /dev/null differ diff --git a/static/icons/06006D51.png b/static/icons/06006D51.png deleted file mode 100755 index 461cfcd7..00000000 Binary files a/static/icons/06006D51.png and /dev/null differ diff --git a/static/icons/06006D53.png b/static/icons/06006D53.png deleted file mode 100755 index 61b2ef20..00000000 Binary files a/static/icons/06006D53.png and /dev/null differ diff --git a/static/icons/06006D54.png b/static/icons/06006D54.png deleted file mode 100755 index cf865af8..00000000 Binary files a/static/icons/06006D54.png and /dev/null differ diff --git a/static/icons/06006D55.png b/static/icons/06006D55.png deleted file mode 100755 index b71238a1..00000000 Binary files a/static/icons/06006D55.png and /dev/null differ diff --git a/static/icons/06006D56.png b/static/icons/06006D56.png deleted file mode 100755 index bf4e16ef..00000000 Binary files a/static/icons/06006D56.png and /dev/null differ diff --git a/static/icons/06006D57.png b/static/icons/06006D57.png deleted file mode 100755 index 1d145630..00000000 Binary files a/static/icons/06006D57.png and /dev/null differ diff --git a/static/icons/06006D58.png b/static/icons/06006D58.png deleted file mode 100755 index 7a9b60d0..00000000 Binary files a/static/icons/06006D58.png and /dev/null differ diff --git a/static/icons/06006D59.png b/static/icons/06006D59.png deleted file mode 100755 index 96e710d7..00000000 Binary files a/static/icons/06006D59.png and /dev/null differ diff --git a/static/icons/06006D5A.png b/static/icons/06006D5A.png deleted file mode 100755 index 13db261f..00000000 Binary files a/static/icons/06006D5A.png and /dev/null differ diff --git a/static/icons/06006D5B.png b/static/icons/06006D5B.png deleted file mode 100755 index 31b450c5..00000000 Binary files a/static/icons/06006D5B.png and /dev/null differ diff --git a/static/icons/06006D5C.png b/static/icons/06006D5C.png deleted file mode 100755 index 5d3bac75..00000000 Binary files a/static/icons/06006D5C.png and /dev/null differ diff --git a/static/icons/06006D5D.png b/static/icons/06006D5D.png deleted file mode 100755 index 07c5d573..00000000 Binary files a/static/icons/06006D5D.png and /dev/null differ diff --git a/static/icons/06006D5E.png b/static/icons/06006D5E.png deleted file mode 100755 index e4e7d0bf..00000000 Binary files a/static/icons/06006D5E.png and /dev/null differ diff --git a/static/icons/06006D5F.png b/static/icons/06006D5F.png deleted file mode 100755 index a27f326d..00000000 Binary files a/static/icons/06006D5F.png and /dev/null differ diff --git a/static/icons/06006D60.png b/static/icons/06006D60.png deleted file mode 100755 index 36ba7f1b..00000000 Binary files a/static/icons/06006D60.png and /dev/null differ diff --git a/static/icons/06006D61.png b/static/icons/06006D61.png deleted file mode 100755 index d51a828a..00000000 Binary files a/static/icons/06006D61.png and /dev/null differ diff --git a/static/icons/06006D62.png b/static/icons/06006D62.png deleted file mode 100755 index 956e73a6..00000000 Binary files a/static/icons/06006D62.png and /dev/null differ diff --git a/static/icons/06006D63.png b/static/icons/06006D63.png deleted file mode 100755 index 1f98d7d2..00000000 Binary files a/static/icons/06006D63.png and /dev/null differ diff --git a/static/icons/06006D64.png b/static/icons/06006D64.png deleted file mode 100755 index 6e237b57..00000000 Binary files a/static/icons/06006D64.png and /dev/null differ diff --git a/static/icons/06006D65.png b/static/icons/06006D65.png deleted file mode 100755 index 12ebe2ef..00000000 Binary files a/static/icons/06006D65.png and /dev/null differ diff --git a/static/icons/06006D66.png b/static/icons/06006D66.png deleted file mode 100755 index 479a5081..00000000 Binary files a/static/icons/06006D66.png and /dev/null differ diff --git a/static/icons/06006D67.png b/static/icons/06006D67.png deleted file mode 100755 index d46ffa9f..00000000 Binary files a/static/icons/06006D67.png and /dev/null differ diff --git a/static/icons/06006D68.png b/static/icons/06006D68.png deleted file mode 100755 index fcae417c..00000000 Binary files a/static/icons/06006D68.png and /dev/null differ diff --git a/static/icons/06006D6A.png b/static/icons/06006D6A.png deleted file mode 100755 index f5ff482c..00000000 Binary files a/static/icons/06006D6A.png and /dev/null differ diff --git a/static/icons/06006D6B.png b/static/icons/06006D6B.png deleted file mode 100755 index 258404a1..00000000 Binary files a/static/icons/06006D6B.png and /dev/null differ diff --git a/static/icons/06006D6C.png b/static/icons/06006D6C.png deleted file mode 100755 index 6a24c5e2..00000000 Binary files a/static/icons/06006D6C.png and /dev/null differ diff --git a/static/icons/06006D6D.png b/static/icons/06006D6D.png deleted file mode 100755 index 7ec70179..00000000 Binary files a/static/icons/06006D6D.png and /dev/null differ diff --git a/static/icons/06006D6E.png b/static/icons/06006D6E.png deleted file mode 100755 index 02f423d2..00000000 Binary files a/static/icons/06006D6E.png and /dev/null differ diff --git a/static/icons/06006D6F.png b/static/icons/06006D6F.png deleted file mode 100755 index a2a3568f..00000000 Binary files a/static/icons/06006D6F.png and /dev/null differ diff --git a/static/icons/06006D70.png b/static/icons/06006D70.png deleted file mode 100755 index 76178c36..00000000 Binary files a/static/icons/06006D70.png and /dev/null differ diff --git a/static/icons/06006D71.png b/static/icons/06006D71.png deleted file mode 100755 index fc67879c..00000000 Binary files a/static/icons/06006D71.png and /dev/null differ diff --git a/static/icons/06006D76.png b/static/icons/06006D76.png deleted file mode 100755 index 9539c723..00000000 Binary files a/static/icons/06006D76.png and /dev/null differ diff --git a/static/icons/06006D78.png b/static/icons/06006D78.png deleted file mode 100755 index c9a3a5cf..00000000 Binary files a/static/icons/06006D78.png and /dev/null differ diff --git a/static/icons/06006D79.png b/static/icons/06006D79.png deleted file mode 100755 index f726ee2b..00000000 Binary files a/static/icons/06006D79.png and /dev/null differ diff --git a/static/icons/06006D7B.png b/static/icons/06006D7B.png deleted file mode 100755 index 5420b172..00000000 Binary files a/static/icons/06006D7B.png and /dev/null differ diff --git a/static/icons/06006D7D.png b/static/icons/06006D7D.png deleted file mode 100755 index e7d38fb9..00000000 Binary files a/static/icons/06006D7D.png and /dev/null differ diff --git a/static/icons/06006D7F.png b/static/icons/06006D7F.png deleted file mode 100755 index 9fad63fb..00000000 Binary files a/static/icons/06006D7F.png and /dev/null differ diff --git a/static/icons/06006D81.png b/static/icons/06006D81.png deleted file mode 100755 index 1cda7b05..00000000 Binary files a/static/icons/06006D81.png and /dev/null differ diff --git a/static/icons/06006D83.png b/static/icons/06006D83.png deleted file mode 100755 index 6d835be5..00000000 Binary files a/static/icons/06006D83.png and /dev/null differ diff --git a/static/icons/06006D85.png b/static/icons/06006D85.png deleted file mode 100755 index 8650e6b6..00000000 Binary files a/static/icons/06006D85.png and /dev/null differ diff --git a/static/icons/06006D87.png b/static/icons/06006D87.png deleted file mode 100755 index 32b75f40..00000000 Binary files a/static/icons/06006D87.png and /dev/null differ diff --git a/static/icons/06006D89.png b/static/icons/06006D89.png deleted file mode 100755 index 0e84f826..00000000 Binary files a/static/icons/06006D89.png and /dev/null differ diff --git a/static/icons/06006D8F.png b/static/icons/06006D8F.png deleted file mode 100755 index a0eafa90..00000000 Binary files a/static/icons/06006D8F.png and /dev/null differ diff --git a/static/icons/06006D90.png b/static/icons/06006D90.png deleted file mode 100755 index 4f7bf441..00000000 Binary files a/static/icons/06006D90.png and /dev/null differ diff --git a/static/icons/06006D91.png b/static/icons/06006D91.png deleted file mode 100755 index 73c2a562..00000000 Binary files a/static/icons/06006D91.png and /dev/null differ diff --git a/static/icons/06006D92.png b/static/icons/06006D92.png deleted file mode 100755 index 7c8e8023..00000000 Binary files a/static/icons/06006D92.png and /dev/null differ diff --git a/static/icons/06006D93.png b/static/icons/06006D93.png deleted file mode 100755 index 4470bfcc..00000000 Binary files a/static/icons/06006D93.png and /dev/null differ diff --git a/static/icons/06006D94.png b/static/icons/06006D94.png deleted file mode 100755 index 320bfd27..00000000 Binary files a/static/icons/06006D94.png and /dev/null differ diff --git a/static/icons/06006D95.png b/static/icons/06006D95.png deleted file mode 100755 index f51cc4f7..00000000 Binary files a/static/icons/06006D95.png and /dev/null differ diff --git a/static/icons/06006D96.png b/static/icons/06006D96.png deleted file mode 100755 index 8b7e6cb5..00000000 Binary files a/static/icons/06006D96.png and /dev/null differ diff --git a/static/icons/06006D97.png b/static/icons/06006D97.png deleted file mode 100755 index 4bae79b5..00000000 Binary files a/static/icons/06006D97.png and /dev/null differ diff --git a/static/icons/06006D98.png b/static/icons/06006D98.png deleted file mode 100755 index 861d2934..00000000 Binary files a/static/icons/06006D98.png and /dev/null differ diff --git a/static/icons/06006D9A.png b/static/icons/06006D9A.png deleted file mode 100755 index b2a04f80..00000000 Binary files a/static/icons/06006D9A.png and /dev/null differ diff --git a/static/icons/06006D9B.png b/static/icons/06006D9B.png deleted file mode 100755 index bd1662ae..00000000 Binary files a/static/icons/06006D9B.png and /dev/null differ diff --git a/static/icons/06006D9C.png b/static/icons/06006D9C.png deleted file mode 100755 index 2fd81f5c..00000000 Binary files a/static/icons/06006D9C.png and /dev/null differ diff --git a/static/icons/06006D9D.png b/static/icons/06006D9D.png deleted file mode 100755 index 4be0c59b..00000000 Binary files a/static/icons/06006D9D.png and /dev/null differ diff --git a/static/icons/06006D9E.png b/static/icons/06006D9E.png deleted file mode 100755 index ae252638..00000000 Binary files a/static/icons/06006D9E.png and /dev/null differ diff --git a/static/icons/06006D9F.png b/static/icons/06006D9F.png deleted file mode 100755 index 0d102aad..00000000 Binary files a/static/icons/06006D9F.png and /dev/null differ diff --git a/static/icons/06006DAA.png b/static/icons/06006DAA.png deleted file mode 100755 index cd886823..00000000 Binary files a/static/icons/06006DAA.png and /dev/null differ diff --git a/static/icons/06006DAB.png b/static/icons/06006DAB.png deleted file mode 100755 index 77c677da..00000000 Binary files a/static/icons/06006DAB.png and /dev/null differ diff --git a/static/icons/06006DAC.png b/static/icons/06006DAC.png deleted file mode 100755 index 9b1aad76..00000000 Binary files a/static/icons/06006DAC.png and /dev/null differ diff --git a/static/icons/06006DAD.png b/static/icons/06006DAD.png deleted file mode 100755 index 5cd4cbef..00000000 Binary files a/static/icons/06006DAD.png and /dev/null differ diff --git a/static/icons/06006DAE.png b/static/icons/06006DAE.png deleted file mode 100755 index 50dc1b75..00000000 Binary files a/static/icons/06006DAE.png and /dev/null differ diff --git a/static/icons/06006DAF.png b/static/icons/06006DAF.png deleted file mode 100755 index 286b2772..00000000 Binary files a/static/icons/06006DAF.png and /dev/null differ diff --git a/static/icons/06006DB0.png b/static/icons/06006DB0.png deleted file mode 100755 index 1e66df4d..00000000 Binary files a/static/icons/06006DB0.png and /dev/null differ diff --git a/static/icons/06006DB1.png b/static/icons/06006DB1.png deleted file mode 100755 index 3b9452b2..00000000 Binary files a/static/icons/06006DB1.png and /dev/null differ diff --git a/static/icons/06006DB2.png b/static/icons/06006DB2.png deleted file mode 100755 index 6872579e..00000000 Binary files a/static/icons/06006DB2.png and /dev/null differ diff --git a/static/icons/06006DB3.png b/static/icons/06006DB3.png deleted file mode 100755 index 97e54849..00000000 Binary files a/static/icons/06006DB3.png and /dev/null differ diff --git a/static/icons/06006DB5.png b/static/icons/06006DB5.png deleted file mode 100755 index 1e6415e1..00000000 Binary files a/static/icons/06006DB5.png and /dev/null differ diff --git a/static/icons/06006DB6.png b/static/icons/06006DB6.png deleted file mode 100755 index 7868d73d..00000000 Binary files a/static/icons/06006DB6.png and /dev/null differ diff --git a/static/icons/06006DB7.png b/static/icons/06006DB7.png deleted file mode 100755 index 3f6db18e..00000000 Binary files a/static/icons/06006DB7.png and /dev/null differ diff --git a/static/icons/06006DB8.png b/static/icons/06006DB8.png deleted file mode 100755 index 1a04770f..00000000 Binary files a/static/icons/06006DB8.png and /dev/null differ diff --git a/static/icons/06006DB9.png b/static/icons/06006DB9.png deleted file mode 100755 index 0d54275d..00000000 Binary files a/static/icons/06006DB9.png and /dev/null differ diff --git a/static/icons/06006DBA.png b/static/icons/06006DBA.png deleted file mode 100755 index e5eb85eb..00000000 Binary files a/static/icons/06006DBA.png and /dev/null differ diff --git a/static/icons/06006DBB.png b/static/icons/06006DBB.png deleted file mode 100755 index acb8ec51..00000000 Binary files a/static/icons/06006DBB.png and /dev/null differ diff --git a/static/icons/06006DBC.png b/static/icons/06006DBC.png deleted file mode 100755 index 6a1a5c92..00000000 Binary files a/static/icons/06006DBC.png and /dev/null differ diff --git a/static/icons/06006DBD.png b/static/icons/06006DBD.png deleted file mode 100755 index a88e583a..00000000 Binary files a/static/icons/06006DBD.png and /dev/null differ diff --git a/static/icons/06006DBE.png b/static/icons/06006DBE.png deleted file mode 100755 index 473b4ad1..00000000 Binary files a/static/icons/06006DBE.png and /dev/null differ diff --git a/static/icons/06006DBF.png b/static/icons/06006DBF.png deleted file mode 100755 index 438f7bf8..00000000 Binary files a/static/icons/06006DBF.png and /dev/null differ diff --git a/static/icons/06006DC0.png b/static/icons/06006DC0.png deleted file mode 100755 index 402062ea..00000000 Binary files a/static/icons/06006DC0.png and /dev/null differ diff --git a/static/icons/06006DC1.png b/static/icons/06006DC1.png deleted file mode 100755 index 1c4ff118..00000000 Binary files a/static/icons/06006DC1.png and /dev/null differ diff --git a/static/icons/06006DC2.png b/static/icons/06006DC2.png deleted file mode 100755 index 6385011f..00000000 Binary files a/static/icons/06006DC2.png and /dev/null differ diff --git a/static/icons/06006DC3.png b/static/icons/06006DC3.png deleted file mode 100755 index 2004fdc8..00000000 Binary files a/static/icons/06006DC3.png and /dev/null differ diff --git a/static/icons/06006DC4.png b/static/icons/06006DC4.png deleted file mode 100755 index 07b552f9..00000000 Binary files a/static/icons/06006DC4.png and /dev/null differ diff --git a/static/icons/06006DC5.png b/static/icons/06006DC5.png deleted file mode 100755 index 6b3aff27..00000000 Binary files a/static/icons/06006DC5.png and /dev/null differ diff --git a/static/icons/06006DC6.png b/static/icons/06006DC6.png deleted file mode 100755 index 255f91a5..00000000 Binary files a/static/icons/06006DC6.png and /dev/null differ diff --git a/static/icons/06006DC7.png b/static/icons/06006DC7.png deleted file mode 100755 index 049a8f3e..00000000 Binary files a/static/icons/06006DC7.png and /dev/null differ diff --git a/static/icons/06006DC8.png b/static/icons/06006DC8.png deleted file mode 100755 index 838f4a18..00000000 Binary files a/static/icons/06006DC8.png and /dev/null differ diff --git a/static/icons/06006DC9.png b/static/icons/06006DC9.png deleted file mode 100755 index cab21316..00000000 Binary files a/static/icons/06006DC9.png and /dev/null differ diff --git a/static/icons/06006DCA.png b/static/icons/06006DCA.png deleted file mode 100755 index 6098acfd..00000000 Binary files a/static/icons/06006DCA.png and /dev/null differ diff --git a/static/icons/06006DCB.png b/static/icons/06006DCB.png deleted file mode 100755 index 3ea66a3a..00000000 Binary files a/static/icons/06006DCB.png and /dev/null differ diff --git a/static/icons/06006DCC.png b/static/icons/06006DCC.png deleted file mode 100755 index 0662c31f..00000000 Binary files a/static/icons/06006DCC.png and /dev/null differ diff --git a/static/icons/06006DCD.png b/static/icons/06006DCD.png deleted file mode 100755 index 5a705705..00000000 Binary files a/static/icons/06006DCD.png and /dev/null differ diff --git a/static/icons/06006DCE.png b/static/icons/06006DCE.png deleted file mode 100755 index 2e3a9912..00000000 Binary files a/static/icons/06006DCE.png and /dev/null differ diff --git a/static/icons/06006DCF.png b/static/icons/06006DCF.png deleted file mode 100755 index 4a25e684..00000000 Binary files a/static/icons/06006DCF.png and /dev/null differ diff --git a/static/icons/06006DD0.png b/static/icons/06006DD0.png deleted file mode 100755 index 64617dc8..00000000 Binary files a/static/icons/06006DD0.png and /dev/null differ diff --git a/static/icons/06006DD1.png b/static/icons/06006DD1.png deleted file mode 100755 index 18cf1542..00000000 Binary files a/static/icons/06006DD1.png and /dev/null differ diff --git a/static/icons/06006DD2.png b/static/icons/06006DD2.png deleted file mode 100755 index c718456b..00000000 Binary files a/static/icons/06006DD2.png and /dev/null differ diff --git a/static/icons/06006DD3.png b/static/icons/06006DD3.png deleted file mode 100755 index fa43d5fc..00000000 Binary files a/static/icons/06006DD3.png and /dev/null differ diff --git a/static/icons/06006DD4.png b/static/icons/06006DD4.png deleted file mode 100755 index c84b3af8..00000000 Binary files a/static/icons/06006DD4.png and /dev/null differ diff --git a/static/icons/06006DD5.png b/static/icons/06006DD5.png deleted file mode 100755 index 7fe79cc6..00000000 Binary files a/static/icons/06006DD5.png and /dev/null differ diff --git a/static/icons/06006DD6.png b/static/icons/06006DD6.png deleted file mode 100755 index f7d7ef23..00000000 Binary files a/static/icons/06006DD6.png and /dev/null differ diff --git a/static/icons/06006DD7.png b/static/icons/06006DD7.png deleted file mode 100755 index daa2dcc2..00000000 Binary files a/static/icons/06006DD7.png and /dev/null differ diff --git a/static/icons/06006DD8.png b/static/icons/06006DD8.png deleted file mode 100755 index efd0faff..00000000 Binary files a/static/icons/06006DD8.png and /dev/null differ diff --git a/static/icons/06006DD9.png b/static/icons/06006DD9.png deleted file mode 100755 index 096c5e7e..00000000 Binary files a/static/icons/06006DD9.png and /dev/null differ diff --git a/static/icons/06006DDA.png b/static/icons/06006DDA.png deleted file mode 100755 index c555fe8b..00000000 Binary files a/static/icons/06006DDA.png and /dev/null differ diff --git a/static/icons/06006DDB.png b/static/icons/06006DDB.png deleted file mode 100755 index 2ea95b0d..00000000 Binary files a/static/icons/06006DDB.png and /dev/null differ diff --git a/static/icons/06006DDC.png b/static/icons/06006DDC.png deleted file mode 100755 index 654f3db1..00000000 Binary files a/static/icons/06006DDC.png and /dev/null differ diff --git a/static/icons/06006DDD.png b/static/icons/06006DDD.png deleted file mode 100755 index 6dcc1466..00000000 Binary files a/static/icons/06006DDD.png and /dev/null differ diff --git a/static/icons/06006DDE.png b/static/icons/06006DDE.png deleted file mode 100755 index 412df5d3..00000000 Binary files a/static/icons/06006DDE.png and /dev/null differ diff --git a/static/icons/06006DDF.png b/static/icons/06006DDF.png deleted file mode 100755 index d74f15d2..00000000 Binary files a/static/icons/06006DDF.png and /dev/null differ diff --git a/static/icons/06006DE0.png b/static/icons/06006DE0.png deleted file mode 100755 index 706fbdea..00000000 Binary files a/static/icons/06006DE0.png and /dev/null differ diff --git a/static/icons/06006DE1.png b/static/icons/06006DE1.png deleted file mode 100755 index f22c41fa..00000000 Binary files a/static/icons/06006DE1.png and /dev/null differ diff --git a/static/icons/06006DE2.png b/static/icons/06006DE2.png deleted file mode 100755 index dff4bb47..00000000 Binary files a/static/icons/06006DE2.png and /dev/null differ diff --git a/static/icons/06006DE3.png b/static/icons/06006DE3.png deleted file mode 100755 index 67da66a3..00000000 Binary files a/static/icons/06006DE3.png and /dev/null differ diff --git a/static/icons/06006DE4.png b/static/icons/06006DE4.png deleted file mode 100755 index df2db3dd..00000000 Binary files a/static/icons/06006DE4.png and /dev/null differ diff --git a/static/icons/06006DE5.png b/static/icons/06006DE5.png deleted file mode 100755 index 826c9803..00000000 Binary files a/static/icons/06006DE5.png and /dev/null differ diff --git a/static/icons/06006DE6.png b/static/icons/06006DE6.png deleted file mode 100755 index cbe1e80f..00000000 Binary files a/static/icons/06006DE6.png and /dev/null differ diff --git a/static/icons/06006DE7.png b/static/icons/06006DE7.png deleted file mode 100755 index fe6a8c14..00000000 Binary files a/static/icons/06006DE7.png and /dev/null differ diff --git a/static/icons/06006DE8.png b/static/icons/06006DE8.png deleted file mode 100755 index 49c5d74d..00000000 Binary files a/static/icons/06006DE8.png and /dev/null differ diff --git a/static/icons/06006DE9.png b/static/icons/06006DE9.png deleted file mode 100755 index 2078c16b..00000000 Binary files a/static/icons/06006DE9.png and /dev/null differ diff --git a/static/icons/06006DEA.png b/static/icons/06006DEA.png deleted file mode 100755 index 06d8b623..00000000 Binary files a/static/icons/06006DEA.png and /dev/null differ diff --git a/static/icons/06006DEB.png b/static/icons/06006DEB.png deleted file mode 100755 index 6f21939b..00000000 Binary files a/static/icons/06006DEB.png and /dev/null differ diff --git a/static/icons/06006DEC.png b/static/icons/06006DEC.png deleted file mode 100755 index d840ebbb..00000000 Binary files a/static/icons/06006DEC.png and /dev/null differ diff --git a/static/icons/06006DED.png b/static/icons/06006DED.png deleted file mode 100755 index e1e5c6f0..00000000 Binary files a/static/icons/06006DED.png and /dev/null differ diff --git a/static/icons/06006DEE.png b/static/icons/06006DEE.png deleted file mode 100755 index c7c17283..00000000 Binary files a/static/icons/06006DEE.png and /dev/null differ diff --git a/static/icons/06006DEF.png b/static/icons/06006DEF.png deleted file mode 100755 index 9a44a839..00000000 Binary files a/static/icons/06006DEF.png and /dev/null differ diff --git a/static/icons/06006DF0.png b/static/icons/06006DF0.png deleted file mode 100755 index 8eafa3c7..00000000 Binary files a/static/icons/06006DF0.png and /dev/null differ diff --git a/static/icons/06006DF1.png b/static/icons/06006DF1.png deleted file mode 100755 index 0280701d..00000000 Binary files a/static/icons/06006DF1.png and /dev/null differ diff --git a/static/icons/06006DF2.png b/static/icons/06006DF2.png deleted file mode 100755 index 98166f95..00000000 Binary files a/static/icons/06006DF2.png and /dev/null differ diff --git a/static/icons/06006DF3.png b/static/icons/06006DF3.png deleted file mode 100755 index 60f54115..00000000 Binary files a/static/icons/06006DF3.png and /dev/null differ diff --git a/static/icons/06006DF4.png b/static/icons/06006DF4.png deleted file mode 100755 index 63b4c54d..00000000 Binary files a/static/icons/06006DF4.png and /dev/null differ diff --git a/static/icons/06006DF5.png b/static/icons/06006DF5.png deleted file mode 100755 index 78169aa0..00000000 Binary files a/static/icons/06006DF5.png and /dev/null differ diff --git a/static/icons/06006DF6.png b/static/icons/06006DF6.png deleted file mode 100755 index a6dc1aaf..00000000 Binary files a/static/icons/06006DF6.png and /dev/null differ diff --git a/static/icons/06006DF7.png b/static/icons/06006DF7.png deleted file mode 100755 index 47ce73be..00000000 Binary files a/static/icons/06006DF7.png and /dev/null differ diff --git a/static/icons/06006DF9.png b/static/icons/06006DF9.png deleted file mode 100755 index 9bca39a8..00000000 Binary files a/static/icons/06006DF9.png and /dev/null differ diff --git a/static/icons/06006DFA.png b/static/icons/06006DFA.png deleted file mode 100755 index 3321ce5d..00000000 Binary files a/static/icons/06006DFA.png and /dev/null differ diff --git a/static/icons/06006DFB.png b/static/icons/06006DFB.png deleted file mode 100755 index d8b07fab..00000000 Binary files a/static/icons/06006DFB.png and /dev/null differ diff --git a/static/icons/06006DFC.png b/static/icons/06006DFC.png deleted file mode 100755 index 62566e7e..00000000 Binary files a/static/icons/06006DFC.png and /dev/null differ diff --git a/static/icons/06006DFD.png b/static/icons/06006DFD.png deleted file mode 100755 index c741de12..00000000 Binary files a/static/icons/06006DFD.png and /dev/null differ diff --git a/static/icons/06006DFE.png b/static/icons/06006DFE.png deleted file mode 100755 index 624a9ce5..00000000 Binary files a/static/icons/06006DFE.png and /dev/null differ diff --git a/static/icons/06006DFF.png b/static/icons/06006DFF.png deleted file mode 100755 index 6a804ca8..00000000 Binary files a/static/icons/06006DFF.png and /dev/null differ diff --git a/static/icons/06006E00.png b/static/icons/06006E00.png deleted file mode 100755 index c285fb18..00000000 Binary files a/static/icons/06006E00.png and /dev/null differ diff --git a/static/icons/06006E01.png b/static/icons/06006E01.png deleted file mode 100755 index e2b1816f..00000000 Binary files a/static/icons/06006E01.png and /dev/null differ diff --git a/static/icons/06006E02.png b/static/icons/06006E02.png deleted file mode 100755 index 337bac32..00000000 Binary files a/static/icons/06006E02.png and /dev/null differ diff --git a/static/icons/06006E03.png b/static/icons/06006E03.png deleted file mode 100755 index 1e759d59..00000000 Binary files a/static/icons/06006E03.png and /dev/null differ diff --git a/static/icons/06006E04.png b/static/icons/06006E04.png deleted file mode 100755 index 3d936cf2..00000000 Binary files a/static/icons/06006E04.png and /dev/null differ diff --git a/static/icons/06006E05.png b/static/icons/06006E05.png deleted file mode 100755 index 2686b343..00000000 Binary files a/static/icons/06006E05.png and /dev/null differ diff --git a/static/icons/06006E06.png b/static/icons/06006E06.png deleted file mode 100755 index ab86e625..00000000 Binary files a/static/icons/06006E06.png and /dev/null differ diff --git a/static/icons/06006E07.png b/static/icons/06006E07.png deleted file mode 100755 index c8bf1a0a..00000000 Binary files a/static/icons/06006E07.png and /dev/null differ diff --git a/static/icons/06006E08.png b/static/icons/06006E08.png deleted file mode 100755 index 4b069319..00000000 Binary files a/static/icons/06006E08.png and /dev/null differ diff --git a/static/icons/06006E09.png b/static/icons/06006E09.png deleted file mode 100755 index 75ccf533..00000000 Binary files a/static/icons/06006E09.png and /dev/null differ diff --git a/static/icons/06006E0A.png b/static/icons/06006E0A.png deleted file mode 100755 index 7823404d..00000000 Binary files a/static/icons/06006E0A.png and /dev/null differ diff --git a/static/icons/06006E0B.png b/static/icons/06006E0B.png deleted file mode 100755 index eb60df4d..00000000 Binary files a/static/icons/06006E0B.png and /dev/null differ diff --git a/static/icons/06006E0C.png b/static/icons/06006E0C.png deleted file mode 100755 index c39aca46..00000000 Binary files a/static/icons/06006E0C.png and /dev/null differ diff --git a/static/icons/06006E0D.png b/static/icons/06006E0D.png deleted file mode 100755 index 4d945e0b..00000000 Binary files a/static/icons/06006E0D.png and /dev/null differ diff --git a/static/icons/06006E0E.png b/static/icons/06006E0E.png deleted file mode 100755 index 50dd776e..00000000 Binary files a/static/icons/06006E0E.png and /dev/null differ diff --git a/static/icons/06006E0F.png b/static/icons/06006E0F.png deleted file mode 100755 index fdf1c699..00000000 Binary files a/static/icons/06006E0F.png and /dev/null differ diff --git a/static/icons/06006E10.png b/static/icons/06006E10.png deleted file mode 100755 index 56de17fe..00000000 Binary files a/static/icons/06006E10.png and /dev/null differ diff --git a/static/icons/06006E12.png b/static/icons/06006E12.png deleted file mode 100755 index fc67879c..00000000 Binary files a/static/icons/06006E12.png and /dev/null differ diff --git a/static/icons/06006E13.png b/static/icons/06006E13.png deleted file mode 100755 index 85998a99..00000000 Binary files a/static/icons/06006E13.png and /dev/null differ diff --git a/static/icons/06006E14.png b/static/icons/06006E14.png deleted file mode 100755 index 50c4c61d..00000000 Binary files a/static/icons/06006E14.png and /dev/null differ diff --git a/static/icons/06006E19.png b/static/icons/06006E19.png deleted file mode 100755 index 15e78643..00000000 Binary files a/static/icons/06006E19.png and /dev/null differ diff --git a/static/icons/06006E1A.png b/static/icons/06006E1A.png deleted file mode 100755 index eae2cf10..00000000 Binary files a/static/icons/06006E1A.png and /dev/null differ diff --git a/static/icons/06006E1B.png b/static/icons/06006E1B.png deleted file mode 100755 index aaf17ac6..00000000 Binary files a/static/icons/06006E1B.png and /dev/null differ diff --git a/static/icons/06006E1C.png b/static/icons/06006E1C.png deleted file mode 100755 index f9277a8c..00000000 Binary files a/static/icons/06006E1C.png and /dev/null differ diff --git a/static/icons/06006E20.png b/static/icons/06006E20.png deleted file mode 100755 index b528ee17..00000000 Binary files a/static/icons/06006E20.png and /dev/null differ diff --git a/static/icons/06006E21.png b/static/icons/06006E21.png deleted file mode 100755 index da440fad..00000000 Binary files a/static/icons/06006E21.png and /dev/null differ diff --git a/static/icons/06006E23.png b/static/icons/06006E23.png deleted file mode 100755 index 9fa49209..00000000 Binary files a/static/icons/06006E23.png and /dev/null differ diff --git a/static/icons/06006E25.png b/static/icons/06006E25.png deleted file mode 100755 index 3f94c217..00000000 Binary files a/static/icons/06006E25.png and /dev/null differ diff --git a/static/icons/06006E27.png b/static/icons/06006E27.png deleted file mode 100755 index 09a92536..00000000 Binary files a/static/icons/06006E27.png and /dev/null differ diff --git a/static/icons/06006E28.png b/static/icons/06006E28.png deleted file mode 100755 index da3b39e2..00000000 Binary files a/static/icons/06006E28.png and /dev/null differ diff --git a/static/icons/06006E2A.png b/static/icons/06006E2A.png deleted file mode 100755 index d93f3219..00000000 Binary files a/static/icons/06006E2A.png and /dev/null differ diff --git a/static/icons/06006E2B.png b/static/icons/06006E2B.png deleted file mode 100755 index 8f4f06d7..00000000 Binary files a/static/icons/06006E2B.png and /dev/null differ diff --git a/static/icons/06006E2C.png b/static/icons/06006E2C.png deleted file mode 100755 index fcbdbfbc..00000000 Binary files a/static/icons/06006E2C.png and /dev/null differ diff --git a/static/icons/06006E2D.png b/static/icons/06006E2D.png deleted file mode 100755 index e8343fe7..00000000 Binary files a/static/icons/06006E2D.png and /dev/null differ diff --git a/static/icons/06006E2E.png b/static/icons/06006E2E.png deleted file mode 100755 index 58eac104..00000000 Binary files a/static/icons/06006E2E.png and /dev/null differ diff --git a/static/icons/06006E2F.png b/static/icons/06006E2F.png deleted file mode 100755 index af2b235e..00000000 Binary files a/static/icons/06006E2F.png and /dev/null differ diff --git a/static/icons/06006E30.png b/static/icons/06006E30.png deleted file mode 100755 index 21e94c9b..00000000 Binary files a/static/icons/06006E30.png and /dev/null differ diff --git a/static/icons/06006E31.png b/static/icons/06006E31.png deleted file mode 100755 index 83631b82..00000000 Binary files a/static/icons/06006E31.png and /dev/null differ diff --git a/static/icons/06006E32.png b/static/icons/06006E32.png deleted file mode 100755 index 09bfa2aa..00000000 Binary files a/static/icons/06006E32.png and /dev/null differ diff --git a/static/icons/06006E33.png b/static/icons/06006E33.png deleted file mode 100755 index afdd6d91..00000000 Binary files a/static/icons/06006E33.png and /dev/null differ diff --git a/static/icons/06006E34.png b/static/icons/06006E34.png deleted file mode 100755 index 640be505..00000000 Binary files a/static/icons/06006E34.png and /dev/null differ diff --git a/static/icons/06006E35.png b/static/icons/06006E35.png deleted file mode 100755 index 994892c0..00000000 Binary files a/static/icons/06006E35.png and /dev/null differ diff --git a/static/icons/06006E36.png b/static/icons/06006E36.png deleted file mode 100755 index 55fdfa6a..00000000 Binary files a/static/icons/06006E36.png and /dev/null differ diff --git a/static/icons/06006E37.png b/static/icons/06006E37.png deleted file mode 100755 index 9d3abc8b..00000000 Binary files a/static/icons/06006E37.png and /dev/null differ diff --git a/static/icons/06006E5C.png b/static/icons/06006E5C.png deleted file mode 100755 index f786641f..00000000 Binary files a/static/icons/06006E5C.png and /dev/null differ diff --git a/static/icons/06006E5F.png b/static/icons/06006E5F.png deleted file mode 100755 index 138f0823..00000000 Binary files a/static/icons/06006E5F.png and /dev/null differ diff --git a/static/icons/06006E60.png b/static/icons/06006E60.png deleted file mode 100755 index a77453f3..00000000 Binary files a/static/icons/06006E60.png and /dev/null differ diff --git a/static/icons/06006E61.png b/static/icons/06006E61.png deleted file mode 100755 index 33f5c135..00000000 Binary files a/static/icons/06006E61.png and /dev/null differ diff --git a/static/icons/06006E62.png b/static/icons/06006E62.png deleted file mode 100755 index 12b10c35..00000000 Binary files a/static/icons/06006E62.png and /dev/null differ diff --git a/static/icons/06006E63.png b/static/icons/06006E63.png deleted file mode 100755 index 326dc9e2..00000000 Binary files a/static/icons/06006E63.png and /dev/null differ diff --git a/static/icons/06006E64.png b/static/icons/06006E64.png deleted file mode 100755 index 50470b2b..00000000 Binary files a/static/icons/06006E64.png and /dev/null differ diff --git a/static/icons/06006E66.png b/static/icons/06006E66.png deleted file mode 100755 index e3922efe..00000000 Binary files a/static/icons/06006E66.png and /dev/null differ diff --git a/static/icons/06006E67.png b/static/icons/06006E67.png deleted file mode 100755 index b4a0e890..00000000 Binary files a/static/icons/06006E67.png and /dev/null differ diff --git a/static/icons/06006E69.png b/static/icons/06006E69.png deleted file mode 100755 index 4f44d13c..00000000 Binary files a/static/icons/06006E69.png and /dev/null differ diff --git a/static/icons/06006E6E.png b/static/icons/06006E6E.png deleted file mode 100755 index 8c6d5570..00000000 Binary files a/static/icons/06006E6E.png and /dev/null differ diff --git a/static/icons/06006E6F.png b/static/icons/06006E6F.png deleted file mode 100755 index 61b9edcc..00000000 Binary files a/static/icons/06006E6F.png and /dev/null differ diff --git a/static/icons/06006E70.png b/static/icons/06006E70.png deleted file mode 100755 index 55f12fde..00000000 Binary files a/static/icons/06006E70.png and /dev/null differ diff --git a/static/icons/06006E71.png b/static/icons/06006E71.png deleted file mode 100755 index 4850ba33..00000000 Binary files a/static/icons/06006E71.png and /dev/null differ diff --git a/static/icons/06006E72.png b/static/icons/06006E72.png deleted file mode 100755 index b5b62f8f..00000000 Binary files a/static/icons/06006E72.png and /dev/null differ diff --git a/static/icons/06006E73.png b/static/icons/06006E73.png deleted file mode 100755 index b97e5b2d..00000000 Binary files a/static/icons/06006E73.png and /dev/null differ diff --git a/static/icons/06006E74.png b/static/icons/06006E74.png deleted file mode 100755 index 6494d506..00000000 Binary files a/static/icons/06006E74.png and /dev/null differ diff --git a/static/icons/06006E75.png b/static/icons/06006E75.png deleted file mode 100755 index 393315c1..00000000 Binary files a/static/icons/06006E75.png and /dev/null differ diff --git a/static/icons/06006E76.png b/static/icons/06006E76.png deleted file mode 100755 index f86290cb..00000000 Binary files a/static/icons/06006E76.png and /dev/null differ diff --git a/static/icons/06006E77.png b/static/icons/06006E77.png deleted file mode 100755 index 61b9edcc..00000000 Binary files a/static/icons/06006E77.png and /dev/null differ diff --git a/static/icons/06006E78.png b/static/icons/06006E78.png deleted file mode 100755 index 87e289c0..00000000 Binary files a/static/icons/06006E78.png and /dev/null differ diff --git a/static/icons/06006E79.png b/static/icons/06006E79.png deleted file mode 100755 index 444d8d32..00000000 Binary files a/static/icons/06006E79.png and /dev/null differ diff --git a/static/icons/06006E7A.png b/static/icons/06006E7A.png deleted file mode 100755 index 577b6718..00000000 Binary files a/static/icons/06006E7A.png and /dev/null differ diff --git a/static/icons/06006E7B.png b/static/icons/06006E7B.png deleted file mode 100755 index 779a36fc..00000000 Binary files a/static/icons/06006E7B.png and /dev/null differ diff --git a/static/icons/06006E7C.png b/static/icons/06006E7C.png deleted file mode 100755 index 24b7a7d7..00000000 Binary files a/static/icons/06006E7C.png and /dev/null differ diff --git a/static/icons/06006E7F.png b/static/icons/06006E7F.png deleted file mode 100755 index a0f32688..00000000 Binary files a/static/icons/06006E7F.png and /dev/null differ diff --git a/static/icons/06006E80.png b/static/icons/06006E80.png deleted file mode 100755 index 47c7035d..00000000 Binary files a/static/icons/06006E80.png and /dev/null differ diff --git a/static/icons/06006E81.png b/static/icons/06006E81.png deleted file mode 100755 index 3c355973..00000000 Binary files a/static/icons/06006E81.png and /dev/null differ diff --git a/static/icons/06006E82.png b/static/icons/06006E82.png deleted file mode 100755 index 93825229..00000000 Binary files a/static/icons/06006E82.png and /dev/null differ diff --git a/static/icons/06006E85.png b/static/icons/06006E85.png deleted file mode 100755 index 6c5b856c..00000000 Binary files a/static/icons/06006E85.png and /dev/null differ diff --git a/static/icons/06006E86.png b/static/icons/06006E86.png deleted file mode 100755 index c7c58c12..00000000 Binary files a/static/icons/06006E86.png and /dev/null differ diff --git a/static/icons/06006E87.png b/static/icons/06006E87.png deleted file mode 100755 index 5018238f..00000000 Binary files a/static/icons/06006E87.png and /dev/null differ diff --git a/static/icons/06006E88.png b/static/icons/06006E88.png deleted file mode 100755 index e5c4296a..00000000 Binary files a/static/icons/06006E88.png and /dev/null differ diff --git a/static/icons/06006E89.png b/static/icons/06006E89.png deleted file mode 100755 index 1817ead7..00000000 Binary files a/static/icons/06006E89.png and /dev/null differ diff --git a/static/icons/06006E8A.png b/static/icons/06006E8A.png deleted file mode 100755 index aab52162..00000000 Binary files a/static/icons/06006E8A.png and /dev/null differ diff --git a/static/icons/06006E8B.png b/static/icons/06006E8B.png deleted file mode 100755 index 39e11d6e..00000000 Binary files a/static/icons/06006E8B.png and /dev/null differ diff --git a/static/icons/06006E8C.png b/static/icons/06006E8C.png deleted file mode 100755 index a25d997f..00000000 Binary files a/static/icons/06006E8C.png and /dev/null differ diff --git a/static/icons/06006E98.png b/static/icons/06006E98.png deleted file mode 100755 index 4345fb1a..00000000 Binary files a/static/icons/06006E98.png and /dev/null differ diff --git a/static/icons/06006E99.png b/static/icons/06006E99.png deleted file mode 100755 index a5698db8..00000000 Binary files a/static/icons/06006E99.png and /dev/null differ diff --git a/static/icons/06006E9A.png b/static/icons/06006E9A.png deleted file mode 100755 index 02f28379..00000000 Binary files a/static/icons/06006E9A.png and /dev/null differ diff --git a/static/icons/06006E9B.png b/static/icons/06006E9B.png deleted file mode 100755 index 1fe96395..00000000 Binary files a/static/icons/06006E9B.png and /dev/null differ diff --git a/static/icons/06006E9C.png b/static/icons/06006E9C.png deleted file mode 100755 index 543e00f9..00000000 Binary files a/static/icons/06006E9C.png and /dev/null differ diff --git a/static/icons/06006E9D.png b/static/icons/06006E9D.png deleted file mode 100755 index bc7841c3..00000000 Binary files a/static/icons/06006E9D.png and /dev/null differ diff --git a/static/icons/06006E9E.png b/static/icons/06006E9E.png deleted file mode 100755 index 2fcbb6d8..00000000 Binary files a/static/icons/06006E9E.png and /dev/null differ diff --git a/static/icons/06006E9F.png b/static/icons/06006E9F.png deleted file mode 100755 index abfe4a49..00000000 Binary files a/static/icons/06006E9F.png and /dev/null differ diff --git a/static/icons/06006EA0.png b/static/icons/06006EA0.png deleted file mode 100755 index 72531c0e..00000000 Binary files a/static/icons/06006EA0.png and /dev/null differ diff --git a/static/icons/06006EA1.png b/static/icons/06006EA1.png deleted file mode 100755 index f37fec15..00000000 Binary files a/static/icons/06006EA1.png and /dev/null differ diff --git a/static/icons/06006EA2.png b/static/icons/06006EA2.png deleted file mode 100755 index 09b99960..00000000 Binary files a/static/icons/06006EA2.png and /dev/null differ diff --git a/static/icons/06006EA3.png b/static/icons/06006EA3.png deleted file mode 100755 index 8727befc..00000000 Binary files a/static/icons/06006EA3.png and /dev/null differ diff --git a/static/icons/06006EA4.png b/static/icons/06006EA4.png deleted file mode 100755 index 4884df84..00000000 Binary files a/static/icons/06006EA4.png and /dev/null differ diff --git a/static/icons/06006EA5.png b/static/icons/06006EA5.png deleted file mode 100755 index 9f3f569d..00000000 Binary files a/static/icons/06006EA5.png and /dev/null differ diff --git a/static/icons/06006EA6.png b/static/icons/06006EA6.png deleted file mode 100755 index 7febb747..00000000 Binary files a/static/icons/06006EA6.png and /dev/null differ diff --git a/static/icons/06006EA7.png b/static/icons/06006EA7.png deleted file mode 100755 index 7313af83..00000000 Binary files a/static/icons/06006EA7.png and /dev/null differ diff --git a/static/icons/06006EA8.png b/static/icons/06006EA8.png deleted file mode 100755 index a92ef8b7..00000000 Binary files a/static/icons/06006EA8.png and /dev/null differ diff --git a/static/icons/06006EA9.png b/static/icons/06006EA9.png deleted file mode 100755 index 30a68532..00000000 Binary files a/static/icons/06006EA9.png and /dev/null differ diff --git a/static/icons/06006EAA.png b/static/icons/06006EAA.png deleted file mode 100755 index e5bf921f..00000000 Binary files a/static/icons/06006EAA.png and /dev/null differ diff --git a/static/icons/06006EAB.png b/static/icons/06006EAB.png deleted file mode 100755 index 80ea0454..00000000 Binary files a/static/icons/06006EAB.png and /dev/null differ diff --git a/static/icons/06006EAC.png b/static/icons/06006EAC.png deleted file mode 100755 index 6a4e3c1c..00000000 Binary files a/static/icons/06006EAC.png and /dev/null differ diff --git a/static/icons/06006EAD.png b/static/icons/06006EAD.png deleted file mode 100755 index 5b51c586..00000000 Binary files a/static/icons/06006EAD.png and /dev/null differ diff --git a/static/icons/06006EAE.png b/static/icons/06006EAE.png deleted file mode 100755 index 21f4e3d9..00000000 Binary files a/static/icons/06006EAE.png and /dev/null differ diff --git a/static/icons/06006EB6.png b/static/icons/06006EB6.png deleted file mode 100755 index 3a6042dc..00000000 Binary files a/static/icons/06006EB6.png and /dev/null differ diff --git a/static/icons/06006EB7.png b/static/icons/06006EB7.png deleted file mode 100755 index fa55d6fa..00000000 Binary files a/static/icons/06006EB7.png and /dev/null differ diff --git a/static/icons/06006EB9.png b/static/icons/06006EB9.png deleted file mode 100755 index 1d786cea..00000000 Binary files a/static/icons/06006EB9.png and /dev/null differ diff --git a/static/icons/06006EBA.png b/static/icons/06006EBA.png deleted file mode 100755 index bf66e904..00000000 Binary files a/static/icons/06006EBA.png and /dev/null differ diff --git a/static/icons/06006EBB.png b/static/icons/06006EBB.png deleted file mode 100755 index 4699c672..00000000 Binary files a/static/icons/06006EBB.png and /dev/null differ diff --git a/static/icons/06006EBC.png b/static/icons/06006EBC.png deleted file mode 100755 index 4defcb4e..00000000 Binary files a/static/icons/06006EBC.png and /dev/null differ diff --git a/static/icons/06006EE6.png b/static/icons/06006EE6.png deleted file mode 100755 index b5fe49d2..00000000 Binary files a/static/icons/06006EE6.png and /dev/null differ diff --git a/static/icons/06006EE7.png b/static/icons/06006EE7.png deleted file mode 100755 index 8c42dcf7..00000000 Binary files a/static/icons/06006EE7.png and /dev/null differ diff --git a/static/icons/06006EE8.png b/static/icons/06006EE8.png deleted file mode 100755 index 959e00b5..00000000 Binary files a/static/icons/06006EE8.png and /dev/null differ diff --git a/static/icons/06006EE9.png b/static/icons/06006EE9.png deleted file mode 100755 index ff25c9ea..00000000 Binary files a/static/icons/06006EE9.png and /dev/null differ diff --git a/static/icons/06006EEA.png b/static/icons/06006EEA.png deleted file mode 100755 index 603f7fbf..00000000 Binary files a/static/icons/06006EEA.png and /dev/null differ diff --git a/static/icons/06006EEC.png b/static/icons/06006EEC.png deleted file mode 100755 index a38428ba..00000000 Binary files a/static/icons/06006EEC.png and /dev/null differ diff --git a/static/icons/06006EED.png b/static/icons/06006EED.png deleted file mode 100755 index 6deeb5d1..00000000 Binary files a/static/icons/06006EED.png and /dev/null differ diff --git a/static/icons/06006EF0.png b/static/icons/06006EF0.png deleted file mode 100755 index 8b7caad9..00000000 Binary files a/static/icons/06006EF0.png and /dev/null differ diff --git a/static/icons/06006EF1.png b/static/icons/06006EF1.png deleted file mode 100755 index 0079a0ac..00000000 Binary files a/static/icons/06006EF1.png and /dev/null differ diff --git a/static/icons/06006EF2.png b/static/icons/06006EF2.png deleted file mode 100755 index 21888773..00000000 Binary files a/static/icons/06006EF2.png and /dev/null differ diff --git a/static/icons/06006EFE.png b/static/icons/06006EFE.png deleted file mode 100755 index d444122f..00000000 Binary files a/static/icons/06006EFE.png and /dev/null differ diff --git a/static/icons/06006EFF.png b/static/icons/06006EFF.png deleted file mode 100755 index 2e931153..00000000 Binary files a/static/icons/06006EFF.png and /dev/null differ diff --git a/static/icons/06006F00.png b/static/icons/06006F00.png deleted file mode 100755 index ff43349b..00000000 Binary files a/static/icons/06006F00.png and /dev/null differ diff --git a/static/icons/06006F01.png b/static/icons/06006F01.png deleted file mode 100755 index de45e105..00000000 Binary files a/static/icons/06006F01.png and /dev/null differ diff --git a/static/icons/06006F02.png b/static/icons/06006F02.png deleted file mode 100755 index 37b2b0b3..00000000 Binary files a/static/icons/06006F02.png and /dev/null differ diff --git a/static/icons/06006F03.png b/static/icons/06006F03.png deleted file mode 100755 index df39405c..00000000 Binary files a/static/icons/06006F03.png and /dev/null differ diff --git a/static/icons/06006F04.png b/static/icons/06006F04.png deleted file mode 100755 index 63dd25c8..00000000 Binary files a/static/icons/06006F04.png and /dev/null differ diff --git a/static/icons/06006F05.png b/static/icons/06006F05.png deleted file mode 100755 index 391d883f..00000000 Binary files a/static/icons/06006F05.png and /dev/null differ diff --git a/static/icons/06006F08.png b/static/icons/06006F08.png deleted file mode 100755 index a99e161e..00000000 Binary files a/static/icons/06006F08.png and /dev/null differ diff --git a/static/icons/06006F09.png b/static/icons/06006F09.png deleted file mode 100755 index 89da6421..00000000 Binary files a/static/icons/06006F09.png and /dev/null differ diff --git a/static/icons/06006F0A.png b/static/icons/06006F0A.png deleted file mode 100755 index 40514926..00000000 Binary files a/static/icons/06006F0A.png and /dev/null differ diff --git a/static/icons/06006F0B.png b/static/icons/06006F0B.png deleted file mode 100755 index 89a1f26a..00000000 Binary files a/static/icons/06006F0B.png and /dev/null differ diff --git a/static/icons/06006F0C.png b/static/icons/06006F0C.png deleted file mode 100755 index f996b0d4..00000000 Binary files a/static/icons/06006F0C.png and /dev/null differ diff --git a/static/icons/06006F0D.png b/static/icons/06006F0D.png deleted file mode 100755 index e25abcbe..00000000 Binary files a/static/icons/06006F0D.png and /dev/null differ diff --git a/static/icons/06006F0E.png b/static/icons/06006F0E.png deleted file mode 100755 index e12b1d1b..00000000 Binary files a/static/icons/06006F0E.png and /dev/null differ diff --git a/static/icons/06006F0F.png b/static/icons/06006F0F.png deleted file mode 100755 index c72d72dd..00000000 Binary files a/static/icons/06006F0F.png and /dev/null differ diff --git a/static/icons/06006F10.png b/static/icons/06006F10.png deleted file mode 100755 index 90a8bcd1..00000000 Binary files a/static/icons/06006F10.png and /dev/null differ diff --git a/static/icons/06006F11.png b/static/icons/06006F11.png deleted file mode 100755 index 0c336b66..00000000 Binary files a/static/icons/06006F11.png and /dev/null differ diff --git a/static/icons/06006F12.png b/static/icons/06006F12.png deleted file mode 100755 index b4561ee5..00000000 Binary files a/static/icons/06006F12.png and /dev/null differ diff --git a/static/icons/06006F13.png b/static/icons/06006F13.png deleted file mode 100755 index e930daed..00000000 Binary files a/static/icons/06006F13.png and /dev/null differ diff --git a/static/icons/06006F14.png b/static/icons/06006F14.png deleted file mode 100755 index 8a92ae1e..00000000 Binary files a/static/icons/06006F14.png and /dev/null differ diff --git a/static/icons/06006F15.png b/static/icons/06006F15.png deleted file mode 100755 index 4a746f5f..00000000 Binary files a/static/icons/06006F15.png and /dev/null differ diff --git a/static/icons/06006F16.png b/static/icons/06006F16.png deleted file mode 100755 index d51c1e90..00000000 Binary files a/static/icons/06006F16.png and /dev/null differ diff --git a/static/icons/06006F17.png b/static/icons/06006F17.png deleted file mode 100755 index b892db51..00000000 Binary files a/static/icons/06006F17.png and /dev/null differ diff --git a/static/icons/06006F18.png b/static/icons/06006F18.png deleted file mode 100755 index cc26ea09..00000000 Binary files a/static/icons/06006F18.png and /dev/null differ diff --git a/static/icons/06006F19.png b/static/icons/06006F19.png deleted file mode 100755 index a0c5052d..00000000 Binary files a/static/icons/06006F19.png and /dev/null differ diff --git a/static/icons/06006F1A.png b/static/icons/06006F1A.png deleted file mode 100755 index 8d81fab6..00000000 Binary files a/static/icons/06006F1A.png and /dev/null differ diff --git a/static/icons/06006F1B.png b/static/icons/06006F1B.png deleted file mode 100755 index d89cd2ee..00000000 Binary files a/static/icons/06006F1B.png and /dev/null differ diff --git a/static/icons/06006F1C.png b/static/icons/06006F1C.png deleted file mode 100755 index e26e793c..00000000 Binary files a/static/icons/06006F1C.png and /dev/null differ diff --git a/static/icons/06006F1D.png b/static/icons/06006F1D.png deleted file mode 100755 index ef9bfa26..00000000 Binary files a/static/icons/06006F1D.png and /dev/null differ diff --git a/static/icons/06006F1E.png b/static/icons/06006F1E.png deleted file mode 100755 index 8c055da3..00000000 Binary files a/static/icons/06006F1E.png and /dev/null differ diff --git a/static/icons/06006F1F.png b/static/icons/06006F1F.png deleted file mode 100755 index 305e2b87..00000000 Binary files a/static/icons/06006F1F.png and /dev/null differ diff --git a/static/icons/06006F20.png b/static/icons/06006F20.png deleted file mode 100755 index edb323ba..00000000 Binary files a/static/icons/06006F20.png and /dev/null differ diff --git a/static/icons/06006F21.png b/static/icons/06006F21.png deleted file mode 100755 index c35eb7e0..00000000 Binary files a/static/icons/06006F21.png and /dev/null differ diff --git a/static/icons/06006F22.png b/static/icons/06006F22.png deleted file mode 100755 index 42df7cf4..00000000 Binary files a/static/icons/06006F22.png and /dev/null differ diff --git a/static/icons/06006F23.png b/static/icons/06006F23.png deleted file mode 100755 index 41846d51..00000000 Binary files a/static/icons/06006F23.png and /dev/null differ diff --git a/static/icons/06006F24.png b/static/icons/06006F24.png deleted file mode 100755 index de3d0395..00000000 Binary files a/static/icons/06006F24.png and /dev/null differ diff --git a/static/icons/06006F25.png b/static/icons/06006F25.png deleted file mode 100755 index 6c636410..00000000 Binary files a/static/icons/06006F25.png and /dev/null differ diff --git a/static/icons/06006F26.png b/static/icons/06006F26.png deleted file mode 100755 index 2ad1f21c..00000000 Binary files a/static/icons/06006F26.png and /dev/null differ diff --git a/static/icons/06006F27.png b/static/icons/06006F27.png deleted file mode 100755 index be5cffe4..00000000 Binary files a/static/icons/06006F27.png and /dev/null differ diff --git a/static/icons/06006F28.png b/static/icons/06006F28.png deleted file mode 100755 index a409a2b6..00000000 Binary files a/static/icons/06006F28.png and /dev/null differ diff --git a/static/icons/06006F29.png b/static/icons/06006F29.png deleted file mode 100755 index a51cb9e7..00000000 Binary files a/static/icons/06006F29.png and /dev/null differ diff --git a/static/icons/06006F2A.png b/static/icons/06006F2A.png deleted file mode 100755 index 6a4f25b7..00000000 Binary files a/static/icons/06006F2A.png and /dev/null differ diff --git a/static/icons/06006F2B.png b/static/icons/06006F2B.png deleted file mode 100755 index 1768d5bc..00000000 Binary files a/static/icons/06006F2B.png and /dev/null differ diff --git a/static/icons/06006F2C.png b/static/icons/06006F2C.png deleted file mode 100755 index b4c80b8a..00000000 Binary files a/static/icons/06006F2C.png and /dev/null differ diff --git a/static/icons/06006F2D.png b/static/icons/06006F2D.png deleted file mode 100755 index bd4e0aa9..00000000 Binary files a/static/icons/06006F2D.png and /dev/null differ diff --git a/static/icons/06006F2E.png b/static/icons/06006F2E.png deleted file mode 100755 index 245c31fc..00000000 Binary files a/static/icons/06006F2E.png and /dev/null differ diff --git a/static/icons/06006F2F.png b/static/icons/06006F2F.png deleted file mode 100755 index 4271bc45..00000000 Binary files a/static/icons/06006F2F.png and /dev/null differ diff --git a/static/icons/06006F30.png b/static/icons/06006F30.png deleted file mode 100755 index 43ccd623..00000000 Binary files a/static/icons/06006F30.png and /dev/null differ diff --git a/static/icons/06006F31.png b/static/icons/06006F31.png deleted file mode 100755 index d2f0f2e7..00000000 Binary files a/static/icons/06006F31.png and /dev/null differ diff --git a/static/icons/06006F33.png b/static/icons/06006F33.png deleted file mode 100755 index fba40d27..00000000 Binary files a/static/icons/06006F33.png and /dev/null differ diff --git a/static/icons/06006F34.png b/static/icons/06006F34.png deleted file mode 100755 index cd3f8eae..00000000 Binary files a/static/icons/06006F34.png and /dev/null differ diff --git a/static/icons/06006F35.png b/static/icons/06006F35.png deleted file mode 100755 index 21662e15..00000000 Binary files a/static/icons/06006F35.png and /dev/null differ diff --git a/static/icons/06006F46.png b/static/icons/06006F46.png deleted file mode 100755 index 259fb66b..00000000 Binary files a/static/icons/06006F46.png and /dev/null differ diff --git a/static/icons/06006F47.png b/static/icons/06006F47.png deleted file mode 100755 index 609c71b3..00000000 Binary files a/static/icons/06006F47.png and /dev/null differ diff --git a/static/icons/06006F48.png b/static/icons/06006F48.png deleted file mode 100755 index 50824844..00000000 Binary files a/static/icons/06006F48.png and /dev/null differ diff --git a/static/icons/06006F49.png b/static/icons/06006F49.png deleted file mode 100755 index 396c7aa5..00000000 Binary files a/static/icons/06006F49.png and /dev/null differ diff --git a/static/icons/06006F4A.png b/static/icons/06006F4A.png deleted file mode 100755 index b097fb03..00000000 Binary files a/static/icons/06006F4A.png and /dev/null differ diff --git a/static/icons/06006F4B.png b/static/icons/06006F4B.png deleted file mode 100755 index d3698586..00000000 Binary files a/static/icons/06006F4B.png and /dev/null differ diff --git a/static/icons/06006F4C.png b/static/icons/06006F4C.png deleted file mode 100755 index 6acf8931..00000000 Binary files a/static/icons/06006F4C.png and /dev/null differ diff --git a/static/icons/06006F4D.png b/static/icons/06006F4D.png deleted file mode 100755 index a7aec50e..00000000 Binary files a/static/icons/06006F4D.png and /dev/null differ diff --git a/static/icons/06006F4E.png b/static/icons/06006F4E.png deleted file mode 100755 index 21037357..00000000 Binary files a/static/icons/06006F4E.png and /dev/null differ diff --git a/static/icons/06006F4F.png b/static/icons/06006F4F.png deleted file mode 100755 index 4276dc7f..00000000 Binary files a/static/icons/06006F4F.png and /dev/null differ diff --git a/static/icons/06006F50.png b/static/icons/06006F50.png deleted file mode 100755 index 4b09167d..00000000 Binary files a/static/icons/06006F50.png and /dev/null differ diff --git a/static/icons/06006F51.png b/static/icons/06006F51.png deleted file mode 100755 index b7f382f6..00000000 Binary files a/static/icons/06006F51.png and /dev/null differ diff --git a/static/icons/06006F52.png b/static/icons/06006F52.png deleted file mode 100755 index 4ceb4f6c..00000000 Binary files a/static/icons/06006F52.png and /dev/null differ diff --git a/static/icons/06006F53.png b/static/icons/06006F53.png deleted file mode 100755 index 1146bb07..00000000 Binary files a/static/icons/06006F53.png and /dev/null differ diff --git a/static/icons/06006F54.png b/static/icons/06006F54.png deleted file mode 100755 index 8f76cde8..00000000 Binary files a/static/icons/06006F54.png and /dev/null differ diff --git a/static/icons/06006F55.png b/static/icons/06006F55.png deleted file mode 100755 index 243e641f..00000000 Binary files a/static/icons/06006F55.png and /dev/null differ diff --git a/static/icons/06006F5C.png b/static/icons/06006F5C.png deleted file mode 100755 index 219b9e6e..00000000 Binary files a/static/icons/06006F5C.png and /dev/null differ diff --git a/static/icons/06006F5D.png b/static/icons/06006F5D.png deleted file mode 100755 index 4360aa77..00000000 Binary files a/static/icons/06006F5D.png and /dev/null differ diff --git a/static/icons/06006F5E.png b/static/icons/06006F5E.png deleted file mode 100755 index 0b0fe51b..00000000 Binary files a/static/icons/06006F5E.png and /dev/null differ diff --git a/static/icons/06006F5F.png b/static/icons/06006F5F.png deleted file mode 100755 index 0358f0cf..00000000 Binary files a/static/icons/06006F5F.png and /dev/null differ diff --git a/static/icons/06006F60.png b/static/icons/06006F60.png deleted file mode 100755 index b6a2563f..00000000 Binary files a/static/icons/06006F60.png and /dev/null differ diff --git a/static/icons/06006F61.png b/static/icons/06006F61.png deleted file mode 100755 index 27f8f886..00000000 Binary files a/static/icons/06006F61.png and /dev/null differ diff --git a/static/icons/06006F62.png b/static/icons/06006F62.png deleted file mode 100755 index ba5abb7a..00000000 Binary files a/static/icons/06006F62.png and /dev/null differ diff --git a/static/icons/06006F63.png b/static/icons/06006F63.png deleted file mode 100755 index 06fbd962..00000000 Binary files a/static/icons/06006F63.png and /dev/null differ diff --git a/static/icons/06006F64.png b/static/icons/06006F64.png deleted file mode 100755 index 4de1e375..00000000 Binary files a/static/icons/06006F64.png and /dev/null differ diff --git a/static/icons/06006F65.png b/static/icons/06006F65.png deleted file mode 100755 index 85de1cb8..00000000 Binary files a/static/icons/06006F65.png and /dev/null differ diff --git a/static/icons/06006F66.png b/static/icons/06006F66.png deleted file mode 100755 index ebc02828..00000000 Binary files a/static/icons/06006F66.png and /dev/null differ diff --git a/static/icons/06006F67.png b/static/icons/06006F67.png deleted file mode 100755 index 44451886..00000000 Binary files a/static/icons/06006F67.png and /dev/null differ diff --git a/static/icons/06006F6D.png b/static/icons/06006F6D.png deleted file mode 100755 index c781f65d..00000000 Binary files a/static/icons/06006F6D.png and /dev/null differ diff --git a/static/icons/06006F6E.png b/static/icons/06006F6E.png deleted file mode 100755 index b0b70d35..00000000 Binary files a/static/icons/06006F6E.png and /dev/null differ diff --git a/static/icons/06006F6F.png b/static/icons/06006F6F.png deleted file mode 100755 index 43d87a86..00000000 Binary files a/static/icons/06006F6F.png and /dev/null differ diff --git a/static/icons/06006F70.png b/static/icons/06006F70.png deleted file mode 100755 index 6355d3ac..00000000 Binary files a/static/icons/06006F70.png and /dev/null differ diff --git a/static/icons/06006F71.png b/static/icons/06006F71.png deleted file mode 100755 index d1491752..00000000 Binary files a/static/icons/06006F71.png and /dev/null differ diff --git a/static/icons/06006F72.png b/static/icons/06006F72.png deleted file mode 100755 index e83fdee6..00000000 Binary files a/static/icons/06006F72.png and /dev/null differ diff --git a/static/icons/06006F73.png b/static/icons/06006F73.png deleted file mode 100755 index 108fb595..00000000 Binary files a/static/icons/06006F73.png and /dev/null differ diff --git a/static/icons/06006F74.png b/static/icons/06006F74.png deleted file mode 100755 index eb8b5807..00000000 Binary files a/static/icons/06006F74.png and /dev/null differ diff --git a/static/icons/06006F75.png b/static/icons/06006F75.png deleted file mode 100755 index ac6f12dd..00000000 Binary files a/static/icons/06006F75.png and /dev/null differ diff --git a/static/icons/06006F76.png b/static/icons/06006F76.png deleted file mode 100755 index dce9979e..00000000 Binary files a/static/icons/06006F76.png and /dev/null differ diff --git a/static/icons/06006F77.png b/static/icons/06006F77.png deleted file mode 100755 index f45e62a9..00000000 Binary files a/static/icons/06006F77.png and /dev/null differ diff --git a/static/icons/06006F78.png b/static/icons/06006F78.png deleted file mode 100755 index d6b30818..00000000 Binary files a/static/icons/06006F78.png and /dev/null differ diff --git a/static/icons/06006F79.png b/static/icons/06006F79.png deleted file mode 100755 index 25c49cc0..00000000 Binary files a/static/icons/06006F79.png and /dev/null differ diff --git a/static/icons/06006F7A.png b/static/icons/06006F7A.png deleted file mode 100755 index 8b103346..00000000 Binary files a/static/icons/06006F7A.png and /dev/null differ diff --git a/static/icons/06006F7B.png b/static/icons/06006F7B.png deleted file mode 100755 index a5894bf4..00000000 Binary files a/static/icons/06006F7B.png and /dev/null differ diff --git a/static/icons/06006F7C.png b/static/icons/06006F7C.png deleted file mode 100755 index 1db9bc5b..00000000 Binary files a/static/icons/06006F7C.png and /dev/null differ diff --git a/static/icons/06006F7D.png b/static/icons/06006F7D.png deleted file mode 100755 index 84aa24c3..00000000 Binary files a/static/icons/06006F7D.png and /dev/null differ diff --git a/static/icons/06006F7E.png b/static/icons/06006F7E.png deleted file mode 100755 index cbfee056..00000000 Binary files a/static/icons/06006F7E.png and /dev/null differ diff --git a/static/icons/06006F7F.png b/static/icons/06006F7F.png deleted file mode 100755 index 86365e23..00000000 Binary files a/static/icons/06006F7F.png and /dev/null differ diff --git a/static/icons/06006F80.png b/static/icons/06006F80.png deleted file mode 100755 index 6d02a986..00000000 Binary files a/static/icons/06006F80.png and /dev/null differ diff --git a/static/icons/06006F81.png b/static/icons/06006F81.png deleted file mode 100755 index 4d6a4c1f..00000000 Binary files a/static/icons/06006F81.png and /dev/null differ diff --git a/static/icons/06006F82.png b/static/icons/06006F82.png deleted file mode 100755 index 6d02a986..00000000 Binary files a/static/icons/06006F82.png and /dev/null differ diff --git a/static/icons/06006F83.png b/static/icons/06006F83.png deleted file mode 100755 index 4d6a4c1f..00000000 Binary files a/static/icons/06006F83.png and /dev/null differ diff --git a/static/icons/06006F84.png b/static/icons/06006F84.png deleted file mode 100755 index ba66c005..00000000 Binary files a/static/icons/06006F84.png and /dev/null differ diff --git a/static/icons/06006F85.png b/static/icons/06006F85.png deleted file mode 100755 index ba66c005..00000000 Binary files a/static/icons/06006F85.png and /dev/null differ diff --git a/static/icons/06006F86.png b/static/icons/06006F86.png deleted file mode 100755 index e0b1a900..00000000 Binary files a/static/icons/06006F86.png and /dev/null differ diff --git a/static/icons/06006F87.png b/static/icons/06006F87.png deleted file mode 100755 index daba655f..00000000 Binary files a/static/icons/06006F87.png and /dev/null differ diff --git a/static/icons/06006F88.png b/static/icons/06006F88.png deleted file mode 100755 index 9b8a0ba3..00000000 Binary files a/static/icons/06006F88.png and /dev/null differ diff --git a/static/icons/06006F89.png b/static/icons/06006F89.png deleted file mode 100755 index b1b8f7bb..00000000 Binary files a/static/icons/06006F89.png and /dev/null differ diff --git a/static/icons/06006F8A.png b/static/icons/06006F8A.png deleted file mode 100755 index 65d307f4..00000000 Binary files a/static/icons/06006F8A.png and /dev/null differ diff --git a/static/icons/06006F8B.png b/static/icons/06006F8B.png deleted file mode 100755 index f0a1660a..00000000 Binary files a/static/icons/06006F8B.png and /dev/null differ diff --git a/static/icons/06006F8C.png b/static/icons/06006F8C.png deleted file mode 100755 index 8fcaf78e..00000000 Binary files a/static/icons/06006F8C.png and /dev/null differ diff --git a/static/icons/06006F8D.png b/static/icons/06006F8D.png deleted file mode 100755 index 90a6d384..00000000 Binary files a/static/icons/06006F8D.png and /dev/null differ diff --git a/static/icons/06006F8E.png b/static/icons/06006F8E.png deleted file mode 100755 index 5e5f5c73..00000000 Binary files a/static/icons/06006F8E.png and /dev/null differ diff --git a/static/icons/06006F90.png b/static/icons/06006F90.png deleted file mode 100755 index 626ddcd1..00000000 Binary files a/static/icons/06006F90.png and /dev/null differ diff --git a/static/icons/06006FC1.png b/static/icons/06006FC1.png deleted file mode 100755 index 3dcccc81..00000000 Binary files a/static/icons/06006FC1.png and /dev/null differ diff --git a/static/icons/06006FC2.png b/static/icons/06006FC2.png deleted file mode 100755 index cd0db2b9..00000000 Binary files a/static/icons/06006FC2.png and /dev/null differ diff --git a/static/icons/06006FC3.png b/static/icons/06006FC3.png deleted file mode 100755 index 489e35c7..00000000 Binary files a/static/icons/06006FC3.png and /dev/null differ diff --git a/static/icons/06006FC4.png b/static/icons/06006FC4.png deleted file mode 100755 index 8283957f..00000000 Binary files a/static/icons/06006FC4.png and /dev/null differ diff --git a/static/icons/06006FC5.png b/static/icons/06006FC5.png deleted file mode 100755 index 8317c1c2..00000000 Binary files a/static/icons/06006FC5.png and /dev/null differ diff --git a/static/icons/06006FC6.png b/static/icons/06006FC6.png deleted file mode 100755 index 153f72ff..00000000 Binary files a/static/icons/06006FC6.png and /dev/null differ diff --git a/static/icons/06006FC7.png b/static/icons/06006FC7.png deleted file mode 100755 index acf16084..00000000 Binary files a/static/icons/06006FC7.png and /dev/null differ diff --git a/static/icons/06006FC8.png b/static/icons/06006FC8.png deleted file mode 100755 index e49cf5f4..00000000 Binary files a/static/icons/06006FC8.png and /dev/null differ diff --git a/static/icons/06006FC9.png b/static/icons/06006FC9.png deleted file mode 100755 index 01b5d22a..00000000 Binary files a/static/icons/06006FC9.png and /dev/null differ diff --git a/static/icons/06006FCA.png b/static/icons/06006FCA.png deleted file mode 100755 index a5d5bd4d..00000000 Binary files a/static/icons/06006FCA.png and /dev/null differ diff --git a/static/icons/06006FCB.png b/static/icons/06006FCB.png deleted file mode 100755 index 8116fda7..00000000 Binary files a/static/icons/06006FCB.png and /dev/null differ diff --git a/static/icons/06006FCC.png b/static/icons/06006FCC.png deleted file mode 100755 index 5915b112..00000000 Binary files a/static/icons/06006FCC.png and /dev/null differ diff --git a/static/icons/06006FCD.png b/static/icons/06006FCD.png deleted file mode 100755 index 4a6a9b1b..00000000 Binary files a/static/icons/06006FCD.png and /dev/null differ diff --git a/static/icons/06006FCE.png b/static/icons/06006FCE.png deleted file mode 100755 index da2ce245..00000000 Binary files a/static/icons/06006FCE.png and /dev/null differ diff --git a/static/icons/06006FCF.png b/static/icons/06006FCF.png deleted file mode 100755 index d95575f5..00000000 Binary files a/static/icons/06006FCF.png and /dev/null differ diff --git a/static/icons/06006FD0.png b/static/icons/06006FD0.png deleted file mode 100755 index b20cb783..00000000 Binary files a/static/icons/06006FD0.png and /dev/null differ diff --git a/static/icons/06006FD1.png b/static/icons/06006FD1.png deleted file mode 100755 index 3e24387f..00000000 Binary files a/static/icons/06006FD1.png and /dev/null differ diff --git a/static/icons/06006FD2.png b/static/icons/06006FD2.png deleted file mode 100755 index 73b2842c..00000000 Binary files a/static/icons/06006FD2.png and /dev/null differ diff --git a/static/icons/06006FD6.png b/static/icons/06006FD6.png deleted file mode 100755 index c660034e..00000000 Binary files a/static/icons/06006FD6.png and /dev/null differ diff --git a/static/icons/06006FD8.png b/static/icons/06006FD8.png deleted file mode 100755 index 8effda20..00000000 Binary files a/static/icons/06006FD8.png and /dev/null differ diff --git a/static/icons/06006FD9.png b/static/icons/06006FD9.png deleted file mode 100755 index a9c67ec4..00000000 Binary files a/static/icons/06006FD9.png and /dev/null differ diff --git a/static/icons/06006FDA.png b/static/icons/06006FDA.png deleted file mode 100755 index ba928a31..00000000 Binary files a/static/icons/06006FDA.png and /dev/null differ diff --git a/static/icons/06006FDC.png b/static/icons/06006FDC.png deleted file mode 100755 index e46aa773..00000000 Binary files a/static/icons/06006FDC.png and /dev/null differ diff --git a/static/icons/06006FDF.png b/static/icons/06006FDF.png deleted file mode 100755 index 47fcdfa3..00000000 Binary files a/static/icons/06006FDF.png and /dev/null differ diff --git a/static/icons/06006FE0.png b/static/icons/06006FE0.png deleted file mode 100755 index e995e5f8..00000000 Binary files a/static/icons/06006FE0.png and /dev/null differ diff --git a/static/icons/06006FE1.png b/static/icons/06006FE1.png deleted file mode 100755 index f941d61f..00000000 Binary files a/static/icons/06006FE1.png and /dev/null differ diff --git a/static/icons/06006FE2.png b/static/icons/06006FE2.png deleted file mode 100755 index 4007c09a..00000000 Binary files a/static/icons/06006FE2.png and /dev/null differ diff --git a/static/icons/06006FEE.png b/static/icons/06006FEE.png deleted file mode 100755 index 3c7b6efc..00000000 Binary files a/static/icons/06006FEE.png and /dev/null differ diff --git a/static/icons/06006FF0.png b/static/icons/06006FF0.png deleted file mode 100755 index f5fd7ea8..00000000 Binary files a/static/icons/06006FF0.png and /dev/null differ diff --git a/static/icons/06006FF1.png b/static/icons/06006FF1.png deleted file mode 100755 index 4687d2dd..00000000 Binary files a/static/icons/06006FF1.png and /dev/null differ diff --git a/static/icons/06006FF2.png b/static/icons/06006FF2.png deleted file mode 100755 index 764ffcf7..00000000 Binary files a/static/icons/06006FF2.png and /dev/null differ diff --git a/static/icons/06006FF3.png b/static/icons/06006FF3.png deleted file mode 100755 index f6ef7538..00000000 Binary files a/static/icons/06006FF3.png and /dev/null differ diff --git a/static/icons/06006FF4.png b/static/icons/06006FF4.png deleted file mode 100755 index 8eeeddfc..00000000 Binary files a/static/icons/06006FF4.png and /dev/null differ diff --git a/static/icons/06006FF5.png b/static/icons/06006FF5.png deleted file mode 100755 index a55a79f1..00000000 Binary files a/static/icons/06006FF5.png and /dev/null differ diff --git a/static/icons/06006FF6.png b/static/icons/06006FF6.png deleted file mode 100755 index 3b1906d0..00000000 Binary files a/static/icons/06006FF6.png and /dev/null differ diff --git a/static/icons/06006FF7.png b/static/icons/06006FF7.png deleted file mode 100755 index cbe55fa7..00000000 Binary files a/static/icons/06006FF7.png and /dev/null differ diff --git a/static/icons/06006FF8.png b/static/icons/06006FF8.png deleted file mode 100755 index be98a86a..00000000 Binary files a/static/icons/06006FF8.png and /dev/null differ diff --git a/static/icons/06006FF9.png b/static/icons/06006FF9.png deleted file mode 100755 index 3e7a7944..00000000 Binary files a/static/icons/06006FF9.png and /dev/null differ diff --git a/static/icons/06006FFA.png b/static/icons/06006FFA.png deleted file mode 100755 index 54258362..00000000 Binary files a/static/icons/06006FFA.png and /dev/null differ diff --git a/static/icons/06006FFB.png b/static/icons/06006FFB.png deleted file mode 100755 index 5103e294..00000000 Binary files a/static/icons/06006FFB.png and /dev/null differ diff --git a/static/icons/06006FFD.png b/static/icons/06006FFD.png deleted file mode 100755 index b6951597..00000000 Binary files a/static/icons/06006FFD.png and /dev/null differ diff --git a/static/icons/06006FFE.png b/static/icons/06006FFE.png deleted file mode 100755 index 4c79476d..00000000 Binary files a/static/icons/06006FFE.png and /dev/null differ diff --git a/static/icons/06006FFF.png b/static/icons/06006FFF.png deleted file mode 100755 index a30799b0..00000000 Binary files a/static/icons/06006FFF.png and /dev/null differ diff --git a/static/icons/06007000.png b/static/icons/06007000.png deleted file mode 100755 index 1991d330..00000000 Binary files a/static/icons/06007000.png and /dev/null differ diff --git a/static/icons/06007001.png b/static/icons/06007001.png deleted file mode 100755 index 01e67fac..00000000 Binary files a/static/icons/06007001.png and /dev/null differ diff --git a/static/icons/06007002.png b/static/icons/06007002.png deleted file mode 100755 index 6cfb3e0f..00000000 Binary files a/static/icons/06007002.png and /dev/null differ diff --git a/static/icons/06007003.png b/static/icons/06007003.png deleted file mode 100755 index 00aa1c44..00000000 Binary files a/static/icons/06007003.png and /dev/null differ diff --git a/static/icons/06007004.png b/static/icons/06007004.png deleted file mode 100755 index 637ae90a..00000000 Binary files a/static/icons/06007004.png and /dev/null differ diff --git a/static/icons/06007005.png b/static/icons/06007005.png deleted file mode 100755 index edfe77c2..00000000 Binary files a/static/icons/06007005.png and /dev/null differ diff --git a/static/icons/06007006.png b/static/icons/06007006.png deleted file mode 100755 index 0ec9bda8..00000000 Binary files a/static/icons/06007006.png and /dev/null differ diff --git a/static/icons/06007007.png b/static/icons/06007007.png deleted file mode 100755 index 2ad6dcec..00000000 Binary files a/static/icons/06007007.png and /dev/null differ diff --git a/static/icons/06007008.png b/static/icons/06007008.png deleted file mode 100755 index 4553c375..00000000 Binary files a/static/icons/06007008.png and /dev/null differ diff --git a/static/icons/06007009.png b/static/icons/06007009.png deleted file mode 100755 index ccfb46c9..00000000 Binary files a/static/icons/06007009.png and /dev/null differ diff --git a/static/icons/0600700A.png b/static/icons/0600700A.png deleted file mode 100755 index 4a44f084..00000000 Binary files a/static/icons/0600700A.png and /dev/null differ diff --git a/static/icons/0600700B.png b/static/icons/0600700B.png deleted file mode 100755 index e2c24ed3..00000000 Binary files a/static/icons/0600700B.png and /dev/null differ diff --git a/static/icons/0600700C.png b/static/icons/0600700C.png deleted file mode 100755 index bb534d9a..00000000 Binary files a/static/icons/0600700C.png and /dev/null differ diff --git a/static/icons/0600700D.png b/static/icons/0600700D.png deleted file mode 100755 index 3a15bf25..00000000 Binary files a/static/icons/0600700D.png and /dev/null differ diff --git a/static/icons/0600700E.png b/static/icons/0600700E.png deleted file mode 100755 index bc0c4e0e..00000000 Binary files a/static/icons/0600700E.png and /dev/null differ diff --git a/static/icons/0600700F.png b/static/icons/0600700F.png deleted file mode 100755 index ee3938cb..00000000 Binary files a/static/icons/0600700F.png and /dev/null differ diff --git a/static/icons/06007010.png b/static/icons/06007010.png deleted file mode 100755 index e2065a2c..00000000 Binary files a/static/icons/06007010.png and /dev/null differ diff --git a/static/icons/06007011.png b/static/icons/06007011.png deleted file mode 100755 index 1c0b983d..00000000 Binary files a/static/icons/06007011.png and /dev/null differ diff --git a/static/icons/06007012.png b/static/icons/06007012.png deleted file mode 100755 index de09e6a9..00000000 Binary files a/static/icons/06007012.png and /dev/null differ diff --git a/static/icons/06007013.png b/static/icons/06007013.png deleted file mode 100755 index 19b816e5..00000000 Binary files a/static/icons/06007013.png and /dev/null differ diff --git a/static/icons/06007014.png b/static/icons/06007014.png deleted file mode 100755 index 96916b70..00000000 Binary files a/static/icons/06007014.png and /dev/null differ diff --git a/static/icons/06007015.png b/static/icons/06007015.png deleted file mode 100755 index 9c922d53..00000000 Binary files a/static/icons/06007015.png and /dev/null differ diff --git a/static/icons/06007016.png b/static/icons/06007016.png deleted file mode 100755 index 7bfaa1a9..00000000 Binary files a/static/icons/06007016.png and /dev/null differ diff --git a/static/icons/06007017.png b/static/icons/06007017.png deleted file mode 100755 index 6abb7d6b..00000000 Binary files a/static/icons/06007017.png and /dev/null differ diff --git a/static/icons/06007018.png b/static/icons/06007018.png deleted file mode 100755 index 4a3a1642..00000000 Binary files a/static/icons/06007018.png and /dev/null differ diff --git a/static/icons/06007019.png b/static/icons/06007019.png deleted file mode 100755 index 3b979d36..00000000 Binary files a/static/icons/06007019.png and /dev/null differ diff --git a/static/icons/0600701A.png b/static/icons/0600701A.png deleted file mode 100755 index d9e89fdc..00000000 Binary files a/static/icons/0600701A.png and /dev/null differ diff --git a/static/icons/0600701B.png b/static/icons/0600701B.png deleted file mode 100755 index 05500834..00000000 Binary files a/static/icons/0600701B.png and /dev/null differ diff --git a/static/icons/0600701C.png b/static/icons/0600701C.png deleted file mode 100755 index 113c6c6d..00000000 Binary files a/static/icons/0600701C.png and /dev/null differ diff --git a/static/icons/0600701D.png b/static/icons/0600701D.png deleted file mode 100755 index a664e44c..00000000 Binary files a/static/icons/0600701D.png and /dev/null differ diff --git a/static/icons/0600701E.png b/static/icons/0600701E.png deleted file mode 100755 index 4a9cf58d..00000000 Binary files a/static/icons/0600701E.png and /dev/null differ diff --git a/static/icons/0600701F.png b/static/icons/0600701F.png deleted file mode 100755 index f2b5d848..00000000 Binary files a/static/icons/0600701F.png and /dev/null differ diff --git a/static/icons/06007020.png b/static/icons/06007020.png deleted file mode 100755 index b758e8a4..00000000 Binary files a/static/icons/06007020.png and /dev/null differ diff --git a/static/icons/06007021.png b/static/icons/06007021.png deleted file mode 100755 index 72e43d2e..00000000 Binary files a/static/icons/06007021.png and /dev/null differ diff --git a/static/icons/06007022.png b/static/icons/06007022.png deleted file mode 100755 index 5651bb69..00000000 Binary files a/static/icons/06007022.png and /dev/null differ diff --git a/static/icons/06007023.png b/static/icons/06007023.png deleted file mode 100755 index 37021688..00000000 Binary files a/static/icons/06007023.png and /dev/null differ diff --git a/static/icons/06007024.png b/static/icons/06007024.png deleted file mode 100755 index 5b0ab924..00000000 Binary files a/static/icons/06007024.png and /dev/null differ diff --git a/static/icons/06007025.png b/static/icons/06007025.png deleted file mode 100755 index be9cacd3..00000000 Binary files a/static/icons/06007025.png and /dev/null differ diff --git a/static/icons/06007026.png b/static/icons/06007026.png deleted file mode 100755 index f1bd04e4..00000000 Binary files a/static/icons/06007026.png and /dev/null differ diff --git a/static/icons/06007027.png b/static/icons/06007027.png deleted file mode 100755 index 2248512d..00000000 Binary files a/static/icons/06007027.png and /dev/null differ diff --git a/static/icons/06007028.png b/static/icons/06007028.png deleted file mode 100755 index 56dddf7b..00000000 Binary files a/static/icons/06007028.png and /dev/null differ diff --git a/static/icons/06007029.png b/static/icons/06007029.png deleted file mode 100755 index 5eb2ac42..00000000 Binary files a/static/icons/06007029.png and /dev/null differ diff --git a/static/icons/0600702A.png b/static/icons/0600702A.png deleted file mode 100755 index 98988d48..00000000 Binary files a/static/icons/0600702A.png and /dev/null differ diff --git a/static/icons/0600702B.png b/static/icons/0600702B.png deleted file mode 100755 index 50125e39..00000000 Binary files a/static/icons/0600702B.png and /dev/null differ diff --git a/static/icons/0600702C.png b/static/icons/0600702C.png deleted file mode 100755 index abc85d58..00000000 Binary files a/static/icons/0600702C.png and /dev/null differ diff --git a/static/icons/0600702D.png b/static/icons/0600702D.png deleted file mode 100755 index 167590bf..00000000 Binary files a/static/icons/0600702D.png and /dev/null differ diff --git a/static/icons/0600702E.png b/static/icons/0600702E.png deleted file mode 100755 index e72a8441..00000000 Binary files a/static/icons/0600702E.png and /dev/null differ diff --git a/static/icons/0600702F.png b/static/icons/0600702F.png deleted file mode 100755 index 24a8fd0c..00000000 Binary files a/static/icons/0600702F.png and /dev/null differ diff --git a/static/icons/06007030.png b/static/icons/06007030.png deleted file mode 100755 index c131ae0c..00000000 Binary files a/static/icons/06007030.png and /dev/null differ diff --git a/static/icons/06007031.png b/static/icons/06007031.png deleted file mode 100755 index 92ab6f27..00000000 Binary files a/static/icons/06007031.png and /dev/null differ diff --git a/static/icons/06007032.png b/static/icons/06007032.png deleted file mode 100755 index 3352b3f9..00000000 Binary files a/static/icons/06007032.png and /dev/null differ diff --git a/static/icons/06007033.png b/static/icons/06007033.png deleted file mode 100755 index 40e02656..00000000 Binary files a/static/icons/06007033.png and /dev/null differ diff --git a/static/icons/06007034.png b/static/icons/06007034.png deleted file mode 100755 index 3fa2ae53..00000000 Binary files a/static/icons/06007034.png and /dev/null differ diff --git a/static/icons/06007035.png b/static/icons/06007035.png deleted file mode 100755 index 01ac7f76..00000000 Binary files a/static/icons/06007035.png and /dev/null differ diff --git a/static/icons/06007036.png b/static/icons/06007036.png deleted file mode 100755 index b42a3e53..00000000 Binary files a/static/icons/06007036.png and /dev/null differ diff --git a/static/icons/06007037.png b/static/icons/06007037.png deleted file mode 100755 index 98e40c3d..00000000 Binary files a/static/icons/06007037.png and /dev/null differ diff --git a/static/icons/06007038.png b/static/icons/06007038.png deleted file mode 100755 index fd950c29..00000000 Binary files a/static/icons/06007038.png and /dev/null differ diff --git a/static/icons/06007039.png b/static/icons/06007039.png deleted file mode 100755 index 34c33f3b..00000000 Binary files a/static/icons/06007039.png and /dev/null differ diff --git a/static/icons/0600703A.png b/static/icons/0600703A.png deleted file mode 100755 index aa640c46..00000000 Binary files a/static/icons/0600703A.png and /dev/null differ diff --git a/static/icons/0600703B.png b/static/icons/0600703B.png deleted file mode 100755 index 1d3c4886..00000000 Binary files a/static/icons/0600703B.png and /dev/null differ diff --git a/static/icons/0600703C.png b/static/icons/0600703C.png deleted file mode 100755 index 602d9c70..00000000 Binary files a/static/icons/0600703C.png and /dev/null differ diff --git a/static/icons/0600703D.png b/static/icons/0600703D.png deleted file mode 100755 index a61a8c18..00000000 Binary files a/static/icons/0600703D.png and /dev/null differ diff --git a/static/icons/0600703E.png b/static/icons/0600703E.png deleted file mode 100755 index ec2ce94a..00000000 Binary files a/static/icons/0600703E.png and /dev/null differ diff --git a/static/icons/0600703F.png b/static/icons/0600703F.png deleted file mode 100755 index 5d79ad11..00000000 Binary files a/static/icons/0600703F.png and /dev/null differ diff --git a/static/icons/06007040.png b/static/icons/06007040.png deleted file mode 100755 index 1fbcefa1..00000000 Binary files a/static/icons/06007040.png and /dev/null differ diff --git a/static/icons/06007041.png b/static/icons/06007041.png deleted file mode 100755 index e18908a8..00000000 Binary files a/static/icons/06007041.png and /dev/null differ diff --git a/static/icons/06007042.png b/static/icons/06007042.png deleted file mode 100755 index 430cf7fd..00000000 Binary files a/static/icons/06007042.png and /dev/null differ diff --git a/static/icons/06007043.png b/static/icons/06007043.png deleted file mode 100755 index 6d8daa71..00000000 Binary files a/static/icons/06007043.png and /dev/null differ diff --git a/static/icons/06007044.png b/static/icons/06007044.png deleted file mode 100755 index 44bbf1b4..00000000 Binary files a/static/icons/06007044.png and /dev/null differ diff --git a/static/icons/06007045.png b/static/icons/06007045.png deleted file mode 100755 index 474444dd..00000000 Binary files a/static/icons/06007045.png and /dev/null differ diff --git a/static/icons/06007046.png b/static/icons/06007046.png deleted file mode 100755 index 3fae53ce..00000000 Binary files a/static/icons/06007046.png and /dev/null differ diff --git a/static/icons/06007047.png b/static/icons/06007047.png deleted file mode 100755 index 9d918a78..00000000 Binary files a/static/icons/06007047.png and /dev/null differ diff --git a/static/icons/06007048.png b/static/icons/06007048.png deleted file mode 100755 index 52a260fb..00000000 Binary files a/static/icons/06007048.png and /dev/null differ diff --git a/static/icons/06007049.png b/static/icons/06007049.png deleted file mode 100755 index 5976bcd9..00000000 Binary files a/static/icons/06007049.png and /dev/null differ diff --git a/static/icons/0600704A.png b/static/icons/0600704A.png deleted file mode 100755 index e4aa5e84..00000000 Binary files a/static/icons/0600704A.png and /dev/null differ diff --git a/static/icons/0600704E.png b/static/icons/0600704E.png deleted file mode 100755 index 6ec78ea5..00000000 Binary files a/static/icons/0600704E.png and /dev/null differ diff --git a/static/icons/0600704F.png b/static/icons/0600704F.png deleted file mode 100755 index a9261657..00000000 Binary files a/static/icons/0600704F.png and /dev/null differ diff --git a/static/icons/06007050.png b/static/icons/06007050.png deleted file mode 100755 index c3351fd7..00000000 Binary files a/static/icons/06007050.png and /dev/null differ diff --git a/static/icons/06007051.png b/static/icons/06007051.png deleted file mode 100755 index ce98150c..00000000 Binary files a/static/icons/06007051.png and /dev/null differ diff --git a/static/icons/06007052.png b/static/icons/06007052.png deleted file mode 100755 index 0dd944dc..00000000 Binary files a/static/icons/06007052.png and /dev/null differ diff --git a/static/icons/06007053.png b/static/icons/06007053.png deleted file mode 100755 index aa3d525a..00000000 Binary files a/static/icons/06007053.png and /dev/null differ diff --git a/static/icons/06007054.png b/static/icons/06007054.png deleted file mode 100755 index 47d7a9d3..00000000 Binary files a/static/icons/06007054.png and /dev/null differ diff --git a/static/icons/06007055.png b/static/icons/06007055.png deleted file mode 100755 index 88455696..00000000 Binary files a/static/icons/06007055.png and /dev/null differ diff --git a/static/icons/06007056.png b/static/icons/06007056.png deleted file mode 100755 index 48bbeb3a..00000000 Binary files a/static/icons/06007056.png and /dev/null differ diff --git a/static/icons/06007057.png b/static/icons/06007057.png deleted file mode 100755 index b60e52df..00000000 Binary files a/static/icons/06007057.png and /dev/null differ diff --git a/static/icons/06007058.png b/static/icons/06007058.png deleted file mode 100755 index b7af1dc6..00000000 Binary files a/static/icons/06007058.png and /dev/null differ diff --git a/static/icons/06007059.png b/static/icons/06007059.png deleted file mode 100755 index 26ce66e7..00000000 Binary files a/static/icons/06007059.png and /dev/null differ diff --git a/static/icons/0600705A.png b/static/icons/0600705A.png deleted file mode 100755 index 792a3882..00000000 Binary files a/static/icons/0600705A.png and /dev/null differ diff --git a/static/icons/0600705B.png b/static/icons/0600705B.png deleted file mode 100755 index 9970778e..00000000 Binary files a/static/icons/0600705B.png and /dev/null differ diff --git a/static/icons/06007062.png b/static/icons/06007062.png deleted file mode 100755 index 72391b55..00000000 Binary files a/static/icons/06007062.png and /dev/null differ diff --git a/static/icons/06007063.png b/static/icons/06007063.png deleted file mode 100755 index 7fdcfe92..00000000 Binary files a/static/icons/06007063.png and /dev/null differ diff --git a/static/icons/06007065.png b/static/icons/06007065.png deleted file mode 100755 index caebfae8..00000000 Binary files a/static/icons/06007065.png and /dev/null differ diff --git a/static/icons/06007066.png b/static/icons/06007066.png deleted file mode 100755 index 225454d8..00000000 Binary files a/static/icons/06007066.png and /dev/null differ diff --git a/static/icons/06007067.png b/static/icons/06007067.png deleted file mode 100755 index d0669e01..00000000 Binary files a/static/icons/06007067.png and /dev/null differ diff --git a/static/icons/06007068.png b/static/icons/06007068.png deleted file mode 100755 index 9cca57b2..00000000 Binary files a/static/icons/06007068.png and /dev/null differ diff --git a/static/icons/06007069.png b/static/icons/06007069.png deleted file mode 100755 index d9e34d0c..00000000 Binary files a/static/icons/06007069.png and /dev/null differ diff --git a/static/icons/06007075.png b/static/icons/06007075.png deleted file mode 100755 index ac946362..00000000 Binary files a/static/icons/06007075.png and /dev/null differ diff --git a/static/icons/0600708F.png b/static/icons/0600708F.png deleted file mode 100755 index 3464a77c..00000000 Binary files a/static/icons/0600708F.png and /dev/null differ diff --git a/static/icons/06007090.png b/static/icons/06007090.png deleted file mode 100755 index 2266fb8f..00000000 Binary files a/static/icons/06007090.png and /dev/null differ diff --git a/static/icons/06007091.png b/static/icons/06007091.png deleted file mode 100755 index 9f1826d5..00000000 Binary files a/static/icons/06007091.png and /dev/null differ diff --git a/static/icons/06007092.png b/static/icons/06007092.png deleted file mode 100755 index c4f92265..00000000 Binary files a/static/icons/06007092.png and /dev/null differ diff --git a/static/icons/06007093.png b/static/icons/06007093.png deleted file mode 100755 index 8711848c..00000000 Binary files a/static/icons/06007093.png and /dev/null differ diff --git a/static/icons/06007094.png b/static/icons/06007094.png deleted file mode 100755 index bb23ad26..00000000 Binary files a/static/icons/06007094.png and /dev/null differ diff --git a/static/icons/06007095.png b/static/icons/06007095.png deleted file mode 100755 index 7536f1a8..00000000 Binary files a/static/icons/06007095.png and /dev/null differ diff --git a/static/icons/06007096.png b/static/icons/06007096.png deleted file mode 100755 index 3c8ef79b..00000000 Binary files a/static/icons/06007096.png and /dev/null differ diff --git a/static/icons/06007097.png b/static/icons/06007097.png deleted file mode 100755 index 0a77d1e7..00000000 Binary files a/static/icons/06007097.png and /dev/null differ diff --git a/static/icons/06007098.png b/static/icons/06007098.png deleted file mode 100755 index eea0722a..00000000 Binary files a/static/icons/06007098.png and /dev/null differ diff --git a/static/icons/06007099.png b/static/icons/06007099.png deleted file mode 100755 index 0a0cb5f1..00000000 Binary files a/static/icons/06007099.png and /dev/null differ diff --git a/static/icons/0600709A.png b/static/icons/0600709A.png deleted file mode 100755 index 0c55ec64..00000000 Binary files a/static/icons/0600709A.png and /dev/null differ diff --git a/static/icons/0600709B.png b/static/icons/0600709B.png deleted file mode 100755 index 09b240c1..00000000 Binary files a/static/icons/0600709B.png and /dev/null differ diff --git a/static/icons/0600709C.png b/static/icons/0600709C.png deleted file mode 100755 index 8c226ce2..00000000 Binary files a/static/icons/0600709C.png and /dev/null differ diff --git a/static/icons/0600709D.png b/static/icons/0600709D.png deleted file mode 100755 index 21418bd4..00000000 Binary files a/static/icons/0600709D.png and /dev/null differ diff --git a/static/icons/0600709E.png b/static/icons/0600709E.png deleted file mode 100755 index 3586fa3d..00000000 Binary files a/static/icons/0600709E.png and /dev/null differ diff --git a/static/icons/0600709F.png b/static/icons/0600709F.png deleted file mode 100755 index b6a954db..00000000 Binary files a/static/icons/0600709F.png and /dev/null differ diff --git a/static/icons/060070A0.png b/static/icons/060070A0.png deleted file mode 100755 index 018229c4..00000000 Binary files a/static/icons/060070A0.png and /dev/null differ diff --git a/static/icons/060070A1.png b/static/icons/060070A1.png deleted file mode 100755 index bf6d87cb..00000000 Binary files a/static/icons/060070A1.png and /dev/null differ diff --git a/static/icons/060070A2.png b/static/icons/060070A2.png deleted file mode 100755 index 8911e08e..00000000 Binary files a/static/icons/060070A2.png and /dev/null differ diff --git a/static/icons/060070A3.png b/static/icons/060070A3.png deleted file mode 100755 index c2a62763..00000000 Binary files a/static/icons/060070A3.png and /dev/null differ diff --git a/static/icons/060070A4.png b/static/icons/060070A4.png deleted file mode 100755 index d0f5d3bc..00000000 Binary files a/static/icons/060070A4.png and /dev/null differ diff --git a/static/icons/060070A5.png b/static/icons/060070A5.png deleted file mode 100755 index 0ce077b2..00000000 Binary files a/static/icons/060070A5.png and /dev/null differ diff --git a/static/icons/060070A6.png b/static/icons/060070A6.png deleted file mode 100755 index 74bd5cb7..00000000 Binary files a/static/icons/060070A6.png and /dev/null differ diff --git a/static/icons/060070A7.png b/static/icons/060070A7.png deleted file mode 100755 index 213e8572..00000000 Binary files a/static/icons/060070A7.png and /dev/null differ diff --git a/static/icons/060070A8.png b/static/icons/060070A8.png deleted file mode 100755 index f3b91f27..00000000 Binary files a/static/icons/060070A8.png and /dev/null differ diff --git a/static/icons/060070B4.png b/static/icons/060070B4.png deleted file mode 100755 index 32b718ea..00000000 Binary files a/static/icons/060070B4.png and /dev/null differ diff --git a/static/icons/060070B5.png b/static/icons/060070B5.png deleted file mode 100755 index b8f5ae93..00000000 Binary files a/static/icons/060070B5.png and /dev/null differ diff --git a/static/icons/060070C1.png b/static/icons/060070C1.png deleted file mode 100755 index 2906b098..00000000 Binary files a/static/icons/060070C1.png and /dev/null differ diff --git a/static/icons/060070C2.png b/static/icons/060070C2.png deleted file mode 100755 index 85b79b2b..00000000 Binary files a/static/icons/060070C2.png and /dev/null differ diff --git a/static/icons/060070C3.png b/static/icons/060070C3.png deleted file mode 100755 index b4654fa7..00000000 Binary files a/static/icons/060070C3.png and /dev/null differ diff --git a/static/icons/060070C4.png b/static/icons/060070C4.png deleted file mode 100755 index 3f3c59df..00000000 Binary files a/static/icons/060070C4.png and /dev/null differ diff --git a/static/icons/060070C5.png b/static/icons/060070C5.png deleted file mode 100755 index ac8649ca..00000000 Binary files a/static/icons/060070C5.png and /dev/null differ diff --git a/static/icons/060070C6.png b/static/icons/060070C6.png deleted file mode 100755 index 1717bb03..00000000 Binary files a/static/icons/060070C6.png and /dev/null differ diff --git a/static/icons/060070C7.png b/static/icons/060070C7.png deleted file mode 100755 index 4f648e07..00000000 Binary files a/static/icons/060070C7.png and /dev/null differ diff --git a/static/icons/060070C8.png b/static/icons/060070C8.png deleted file mode 100755 index ed6717ce..00000000 Binary files a/static/icons/060070C8.png and /dev/null differ diff --git a/static/icons/060070E1.png b/static/icons/060070E1.png deleted file mode 100755 index d3a0ed1e..00000000 Binary files a/static/icons/060070E1.png and /dev/null differ diff --git a/static/icons/060070E2.png b/static/icons/060070E2.png deleted file mode 100755 index ebc02828..00000000 Binary files a/static/icons/060070E2.png and /dev/null differ diff --git a/static/icons/060070E5.png b/static/icons/060070E5.png deleted file mode 100755 index 694d2db8..00000000 Binary files a/static/icons/060070E5.png and /dev/null differ diff --git a/static/icons/060070E6.png b/static/icons/060070E6.png deleted file mode 100755 index ed073ce2..00000000 Binary files a/static/icons/060070E6.png and /dev/null differ diff --git a/static/icons/060070E7.png b/static/icons/060070E7.png deleted file mode 100755 index 766c55fb..00000000 Binary files a/static/icons/060070E7.png and /dev/null differ diff --git a/static/icons/060070E8.png b/static/icons/060070E8.png deleted file mode 100755 index 9c00a118..00000000 Binary files a/static/icons/060070E8.png and /dev/null differ diff --git a/static/icons/060070E9.png b/static/icons/060070E9.png deleted file mode 100755 index 8d76c526..00000000 Binary files a/static/icons/060070E9.png and /dev/null differ diff --git a/static/icons/060070EA.png b/static/icons/060070EA.png deleted file mode 100755 index bb20a752..00000000 Binary files a/static/icons/060070EA.png and /dev/null differ diff --git a/static/icons/060070EB.png b/static/icons/060070EB.png deleted file mode 100755 index 2c05d427..00000000 Binary files a/static/icons/060070EB.png and /dev/null differ diff --git a/static/icons/060070EC.png b/static/icons/060070EC.png deleted file mode 100755 index 46d9a433..00000000 Binary files a/static/icons/060070EC.png and /dev/null differ diff --git a/static/icons/060070ED.png b/static/icons/060070ED.png deleted file mode 100755 index 346b2d45..00000000 Binary files a/static/icons/060070ED.png and /dev/null differ diff --git a/static/icons/060070EE.png b/static/icons/060070EE.png deleted file mode 100755 index 42a7802f..00000000 Binary files a/static/icons/060070EE.png and /dev/null differ diff --git a/static/icons/060070F0.png b/static/icons/060070F0.png deleted file mode 100755 index baffe4e8..00000000 Binary files a/static/icons/060070F0.png and /dev/null differ diff --git a/static/icons/060070F1.png b/static/icons/060070F1.png deleted file mode 100755 index aae44d55..00000000 Binary files a/static/icons/060070F1.png and /dev/null differ diff --git a/static/icons/060070F2.png b/static/icons/060070F2.png deleted file mode 100755 index cf298dc9..00000000 Binary files a/static/icons/060070F2.png and /dev/null differ diff --git a/static/icons/060070F3.png b/static/icons/060070F3.png deleted file mode 100755 index e6751a0f..00000000 Binary files a/static/icons/060070F3.png and /dev/null differ diff --git a/static/icons/060070F5.png b/static/icons/060070F5.png deleted file mode 100755 index 92102bd0..00000000 Binary files a/static/icons/060070F5.png and /dev/null differ diff --git a/static/icons/060070F6.png b/static/icons/060070F6.png deleted file mode 100755 index 541425df..00000000 Binary files a/static/icons/060070F6.png and /dev/null differ diff --git a/static/icons/060070F7.png b/static/icons/060070F7.png deleted file mode 100755 index 01721459..00000000 Binary files a/static/icons/060070F7.png and /dev/null differ diff --git a/static/icons/060070F8.png b/static/icons/060070F8.png deleted file mode 100755 index 39f9e144..00000000 Binary files a/static/icons/060070F8.png and /dev/null differ diff --git a/static/icons/060070F9.png b/static/icons/060070F9.png deleted file mode 100755 index f24ad34d..00000000 Binary files a/static/icons/060070F9.png and /dev/null differ diff --git a/static/icons/060070FA.png b/static/icons/060070FA.png deleted file mode 100755 index 3697b2aa..00000000 Binary files a/static/icons/060070FA.png and /dev/null differ diff --git a/static/icons/060070FB.png b/static/icons/060070FB.png deleted file mode 100755 index 869b017e..00000000 Binary files a/static/icons/060070FB.png and /dev/null differ diff --git a/static/icons/060070FC.png b/static/icons/060070FC.png deleted file mode 100755 index 19372146..00000000 Binary files a/static/icons/060070FC.png and /dev/null differ diff --git a/static/icons/060070FD.png b/static/icons/060070FD.png deleted file mode 100755 index 1aca2afa..00000000 Binary files a/static/icons/060070FD.png and /dev/null differ diff --git a/static/icons/06007100.png b/static/icons/06007100.png deleted file mode 100755 index 50429aeb..00000000 Binary files a/static/icons/06007100.png and /dev/null differ diff --git a/static/icons/06007101.png b/static/icons/06007101.png deleted file mode 100755 index c7897221..00000000 Binary files a/static/icons/06007101.png and /dev/null differ diff --git a/static/icons/06007102.png b/static/icons/06007102.png deleted file mode 100755 index 4b9fb025..00000000 Binary files a/static/icons/06007102.png and /dev/null differ diff --git a/static/icons/06007103.png b/static/icons/06007103.png deleted file mode 100755 index 9fd20a4d..00000000 Binary files a/static/icons/06007103.png and /dev/null differ diff --git a/static/icons/06007104.png b/static/icons/06007104.png deleted file mode 100755 index bf87090c..00000000 Binary files a/static/icons/06007104.png and /dev/null differ diff --git a/static/icons/06007105.png b/static/icons/06007105.png deleted file mode 100755 index 345aa3a6..00000000 Binary files a/static/icons/06007105.png and /dev/null differ diff --git a/static/icons/06007106.png b/static/icons/06007106.png deleted file mode 100755 index 92205d3a..00000000 Binary files a/static/icons/06007106.png and /dev/null differ diff --git a/static/icons/06007107.png b/static/icons/06007107.png deleted file mode 100755 index 539dbbef..00000000 Binary files a/static/icons/06007107.png and /dev/null differ diff --git a/static/icons/06007108.png b/static/icons/06007108.png deleted file mode 100755 index 90c3e9f9..00000000 Binary files a/static/icons/06007108.png and /dev/null differ diff --git a/static/icons/06007109.png b/static/icons/06007109.png deleted file mode 100755 index 60cbc9cf..00000000 Binary files a/static/icons/06007109.png and /dev/null differ diff --git a/static/icons/0600710A.png b/static/icons/0600710A.png deleted file mode 100755 index 89bc53ea..00000000 Binary files a/static/icons/0600710A.png and /dev/null differ diff --git a/static/icons/0600710B.png b/static/icons/0600710B.png deleted file mode 100755 index c10ad181..00000000 Binary files a/static/icons/0600710B.png and /dev/null differ diff --git a/static/icons/0600710C.png b/static/icons/0600710C.png deleted file mode 100755 index 57e40e18..00000000 Binary files a/static/icons/0600710C.png and /dev/null differ diff --git a/static/icons/0600710D.png b/static/icons/0600710D.png deleted file mode 100755 index 56e3919e..00000000 Binary files a/static/icons/0600710D.png and /dev/null differ diff --git a/static/icons/0600710E.png b/static/icons/0600710E.png deleted file mode 100755 index 3efad25b..00000000 Binary files a/static/icons/0600710E.png and /dev/null differ diff --git a/static/icons/0600710F.png b/static/icons/0600710F.png deleted file mode 100755 index a009963f..00000000 Binary files a/static/icons/0600710F.png and /dev/null differ diff --git a/static/icons/06007110.png b/static/icons/06007110.png deleted file mode 100755 index 7e8afcd6..00000000 Binary files a/static/icons/06007110.png and /dev/null differ diff --git a/static/icons/06007111.png b/static/icons/06007111.png deleted file mode 100755 index 5b29541f..00000000 Binary files a/static/icons/06007111.png and /dev/null differ diff --git a/static/icons/06007112.png b/static/icons/06007112.png deleted file mode 100755 index b24f39db..00000000 Binary files a/static/icons/06007112.png and /dev/null differ diff --git a/static/icons/06007113.png b/static/icons/06007113.png deleted file mode 100755 index c6c4bd43..00000000 Binary files a/static/icons/06007113.png and /dev/null differ diff --git a/static/icons/06007114.png b/static/icons/06007114.png deleted file mode 100755 index d73d7927..00000000 Binary files a/static/icons/06007114.png and /dev/null differ diff --git a/static/icons/06007115.png b/static/icons/06007115.png deleted file mode 100755 index ad147507..00000000 Binary files a/static/icons/06007115.png and /dev/null differ diff --git a/static/icons/06007116.png b/static/icons/06007116.png deleted file mode 100755 index 11fb84bd..00000000 Binary files a/static/icons/06007116.png and /dev/null differ diff --git a/static/icons/06007117.png b/static/icons/06007117.png deleted file mode 100755 index 2328c732..00000000 Binary files a/static/icons/06007117.png and /dev/null differ diff --git a/static/icons/06007118.png b/static/icons/06007118.png deleted file mode 100755 index e9a7e1ad..00000000 Binary files a/static/icons/06007118.png and /dev/null differ diff --git a/static/icons/06007119.png b/static/icons/06007119.png deleted file mode 100755 index 09e2bf69..00000000 Binary files a/static/icons/06007119.png and /dev/null differ diff --git a/static/icons/0600711A.png b/static/icons/0600711A.png deleted file mode 100755 index d83ccbdd..00000000 Binary files a/static/icons/0600711A.png and /dev/null differ diff --git a/static/icons/0600711B.png b/static/icons/0600711B.png deleted file mode 100755 index 7f29155d..00000000 Binary files a/static/icons/0600711B.png and /dev/null differ diff --git a/static/icons/0600711C.png b/static/icons/0600711C.png deleted file mode 100755 index cd406ed5..00000000 Binary files a/static/icons/0600711C.png and /dev/null differ diff --git a/static/icons/0600711D.png b/static/icons/0600711D.png deleted file mode 100755 index b376e4ae..00000000 Binary files a/static/icons/0600711D.png and /dev/null differ diff --git a/static/icons/0600711E.png b/static/icons/0600711E.png deleted file mode 100755 index c8ce5854..00000000 Binary files a/static/icons/0600711E.png and /dev/null differ diff --git a/static/icons/0600711F.png b/static/icons/0600711F.png deleted file mode 100755 index a4e62e2d..00000000 Binary files a/static/icons/0600711F.png and /dev/null differ diff --git a/static/icons/06007120.png b/static/icons/06007120.png deleted file mode 100755 index e2b06338..00000000 Binary files a/static/icons/06007120.png and /dev/null differ diff --git a/static/icons/06007121.png b/static/icons/06007121.png deleted file mode 100755 index fedb384a..00000000 Binary files a/static/icons/06007121.png and /dev/null differ diff --git a/static/icons/06007122.png b/static/icons/06007122.png deleted file mode 100755 index e6e1493e..00000000 Binary files a/static/icons/06007122.png and /dev/null differ diff --git a/static/icons/06007123.png b/static/icons/06007123.png deleted file mode 100755 index 24bf4f2e..00000000 Binary files a/static/icons/06007123.png and /dev/null differ diff --git a/static/icons/06007124.png b/static/icons/06007124.png deleted file mode 100755 index ec659062..00000000 Binary files a/static/icons/06007124.png and /dev/null differ diff --git a/static/icons/06007125.png b/static/icons/06007125.png deleted file mode 100755 index dad91ebe..00000000 Binary files a/static/icons/06007125.png and /dev/null differ diff --git a/static/icons/06007126.png b/static/icons/06007126.png deleted file mode 100755 index 3840251a..00000000 Binary files a/static/icons/06007126.png and /dev/null differ diff --git a/static/icons/06007127.png b/static/icons/06007127.png deleted file mode 100755 index afdc4041..00000000 Binary files a/static/icons/06007127.png and /dev/null differ diff --git a/static/icons/06007128.png b/static/icons/06007128.png deleted file mode 100755 index 44ac6a61..00000000 Binary files a/static/icons/06007128.png and /dev/null differ diff --git a/static/icons/06007129.png b/static/icons/06007129.png deleted file mode 100755 index e22e28ec..00000000 Binary files a/static/icons/06007129.png and /dev/null differ diff --git a/static/icons/0600712A.png b/static/icons/0600712A.png deleted file mode 100755 index c364b1c9..00000000 Binary files a/static/icons/0600712A.png and /dev/null differ diff --git a/static/icons/0600712B.png b/static/icons/0600712B.png deleted file mode 100755 index 3224b1ce..00000000 Binary files a/static/icons/0600712B.png and /dev/null differ diff --git a/static/icons/0600712C.png b/static/icons/0600712C.png deleted file mode 100755 index ffd9a2bc..00000000 Binary files a/static/icons/0600712C.png and /dev/null differ diff --git a/static/icons/0600712D.png b/static/icons/0600712D.png deleted file mode 100755 index 22e64f25..00000000 Binary files a/static/icons/0600712D.png and /dev/null differ diff --git a/static/icons/0600712E.png b/static/icons/0600712E.png deleted file mode 100755 index bd3d2941..00000000 Binary files a/static/icons/0600712E.png and /dev/null differ diff --git a/static/icons/0600712F.png b/static/icons/0600712F.png deleted file mode 100755 index da35a4a3..00000000 Binary files a/static/icons/0600712F.png and /dev/null differ diff --git a/static/icons/06007130.png b/static/icons/06007130.png deleted file mode 100755 index 08d8005d..00000000 Binary files a/static/icons/06007130.png and /dev/null differ diff --git a/static/icons/06007131.png b/static/icons/06007131.png deleted file mode 100755 index 2f21a2a2..00000000 Binary files a/static/icons/06007131.png and /dev/null differ diff --git a/static/icons/06007132.png b/static/icons/06007132.png deleted file mode 100755 index 130bc87f..00000000 Binary files a/static/icons/06007132.png and /dev/null differ diff --git a/static/icons/06007133.png b/static/icons/06007133.png deleted file mode 100755 index 734df5fc..00000000 Binary files a/static/icons/06007133.png and /dev/null differ diff --git a/static/icons/06007134.png b/static/icons/06007134.png deleted file mode 100755 index 7ad583fd..00000000 Binary files a/static/icons/06007134.png and /dev/null differ diff --git a/static/icons/06007135.png b/static/icons/06007135.png deleted file mode 100755 index 3ecfbb4e..00000000 Binary files a/static/icons/06007135.png and /dev/null differ diff --git a/static/icons/06007136.png b/static/icons/06007136.png deleted file mode 100755 index 5440a0f3..00000000 Binary files a/static/icons/06007136.png and /dev/null differ diff --git a/static/icons/06007137.png b/static/icons/06007137.png deleted file mode 100755 index ac2abd77..00000000 Binary files a/static/icons/06007137.png and /dev/null differ diff --git a/static/icons/06007138.png b/static/icons/06007138.png deleted file mode 100755 index f14c64ff..00000000 Binary files a/static/icons/06007138.png and /dev/null differ diff --git a/static/icons/06007139.png b/static/icons/06007139.png deleted file mode 100755 index 5b8d4ef8..00000000 Binary files a/static/icons/06007139.png and /dev/null differ diff --git a/static/icons/0600713A.png b/static/icons/0600713A.png deleted file mode 100755 index 6875c86f..00000000 Binary files a/static/icons/0600713A.png and /dev/null differ diff --git a/static/icons/0600713B.png b/static/icons/0600713B.png deleted file mode 100755 index e4f2e095..00000000 Binary files a/static/icons/0600713B.png and /dev/null differ diff --git a/static/icons/0600713C.png b/static/icons/0600713C.png deleted file mode 100755 index 3596aa31..00000000 Binary files a/static/icons/0600713C.png and /dev/null differ diff --git a/static/icons/0600713D.png b/static/icons/0600713D.png deleted file mode 100755 index 29ae69bd..00000000 Binary files a/static/icons/0600713D.png and /dev/null differ diff --git a/static/icons/0600713E.png b/static/icons/0600713E.png deleted file mode 100755 index ca9ce8fb..00000000 Binary files a/static/icons/0600713E.png and /dev/null differ diff --git a/static/icons/06007140.png b/static/icons/06007140.png deleted file mode 100755 index 70258e94..00000000 Binary files a/static/icons/06007140.png and /dev/null differ diff --git a/static/icons/06007141.png b/static/icons/06007141.png deleted file mode 100755 index 0c8c2b34..00000000 Binary files a/static/icons/06007141.png and /dev/null differ diff --git a/static/icons/06007142.png b/static/icons/06007142.png deleted file mode 100755 index fc27a2e9..00000000 Binary files a/static/icons/06007142.png and /dev/null differ diff --git a/static/icons/06007143.png b/static/icons/06007143.png deleted file mode 100755 index cca3280e..00000000 Binary files a/static/icons/06007143.png and /dev/null differ diff --git a/static/icons/06007144.png b/static/icons/06007144.png deleted file mode 100755 index d6b90a03..00000000 Binary files a/static/icons/06007144.png and /dev/null differ diff --git a/static/icons/06007145.png b/static/icons/06007145.png deleted file mode 100755 index d4387711..00000000 Binary files a/static/icons/06007145.png and /dev/null differ diff --git a/static/icons/06007146.png b/static/icons/06007146.png deleted file mode 100755 index 2aa5f24e..00000000 Binary files a/static/icons/06007146.png and /dev/null differ diff --git a/static/icons/06007147.png b/static/icons/06007147.png deleted file mode 100755 index 06d418b4..00000000 Binary files a/static/icons/06007147.png and /dev/null differ diff --git a/static/icons/06007148.png b/static/icons/06007148.png deleted file mode 100755 index 1912674d..00000000 Binary files a/static/icons/06007148.png and /dev/null differ diff --git a/static/icons/06007149.png b/static/icons/06007149.png deleted file mode 100755 index 2edf0ba4..00000000 Binary files a/static/icons/06007149.png and /dev/null differ diff --git a/static/icons/0600714A.png b/static/icons/0600714A.png deleted file mode 100755 index ccfa3c65..00000000 Binary files a/static/icons/0600714A.png and /dev/null differ diff --git a/static/icons/0600714B.png b/static/icons/0600714B.png deleted file mode 100755 index 2bfe0582..00000000 Binary files a/static/icons/0600714B.png and /dev/null differ diff --git a/static/icons/0600714C.png b/static/icons/0600714C.png deleted file mode 100755 index a988eb08..00000000 Binary files a/static/icons/0600714C.png and /dev/null differ diff --git a/static/icons/0600714D.png b/static/icons/0600714D.png deleted file mode 100755 index 96996bbe..00000000 Binary files a/static/icons/0600714D.png and /dev/null differ diff --git a/static/icons/0600714E.png b/static/icons/0600714E.png deleted file mode 100755 index 67e57953..00000000 Binary files a/static/icons/0600714E.png and /dev/null differ diff --git a/static/icons/0600714F.png b/static/icons/0600714F.png deleted file mode 100755 index d14ff705..00000000 Binary files a/static/icons/0600714F.png and /dev/null differ diff --git a/static/icons/06007150.png b/static/icons/06007150.png deleted file mode 100755 index eb5e8c08..00000000 Binary files a/static/icons/06007150.png and /dev/null differ diff --git a/static/icons/06007151.png b/static/icons/06007151.png deleted file mode 100755 index 3e0b9a98..00000000 Binary files a/static/icons/06007151.png and /dev/null differ diff --git a/static/icons/06007152.png b/static/icons/06007152.png deleted file mode 100755 index b661da31..00000000 Binary files a/static/icons/06007152.png and /dev/null differ diff --git a/static/icons/06007153.png b/static/icons/06007153.png deleted file mode 100755 index c7314433..00000000 Binary files a/static/icons/06007153.png and /dev/null differ diff --git a/static/icons/06007154.png b/static/icons/06007154.png deleted file mode 100755 index 3e346282..00000000 Binary files a/static/icons/06007154.png and /dev/null differ diff --git a/static/icons/06007155.png b/static/icons/06007155.png deleted file mode 100755 index 2acad92c..00000000 Binary files a/static/icons/06007155.png and /dev/null differ diff --git a/static/icons/06007156.png b/static/icons/06007156.png deleted file mode 100755 index c2680e51..00000000 Binary files a/static/icons/06007156.png and /dev/null differ diff --git a/static/icons/06007157.png b/static/icons/06007157.png deleted file mode 100755 index b3499c7c..00000000 Binary files a/static/icons/06007157.png and /dev/null differ diff --git a/static/icons/06007158.png b/static/icons/06007158.png deleted file mode 100755 index 4cb74586..00000000 Binary files a/static/icons/06007158.png and /dev/null differ diff --git a/static/icons/06007159.png b/static/icons/06007159.png deleted file mode 100755 index ab7172fb..00000000 Binary files a/static/icons/06007159.png and /dev/null differ diff --git a/static/icons/0600715A.png b/static/icons/0600715A.png deleted file mode 100755 index 2be8af2b..00000000 Binary files a/static/icons/0600715A.png and /dev/null differ diff --git a/static/icons/0600715B.png b/static/icons/0600715B.png deleted file mode 100755 index f580fa47..00000000 Binary files a/static/icons/0600715B.png and /dev/null differ diff --git a/static/icons/0600715C.png b/static/icons/0600715C.png deleted file mode 100755 index 98106131..00000000 Binary files a/static/icons/0600715C.png and /dev/null differ diff --git a/static/icons/0600715D.png b/static/icons/0600715D.png deleted file mode 100755 index 433a4ef5..00000000 Binary files a/static/icons/0600715D.png and /dev/null differ diff --git a/static/icons/0600715E.png b/static/icons/0600715E.png deleted file mode 100755 index 57f5b9a6..00000000 Binary files a/static/icons/0600715E.png and /dev/null differ diff --git a/static/icons/06007160.png b/static/icons/06007160.png deleted file mode 100755 index bf58ffe7..00000000 Binary files a/static/icons/06007160.png and /dev/null differ diff --git a/static/icons/06007161.png b/static/icons/06007161.png deleted file mode 100755 index b7227abe..00000000 Binary files a/static/icons/06007161.png and /dev/null differ diff --git a/static/icons/06007180.png b/static/icons/06007180.png deleted file mode 100755 index 605d87a2..00000000 Binary files a/static/icons/06007180.png and /dev/null differ diff --git a/static/icons/06007181.png b/static/icons/06007181.png deleted file mode 100755 index 8812587e..00000000 Binary files a/static/icons/06007181.png and /dev/null differ diff --git a/static/icons/06007182.png b/static/icons/06007182.png deleted file mode 100755 index b62ca342..00000000 Binary files a/static/icons/06007182.png and /dev/null differ diff --git a/static/icons/06007183.png b/static/icons/06007183.png deleted file mode 100755 index 63c40faf..00000000 Binary files a/static/icons/06007183.png and /dev/null differ diff --git a/static/icons/06007184.png b/static/icons/06007184.png deleted file mode 100755 index 332251de..00000000 Binary files a/static/icons/06007184.png and /dev/null differ diff --git a/static/icons/06007185.png b/static/icons/06007185.png deleted file mode 100755 index c8ea05c8..00000000 Binary files a/static/icons/06007185.png and /dev/null differ diff --git a/static/icons/06007186.png b/static/icons/06007186.png deleted file mode 100755 index bc2510f2..00000000 Binary files a/static/icons/06007186.png and /dev/null differ diff --git a/static/icons/06007187.png b/static/icons/06007187.png deleted file mode 100755 index 412fe84a..00000000 Binary files a/static/icons/06007187.png and /dev/null differ diff --git a/static/icons/06007188.png b/static/icons/06007188.png deleted file mode 100755 index e36c352f..00000000 Binary files a/static/icons/06007188.png and /dev/null differ diff --git a/static/icons/06007189.png b/static/icons/06007189.png deleted file mode 100755 index 24eccec0..00000000 Binary files a/static/icons/06007189.png and /dev/null differ diff --git a/static/icons/0600718A.png b/static/icons/0600718A.png deleted file mode 100755 index 70f4ac51..00000000 Binary files a/static/icons/0600718A.png and /dev/null differ diff --git a/static/icons/0600718B.png b/static/icons/0600718B.png deleted file mode 100755 index 70528211..00000000 Binary files a/static/icons/0600718B.png and /dev/null differ diff --git a/static/icons/0600718C.png b/static/icons/0600718C.png deleted file mode 100755 index 2377bc29..00000000 Binary files a/static/icons/0600718C.png and /dev/null differ diff --git a/static/icons/0600718D.png b/static/icons/0600718D.png deleted file mode 100755 index 66aa3e5d..00000000 Binary files a/static/icons/0600718D.png and /dev/null differ diff --git a/static/icons/0600718E.png b/static/icons/0600718E.png deleted file mode 100755 index f24bd6b7..00000000 Binary files a/static/icons/0600718E.png and /dev/null differ diff --git a/static/icons/0600718F.png b/static/icons/0600718F.png deleted file mode 100755 index 1cc90e63..00000000 Binary files a/static/icons/0600718F.png and /dev/null differ diff --git a/static/icons/06007190.png b/static/icons/06007190.png deleted file mode 100755 index 7c834611..00000000 Binary files a/static/icons/06007190.png and /dev/null differ diff --git a/static/icons/06007191.png b/static/icons/06007191.png deleted file mode 100755 index aecf765c..00000000 Binary files a/static/icons/06007191.png and /dev/null differ diff --git a/static/icons/06007192.png b/static/icons/06007192.png deleted file mode 100755 index 645c7102..00000000 Binary files a/static/icons/06007192.png and /dev/null differ diff --git a/static/icons/06007193.png b/static/icons/06007193.png deleted file mode 100755 index 1f27b61c..00000000 Binary files a/static/icons/06007193.png and /dev/null differ diff --git a/static/icons/06007194.png b/static/icons/06007194.png deleted file mode 100755 index 70f6c140..00000000 Binary files a/static/icons/06007194.png and /dev/null differ diff --git a/static/icons/06007195.png b/static/icons/06007195.png deleted file mode 100755 index 82e2f48a..00000000 Binary files a/static/icons/06007195.png and /dev/null differ diff --git a/static/icons/06007196.png b/static/icons/06007196.png deleted file mode 100755 index 88b65d08..00000000 Binary files a/static/icons/06007196.png and /dev/null differ diff --git a/static/icons/06007197.png b/static/icons/06007197.png deleted file mode 100755 index 58ae0743..00000000 Binary files a/static/icons/06007197.png and /dev/null differ diff --git a/static/icons/06007198.png b/static/icons/06007198.png deleted file mode 100755 index d602d2d3..00000000 Binary files a/static/icons/06007198.png and /dev/null differ diff --git a/static/icons/06007199.png b/static/icons/06007199.png deleted file mode 100755 index ead276ce..00000000 Binary files a/static/icons/06007199.png and /dev/null differ diff --git a/static/icons/0600719A.png b/static/icons/0600719A.png deleted file mode 100755 index 2f3bf094..00000000 Binary files a/static/icons/0600719A.png and /dev/null differ diff --git a/static/icons/0600719B.png b/static/icons/0600719B.png deleted file mode 100755 index a3f191ff..00000000 Binary files a/static/icons/0600719B.png and /dev/null differ diff --git a/static/icons/0600719C.png b/static/icons/0600719C.png deleted file mode 100755 index 907d87d6..00000000 Binary files a/static/icons/0600719C.png and /dev/null differ diff --git a/static/icons/0600719D.png b/static/icons/0600719D.png deleted file mode 100755 index 4a7d63bd..00000000 Binary files a/static/icons/0600719D.png and /dev/null differ diff --git a/static/icons/0600719E.png b/static/icons/0600719E.png deleted file mode 100755 index 2e38ec2f..00000000 Binary files a/static/icons/0600719E.png and /dev/null differ diff --git a/static/icons/0600719F.png b/static/icons/0600719F.png deleted file mode 100755 index 3a45af6f..00000000 Binary files a/static/icons/0600719F.png and /dev/null differ diff --git a/static/icons/060071A0.png b/static/icons/060071A0.png deleted file mode 100755 index 617a6fe2..00000000 Binary files a/static/icons/060071A0.png and /dev/null differ diff --git a/static/icons/060071A1.png b/static/icons/060071A1.png deleted file mode 100755 index 179359d7..00000000 Binary files a/static/icons/060071A1.png and /dev/null differ diff --git a/static/icons/060071A2.png b/static/icons/060071A2.png deleted file mode 100755 index 9d4275bc..00000000 Binary files a/static/icons/060071A2.png and /dev/null differ diff --git a/static/icons/060071A3.png b/static/icons/060071A3.png deleted file mode 100755 index 00ea6d80..00000000 Binary files a/static/icons/060071A3.png and /dev/null differ diff --git a/static/icons/060071A4.png b/static/icons/060071A4.png deleted file mode 100755 index d53ada7d..00000000 Binary files a/static/icons/060071A4.png and /dev/null differ diff --git a/static/icons/060071A5.png b/static/icons/060071A5.png deleted file mode 100755 index a5859790..00000000 Binary files a/static/icons/060071A5.png and /dev/null differ diff --git a/static/icons/060071A6.png b/static/icons/060071A6.png deleted file mode 100755 index 4d87ad5e..00000000 Binary files a/static/icons/060071A6.png and /dev/null differ diff --git a/static/icons/060071A7.png b/static/icons/060071A7.png deleted file mode 100755 index e4125522..00000000 Binary files a/static/icons/060071A7.png and /dev/null differ diff --git a/static/icons/060071A8.png b/static/icons/060071A8.png deleted file mode 100755 index dfc70d65..00000000 Binary files a/static/icons/060071A8.png and /dev/null differ diff --git a/static/icons/060071A9.png b/static/icons/060071A9.png deleted file mode 100755 index 1e756d2e..00000000 Binary files a/static/icons/060071A9.png and /dev/null differ diff --git a/static/icons/060071AA.png b/static/icons/060071AA.png deleted file mode 100755 index 02fcf381..00000000 Binary files a/static/icons/060071AA.png and /dev/null differ diff --git a/static/icons/060071AB.png b/static/icons/060071AB.png deleted file mode 100755 index 479eac73..00000000 Binary files a/static/icons/060071AB.png and /dev/null differ diff --git a/static/icons/060071AC.png b/static/icons/060071AC.png deleted file mode 100755 index d53fc822..00000000 Binary files a/static/icons/060071AC.png and /dev/null differ diff --git a/static/icons/060071AD.png b/static/icons/060071AD.png deleted file mode 100755 index 5f56142b..00000000 Binary files a/static/icons/060071AD.png and /dev/null differ diff --git a/static/icons/060071AE.png b/static/icons/060071AE.png deleted file mode 100755 index 00de90ea..00000000 Binary files a/static/icons/060071AE.png and /dev/null differ diff --git a/static/icons/060071AF.png b/static/icons/060071AF.png deleted file mode 100755 index 92be88e7..00000000 Binary files a/static/icons/060071AF.png and /dev/null differ diff --git a/static/icons/060071B0.png b/static/icons/060071B0.png deleted file mode 100755 index 307cc8f5..00000000 Binary files a/static/icons/060071B0.png and /dev/null differ diff --git a/static/icons/060071B1.png b/static/icons/060071B1.png deleted file mode 100755 index cea3f671..00000000 Binary files a/static/icons/060071B1.png and /dev/null differ diff --git a/static/icons/060071B2.png b/static/icons/060071B2.png deleted file mode 100755 index 14a2fc22..00000000 Binary files a/static/icons/060071B2.png and /dev/null differ diff --git a/static/icons/060071B3.png b/static/icons/060071B3.png deleted file mode 100755 index c39e6db0..00000000 Binary files a/static/icons/060071B3.png and /dev/null differ diff --git a/static/icons/060071B4.png b/static/icons/060071B4.png deleted file mode 100755 index eab3341f..00000000 Binary files a/static/icons/060071B4.png and /dev/null differ diff --git a/static/icons/060071B5.png b/static/icons/060071B5.png deleted file mode 100755 index ca666ccd..00000000 Binary files a/static/icons/060071B5.png and /dev/null differ diff --git a/static/icons/060071B6.png b/static/icons/060071B6.png deleted file mode 100755 index e3b366f6..00000000 Binary files a/static/icons/060071B6.png and /dev/null differ diff --git a/static/icons/060071B7.png b/static/icons/060071B7.png deleted file mode 100755 index 47550c9f..00000000 Binary files a/static/icons/060071B7.png and /dev/null differ diff --git a/static/icons/060071B8.png b/static/icons/060071B8.png deleted file mode 100755 index 49ef75b9..00000000 Binary files a/static/icons/060071B8.png and /dev/null differ diff --git a/static/icons/060071B9.png b/static/icons/060071B9.png deleted file mode 100755 index d39ce59b..00000000 Binary files a/static/icons/060071B9.png and /dev/null differ diff --git a/static/icons/060071BA.png b/static/icons/060071BA.png deleted file mode 100755 index 3e44efe7..00000000 Binary files a/static/icons/060071BA.png and /dev/null differ diff --git a/static/icons/060071BB.png b/static/icons/060071BB.png deleted file mode 100755 index 046c4888..00000000 Binary files a/static/icons/060071BB.png and /dev/null differ diff --git a/static/icons/060071BC.png b/static/icons/060071BC.png deleted file mode 100755 index 4ff38f20..00000000 Binary files a/static/icons/060071BC.png and /dev/null differ diff --git a/static/icons/060071BD.png b/static/icons/060071BD.png deleted file mode 100755 index 2b603cdc..00000000 Binary files a/static/icons/060071BD.png and /dev/null differ diff --git a/static/icons/060071BE.png b/static/icons/060071BE.png deleted file mode 100755 index 0bd1ecd5..00000000 Binary files a/static/icons/060071BE.png and /dev/null differ diff --git a/static/icons/060071BF.png b/static/icons/060071BF.png deleted file mode 100755 index f01ee33c..00000000 Binary files a/static/icons/060071BF.png and /dev/null differ diff --git a/static/icons/060071C0.png b/static/icons/060071C0.png deleted file mode 100755 index a7070bcf..00000000 Binary files a/static/icons/060071C0.png and /dev/null differ diff --git a/static/icons/060071C1.png b/static/icons/060071C1.png deleted file mode 100755 index 8f6e738a..00000000 Binary files a/static/icons/060071C1.png and /dev/null differ diff --git a/static/icons/060071C2.png b/static/icons/060071C2.png deleted file mode 100755 index baaac7b9..00000000 Binary files a/static/icons/060071C2.png and /dev/null differ diff --git a/static/icons/060071C3.png b/static/icons/060071C3.png deleted file mode 100755 index dfbf298b..00000000 Binary files a/static/icons/060071C3.png and /dev/null differ diff --git a/static/icons/060071C4.png b/static/icons/060071C4.png deleted file mode 100755 index 7c9f783c..00000000 Binary files a/static/icons/060071C4.png and /dev/null differ diff --git a/static/icons/060071C5.png b/static/icons/060071C5.png deleted file mode 100755 index 592a41c6..00000000 Binary files a/static/icons/060071C5.png and /dev/null differ diff --git a/static/icons/060071C6.png b/static/icons/060071C6.png deleted file mode 100755 index 03413c50..00000000 Binary files a/static/icons/060071C6.png and /dev/null differ diff --git a/static/icons/060071C7.png b/static/icons/060071C7.png deleted file mode 100755 index f94122de..00000000 Binary files a/static/icons/060071C7.png and /dev/null differ diff --git a/static/icons/060071C8.png b/static/icons/060071C8.png deleted file mode 100755 index a19e408b..00000000 Binary files a/static/icons/060071C8.png and /dev/null differ diff --git a/static/icons/060071C9.png b/static/icons/060071C9.png deleted file mode 100755 index f7bc71ae..00000000 Binary files a/static/icons/060071C9.png and /dev/null differ diff --git a/static/icons/060071CA.png b/static/icons/060071CA.png deleted file mode 100755 index 06f3065c..00000000 Binary files a/static/icons/060071CA.png and /dev/null differ diff --git a/static/icons/060071CB.png b/static/icons/060071CB.png deleted file mode 100755 index 94bcff46..00000000 Binary files a/static/icons/060071CB.png and /dev/null differ diff --git a/static/icons/060071CC.png b/static/icons/060071CC.png deleted file mode 100755 index 5526aaff..00000000 Binary files a/static/icons/060071CC.png and /dev/null differ diff --git a/static/icons/060071CD.png b/static/icons/060071CD.png deleted file mode 100755 index 2b3acfb7..00000000 Binary files a/static/icons/060071CD.png and /dev/null differ diff --git a/static/icons/060071CE.png b/static/icons/060071CE.png deleted file mode 100755 index b1c0d6f0..00000000 Binary files a/static/icons/060071CE.png and /dev/null differ diff --git a/static/icons/060071CF.png b/static/icons/060071CF.png deleted file mode 100755 index 994e00d4..00000000 Binary files a/static/icons/060071CF.png and /dev/null differ diff --git a/static/icons/060071D0.png b/static/icons/060071D0.png deleted file mode 100755 index 5edd73d3..00000000 Binary files a/static/icons/060071D0.png and /dev/null differ diff --git a/static/icons/060071D1.png b/static/icons/060071D1.png deleted file mode 100755 index 98ac2f56..00000000 Binary files a/static/icons/060071D1.png and /dev/null differ diff --git a/static/icons/060071D2.png b/static/icons/060071D2.png deleted file mode 100755 index 107c5f76..00000000 Binary files a/static/icons/060071D2.png and /dev/null differ diff --git a/static/icons/060071D3.png b/static/icons/060071D3.png deleted file mode 100755 index 4a8e0f33..00000000 Binary files a/static/icons/060071D3.png and /dev/null differ diff --git a/static/icons/060071D4.png b/static/icons/060071D4.png deleted file mode 100755 index 4ec667f7..00000000 Binary files a/static/icons/060071D4.png and /dev/null differ diff --git a/static/icons/060071D5.png b/static/icons/060071D5.png deleted file mode 100755 index aecae7ce..00000000 Binary files a/static/icons/060071D5.png and /dev/null differ diff --git a/static/icons/060071D6.png b/static/icons/060071D6.png deleted file mode 100755 index 54288ae4..00000000 Binary files a/static/icons/060071D6.png and /dev/null differ diff --git a/static/icons/060071D7.png b/static/icons/060071D7.png deleted file mode 100755 index 14432a0f..00000000 Binary files a/static/icons/060071D7.png and /dev/null differ diff --git a/static/icons/060071D8.png b/static/icons/060071D8.png deleted file mode 100755 index f1376fe5..00000000 Binary files a/static/icons/060071D8.png and /dev/null differ diff --git a/static/icons/060071D9.png b/static/icons/060071D9.png deleted file mode 100755 index 9e9391e6..00000000 Binary files a/static/icons/060071D9.png and /dev/null differ diff --git a/static/icons/060071DA.png b/static/icons/060071DA.png deleted file mode 100755 index 64fe0110..00000000 Binary files a/static/icons/060071DA.png and /dev/null differ diff --git a/static/icons/060071DB.png b/static/icons/060071DB.png deleted file mode 100755 index 1131d563..00000000 Binary files a/static/icons/060071DB.png and /dev/null differ diff --git a/static/icons/060071DC.png b/static/icons/060071DC.png deleted file mode 100755 index 84f5cb7d..00000000 Binary files a/static/icons/060071DC.png and /dev/null differ diff --git a/static/icons/060071DD.png b/static/icons/060071DD.png deleted file mode 100755 index 7dfcbb22..00000000 Binary files a/static/icons/060071DD.png and /dev/null differ diff --git a/static/icons/060071DE.png b/static/icons/060071DE.png deleted file mode 100755 index b8ca48df..00000000 Binary files a/static/icons/060071DE.png and /dev/null differ diff --git a/static/icons/060071DF.png b/static/icons/060071DF.png deleted file mode 100755 index 5556beea..00000000 Binary files a/static/icons/060071DF.png and /dev/null differ diff --git a/static/icons/060071E0.png b/static/icons/060071E0.png deleted file mode 100755 index 5f514d9e..00000000 Binary files a/static/icons/060071E0.png and /dev/null differ diff --git a/static/icons/060071E1.png b/static/icons/060071E1.png deleted file mode 100755 index babd1a73..00000000 Binary files a/static/icons/060071E1.png and /dev/null differ diff --git a/static/icons/060071E2.png b/static/icons/060071E2.png deleted file mode 100755 index 018cd1c5..00000000 Binary files a/static/icons/060071E2.png and /dev/null differ diff --git a/static/icons/060071E3.png b/static/icons/060071E3.png deleted file mode 100755 index e37fe07a..00000000 Binary files a/static/icons/060071E3.png and /dev/null differ diff --git a/static/icons/060071E4.png b/static/icons/060071E4.png deleted file mode 100755 index a1f439e6..00000000 Binary files a/static/icons/060071E4.png and /dev/null differ diff --git a/static/icons/060071E5.png b/static/icons/060071E5.png deleted file mode 100755 index 2f70c757..00000000 Binary files a/static/icons/060071E5.png and /dev/null differ diff --git a/static/icons/060071E6.png b/static/icons/060071E6.png deleted file mode 100755 index bec9f1fe..00000000 Binary files a/static/icons/060071E6.png and /dev/null differ diff --git a/static/icons/060071E7.png b/static/icons/060071E7.png deleted file mode 100755 index 28d91f63..00000000 Binary files a/static/icons/060071E7.png and /dev/null differ diff --git a/static/icons/060071E8.png b/static/icons/060071E8.png deleted file mode 100755 index ec67c5ea..00000000 Binary files a/static/icons/060071E8.png and /dev/null differ diff --git a/static/icons/060071E9.png b/static/icons/060071E9.png deleted file mode 100755 index 9ee1a76f..00000000 Binary files a/static/icons/060071E9.png and /dev/null differ diff --git a/static/icons/060071EA.png b/static/icons/060071EA.png deleted file mode 100755 index 32c2fb38..00000000 Binary files a/static/icons/060071EA.png and /dev/null differ diff --git a/static/icons/060071EB.png b/static/icons/060071EB.png deleted file mode 100755 index 8254479f..00000000 Binary files a/static/icons/060071EB.png and /dev/null differ diff --git a/static/icons/060071EC.png b/static/icons/060071EC.png deleted file mode 100755 index 89d98066..00000000 Binary files a/static/icons/060071EC.png and /dev/null differ diff --git a/static/icons/060071ED.png b/static/icons/060071ED.png deleted file mode 100755 index 0e8767cf..00000000 Binary files a/static/icons/060071ED.png and /dev/null differ diff --git a/static/icons/060071EE.png b/static/icons/060071EE.png deleted file mode 100755 index 7e2dcaa3..00000000 Binary files a/static/icons/060071EE.png and /dev/null differ diff --git a/static/icons/060071EF.png b/static/icons/060071EF.png deleted file mode 100755 index 945e2661..00000000 Binary files a/static/icons/060071EF.png and /dev/null differ diff --git a/static/icons/060071F0.png b/static/icons/060071F0.png deleted file mode 100755 index b2b6e7b2..00000000 Binary files a/static/icons/060071F0.png and /dev/null differ diff --git a/static/icons/060071F1.png b/static/icons/060071F1.png deleted file mode 100755 index 5786f150..00000000 Binary files a/static/icons/060071F1.png and /dev/null differ diff --git a/static/icons/060071F2.png b/static/icons/060071F2.png deleted file mode 100755 index b6c9cf1c..00000000 Binary files a/static/icons/060071F2.png and /dev/null differ diff --git a/static/icons/060071F3.png b/static/icons/060071F3.png deleted file mode 100755 index 938e8576..00000000 Binary files a/static/icons/060071F3.png and /dev/null differ diff --git a/static/icons/060071F4.png b/static/icons/060071F4.png deleted file mode 100755 index 5de5f984..00000000 Binary files a/static/icons/060071F4.png and /dev/null differ diff --git a/static/icons/060071F5.png b/static/icons/060071F5.png deleted file mode 100755 index 99850454..00000000 Binary files a/static/icons/060071F5.png and /dev/null differ diff --git a/static/icons/060071F6.png b/static/icons/060071F6.png deleted file mode 100755 index 4201ac33..00000000 Binary files a/static/icons/060071F6.png and /dev/null differ diff --git a/static/icons/060071F7.png b/static/icons/060071F7.png deleted file mode 100755 index d053881c..00000000 Binary files a/static/icons/060071F7.png and /dev/null differ diff --git a/static/icons/060071F8.png b/static/icons/060071F8.png deleted file mode 100755 index 6f1b6c9e..00000000 Binary files a/static/icons/060071F8.png and /dev/null differ diff --git a/static/icons/060071F9.png b/static/icons/060071F9.png deleted file mode 100755 index 6f25632d..00000000 Binary files a/static/icons/060071F9.png and /dev/null differ diff --git a/static/icons/060071FA.png b/static/icons/060071FA.png deleted file mode 100755 index c26915a8..00000000 Binary files a/static/icons/060071FA.png and /dev/null differ diff --git a/static/icons/060071FB.png b/static/icons/060071FB.png deleted file mode 100755 index d9f089fd..00000000 Binary files a/static/icons/060071FB.png and /dev/null differ diff --git a/static/icons/060071FC.png b/static/icons/060071FC.png deleted file mode 100755 index 35cedfa7..00000000 Binary files a/static/icons/060071FC.png and /dev/null differ diff --git a/static/icons/060071FD.png b/static/icons/060071FD.png deleted file mode 100755 index cabbbd57..00000000 Binary files a/static/icons/060071FD.png and /dev/null differ diff --git a/static/icons/060071FE.png b/static/icons/060071FE.png deleted file mode 100755 index 949bb366..00000000 Binary files a/static/icons/060071FE.png and /dev/null differ diff --git a/static/icons/060071FF.png b/static/icons/060071FF.png deleted file mode 100755 index d8f77524..00000000 Binary files a/static/icons/060071FF.png and /dev/null differ diff --git a/static/icons/06007200.png b/static/icons/06007200.png deleted file mode 100755 index 245dd8da..00000000 Binary files a/static/icons/06007200.png and /dev/null differ diff --git a/static/icons/06007201.png b/static/icons/06007201.png deleted file mode 100755 index 18a4b653..00000000 Binary files a/static/icons/06007201.png and /dev/null differ diff --git a/static/icons/06007202.png b/static/icons/06007202.png deleted file mode 100755 index 6b2c48c3..00000000 Binary files a/static/icons/06007202.png and /dev/null differ diff --git a/static/icons/06007203.png b/static/icons/06007203.png deleted file mode 100755 index 45de8973..00000000 Binary files a/static/icons/06007203.png and /dev/null differ diff --git a/static/icons/06007204.png b/static/icons/06007204.png deleted file mode 100755 index b5037ae2..00000000 Binary files a/static/icons/06007204.png and /dev/null differ diff --git a/static/icons/06007205.png b/static/icons/06007205.png deleted file mode 100755 index aff829b2..00000000 Binary files a/static/icons/06007205.png and /dev/null differ diff --git a/static/icons/06007206.png b/static/icons/06007206.png deleted file mode 100755 index 3e0d7bad..00000000 Binary files a/static/icons/06007206.png and /dev/null differ diff --git a/static/icons/06007207.png b/static/icons/06007207.png deleted file mode 100755 index 43f37dd4..00000000 Binary files a/static/icons/06007207.png and /dev/null differ diff --git a/static/icons/06007208.png b/static/icons/06007208.png deleted file mode 100755 index 5dd79474..00000000 Binary files a/static/icons/06007208.png and /dev/null differ diff --git a/static/icons/06007209.png b/static/icons/06007209.png deleted file mode 100755 index fd179f7d..00000000 Binary files a/static/icons/06007209.png and /dev/null differ diff --git a/static/icons/0600720A.png b/static/icons/0600720A.png deleted file mode 100755 index de573e9d..00000000 Binary files a/static/icons/0600720A.png and /dev/null differ diff --git a/static/icons/0600720B.png b/static/icons/0600720B.png deleted file mode 100755 index d208b473..00000000 Binary files a/static/icons/0600720B.png and /dev/null differ diff --git a/static/icons/0600720C.png b/static/icons/0600720C.png deleted file mode 100755 index 11eaeaca..00000000 Binary files a/static/icons/0600720C.png and /dev/null differ diff --git a/static/icons/0600720D.png b/static/icons/0600720D.png deleted file mode 100755 index 3748c600..00000000 Binary files a/static/icons/0600720D.png and /dev/null differ diff --git a/static/icons/0600720E.png b/static/icons/0600720E.png deleted file mode 100755 index 4df40f61..00000000 Binary files a/static/icons/0600720E.png and /dev/null differ diff --git a/static/icons/0600720F.png b/static/icons/0600720F.png deleted file mode 100755 index b6db0a6c..00000000 Binary files a/static/icons/0600720F.png and /dev/null differ diff --git a/static/icons/06007210.png b/static/icons/06007210.png deleted file mode 100755 index 32115921..00000000 Binary files a/static/icons/06007210.png and /dev/null differ diff --git a/static/icons/06007211.png b/static/icons/06007211.png deleted file mode 100755 index dd9d72c0..00000000 Binary files a/static/icons/06007211.png and /dev/null differ diff --git a/static/icons/06007212.png b/static/icons/06007212.png deleted file mode 100755 index 4acbea3f..00000000 Binary files a/static/icons/06007212.png and /dev/null differ diff --git a/static/icons/06007213.png b/static/icons/06007213.png deleted file mode 100755 index 93e4804d..00000000 Binary files a/static/icons/06007213.png and /dev/null differ diff --git a/static/icons/06007214.png b/static/icons/06007214.png deleted file mode 100755 index eeb95632..00000000 Binary files a/static/icons/06007214.png and /dev/null differ diff --git a/static/icons/06007215.png b/static/icons/06007215.png deleted file mode 100755 index 65b80287..00000000 Binary files a/static/icons/06007215.png and /dev/null differ diff --git a/static/icons/06007216.png b/static/icons/06007216.png deleted file mode 100755 index 6f5bef6c..00000000 Binary files a/static/icons/06007216.png and /dev/null differ diff --git a/static/icons/06007217.png b/static/icons/06007217.png deleted file mode 100755 index 0cbcb293..00000000 Binary files a/static/icons/06007217.png and /dev/null differ diff --git a/static/icons/06007218.png b/static/icons/06007218.png deleted file mode 100755 index e5a75b19..00000000 Binary files a/static/icons/06007218.png and /dev/null differ diff --git a/static/icons/06007219.png b/static/icons/06007219.png deleted file mode 100755 index 7daff697..00000000 Binary files a/static/icons/06007219.png and /dev/null differ diff --git a/static/icons/0600721A.png b/static/icons/0600721A.png deleted file mode 100755 index dbd6fa9c..00000000 Binary files a/static/icons/0600721A.png and /dev/null differ diff --git a/static/icons/0600721B.png b/static/icons/0600721B.png deleted file mode 100755 index bb13993f..00000000 Binary files a/static/icons/0600721B.png and /dev/null differ diff --git a/static/icons/0600721C.png b/static/icons/0600721C.png deleted file mode 100755 index 58f456a3..00000000 Binary files a/static/icons/0600721C.png and /dev/null differ diff --git a/static/icons/0600721D.png b/static/icons/0600721D.png deleted file mode 100755 index 6473ac13..00000000 Binary files a/static/icons/0600721D.png and /dev/null differ diff --git a/static/icons/0600721E.png b/static/icons/0600721E.png deleted file mode 100755 index 63344673..00000000 Binary files a/static/icons/0600721E.png and /dev/null differ diff --git a/static/icons/0600721F.png b/static/icons/0600721F.png deleted file mode 100755 index f2cd43c4..00000000 Binary files a/static/icons/0600721F.png and /dev/null differ diff --git a/static/icons/06007220.png b/static/icons/06007220.png deleted file mode 100755 index e734ef71..00000000 Binary files a/static/icons/06007220.png and /dev/null differ diff --git a/static/icons/06007221.png b/static/icons/06007221.png deleted file mode 100755 index f2121d8e..00000000 Binary files a/static/icons/06007221.png and /dev/null differ diff --git a/static/icons/06007222.png b/static/icons/06007222.png deleted file mode 100755 index 60cc524e..00000000 Binary files a/static/icons/06007222.png and /dev/null differ diff --git a/static/icons/06007223.png b/static/icons/06007223.png deleted file mode 100755 index 44f1661d..00000000 Binary files a/static/icons/06007223.png and /dev/null differ diff --git a/static/icons/06007224.png b/static/icons/06007224.png deleted file mode 100755 index 8b6ac359..00000000 Binary files a/static/icons/06007224.png and /dev/null differ diff --git a/static/icons/06007225.png b/static/icons/06007225.png deleted file mode 100755 index 9a164d82..00000000 Binary files a/static/icons/06007225.png and /dev/null differ diff --git a/static/icons/06007226.png b/static/icons/06007226.png deleted file mode 100755 index af524836..00000000 Binary files a/static/icons/06007226.png and /dev/null differ diff --git a/static/icons/06007227.png b/static/icons/06007227.png deleted file mode 100755 index e371a007..00000000 Binary files a/static/icons/06007227.png and /dev/null differ diff --git a/static/icons/06007228.png b/static/icons/06007228.png deleted file mode 100755 index 39fc139b..00000000 Binary files a/static/icons/06007228.png and /dev/null differ diff --git a/static/icons/06007229.png b/static/icons/06007229.png deleted file mode 100755 index bd1931c4..00000000 Binary files a/static/icons/06007229.png and /dev/null differ diff --git a/static/icons/0600722A.png b/static/icons/0600722A.png deleted file mode 100755 index 501e7762..00000000 Binary files a/static/icons/0600722A.png and /dev/null differ diff --git a/static/icons/0600722B.png b/static/icons/0600722B.png deleted file mode 100755 index b02b0a92..00000000 Binary files a/static/icons/0600722B.png and /dev/null differ diff --git a/static/icons/0600722C.png b/static/icons/0600722C.png deleted file mode 100755 index 0edcdbf8..00000000 Binary files a/static/icons/0600722C.png and /dev/null differ diff --git a/static/icons/0600722D.png b/static/icons/0600722D.png deleted file mode 100755 index 711ed18f..00000000 Binary files a/static/icons/0600722D.png and /dev/null differ diff --git a/static/icons/0600722E.png b/static/icons/0600722E.png deleted file mode 100755 index 3d695d76..00000000 Binary files a/static/icons/0600722E.png and /dev/null differ diff --git a/static/icons/0600722F.png b/static/icons/0600722F.png deleted file mode 100755 index 1a7c1f85..00000000 Binary files a/static/icons/0600722F.png and /dev/null differ diff --git a/static/icons/06007230.png b/static/icons/06007230.png deleted file mode 100755 index c1b59167..00000000 Binary files a/static/icons/06007230.png and /dev/null differ diff --git a/static/icons/06007231.png b/static/icons/06007231.png deleted file mode 100755 index 97c256aa..00000000 Binary files a/static/icons/06007231.png and /dev/null differ diff --git a/static/icons/06007232.png b/static/icons/06007232.png deleted file mode 100755 index 3e00f8d3..00000000 Binary files a/static/icons/06007232.png and /dev/null differ diff --git a/static/icons/06007233.png b/static/icons/06007233.png deleted file mode 100755 index 0979e9d6..00000000 Binary files a/static/icons/06007233.png and /dev/null differ diff --git a/static/icons/06007234.png b/static/icons/06007234.png deleted file mode 100755 index 86200762..00000000 Binary files a/static/icons/06007234.png and /dev/null differ diff --git a/static/icons/06007235.png b/static/icons/06007235.png deleted file mode 100755 index b679e06b..00000000 Binary files a/static/icons/06007235.png and /dev/null differ diff --git a/static/icons/06007236.png b/static/icons/06007236.png deleted file mode 100755 index 1e1f1235..00000000 Binary files a/static/icons/06007236.png and /dev/null differ diff --git a/static/icons/06007237.png b/static/icons/06007237.png deleted file mode 100755 index f4599ff9..00000000 Binary files a/static/icons/06007237.png and /dev/null differ diff --git a/static/icons/06007238.png b/static/icons/06007238.png deleted file mode 100755 index 03d22433..00000000 Binary files a/static/icons/06007238.png and /dev/null differ diff --git a/static/icons/06007239.png b/static/icons/06007239.png deleted file mode 100755 index 7703fc4f..00000000 Binary files a/static/icons/06007239.png and /dev/null differ diff --git a/static/icons/0600723A.png b/static/icons/0600723A.png deleted file mode 100755 index ad2b3144..00000000 Binary files a/static/icons/0600723A.png and /dev/null differ diff --git a/static/icons/0600723B.png b/static/icons/0600723B.png deleted file mode 100755 index 9254cdb0..00000000 Binary files a/static/icons/0600723B.png and /dev/null differ diff --git a/static/icons/0600723C.png b/static/icons/0600723C.png deleted file mode 100755 index 37fbec44..00000000 Binary files a/static/icons/0600723C.png and /dev/null differ diff --git a/static/icons/0600723D.png b/static/icons/0600723D.png deleted file mode 100755 index 263c8600..00000000 Binary files a/static/icons/0600723D.png and /dev/null differ diff --git a/static/icons/0600723E.png b/static/icons/0600723E.png deleted file mode 100755 index 8215fce7..00000000 Binary files a/static/icons/0600723E.png and /dev/null differ diff --git a/static/icons/0600723F.png b/static/icons/0600723F.png deleted file mode 100755 index a3bda316..00000000 Binary files a/static/icons/0600723F.png and /dev/null differ diff --git a/static/icons/06007240.png b/static/icons/06007240.png deleted file mode 100755 index bc29b5d3..00000000 Binary files a/static/icons/06007240.png and /dev/null differ diff --git a/static/icons/06007241.png b/static/icons/06007241.png deleted file mode 100755 index c90f20bc..00000000 Binary files a/static/icons/06007241.png and /dev/null differ diff --git a/static/icons/06007242.png b/static/icons/06007242.png deleted file mode 100755 index 6a604b38..00000000 Binary files a/static/icons/06007242.png and /dev/null differ diff --git a/static/icons/06007243.png b/static/icons/06007243.png deleted file mode 100755 index 572b4f11..00000000 Binary files a/static/icons/06007243.png and /dev/null differ diff --git a/static/icons/06007244.png b/static/icons/06007244.png deleted file mode 100755 index 7a3a7dbf..00000000 Binary files a/static/icons/06007244.png and /dev/null differ diff --git a/static/icons/06007245.png b/static/icons/06007245.png deleted file mode 100755 index 49011836..00000000 Binary files a/static/icons/06007245.png and /dev/null differ diff --git a/static/icons/06007246.png b/static/icons/06007246.png deleted file mode 100755 index 00878934..00000000 Binary files a/static/icons/06007246.png and /dev/null differ diff --git a/static/icons/06007247.png b/static/icons/06007247.png deleted file mode 100755 index e7d53544..00000000 Binary files a/static/icons/06007247.png and /dev/null differ diff --git a/static/icons/06007248.png b/static/icons/06007248.png deleted file mode 100755 index 80661488..00000000 Binary files a/static/icons/06007248.png and /dev/null differ diff --git a/static/icons/06007249.png b/static/icons/06007249.png deleted file mode 100755 index d261e34f..00000000 Binary files a/static/icons/06007249.png and /dev/null differ diff --git a/static/icons/0600724A.png b/static/icons/0600724A.png deleted file mode 100755 index ff510e9c..00000000 Binary files a/static/icons/0600724A.png and /dev/null differ diff --git a/static/icons/0600724B.png b/static/icons/0600724B.png deleted file mode 100755 index d4f9e44c..00000000 Binary files a/static/icons/0600724B.png and /dev/null differ diff --git a/static/icons/0600724C.png b/static/icons/0600724C.png deleted file mode 100755 index e8c284a0..00000000 Binary files a/static/icons/0600724C.png and /dev/null differ diff --git a/static/icons/0600724D.png b/static/icons/0600724D.png deleted file mode 100755 index 0cb84b06..00000000 Binary files a/static/icons/0600724D.png and /dev/null differ diff --git a/static/icons/0600724E.png b/static/icons/0600724E.png deleted file mode 100755 index 4c5da36c..00000000 Binary files a/static/icons/0600724E.png and /dev/null differ diff --git a/static/icons/0600724F.png b/static/icons/0600724F.png deleted file mode 100755 index d73046b4..00000000 Binary files a/static/icons/0600724F.png and /dev/null differ diff --git a/static/icons/06007250.png b/static/icons/06007250.png deleted file mode 100755 index 35e18653..00000000 Binary files a/static/icons/06007250.png and /dev/null differ diff --git a/static/icons/06007251.png b/static/icons/06007251.png deleted file mode 100755 index e86f85f9..00000000 Binary files a/static/icons/06007251.png and /dev/null differ diff --git a/static/icons/06007252.png b/static/icons/06007252.png deleted file mode 100755 index 3b838841..00000000 Binary files a/static/icons/06007252.png and /dev/null differ diff --git a/static/icons/06007253.png b/static/icons/06007253.png deleted file mode 100755 index 40e334b2..00000000 Binary files a/static/icons/06007253.png and /dev/null differ diff --git a/static/icons/06007254.png b/static/icons/06007254.png deleted file mode 100755 index e049d242..00000000 Binary files a/static/icons/06007254.png and /dev/null differ diff --git a/static/icons/06007255.png b/static/icons/06007255.png deleted file mode 100755 index d3977bcc..00000000 Binary files a/static/icons/06007255.png and /dev/null differ diff --git a/static/icons/06007256.png b/static/icons/06007256.png deleted file mode 100755 index 640cbba8..00000000 Binary files a/static/icons/06007256.png and /dev/null differ diff --git a/static/icons/06007257.png b/static/icons/06007257.png deleted file mode 100755 index 9e1aaf75..00000000 Binary files a/static/icons/06007257.png and /dev/null differ diff --git a/static/icons/06007258.png b/static/icons/06007258.png deleted file mode 100755 index 429ee139..00000000 Binary files a/static/icons/06007258.png and /dev/null differ diff --git a/static/icons/06007259.png b/static/icons/06007259.png deleted file mode 100755 index 56519e99..00000000 Binary files a/static/icons/06007259.png and /dev/null differ diff --git a/static/icons/0600725A.png b/static/icons/0600725A.png deleted file mode 100755 index 1cd03ceb..00000000 Binary files a/static/icons/0600725A.png and /dev/null differ diff --git a/static/icons/0600725B.png b/static/icons/0600725B.png deleted file mode 100755 index 5d1c3e46..00000000 Binary files a/static/icons/0600725B.png and /dev/null differ diff --git a/static/icons/0600725C.png b/static/icons/0600725C.png deleted file mode 100755 index 7ead71ea..00000000 Binary files a/static/icons/0600725C.png and /dev/null differ diff --git a/static/icons/0600725D.png b/static/icons/0600725D.png deleted file mode 100755 index 7ae3ccf6..00000000 Binary files a/static/icons/0600725D.png and /dev/null differ diff --git a/static/icons/0600725E.png b/static/icons/0600725E.png deleted file mode 100755 index 103cd714..00000000 Binary files a/static/icons/0600725E.png and /dev/null differ diff --git a/static/icons/0600725F.png b/static/icons/0600725F.png deleted file mode 100755 index 7e4bdf0a..00000000 Binary files a/static/icons/0600725F.png and /dev/null differ diff --git a/static/icons/06007260.png b/static/icons/06007260.png deleted file mode 100755 index 566d690e..00000000 Binary files a/static/icons/06007260.png and /dev/null differ diff --git a/static/icons/06007261.png b/static/icons/06007261.png deleted file mode 100755 index d8344903..00000000 Binary files a/static/icons/06007261.png and /dev/null differ diff --git a/static/icons/06007262.png b/static/icons/06007262.png deleted file mode 100755 index 0047e735..00000000 Binary files a/static/icons/06007262.png and /dev/null differ diff --git a/static/icons/06007263.png b/static/icons/06007263.png deleted file mode 100755 index a0f3df91..00000000 Binary files a/static/icons/06007263.png and /dev/null differ diff --git a/static/icons/06007264.png b/static/icons/06007264.png deleted file mode 100755 index 840c434c..00000000 Binary files a/static/icons/06007264.png and /dev/null differ diff --git a/static/icons/06007265.png b/static/icons/06007265.png deleted file mode 100755 index 65a8615b..00000000 Binary files a/static/icons/06007265.png and /dev/null differ diff --git a/static/icons/06007266.png b/static/icons/06007266.png deleted file mode 100755 index 8973f997..00000000 Binary files a/static/icons/06007266.png and /dev/null differ diff --git a/static/icons/06007267.png b/static/icons/06007267.png deleted file mode 100755 index 0c616869..00000000 Binary files a/static/icons/06007267.png and /dev/null differ diff --git a/static/icons/06007268.png b/static/icons/06007268.png deleted file mode 100755 index ca33d7d7..00000000 Binary files a/static/icons/06007268.png and /dev/null differ diff --git a/static/icons/06007269.png b/static/icons/06007269.png deleted file mode 100755 index 1ba0b260..00000000 Binary files a/static/icons/06007269.png and /dev/null differ diff --git a/static/icons/0600726A.png b/static/icons/0600726A.png deleted file mode 100755 index ec411419..00000000 Binary files a/static/icons/0600726A.png and /dev/null differ diff --git a/static/icons/0600726B.png b/static/icons/0600726B.png deleted file mode 100755 index 341b0e8a..00000000 Binary files a/static/icons/0600726B.png and /dev/null differ diff --git a/static/icons/0600726C.png b/static/icons/0600726C.png deleted file mode 100755 index f4d55bd5..00000000 Binary files a/static/icons/0600726C.png and /dev/null differ diff --git a/static/icons/0600726D.png b/static/icons/0600726D.png deleted file mode 100755 index bc229971..00000000 Binary files a/static/icons/0600726D.png and /dev/null differ diff --git a/static/icons/0600726E.png b/static/icons/0600726E.png deleted file mode 100755 index 298a62fe..00000000 Binary files a/static/icons/0600726E.png and /dev/null differ diff --git a/static/icons/0600726F.png b/static/icons/0600726F.png deleted file mode 100755 index d061cf8f..00000000 Binary files a/static/icons/0600726F.png and /dev/null differ diff --git a/static/icons/06007270.png b/static/icons/06007270.png deleted file mode 100755 index 58c20124..00000000 Binary files a/static/icons/06007270.png and /dev/null differ diff --git a/static/icons/06007271.png b/static/icons/06007271.png deleted file mode 100755 index 822323df..00000000 Binary files a/static/icons/06007271.png and /dev/null differ diff --git a/static/icons/06007272.png b/static/icons/06007272.png deleted file mode 100755 index 822cdce5..00000000 Binary files a/static/icons/06007272.png and /dev/null differ diff --git a/static/icons/06007275.png b/static/icons/06007275.png deleted file mode 100755 index 9b62d3e5..00000000 Binary files a/static/icons/06007275.png and /dev/null differ diff --git a/static/icons/06007288.png b/static/icons/06007288.png deleted file mode 100755 index fdbd2491..00000000 Binary files a/static/icons/06007288.png and /dev/null differ diff --git a/static/icons/0600728B.png b/static/icons/0600728B.png deleted file mode 100755 index 62aa6f28..00000000 Binary files a/static/icons/0600728B.png and /dev/null differ diff --git a/static/icons/0600728C.png b/static/icons/0600728C.png deleted file mode 100755 index 0cd88d1d..00000000 Binary files a/static/icons/0600728C.png and /dev/null differ diff --git a/static/icons/0600728D.png b/static/icons/0600728D.png deleted file mode 100755 index 221de422..00000000 Binary files a/static/icons/0600728D.png and /dev/null differ diff --git a/static/icons/0600728E.png b/static/icons/0600728E.png deleted file mode 100755 index f67bce0d..00000000 Binary files a/static/icons/0600728E.png and /dev/null differ diff --git a/static/icons/0600728F.png b/static/icons/0600728F.png deleted file mode 100755 index d1f4c836..00000000 Binary files a/static/icons/0600728F.png and /dev/null differ diff --git a/static/icons/06007290.png b/static/icons/06007290.png deleted file mode 100755 index 29585616..00000000 Binary files a/static/icons/06007290.png and /dev/null differ diff --git a/static/icons/06007291.png b/static/icons/06007291.png deleted file mode 100755 index 9fae6062..00000000 Binary files a/static/icons/06007291.png and /dev/null differ diff --git a/static/icons/06007292.png b/static/icons/06007292.png deleted file mode 100755 index 6dbccd40..00000000 Binary files a/static/icons/06007292.png and /dev/null differ diff --git a/static/icons/06007293.png b/static/icons/06007293.png deleted file mode 100755 index a82c503e..00000000 Binary files a/static/icons/06007293.png and /dev/null differ diff --git a/static/icons/06007294.png b/static/icons/06007294.png deleted file mode 100755 index 336091a9..00000000 Binary files a/static/icons/06007294.png and /dev/null differ diff --git a/static/icons/06007295.png b/static/icons/06007295.png deleted file mode 100755 index 43b1ef15..00000000 Binary files a/static/icons/06007295.png and /dev/null differ diff --git a/static/icons/06007296.png b/static/icons/06007296.png deleted file mode 100755 index d36eab2b..00000000 Binary files a/static/icons/06007296.png and /dev/null differ diff --git a/static/icons/06007297.png b/static/icons/06007297.png deleted file mode 100755 index ba21b969..00000000 Binary files a/static/icons/06007297.png and /dev/null differ diff --git a/static/icons/06007298.png b/static/icons/06007298.png deleted file mode 100755 index 558fe7b1..00000000 Binary files a/static/icons/06007298.png and /dev/null differ diff --git a/static/icons/06007299.png b/static/icons/06007299.png deleted file mode 100755 index 12e145ab..00000000 Binary files a/static/icons/06007299.png and /dev/null differ diff --git a/static/icons/0600729A.png b/static/icons/0600729A.png deleted file mode 100755 index 4cd9227d..00000000 Binary files a/static/icons/0600729A.png and /dev/null differ diff --git a/static/icons/0600729B.png b/static/icons/0600729B.png deleted file mode 100755 index d29bede0..00000000 Binary files a/static/icons/0600729B.png and /dev/null differ diff --git a/static/icons/0600729C.png b/static/icons/0600729C.png deleted file mode 100755 index eda625e8..00000000 Binary files a/static/icons/0600729C.png and /dev/null differ diff --git a/static/icons/0600729D.png b/static/icons/0600729D.png deleted file mode 100755 index 80a3417c..00000000 Binary files a/static/icons/0600729D.png and /dev/null differ diff --git a/static/icons/0600729E.png b/static/icons/0600729E.png deleted file mode 100755 index 6ea38351..00000000 Binary files a/static/icons/0600729E.png and /dev/null differ diff --git a/static/icons/0600729F.png b/static/icons/0600729F.png deleted file mode 100755 index 6f9f3f0e..00000000 Binary files a/static/icons/0600729F.png and /dev/null differ diff --git a/static/icons/060072A0.png b/static/icons/060072A0.png deleted file mode 100755 index 7a36dfbe..00000000 Binary files a/static/icons/060072A0.png and /dev/null differ diff --git a/static/icons/060072A1.png b/static/icons/060072A1.png deleted file mode 100755 index 02d65f2f..00000000 Binary files a/static/icons/060072A1.png and /dev/null differ diff --git a/static/icons/060072A2.png b/static/icons/060072A2.png deleted file mode 100755 index 2ef91081..00000000 Binary files a/static/icons/060072A2.png and /dev/null differ diff --git a/static/icons/060072A3.png b/static/icons/060072A3.png deleted file mode 100755 index badfe967..00000000 Binary files a/static/icons/060072A3.png and /dev/null differ diff --git a/static/icons/060072A4.png b/static/icons/060072A4.png deleted file mode 100755 index 20205b98..00000000 Binary files a/static/icons/060072A4.png and /dev/null differ diff --git a/static/icons/060072A5.png b/static/icons/060072A5.png deleted file mode 100755 index dd23456b..00000000 Binary files a/static/icons/060072A5.png and /dev/null differ diff --git a/static/icons/060072A6.png b/static/icons/060072A6.png deleted file mode 100755 index 20205b98..00000000 Binary files a/static/icons/060072A6.png and /dev/null differ diff --git a/static/icons/060072A7.png b/static/icons/060072A7.png deleted file mode 100755 index cf3bd28a..00000000 Binary files a/static/icons/060072A7.png and /dev/null differ diff --git a/static/icons/060072A8.png b/static/icons/060072A8.png deleted file mode 100755 index c6952131..00000000 Binary files a/static/icons/060072A8.png and /dev/null differ diff --git a/static/icons/060072A9.png b/static/icons/060072A9.png deleted file mode 100755 index 9cdff7eb..00000000 Binary files a/static/icons/060072A9.png and /dev/null differ diff --git a/static/icons/060072AA.png b/static/icons/060072AA.png deleted file mode 100755 index 1c226109..00000000 Binary files a/static/icons/060072AA.png and /dev/null differ diff --git a/static/icons/060072AB.png b/static/icons/060072AB.png deleted file mode 100755 index 08e067f8..00000000 Binary files a/static/icons/060072AB.png and /dev/null differ diff --git a/static/icons/060072AC.png b/static/icons/060072AC.png deleted file mode 100755 index 728f799c..00000000 Binary files a/static/icons/060072AC.png and /dev/null differ diff --git a/static/icons/060072AD.png b/static/icons/060072AD.png deleted file mode 100755 index 035a2bca..00000000 Binary files a/static/icons/060072AD.png and /dev/null differ diff --git a/static/icons/060072AE.png b/static/icons/060072AE.png deleted file mode 100755 index 95445ae4..00000000 Binary files a/static/icons/060072AE.png and /dev/null differ diff --git a/static/icons/060072AF.png b/static/icons/060072AF.png deleted file mode 100755 index 3e41cf0d..00000000 Binary files a/static/icons/060072AF.png and /dev/null differ diff --git a/static/icons/060072B0.png b/static/icons/060072B0.png deleted file mode 100755 index e1cc936b..00000000 Binary files a/static/icons/060072B0.png and /dev/null differ diff --git a/static/icons/060072B1.png b/static/icons/060072B1.png deleted file mode 100755 index 16fe62c9..00000000 Binary files a/static/icons/060072B1.png and /dev/null differ diff --git a/static/icons/060072B2.png b/static/icons/060072B2.png deleted file mode 100755 index 76cd1ec0..00000000 Binary files a/static/icons/060072B2.png and /dev/null differ diff --git a/static/icons/060072B3.png b/static/icons/060072B3.png deleted file mode 100755 index 41c97128..00000000 Binary files a/static/icons/060072B3.png and /dev/null differ diff --git a/static/icons/060072B4.png b/static/icons/060072B4.png deleted file mode 100755 index ce1e68ab..00000000 Binary files a/static/icons/060072B4.png and /dev/null differ diff --git a/static/icons/060072B5.png b/static/icons/060072B5.png deleted file mode 100755 index 6922c50c..00000000 Binary files a/static/icons/060072B5.png and /dev/null differ diff --git a/static/icons/060072C3.png b/static/icons/060072C3.png deleted file mode 100755 index 433ca738..00000000 Binary files a/static/icons/060072C3.png and /dev/null differ diff --git a/static/icons/060072C4.png b/static/icons/060072C4.png deleted file mode 100755 index 9cd32d54..00000000 Binary files a/static/icons/060072C4.png and /dev/null differ diff --git a/static/icons/060072C5.png b/static/icons/060072C5.png deleted file mode 100755 index bdb7581a..00000000 Binary files a/static/icons/060072C5.png and /dev/null differ diff --git a/static/icons/060072CC.png b/static/icons/060072CC.png deleted file mode 100755 index bb594494..00000000 Binary files a/static/icons/060072CC.png and /dev/null differ diff --git a/static/icons/060072CD.png b/static/icons/060072CD.png deleted file mode 100755 index d572627b..00000000 Binary files a/static/icons/060072CD.png and /dev/null differ diff --git a/static/icons/060072CE.png b/static/icons/060072CE.png deleted file mode 100755 index f2c62147..00000000 Binary files a/static/icons/060072CE.png and /dev/null differ diff --git a/static/icons/060072CF.png b/static/icons/060072CF.png deleted file mode 100755 index 342d2f8b..00000000 Binary files a/static/icons/060072CF.png and /dev/null differ diff --git a/static/icons/060072D0.png b/static/icons/060072D0.png deleted file mode 100755 index d1764820..00000000 Binary files a/static/icons/060072D0.png and /dev/null differ diff --git a/static/icons/060072D6.png b/static/icons/060072D6.png deleted file mode 100755 index 49151ea1..00000000 Binary files a/static/icons/060072D6.png and /dev/null differ diff --git a/static/icons/060072D7.png b/static/icons/060072D7.png deleted file mode 100755 index 90b29a68..00000000 Binary files a/static/icons/060072D7.png and /dev/null differ diff --git a/static/icons/060072D8.png b/static/icons/060072D8.png deleted file mode 100755 index e7ba2c8f..00000000 Binary files a/static/icons/060072D8.png and /dev/null differ diff --git a/static/icons/060072D9.png b/static/icons/060072D9.png deleted file mode 100755 index 7046e977..00000000 Binary files a/static/icons/060072D9.png and /dev/null differ diff --git a/static/icons/060072DA.png b/static/icons/060072DA.png deleted file mode 100755 index 3f6710b1..00000000 Binary files a/static/icons/060072DA.png and /dev/null differ diff --git a/static/icons/060072E7.png b/static/icons/060072E7.png deleted file mode 100755 index d0d68816..00000000 Binary files a/static/icons/060072E7.png and /dev/null differ diff --git a/static/icons/060072E8.png b/static/icons/060072E8.png deleted file mode 100755 index ceac83fc..00000000 Binary files a/static/icons/060072E8.png and /dev/null differ diff --git a/static/icons/060072E9.png b/static/icons/060072E9.png deleted file mode 100755 index 0a16cad5..00000000 Binary files a/static/icons/060072E9.png and /dev/null differ diff --git a/static/icons/060072EB.png b/static/icons/060072EB.png deleted file mode 100755 index f2d7547f..00000000 Binary files a/static/icons/060072EB.png and /dev/null differ diff --git a/static/icons/060072EC.png b/static/icons/060072EC.png deleted file mode 100755 index 0030f9bd..00000000 Binary files a/static/icons/060072EC.png and /dev/null differ diff --git a/static/icons/060072ED.png b/static/icons/060072ED.png deleted file mode 100755 index ba9500eb..00000000 Binary files a/static/icons/060072ED.png and /dev/null differ diff --git a/static/icons/060072EE.png b/static/icons/060072EE.png deleted file mode 100755 index 79e49be3..00000000 Binary files a/static/icons/060072EE.png and /dev/null differ diff --git a/static/icons/060072EF.png b/static/icons/060072EF.png deleted file mode 100755 index db508c2a..00000000 Binary files a/static/icons/060072EF.png and /dev/null differ diff --git a/static/icons/060072F0.png b/static/icons/060072F0.png deleted file mode 100755 index 1773e744..00000000 Binary files a/static/icons/060072F0.png and /dev/null differ diff --git a/static/icons/060072F1.png b/static/icons/060072F1.png deleted file mode 100755 index cb6013f2..00000000 Binary files a/static/icons/060072F1.png and /dev/null differ diff --git a/static/icons/060072F2.png b/static/icons/060072F2.png deleted file mode 100755 index dec67fe2..00000000 Binary files a/static/icons/060072F2.png and /dev/null differ diff --git a/static/icons/060072F3.png b/static/icons/060072F3.png deleted file mode 100755 index 2fc57931..00000000 Binary files a/static/icons/060072F3.png and /dev/null differ diff --git a/static/icons/060072F4.png b/static/icons/060072F4.png deleted file mode 100755 index 4a642533..00000000 Binary files a/static/icons/060072F4.png and /dev/null differ diff --git a/static/icons/060072F5.png b/static/icons/060072F5.png deleted file mode 100755 index 1955ea4a..00000000 Binary files a/static/icons/060072F5.png and /dev/null differ diff --git a/static/icons/060072F6.png b/static/icons/060072F6.png deleted file mode 100755 index c6fad8dc..00000000 Binary files a/static/icons/060072F6.png and /dev/null differ diff --git a/static/icons/060072F7.png b/static/icons/060072F7.png deleted file mode 100755 index 04da59e4..00000000 Binary files a/static/icons/060072F7.png and /dev/null differ diff --git a/static/icons/060072F8.png b/static/icons/060072F8.png deleted file mode 100755 index 47b63599..00000000 Binary files a/static/icons/060072F8.png and /dev/null differ diff --git a/static/icons/060072F9.png b/static/icons/060072F9.png deleted file mode 100755 index 908a0af2..00000000 Binary files a/static/icons/060072F9.png and /dev/null differ diff --git a/static/icons/060072FA.png b/static/icons/060072FA.png deleted file mode 100755 index 733eff8d..00000000 Binary files a/static/icons/060072FA.png and /dev/null differ diff --git a/static/icons/060072FB.png b/static/icons/060072FB.png deleted file mode 100755 index d0898cb4..00000000 Binary files a/static/icons/060072FB.png and /dev/null differ diff --git a/static/icons/060072FC.png b/static/icons/060072FC.png deleted file mode 100755 index 13355a7a..00000000 Binary files a/static/icons/060072FC.png and /dev/null differ diff --git a/static/icons/060072FD.png b/static/icons/060072FD.png deleted file mode 100755 index d8e3570d..00000000 Binary files a/static/icons/060072FD.png and /dev/null differ diff --git a/static/icons/060072FE.png b/static/icons/060072FE.png deleted file mode 100755 index 0f8b3241..00000000 Binary files a/static/icons/060072FE.png and /dev/null differ diff --git a/static/icons/060072FF.png b/static/icons/060072FF.png deleted file mode 100755 index 6c6133da..00000000 Binary files a/static/icons/060072FF.png and /dev/null differ diff --git a/static/icons/06007300.png b/static/icons/06007300.png deleted file mode 100755 index a497d25b..00000000 Binary files a/static/icons/06007300.png and /dev/null differ diff --git a/static/icons/06007301.png b/static/icons/06007301.png deleted file mode 100755 index e3a87455..00000000 Binary files a/static/icons/06007301.png and /dev/null differ diff --git a/static/icons/06007302.png b/static/icons/06007302.png deleted file mode 100755 index 87b2c212..00000000 Binary files a/static/icons/06007302.png and /dev/null differ diff --git a/static/icons/06007303.png b/static/icons/06007303.png deleted file mode 100755 index 77298586..00000000 Binary files a/static/icons/06007303.png and /dev/null differ diff --git a/static/icons/06007304.png b/static/icons/06007304.png deleted file mode 100755 index 5932df09..00000000 Binary files a/static/icons/06007304.png and /dev/null differ diff --git a/static/icons/06007305.png b/static/icons/06007305.png deleted file mode 100755 index d41ff697..00000000 Binary files a/static/icons/06007305.png and /dev/null differ diff --git a/static/icons/06007306.png b/static/icons/06007306.png deleted file mode 100755 index 5a2c337e..00000000 Binary files a/static/icons/06007306.png and /dev/null differ diff --git a/static/icons/06007307.png b/static/icons/06007307.png deleted file mode 100755 index 84088d59..00000000 Binary files a/static/icons/06007307.png and /dev/null differ diff --git a/static/icons/06007308.png b/static/icons/06007308.png deleted file mode 100755 index bd517254..00000000 Binary files a/static/icons/06007308.png and /dev/null differ diff --git a/static/icons/06007309.png b/static/icons/06007309.png deleted file mode 100755 index 5ec974a9..00000000 Binary files a/static/icons/06007309.png and /dev/null differ diff --git a/static/icons/0600730A.png b/static/icons/0600730A.png deleted file mode 100755 index 136f8cf1..00000000 Binary files a/static/icons/0600730A.png and /dev/null differ diff --git a/static/icons/0600730B.png b/static/icons/0600730B.png deleted file mode 100755 index 88a9093a..00000000 Binary files a/static/icons/0600730B.png and /dev/null differ diff --git a/static/icons/0600730C.png b/static/icons/0600730C.png deleted file mode 100755 index 101a578c..00000000 Binary files a/static/icons/0600730C.png and /dev/null differ diff --git a/static/icons/0600730D.png b/static/icons/0600730D.png deleted file mode 100755 index a30c8e8a..00000000 Binary files a/static/icons/0600730D.png and /dev/null differ diff --git a/static/icons/0600730E.png b/static/icons/0600730E.png deleted file mode 100755 index 3a5475f8..00000000 Binary files a/static/icons/0600730E.png and /dev/null differ diff --git a/static/icons/0600730F.png b/static/icons/0600730F.png deleted file mode 100755 index f730b59e..00000000 Binary files a/static/icons/0600730F.png and /dev/null differ diff --git a/static/icons/06007310.png b/static/icons/06007310.png deleted file mode 100755 index 9af1c166..00000000 Binary files a/static/icons/06007310.png and /dev/null differ diff --git a/static/icons/06007311.png b/static/icons/06007311.png deleted file mode 100755 index 8fd64730..00000000 Binary files a/static/icons/06007311.png and /dev/null differ diff --git a/static/icons/06007312.png b/static/icons/06007312.png deleted file mode 100755 index 242d3114..00000000 Binary files a/static/icons/06007312.png and /dev/null differ diff --git a/static/icons/06007313.png b/static/icons/06007313.png deleted file mode 100755 index dffcb351..00000000 Binary files a/static/icons/06007313.png and /dev/null differ diff --git a/static/icons/06007314.png b/static/icons/06007314.png deleted file mode 100755 index 09caa07a..00000000 Binary files a/static/icons/06007314.png and /dev/null differ diff --git a/static/icons/06007315.png b/static/icons/06007315.png deleted file mode 100755 index ed9fa9e1..00000000 Binary files a/static/icons/06007315.png and /dev/null differ diff --git a/static/icons/06007327.png b/static/icons/06007327.png deleted file mode 100755 index c4882674..00000000 Binary files a/static/icons/06007327.png and /dev/null differ diff --git a/static/icons/06007328.png b/static/icons/06007328.png deleted file mode 100755 index e9f3d79f..00000000 Binary files a/static/icons/06007328.png and /dev/null differ diff --git a/static/icons/06007329.png b/static/icons/06007329.png deleted file mode 100755 index 7d76df3f..00000000 Binary files a/static/icons/06007329.png and /dev/null differ diff --git a/static/icons/0600732A.png b/static/icons/0600732A.png deleted file mode 100755 index e718ba57..00000000 Binary files a/static/icons/0600732A.png and /dev/null differ diff --git a/static/icons/0600732B.png b/static/icons/0600732B.png deleted file mode 100755 index c77aacef..00000000 Binary files a/static/icons/0600732B.png and /dev/null differ diff --git a/static/icons/0600732C.png b/static/icons/0600732C.png deleted file mode 100755 index 743786c5..00000000 Binary files a/static/icons/0600732C.png and /dev/null differ diff --git a/static/icons/0600732D.png b/static/icons/0600732D.png deleted file mode 100755 index 98c3df2b..00000000 Binary files a/static/icons/0600732D.png and /dev/null differ diff --git a/static/icons/0600732E.png b/static/icons/0600732E.png deleted file mode 100755 index 0022b21c..00000000 Binary files a/static/icons/0600732E.png and /dev/null differ diff --git a/static/icons/0600732F.png b/static/icons/0600732F.png deleted file mode 100755 index 376c2358..00000000 Binary files a/static/icons/0600732F.png and /dev/null differ diff --git a/static/icons/06007330.png b/static/icons/06007330.png deleted file mode 100755 index 856d092f..00000000 Binary files a/static/icons/06007330.png and /dev/null differ diff --git a/static/icons/06007331.png b/static/icons/06007331.png deleted file mode 100755 index 6f2e1426..00000000 Binary files a/static/icons/06007331.png and /dev/null differ diff --git a/static/icons/06007332.png b/static/icons/06007332.png deleted file mode 100755 index ab54f669..00000000 Binary files a/static/icons/06007332.png and /dev/null differ diff --git a/static/icons/06007333.png b/static/icons/06007333.png deleted file mode 100755 index b4678a77..00000000 Binary files a/static/icons/06007333.png and /dev/null differ diff --git a/static/icons/06007334.png b/static/icons/06007334.png deleted file mode 100755 index a22938a6..00000000 Binary files a/static/icons/06007334.png and /dev/null differ diff --git a/static/icons/06007335.png b/static/icons/06007335.png deleted file mode 100755 index 596cb381..00000000 Binary files a/static/icons/06007335.png and /dev/null differ diff --git a/static/icons/06007336.png b/static/icons/06007336.png deleted file mode 100755 index cebcb252..00000000 Binary files a/static/icons/06007336.png and /dev/null differ diff --git a/static/icons/06007337.png b/static/icons/06007337.png deleted file mode 100755 index 113a4777..00000000 Binary files a/static/icons/06007337.png and /dev/null differ diff --git a/static/icons/06007338.png b/static/icons/06007338.png deleted file mode 100755 index 1e79f243..00000000 Binary files a/static/icons/06007338.png and /dev/null differ diff --git a/static/icons/06007339.png b/static/icons/06007339.png deleted file mode 100755 index a467d349..00000000 Binary files a/static/icons/06007339.png and /dev/null differ diff --git a/static/icons/0600733A.png b/static/icons/0600733A.png deleted file mode 100755 index 638a7dca..00000000 Binary files a/static/icons/0600733A.png and /dev/null differ diff --git a/static/icons/0600733B.png b/static/icons/0600733B.png deleted file mode 100755 index 519357e0..00000000 Binary files a/static/icons/0600733B.png and /dev/null differ diff --git a/static/icons/0600733C.png b/static/icons/0600733C.png deleted file mode 100755 index c6f42d61..00000000 Binary files a/static/icons/0600733C.png and /dev/null differ diff --git a/static/icons/0600733D.png b/static/icons/0600733D.png deleted file mode 100755 index be21fea1..00000000 Binary files a/static/icons/0600733D.png and /dev/null differ diff --git a/static/icons/0600733E.png b/static/icons/0600733E.png deleted file mode 100755 index 15626b12..00000000 Binary files a/static/icons/0600733E.png and /dev/null differ diff --git a/static/icons/0600733F.png b/static/icons/0600733F.png deleted file mode 100755 index 4db9013c..00000000 Binary files a/static/icons/0600733F.png and /dev/null differ diff --git a/static/icons/06007340.png b/static/icons/06007340.png deleted file mode 100755 index 6b87265f..00000000 Binary files a/static/icons/06007340.png and /dev/null differ diff --git a/static/icons/06007341.png b/static/icons/06007341.png deleted file mode 100755 index 30801f62..00000000 Binary files a/static/icons/06007341.png and /dev/null differ diff --git a/static/icons/06007342.png b/static/icons/06007342.png deleted file mode 100755 index 37374def..00000000 Binary files a/static/icons/06007342.png and /dev/null differ diff --git a/static/icons/06007343.png b/static/icons/06007343.png deleted file mode 100755 index 762ff05b..00000000 Binary files a/static/icons/06007343.png and /dev/null differ diff --git a/static/icons/06007344.png b/static/icons/06007344.png deleted file mode 100755 index 9f67bf56..00000000 Binary files a/static/icons/06007344.png and /dev/null differ diff --git a/static/icons/06007345.png b/static/icons/06007345.png deleted file mode 100755 index 47dbce7e..00000000 Binary files a/static/icons/06007345.png and /dev/null differ diff --git a/static/icons/06007346.png b/static/icons/06007346.png deleted file mode 100755 index 99358b1a..00000000 Binary files a/static/icons/06007346.png and /dev/null differ diff --git a/static/icons/06007347.png b/static/icons/06007347.png deleted file mode 100755 index 34a18f02..00000000 Binary files a/static/icons/06007347.png and /dev/null differ diff --git a/static/icons/06007348.png b/static/icons/06007348.png deleted file mode 100755 index ecd2db7f..00000000 Binary files a/static/icons/06007348.png and /dev/null differ diff --git a/static/icons/06007349.png b/static/icons/06007349.png deleted file mode 100755 index b4a03c2a..00000000 Binary files a/static/icons/06007349.png and /dev/null differ diff --git a/static/icons/0600734A.png b/static/icons/0600734A.png deleted file mode 100755 index 45d5cf4a..00000000 Binary files a/static/icons/0600734A.png and /dev/null differ diff --git a/static/icons/0600734B.png b/static/icons/0600734B.png deleted file mode 100755 index 81d4fdc6..00000000 Binary files a/static/icons/0600734B.png and /dev/null differ diff --git a/static/icons/0600734C.png b/static/icons/0600734C.png deleted file mode 100755 index 9f223d62..00000000 Binary files a/static/icons/0600734C.png and /dev/null differ diff --git a/static/icons/0600734D.png b/static/icons/0600734D.png deleted file mode 100755 index e7781afc..00000000 Binary files a/static/icons/0600734D.png and /dev/null differ diff --git a/static/icons/0600734E.png b/static/icons/0600734E.png deleted file mode 100755 index 982b9b4a..00000000 Binary files a/static/icons/0600734E.png and /dev/null differ diff --git a/static/icons/0600734F.png b/static/icons/0600734F.png deleted file mode 100755 index caad6c23..00000000 Binary files a/static/icons/0600734F.png and /dev/null differ diff --git a/static/icons/06007350.png b/static/icons/06007350.png deleted file mode 100755 index 7bc222fe..00000000 Binary files a/static/icons/06007350.png and /dev/null differ diff --git a/static/icons/06007351.png b/static/icons/06007351.png deleted file mode 100755 index 9a563b09..00000000 Binary files a/static/icons/06007351.png and /dev/null differ diff --git a/static/icons/06007352.png b/static/icons/06007352.png deleted file mode 100755 index 472abd31..00000000 Binary files a/static/icons/06007352.png and /dev/null differ diff --git a/static/icons/06007353.png b/static/icons/06007353.png deleted file mode 100755 index 7ac23fbd..00000000 Binary files a/static/icons/06007353.png and /dev/null differ diff --git a/static/icons/06007354.png b/static/icons/06007354.png deleted file mode 100755 index 14cf9800..00000000 Binary files a/static/icons/06007354.png and /dev/null differ diff --git a/static/icons/06007355.png b/static/icons/06007355.png deleted file mode 100755 index 8bf1d161..00000000 Binary files a/static/icons/06007355.png and /dev/null differ diff --git a/static/icons/06007356.png b/static/icons/06007356.png deleted file mode 100755 index 766a3fb2..00000000 Binary files a/static/icons/06007356.png and /dev/null differ diff --git a/static/icons/06007357.png b/static/icons/06007357.png deleted file mode 100755 index 0681f3cc..00000000 Binary files a/static/icons/06007357.png and /dev/null differ diff --git a/static/icons/06007358.png b/static/icons/06007358.png deleted file mode 100755 index 7475da2e..00000000 Binary files a/static/icons/06007358.png and /dev/null differ diff --git a/static/icons/06007359.png b/static/icons/06007359.png deleted file mode 100755 index fdd5f0b2..00000000 Binary files a/static/icons/06007359.png and /dev/null differ diff --git a/static/icons/0600735A.png b/static/icons/0600735A.png deleted file mode 100755 index c7eb2e32..00000000 Binary files a/static/icons/0600735A.png and /dev/null differ diff --git a/static/icons/0600735B.png b/static/icons/0600735B.png deleted file mode 100755 index cc7e3d56..00000000 Binary files a/static/icons/0600735B.png and /dev/null differ diff --git a/static/icons/0600735C.png b/static/icons/0600735C.png deleted file mode 100755 index dfca3e8d..00000000 Binary files a/static/icons/0600735C.png and /dev/null differ diff --git a/static/icons/0600735D.png b/static/icons/0600735D.png deleted file mode 100755 index 94ce92d7..00000000 Binary files a/static/icons/0600735D.png and /dev/null differ diff --git a/static/icons/0600735E.png b/static/icons/0600735E.png deleted file mode 100755 index 93640014..00000000 Binary files a/static/icons/0600735E.png and /dev/null differ diff --git a/static/icons/0600735F.png b/static/icons/0600735F.png deleted file mode 100755 index 3a83bb7e..00000000 Binary files a/static/icons/0600735F.png and /dev/null differ diff --git a/static/icons/06007360.png b/static/icons/06007360.png deleted file mode 100755 index 98518eda..00000000 Binary files a/static/icons/06007360.png and /dev/null differ diff --git a/static/icons/06007361.png b/static/icons/06007361.png deleted file mode 100755 index 7ba29931..00000000 Binary files a/static/icons/06007361.png and /dev/null differ diff --git a/static/icons/06007362.png b/static/icons/06007362.png deleted file mode 100755 index 940fd945..00000000 Binary files a/static/icons/06007362.png and /dev/null differ diff --git a/static/icons/06007363.png b/static/icons/06007363.png deleted file mode 100755 index ab7b6247..00000000 Binary files a/static/icons/06007363.png and /dev/null differ diff --git a/static/icons/06007366.png b/static/icons/06007366.png deleted file mode 100755 index b32d0ab0..00000000 Binary files a/static/icons/06007366.png and /dev/null differ diff --git a/static/icons/06007367.png b/static/icons/06007367.png deleted file mode 100755 index a5f436d0..00000000 Binary files a/static/icons/06007367.png and /dev/null differ diff --git a/static/icons/06007368.png b/static/icons/06007368.png deleted file mode 100755 index 0bd3e160..00000000 Binary files a/static/icons/06007368.png and /dev/null differ diff --git a/static/icons/06007369.png b/static/icons/06007369.png deleted file mode 100755 index 74c83583..00000000 Binary files a/static/icons/06007369.png and /dev/null differ diff --git a/static/icons/0600736A.png b/static/icons/0600736A.png deleted file mode 100755 index a53b3ae9..00000000 Binary files a/static/icons/0600736A.png and /dev/null differ diff --git a/static/icons/0600736B.png b/static/icons/0600736B.png deleted file mode 100755 index 58d79d92..00000000 Binary files a/static/icons/0600736B.png and /dev/null differ diff --git a/static/icons/0600736C.png b/static/icons/0600736C.png deleted file mode 100755 index 7c8523a3..00000000 Binary files a/static/icons/0600736C.png and /dev/null differ diff --git a/static/icons/0600736D.png b/static/icons/0600736D.png deleted file mode 100755 index 8a9f8157..00000000 Binary files a/static/icons/0600736D.png and /dev/null differ diff --git a/static/icons/0600736E.png b/static/icons/0600736E.png deleted file mode 100755 index b4ea488a..00000000 Binary files a/static/icons/0600736E.png and /dev/null differ diff --git a/static/icons/0600736F.png b/static/icons/0600736F.png deleted file mode 100755 index 23e816ad..00000000 Binary files a/static/icons/0600736F.png and /dev/null differ diff --git a/static/icons/06007370.png b/static/icons/06007370.png deleted file mode 100755 index 29cdc259..00000000 Binary files a/static/icons/06007370.png and /dev/null differ diff --git a/static/icons/06007371.png b/static/icons/06007371.png deleted file mode 100755 index fd131eb4..00000000 Binary files a/static/icons/06007371.png and /dev/null differ diff --git a/static/icons/06007372.png b/static/icons/06007372.png deleted file mode 100755 index be04e220..00000000 Binary files a/static/icons/06007372.png and /dev/null differ diff --git a/static/icons/06007373.png b/static/icons/06007373.png deleted file mode 100755 index b68ee140..00000000 Binary files a/static/icons/06007373.png and /dev/null differ diff --git a/static/icons/06007374.png b/static/icons/06007374.png deleted file mode 100755 index 77c86d33..00000000 Binary files a/static/icons/06007374.png and /dev/null differ diff --git a/static/icons/06007375.png b/static/icons/06007375.png deleted file mode 100755 index 8178907f..00000000 Binary files a/static/icons/06007375.png and /dev/null differ diff --git a/static/icons/06007376.png b/static/icons/06007376.png deleted file mode 100755 index 6ca055d8..00000000 Binary files a/static/icons/06007376.png and /dev/null differ diff --git a/static/icons/06007377.png b/static/icons/06007377.png deleted file mode 100755 index a08b9ef8..00000000 Binary files a/static/icons/06007377.png and /dev/null differ diff --git a/static/icons/06007378.png b/static/icons/06007378.png deleted file mode 100755 index 68abc645..00000000 Binary files a/static/icons/06007378.png and /dev/null differ diff --git a/static/icons/06007379.png b/static/icons/06007379.png deleted file mode 100755 index 596f9412..00000000 Binary files a/static/icons/06007379.png and /dev/null differ diff --git a/static/icons/0600737A.png b/static/icons/0600737A.png deleted file mode 100755 index 23fe2ef1..00000000 Binary files a/static/icons/0600737A.png and /dev/null differ diff --git a/static/icons/0600737B.png b/static/icons/0600737B.png deleted file mode 100755 index e336397f..00000000 Binary files a/static/icons/0600737B.png and /dev/null differ diff --git a/static/icons/06007381.png b/static/icons/06007381.png deleted file mode 100755 index c33e3aeb..00000000 Binary files a/static/icons/06007381.png and /dev/null differ diff --git a/static/icons/06007382.png b/static/icons/06007382.png deleted file mode 100755 index 284a7d56..00000000 Binary files a/static/icons/06007382.png and /dev/null differ diff --git a/static/icons/06007383.png b/static/icons/06007383.png deleted file mode 100755 index dac405eb..00000000 Binary files a/static/icons/06007383.png and /dev/null differ diff --git a/static/icons/06007384.png b/static/icons/06007384.png deleted file mode 100755 index 39abb870..00000000 Binary files a/static/icons/06007384.png and /dev/null differ diff --git a/static/icons/06007385.png b/static/icons/06007385.png deleted file mode 100755 index 2a7d45f1..00000000 Binary files a/static/icons/06007385.png and /dev/null differ diff --git a/static/icons/06007386.png b/static/icons/06007386.png deleted file mode 100755 index b1dd3d3c..00000000 Binary files a/static/icons/06007386.png and /dev/null differ diff --git a/static/icons/060073C9.png b/static/icons/060073C9.png deleted file mode 100755 index 8e577f0c..00000000 Binary files a/static/icons/060073C9.png and /dev/null differ diff --git a/static/icons/060073CA.png b/static/icons/060073CA.png deleted file mode 100755 index 0ecba933..00000000 Binary files a/static/icons/060073CA.png and /dev/null differ diff --git a/static/icons/060073CB.png b/static/icons/060073CB.png deleted file mode 100755 index ca1b1f8b..00000000 Binary files a/static/icons/060073CB.png and /dev/null differ diff --git a/static/icons/060073CC.png b/static/icons/060073CC.png deleted file mode 100755 index 8d493415..00000000 Binary files a/static/icons/060073CC.png and /dev/null differ diff --git a/static/icons/060073CD.png b/static/icons/060073CD.png deleted file mode 100755 index 215e7968..00000000 Binary files a/static/icons/060073CD.png and /dev/null differ diff --git a/static/icons/060073CE.png b/static/icons/060073CE.png deleted file mode 100755 index f4057489..00000000 Binary files a/static/icons/060073CE.png and /dev/null differ diff --git a/static/icons/060073CF.png b/static/icons/060073CF.png deleted file mode 100755 index 98cb0fbf..00000000 Binary files a/static/icons/060073CF.png and /dev/null differ diff --git a/static/icons/060073D0.png b/static/icons/060073D0.png deleted file mode 100755 index 71ea2ba0..00000000 Binary files a/static/icons/060073D0.png and /dev/null differ diff --git a/static/icons/060073D1.png b/static/icons/060073D1.png deleted file mode 100755 index ed2e0bad..00000000 Binary files a/static/icons/060073D1.png and /dev/null differ diff --git a/static/icons/060073D2.png b/static/icons/060073D2.png deleted file mode 100755 index bc42fa69..00000000 Binary files a/static/icons/060073D2.png and /dev/null differ diff --git a/static/icons/060073D3.png b/static/icons/060073D3.png deleted file mode 100755 index 447e4e0f..00000000 Binary files a/static/icons/060073D3.png and /dev/null differ diff --git a/static/icons/060073D4.png b/static/icons/060073D4.png deleted file mode 100755 index 12955c8a..00000000 Binary files a/static/icons/060073D4.png and /dev/null differ diff --git a/static/icons/060073D5.png b/static/icons/060073D5.png deleted file mode 100755 index a36615e0..00000000 Binary files a/static/icons/060073D5.png and /dev/null differ diff --git a/static/icons/060073D6.png b/static/icons/060073D6.png deleted file mode 100755 index 03bc96d9..00000000 Binary files a/static/icons/060073D6.png and /dev/null differ diff --git a/static/icons/060073D7.png b/static/icons/060073D7.png deleted file mode 100755 index 56ac4fbe..00000000 Binary files a/static/icons/060073D7.png and /dev/null differ diff --git a/static/icons/060073D8.png b/static/icons/060073D8.png deleted file mode 100755 index 8c67723f..00000000 Binary files a/static/icons/060073D8.png and /dev/null differ diff --git a/static/icons/060073D9.png b/static/icons/060073D9.png deleted file mode 100755 index f72f266c..00000000 Binary files a/static/icons/060073D9.png and /dev/null differ diff --git a/static/icons/060073DA.png b/static/icons/060073DA.png deleted file mode 100755 index 196f8bf9..00000000 Binary files a/static/icons/060073DA.png and /dev/null differ diff --git a/static/icons/060073DB.png b/static/icons/060073DB.png deleted file mode 100755 index 95e54472..00000000 Binary files a/static/icons/060073DB.png and /dev/null differ diff --git a/static/icons/060073DC.png b/static/icons/060073DC.png deleted file mode 100755 index 9ad61a84..00000000 Binary files a/static/icons/060073DC.png and /dev/null differ diff --git a/static/icons/060073DD.png b/static/icons/060073DD.png deleted file mode 100755 index 3552896e..00000000 Binary files a/static/icons/060073DD.png and /dev/null differ diff --git a/static/icons/060073DE.png b/static/icons/060073DE.png deleted file mode 100755 index 0299c740..00000000 Binary files a/static/icons/060073DE.png and /dev/null differ diff --git a/static/icons/060073DF.png b/static/icons/060073DF.png deleted file mode 100755 index 9e3263fc..00000000 Binary files a/static/icons/060073DF.png and /dev/null differ diff --git a/static/icons/060073E0.png b/static/icons/060073E0.png deleted file mode 100755 index bbd21a88..00000000 Binary files a/static/icons/060073E0.png and /dev/null differ diff --git a/static/icons/060073E1.png b/static/icons/060073E1.png deleted file mode 100755 index bc430bf2..00000000 Binary files a/static/icons/060073E1.png and /dev/null differ diff --git a/static/icons/060073E2.png b/static/icons/060073E2.png deleted file mode 100755 index 68a8cfa6..00000000 Binary files a/static/icons/060073E2.png and /dev/null differ diff --git a/static/icons/060073E8.png b/static/icons/060073E8.png deleted file mode 100755 index a4c51712..00000000 Binary files a/static/icons/060073E8.png and /dev/null differ diff --git a/static/icons/060073E9.png b/static/icons/060073E9.png deleted file mode 100755 index 6bc60b1a..00000000 Binary files a/static/icons/060073E9.png and /dev/null differ diff --git a/static/icons/060073EA.png b/static/icons/060073EA.png deleted file mode 100755 index ea2a6fdf..00000000 Binary files a/static/icons/060073EA.png and /dev/null differ diff --git a/static/icons/060073EB.png b/static/icons/060073EB.png deleted file mode 100755 index 345a0e8a..00000000 Binary files a/static/icons/060073EB.png and /dev/null differ diff --git a/static/icons/060073EC.png b/static/icons/060073EC.png deleted file mode 100755 index 99bd4403..00000000 Binary files a/static/icons/060073EC.png and /dev/null differ diff --git a/static/icons/060073ED.png b/static/icons/060073ED.png deleted file mode 100755 index 868458b5..00000000 Binary files a/static/icons/060073ED.png and /dev/null differ diff --git a/static/icons/060073EE.png b/static/icons/060073EE.png deleted file mode 100755 index faa40755..00000000 Binary files a/static/icons/060073EE.png and /dev/null differ diff --git a/static/icons/060073EF.png b/static/icons/060073EF.png deleted file mode 100755 index 9d070660..00000000 Binary files a/static/icons/060073EF.png and /dev/null differ diff --git a/static/icons/060073F0.png b/static/icons/060073F0.png deleted file mode 100755 index a0be26b2..00000000 Binary files a/static/icons/060073F0.png and /dev/null differ diff --git a/static/icons/060073F1.png b/static/icons/060073F1.png deleted file mode 100755 index b4852951..00000000 Binary files a/static/icons/060073F1.png and /dev/null differ diff --git a/static/icons/060073F2.png b/static/icons/060073F2.png deleted file mode 100755 index 75a4c9d7..00000000 Binary files a/static/icons/060073F2.png and /dev/null differ diff --git a/static/icons/060073F3.png b/static/icons/060073F3.png deleted file mode 100755 index e51f4b6a..00000000 Binary files a/static/icons/060073F3.png and /dev/null differ diff --git a/static/icons/060073F4.png b/static/icons/060073F4.png deleted file mode 100755 index e7c4dbbb..00000000 Binary files a/static/icons/060073F4.png and /dev/null differ diff --git a/static/icons/060073F5.png b/static/icons/060073F5.png deleted file mode 100755 index d4203655..00000000 Binary files a/static/icons/060073F5.png and /dev/null differ diff --git a/static/icons/060073F6.png b/static/icons/060073F6.png deleted file mode 100755 index 2c6e21fc..00000000 Binary files a/static/icons/060073F6.png and /dev/null differ diff --git a/static/icons/060073F7.png b/static/icons/060073F7.png deleted file mode 100755 index d12c10da..00000000 Binary files a/static/icons/060073F7.png and /dev/null differ diff --git a/static/icons/060073F8.png b/static/icons/060073F8.png deleted file mode 100755 index bcab2825..00000000 Binary files a/static/icons/060073F8.png and /dev/null differ diff --git a/static/icons/06007409.png b/static/icons/06007409.png deleted file mode 100755 index 5cdc9d1d..00000000 Binary files a/static/icons/06007409.png and /dev/null differ diff --git a/static/icons/0600740A.png b/static/icons/0600740A.png deleted file mode 100755 index a6f03085..00000000 Binary files a/static/icons/0600740A.png and /dev/null differ diff --git a/static/icons/0600740B.png b/static/icons/0600740B.png deleted file mode 100755 index ee542f44..00000000 Binary files a/static/icons/0600740B.png and /dev/null differ diff --git a/static/icons/0600740C.png b/static/icons/0600740C.png deleted file mode 100755 index 9f0219b6..00000000 Binary files a/static/icons/0600740C.png and /dev/null differ diff --git a/static/icons/0600740D.png b/static/icons/0600740D.png deleted file mode 100755 index 59f611bc..00000000 Binary files a/static/icons/0600740D.png and /dev/null differ diff --git a/static/icons/0600740E.png b/static/icons/0600740E.png deleted file mode 100755 index 800ba23d..00000000 Binary files a/static/icons/0600740E.png and /dev/null differ diff --git a/static/icons/0600740F.png b/static/icons/0600740F.png deleted file mode 100755 index 057d0c9e..00000000 Binary files a/static/icons/0600740F.png and /dev/null differ diff --git a/static/icons/06007410.png b/static/icons/06007410.png deleted file mode 100755 index 346cc8ba..00000000 Binary files a/static/icons/06007410.png and /dev/null differ diff --git a/static/icons/06007411.png b/static/icons/06007411.png deleted file mode 100755 index ac325824..00000000 Binary files a/static/icons/06007411.png and /dev/null differ diff --git a/static/icons/06007412.png b/static/icons/06007412.png deleted file mode 100755 index e38a0787..00000000 Binary files a/static/icons/06007412.png and /dev/null differ diff --git a/static/icons/0600741E.png b/static/icons/0600741E.png deleted file mode 100755 index 8d7b7929..00000000 Binary files a/static/icons/0600741E.png and /dev/null differ diff --git a/static/icons/0600741F.png b/static/icons/0600741F.png deleted file mode 100755 index 43ae71cd..00000000 Binary files a/static/icons/0600741F.png and /dev/null differ diff --git a/static/icons/06007420.png b/static/icons/06007420.png deleted file mode 100755 index 4a1720c8..00000000 Binary files a/static/icons/06007420.png and /dev/null differ diff --git a/static/icons/06007422.png b/static/icons/06007422.png deleted file mode 100755 index 4a6a524f..00000000 Binary files a/static/icons/06007422.png and /dev/null differ diff --git a/static/icons/06007423.png b/static/icons/06007423.png deleted file mode 100755 index 9957b5a8..00000000 Binary files a/static/icons/06007423.png and /dev/null differ diff --git a/static/icons/06007424.png b/static/icons/06007424.png deleted file mode 100755 index ff865a8a..00000000 Binary files a/static/icons/06007424.png and /dev/null differ diff --git a/static/icons/06007425.png b/static/icons/06007425.png deleted file mode 100755 index 26551b8b..00000000 Binary files a/static/icons/06007425.png and /dev/null differ diff --git a/static/icons/06007426.png b/static/icons/06007426.png deleted file mode 100755 index 0460315e..00000000 Binary files a/static/icons/06007426.png and /dev/null differ diff --git a/static/icons/06007427.png b/static/icons/06007427.png deleted file mode 100755 index 4c9805af..00000000 Binary files a/static/icons/06007427.png and /dev/null differ diff --git a/static/icons/06007428.png b/static/icons/06007428.png deleted file mode 100755 index 1954c293..00000000 Binary files a/static/icons/06007428.png and /dev/null differ diff --git a/static/icons/0600742A.png b/static/icons/0600742A.png deleted file mode 100755 index 52927416..00000000 Binary files a/static/icons/0600742A.png and /dev/null differ diff --git a/static/icons/0600742B.png b/static/icons/0600742B.png deleted file mode 100755 index 64d59dd3..00000000 Binary files a/static/icons/0600742B.png and /dev/null differ diff --git a/static/icons/0600742C.png b/static/icons/0600742C.png deleted file mode 100755 index 142f23ae..00000000 Binary files a/static/icons/0600742C.png and /dev/null differ diff --git a/static/icons/0600742D.png b/static/icons/0600742D.png deleted file mode 100755 index fde3c740..00000000 Binary files a/static/icons/0600742D.png and /dev/null differ diff --git a/static/icons/0600742E.png b/static/icons/0600742E.png deleted file mode 100755 index aae09e4b..00000000 Binary files a/static/icons/0600742E.png and /dev/null differ diff --git a/static/icons/0600742F.png b/static/icons/0600742F.png deleted file mode 100755 index 10c7570f..00000000 Binary files a/static/icons/0600742F.png and /dev/null differ diff --git a/static/icons/06007430.png b/static/icons/06007430.png deleted file mode 100755 index 6b47e79f..00000000 Binary files a/static/icons/06007430.png and /dev/null differ diff --git a/static/icons/06007431.png b/static/icons/06007431.png deleted file mode 100755 index 182c13f4..00000000 Binary files a/static/icons/06007431.png and /dev/null differ diff --git a/static/icons/06007432.png b/static/icons/06007432.png deleted file mode 100755 index fdfea6b7..00000000 Binary files a/static/icons/06007432.png and /dev/null differ diff --git a/static/icons/06007433.png b/static/icons/06007433.png deleted file mode 100755 index b23fc40f..00000000 Binary files a/static/icons/06007433.png and /dev/null differ diff --git a/static/icons/06007434.png b/static/icons/06007434.png deleted file mode 100755 index 8d4c74c3..00000000 Binary files a/static/icons/06007434.png and /dev/null differ diff --git a/static/icons/06007435.png b/static/icons/06007435.png deleted file mode 100755 index e627431c..00000000 Binary files a/static/icons/06007435.png and /dev/null differ diff --git a/static/icons/06007436.png b/static/icons/06007436.png deleted file mode 100755 index 7b37c6f4..00000000 Binary files a/static/icons/06007436.png and /dev/null differ diff --git a/static/icons/06007437.png b/static/icons/06007437.png deleted file mode 100755 index 6e14a4c3..00000000 Binary files a/static/icons/06007437.png and /dev/null differ diff --git a/static/icons/06007438.png b/static/icons/06007438.png deleted file mode 100755 index 3e26874c..00000000 Binary files a/static/icons/06007438.png and /dev/null differ diff --git a/static/icons/06007439.png b/static/icons/06007439.png deleted file mode 100755 index 71f6cda7..00000000 Binary files a/static/icons/06007439.png and /dev/null differ diff --git a/static/icons/0600743A.png b/static/icons/0600743A.png deleted file mode 100755 index b1572cdd..00000000 Binary files a/static/icons/0600743A.png and /dev/null differ diff --git a/static/icons/0600743B.png b/static/icons/0600743B.png deleted file mode 100755 index 3c4e14ef..00000000 Binary files a/static/icons/0600743B.png and /dev/null differ diff --git a/static/icons/0600743C.png b/static/icons/0600743C.png deleted file mode 100755 index 9992be06..00000000 Binary files a/static/icons/0600743C.png and /dev/null differ diff --git a/static/icons/0600743D.png b/static/icons/0600743D.png deleted file mode 100755 index c989f7fa..00000000 Binary files a/static/icons/0600743D.png and /dev/null differ diff --git a/static/icons/0600743E.png b/static/icons/0600743E.png deleted file mode 100755 index 81795fdb..00000000 Binary files a/static/icons/0600743E.png and /dev/null differ diff --git a/static/icons/0600743F.png b/static/icons/0600743F.png deleted file mode 100755 index 0f98b333..00000000 Binary files a/static/icons/0600743F.png and /dev/null differ diff --git a/static/icons/06007440.png b/static/icons/06007440.png deleted file mode 100755 index 12f0e27e..00000000 Binary files a/static/icons/06007440.png and /dev/null differ diff --git a/static/icons/06007441.png b/static/icons/06007441.png deleted file mode 100755 index 82b36317..00000000 Binary files a/static/icons/06007441.png and /dev/null differ diff --git a/static/icons/06007442.png b/static/icons/06007442.png deleted file mode 100755 index 04b96271..00000000 Binary files a/static/icons/06007442.png and /dev/null differ diff --git a/static/icons/06007443.png b/static/icons/06007443.png deleted file mode 100755 index c2604ec4..00000000 Binary files a/static/icons/06007443.png and /dev/null differ diff --git a/static/icons/06007444.png b/static/icons/06007444.png deleted file mode 100755 index 3737f99e..00000000 Binary files a/static/icons/06007444.png and /dev/null differ diff --git a/static/icons/06007445.png b/static/icons/06007445.png deleted file mode 100755 index 7febfd3c..00000000 Binary files a/static/icons/06007445.png and /dev/null differ diff --git a/static/icons/06007446.png b/static/icons/06007446.png deleted file mode 100755 index c8677943..00000000 Binary files a/static/icons/06007446.png and /dev/null differ diff --git a/static/icons/06007447.png b/static/icons/06007447.png deleted file mode 100755 index 46e65f6c..00000000 Binary files a/static/icons/06007447.png and /dev/null differ diff --git a/static/icons/06007448.png b/static/icons/06007448.png deleted file mode 100755 index 63fbb479..00000000 Binary files a/static/icons/06007448.png and /dev/null differ diff --git a/static/icons/06007449.png b/static/icons/06007449.png deleted file mode 100755 index 97d6c284..00000000 Binary files a/static/icons/06007449.png and /dev/null differ diff --git a/static/icons/0600744A.png b/static/icons/0600744A.png deleted file mode 100755 index dfe3de05..00000000 Binary files a/static/icons/0600744A.png and /dev/null differ diff --git a/static/icons/0600744B.png b/static/icons/0600744B.png deleted file mode 100755 index dff848ff..00000000 Binary files a/static/icons/0600744B.png and /dev/null differ diff --git a/static/icons/0600744C.png b/static/icons/0600744C.png deleted file mode 100755 index 777e5dc1..00000000 Binary files a/static/icons/0600744C.png and /dev/null differ diff --git a/static/icons/0600744D.png b/static/icons/0600744D.png deleted file mode 100755 index bb1bc485..00000000 Binary files a/static/icons/0600744D.png and /dev/null differ diff --git a/static/icons/0600744E.png b/static/icons/0600744E.png deleted file mode 100755 index a29b9707..00000000 Binary files a/static/icons/0600744E.png and /dev/null differ diff --git a/static/icons/0600744F.png b/static/icons/0600744F.png deleted file mode 100755 index 2334c8c9..00000000 Binary files a/static/icons/0600744F.png and /dev/null differ diff --git a/static/icons/06007450.png b/static/icons/06007450.png deleted file mode 100755 index 0b735cfa..00000000 Binary files a/static/icons/06007450.png and /dev/null differ diff --git a/static/icons/06007451.png b/static/icons/06007451.png deleted file mode 100755 index 1d4486f4..00000000 Binary files a/static/icons/06007451.png and /dev/null differ diff --git a/static/icons/06007452.png b/static/icons/06007452.png deleted file mode 100755 index 3cfaae1e..00000000 Binary files a/static/icons/06007452.png and /dev/null differ diff --git a/static/icons/06007453.png b/static/icons/06007453.png deleted file mode 100755 index 2fd27cf7..00000000 Binary files a/static/icons/06007453.png and /dev/null differ diff --git a/static/icons/06007454.png b/static/icons/06007454.png deleted file mode 100755 index 2536aff6..00000000 Binary files a/static/icons/06007454.png and /dev/null differ diff --git a/static/icons/06007455.png b/static/icons/06007455.png deleted file mode 100755 index 4500bd98..00000000 Binary files a/static/icons/06007455.png and /dev/null differ diff --git a/static/icons/06007456.png b/static/icons/06007456.png deleted file mode 100755 index 7000c874..00000000 Binary files a/static/icons/06007456.png and /dev/null differ diff --git a/static/icons/06007457.png b/static/icons/06007457.png deleted file mode 100755 index 5137f78a..00000000 Binary files a/static/icons/06007457.png and /dev/null differ diff --git a/static/icons/06007458.png b/static/icons/06007458.png deleted file mode 100755 index 8cf02d6b..00000000 Binary files a/static/icons/06007458.png and /dev/null differ diff --git a/static/icons/06007459.png b/static/icons/06007459.png deleted file mode 100755 index c0e404bb..00000000 Binary files a/static/icons/06007459.png and /dev/null differ diff --git a/static/icons/0600745A.png b/static/icons/0600745A.png deleted file mode 100755 index 176ba5f0..00000000 Binary files a/static/icons/0600745A.png and /dev/null differ diff --git a/static/icons/0600745B.png b/static/icons/0600745B.png deleted file mode 100755 index c59bbc40..00000000 Binary files a/static/icons/0600745B.png and /dev/null differ diff --git a/static/icons/0600745C.png b/static/icons/0600745C.png deleted file mode 100755 index 3a4e17f0..00000000 Binary files a/static/icons/0600745C.png and /dev/null differ diff --git a/static/icons/0600745D.png b/static/icons/0600745D.png deleted file mode 100755 index 84162532..00000000 Binary files a/static/icons/0600745D.png and /dev/null differ diff --git a/static/icons/0600745E.png b/static/icons/0600745E.png deleted file mode 100755 index 1cf92fd1..00000000 Binary files a/static/icons/0600745E.png and /dev/null differ diff --git a/static/icons/0600745F.png b/static/icons/0600745F.png deleted file mode 100755 index 164466d8..00000000 Binary files a/static/icons/0600745F.png and /dev/null differ diff --git a/static/icons/06007460.png b/static/icons/06007460.png deleted file mode 100755 index 3cd8acc1..00000000 Binary files a/static/icons/06007460.png and /dev/null differ diff --git a/static/icons/06007461.png b/static/icons/06007461.png deleted file mode 100755 index 749c60f5..00000000 Binary files a/static/icons/06007461.png and /dev/null differ diff --git a/static/icons/06007462.png b/static/icons/06007462.png deleted file mode 100755 index f189ec18..00000000 Binary files a/static/icons/06007462.png and /dev/null differ diff --git a/static/icons/06007463.png b/static/icons/06007463.png deleted file mode 100755 index 91dac132..00000000 Binary files a/static/icons/06007463.png and /dev/null differ diff --git a/static/icons/06007464.png b/static/icons/06007464.png deleted file mode 100755 index 44757c5b..00000000 Binary files a/static/icons/06007464.png and /dev/null differ diff --git a/static/icons/06007465.png b/static/icons/06007465.png deleted file mode 100755 index e9b6f6d2..00000000 Binary files a/static/icons/06007465.png and /dev/null differ diff --git a/static/icons/06007466.png b/static/icons/06007466.png deleted file mode 100755 index e66bd437..00000000 Binary files a/static/icons/06007466.png and /dev/null differ diff --git a/static/icons/06007467.png b/static/icons/06007467.png deleted file mode 100755 index 488a00e9..00000000 Binary files a/static/icons/06007467.png and /dev/null differ diff --git a/static/icons/06007468.png b/static/icons/06007468.png deleted file mode 100755 index ca4afcc8..00000000 Binary files a/static/icons/06007468.png and /dev/null differ diff --git a/static/icons/06007469.png b/static/icons/06007469.png deleted file mode 100755 index de9f6d26..00000000 Binary files a/static/icons/06007469.png and /dev/null differ diff --git a/static/icons/0600746A.png b/static/icons/0600746A.png deleted file mode 100755 index 513b5a55..00000000 Binary files a/static/icons/0600746A.png and /dev/null differ diff --git a/static/icons/0600746B.png b/static/icons/0600746B.png deleted file mode 100755 index 077e61cc..00000000 Binary files a/static/icons/0600746B.png and /dev/null differ diff --git a/static/icons/0600746C.png b/static/icons/0600746C.png deleted file mode 100755 index 7e5ecd9a..00000000 Binary files a/static/icons/0600746C.png and /dev/null differ diff --git a/static/icons/0600746D.png b/static/icons/0600746D.png deleted file mode 100755 index a89c8a32..00000000 Binary files a/static/icons/0600746D.png and /dev/null differ diff --git a/static/icons/0600746E.png b/static/icons/0600746E.png deleted file mode 100755 index 209bdc2c..00000000 Binary files a/static/icons/0600746E.png and /dev/null differ diff --git a/static/icons/0600746F.png b/static/icons/0600746F.png deleted file mode 100755 index 788c7057..00000000 Binary files a/static/icons/0600746F.png and /dev/null differ diff --git a/static/icons/06007470.png b/static/icons/06007470.png deleted file mode 100755 index a5e92b5e..00000000 Binary files a/static/icons/06007470.png and /dev/null differ diff --git a/static/icons/06007471.png b/static/icons/06007471.png deleted file mode 100755 index 11e0ef1d..00000000 Binary files a/static/icons/06007471.png and /dev/null differ diff --git a/static/icons/06007472.png b/static/icons/06007472.png deleted file mode 100755 index 8b8fd451..00000000 Binary files a/static/icons/06007472.png and /dev/null differ diff --git a/static/icons/06007473.png b/static/icons/06007473.png deleted file mode 100755 index 247d6283..00000000 Binary files a/static/icons/06007473.png and /dev/null differ diff --git a/static/icons/06007474.png b/static/icons/06007474.png deleted file mode 100755 index 5605a139..00000000 Binary files a/static/icons/06007474.png and /dev/null differ diff --git a/static/icons/06007477.png b/static/icons/06007477.png deleted file mode 100755 index 59ee31a7..00000000 Binary files a/static/icons/06007477.png and /dev/null differ diff --git a/static/icons/06007478.png b/static/icons/06007478.png deleted file mode 100755 index dd43eaf1..00000000 Binary files a/static/icons/06007478.png and /dev/null differ diff --git a/static/icons/0600747E.png b/static/icons/0600747E.png deleted file mode 100755 index 10b5ba3f..00000000 Binary files a/static/icons/0600747E.png and /dev/null differ diff --git a/static/icons/0600747F.png b/static/icons/0600747F.png deleted file mode 100755 index e626d73d..00000000 Binary files a/static/icons/0600747F.png and /dev/null differ diff --git a/static/icons/06007480.png b/static/icons/06007480.png deleted file mode 100755 index 97e9bb89..00000000 Binary files a/static/icons/06007480.png and /dev/null differ diff --git a/static/icons/06007481.png b/static/icons/06007481.png deleted file mode 100755 index df95503c..00000000 Binary files a/static/icons/06007481.png and /dev/null differ diff --git a/static/icons/06007482.png b/static/icons/06007482.png deleted file mode 100755 index f023c8fb..00000000 Binary files a/static/icons/06007482.png and /dev/null differ diff --git a/static/icons/06007483.png b/static/icons/06007483.png deleted file mode 100755 index 47b27f59..00000000 Binary files a/static/icons/06007483.png and /dev/null differ diff --git a/static/icons/06007484.png b/static/icons/06007484.png deleted file mode 100755 index 5998c933..00000000 Binary files a/static/icons/06007484.png and /dev/null differ diff --git a/static/icons/06007485.png b/static/icons/06007485.png deleted file mode 100755 index ffa1b730..00000000 Binary files a/static/icons/06007485.png and /dev/null differ diff --git a/static/icons/06007486.png b/static/icons/06007486.png deleted file mode 100755 index c08e4d43..00000000 Binary files a/static/icons/06007486.png and /dev/null differ diff --git a/static/icons/06007487.png b/static/icons/06007487.png deleted file mode 100755 index be885e89..00000000 Binary files a/static/icons/06007487.png and /dev/null differ diff --git a/static/icons/06007488.png b/static/icons/06007488.png deleted file mode 100755 index 1c42c0e7..00000000 Binary files a/static/icons/06007488.png and /dev/null differ diff --git a/static/icons/06007489.png b/static/icons/06007489.png deleted file mode 100755 index d5235294..00000000 Binary files a/static/icons/06007489.png and /dev/null differ diff --git a/static/icons/0600748A.png b/static/icons/0600748A.png deleted file mode 100755 index 792d4d46..00000000 Binary files a/static/icons/0600748A.png and /dev/null differ diff --git a/static/icons/0600748B.png b/static/icons/0600748B.png deleted file mode 100755 index b7ee834a..00000000 Binary files a/static/icons/0600748B.png and /dev/null differ diff --git a/static/icons/0600748C.png b/static/icons/0600748C.png deleted file mode 100755 index 4d53290c..00000000 Binary files a/static/icons/0600748C.png and /dev/null differ diff --git a/static/icons/0600748D.png b/static/icons/0600748D.png deleted file mode 100755 index 60209201..00000000 Binary files a/static/icons/0600748D.png and /dev/null differ diff --git a/static/icons/0600748E.png b/static/icons/0600748E.png deleted file mode 100755 index d9a7ffc5..00000000 Binary files a/static/icons/0600748E.png and /dev/null differ diff --git a/static/icons/0600748F.png b/static/icons/0600748F.png deleted file mode 100755 index 0c75bfe9..00000000 Binary files a/static/icons/0600748F.png and /dev/null differ diff --git a/static/icons/06007490.png b/static/icons/06007490.png deleted file mode 100755 index 22d2bf43..00000000 Binary files a/static/icons/06007490.png and /dev/null differ diff --git a/static/icons/06007491.png b/static/icons/06007491.png deleted file mode 100755 index c28de7bc..00000000 Binary files a/static/icons/06007491.png and /dev/null differ diff --git a/static/icons/06007492.png b/static/icons/06007492.png deleted file mode 100755 index 88d36007..00000000 Binary files a/static/icons/06007492.png and /dev/null differ diff --git a/static/icons/06007493.png b/static/icons/06007493.png deleted file mode 100755 index 5d72bd31..00000000 Binary files a/static/icons/06007493.png and /dev/null differ diff --git a/static/icons/06007494.png b/static/icons/06007494.png deleted file mode 100755 index 4c01094f..00000000 Binary files a/static/icons/06007494.png and /dev/null differ diff --git a/static/icons/06007495.png b/static/icons/06007495.png deleted file mode 100755 index 85d7cae1..00000000 Binary files a/static/icons/06007495.png and /dev/null differ diff --git a/static/icons/06007498.png b/static/icons/06007498.png deleted file mode 100755 index 52c51bf0..00000000 Binary files a/static/icons/06007498.png and /dev/null differ diff --git a/static/icons/06007499.png b/static/icons/06007499.png deleted file mode 100755 index 5fda661c..00000000 Binary files a/static/icons/06007499.png and /dev/null differ diff --git a/static/icons/0600749A.png b/static/icons/0600749A.png deleted file mode 100755 index 25a7afd2..00000000 Binary files a/static/icons/0600749A.png and /dev/null differ diff --git a/static/icons/0600749B.png b/static/icons/0600749B.png deleted file mode 100755 index 6d3bf898..00000000 Binary files a/static/icons/0600749B.png and /dev/null differ diff --git a/static/icons/0600749C.png b/static/icons/0600749C.png deleted file mode 100755 index 61e03967..00000000 Binary files a/static/icons/0600749C.png and /dev/null differ diff --git a/static/icons/0600749D.png b/static/icons/0600749D.png deleted file mode 100755 index 9354d30f..00000000 Binary files a/static/icons/0600749D.png and /dev/null differ diff --git a/static/icons/0600749E.png b/static/icons/0600749E.png deleted file mode 100755 index b90a0c28..00000000 Binary files a/static/icons/0600749E.png and /dev/null differ diff --git a/static/icons/0600749F.png b/static/icons/0600749F.png deleted file mode 100755 index 37199b8a..00000000 Binary files a/static/icons/0600749F.png and /dev/null differ diff --git a/static/icons/060074A0.png b/static/icons/060074A0.png deleted file mode 100755 index 2d4d431e..00000000 Binary files a/static/icons/060074A0.png and /dev/null differ diff --git a/static/icons/060074A1.png b/static/icons/060074A1.png deleted file mode 100755 index c84e2a71..00000000 Binary files a/static/icons/060074A1.png and /dev/null differ diff --git a/static/icons/060074A2.png b/static/icons/060074A2.png deleted file mode 100755 index 130acd64..00000000 Binary files a/static/icons/060074A2.png and /dev/null differ diff --git a/static/icons/060074A3.png b/static/icons/060074A3.png deleted file mode 100755 index ff2cc585..00000000 Binary files a/static/icons/060074A3.png and /dev/null differ diff --git a/static/icons/060074A4.png b/static/icons/060074A4.png deleted file mode 100755 index ffbcae74..00000000 Binary files a/static/icons/060074A4.png and /dev/null differ diff --git a/static/icons/060074A5.png b/static/icons/060074A5.png deleted file mode 100755 index 3f7baf28..00000000 Binary files a/static/icons/060074A5.png and /dev/null differ diff --git a/static/icons/060074A6.png b/static/icons/060074A6.png deleted file mode 100755 index 73c3ae9c..00000000 Binary files a/static/icons/060074A6.png and /dev/null differ diff --git a/static/icons/060074A7.png b/static/icons/060074A7.png deleted file mode 100755 index 7b149e5e..00000000 Binary files a/static/icons/060074A7.png and /dev/null differ diff --git a/static/icons/060074A8.png b/static/icons/060074A8.png deleted file mode 100755 index 238c5ac8..00000000 Binary files a/static/icons/060074A8.png and /dev/null differ diff --git a/static/icons/060074A9.png b/static/icons/060074A9.png deleted file mode 100755 index 951e1638..00000000 Binary files a/static/icons/060074A9.png and /dev/null differ diff --git a/static/icons/060074AA.png b/static/icons/060074AA.png deleted file mode 100755 index 44a6d97a..00000000 Binary files a/static/icons/060074AA.png and /dev/null differ diff --git a/static/icons/060074AB.png b/static/icons/060074AB.png deleted file mode 100755 index 5a1016b8..00000000 Binary files a/static/icons/060074AB.png and /dev/null differ diff --git a/static/icons/060074AC.png b/static/icons/060074AC.png deleted file mode 100755 index fef6a2fd..00000000 Binary files a/static/icons/060074AC.png and /dev/null differ diff --git a/static/icons/060074AD.png b/static/icons/060074AD.png deleted file mode 100755 index 6038c5c6..00000000 Binary files a/static/icons/060074AD.png and /dev/null differ diff --git a/static/icons/060074AE.png b/static/icons/060074AE.png deleted file mode 100755 index 0bc9cbf6..00000000 Binary files a/static/icons/060074AE.png and /dev/null differ diff --git a/static/icons/060074AF.png b/static/icons/060074AF.png deleted file mode 100755 index 0246575f..00000000 Binary files a/static/icons/060074AF.png and /dev/null differ diff --git a/static/icons/060074B0.png b/static/icons/060074B0.png deleted file mode 100755 index f427ff2f..00000000 Binary files a/static/icons/060074B0.png and /dev/null differ diff --git a/static/icons/060074B1.png b/static/icons/060074B1.png deleted file mode 100755 index 26673e2b..00000000 Binary files a/static/icons/060074B1.png and /dev/null differ diff --git a/static/icons/060074B2.png b/static/icons/060074B2.png deleted file mode 100755 index c4916ce6..00000000 Binary files a/static/icons/060074B2.png and /dev/null differ diff --git a/static/icons/060074B7.png b/static/icons/060074B7.png deleted file mode 100755 index d8e42ed3..00000000 Binary files a/static/icons/060074B7.png and /dev/null differ diff --git a/static/icons/060074B8.png b/static/icons/060074B8.png deleted file mode 100755 index 04d2f2a9..00000000 Binary files a/static/icons/060074B8.png and /dev/null differ diff --git a/static/icons/060074BF.png b/static/icons/060074BF.png deleted file mode 100755 index 81f7f233..00000000 Binary files a/static/icons/060074BF.png and /dev/null differ diff --git a/static/icons/060074C0.png b/static/icons/060074C0.png deleted file mode 100755 index de146059..00000000 Binary files a/static/icons/060074C0.png and /dev/null differ diff --git a/static/icons/060074C1.png b/static/icons/060074C1.png deleted file mode 100755 index 092db3d8..00000000 Binary files a/static/icons/060074C1.png and /dev/null differ diff --git a/static/icons/060074C2.png b/static/icons/060074C2.png deleted file mode 100755 index 37432dc0..00000000 Binary files a/static/icons/060074C2.png and /dev/null differ diff --git a/static/icons/060074C3.png b/static/icons/060074C3.png deleted file mode 100755 index 92dc54be..00000000 Binary files a/static/icons/060074C3.png and /dev/null differ diff --git a/static/icons/060074C4.png b/static/icons/060074C4.png deleted file mode 100755 index a13a99c2..00000000 Binary files a/static/icons/060074C4.png and /dev/null differ diff --git a/static/icons/060074C5.png b/static/icons/060074C5.png deleted file mode 100755 index c81f0ad3..00000000 Binary files a/static/icons/060074C5.png and /dev/null differ diff --git a/static/icons/060074C6.png b/static/icons/060074C6.png deleted file mode 100755 index 1e49ea3d..00000000 Binary files a/static/icons/060074C6.png and /dev/null differ diff --git a/static/icons/060074C7.png b/static/icons/060074C7.png deleted file mode 100755 index 5ab33f8c..00000000 Binary files a/static/icons/060074C7.png and /dev/null differ diff --git a/static/icons/060074C8.png b/static/icons/060074C8.png deleted file mode 100755 index 7c14764b..00000000 Binary files a/static/icons/060074C8.png and /dev/null differ diff --git a/static/icons/060074C9.png b/static/icons/060074C9.png deleted file mode 100755 index 11a16ed5..00000000 Binary files a/static/icons/060074C9.png and /dev/null differ diff --git a/static/icons/060074CA.png b/static/icons/060074CA.png deleted file mode 100755 index 03ac235c..00000000 Binary files a/static/icons/060074CA.png and /dev/null differ diff --git a/static/icons/060074CB.png b/static/icons/060074CB.png deleted file mode 100755 index b9883215..00000000 Binary files a/static/icons/060074CB.png and /dev/null differ diff --git a/static/icons/060074CC.png b/static/icons/060074CC.png deleted file mode 100755 index 6cd8718e..00000000 Binary files a/static/icons/060074CC.png and /dev/null differ diff --git a/static/icons/060074CD.png b/static/icons/060074CD.png deleted file mode 100755 index b37b4fc6..00000000 Binary files a/static/icons/060074CD.png and /dev/null differ diff --git a/static/icons/060074CE.png b/static/icons/060074CE.png deleted file mode 100755 index 36a815e6..00000000 Binary files a/static/icons/060074CE.png and /dev/null differ diff --git a/static/icons/060074CF.png b/static/icons/060074CF.png deleted file mode 100755 index 0a32e151..00000000 Binary files a/static/icons/060074CF.png and /dev/null differ diff --git a/static/icons/060074D0.png b/static/icons/060074D0.png deleted file mode 100755 index 8fe98360..00000000 Binary files a/static/icons/060074D0.png and /dev/null differ diff --git a/static/icons/060074D1.png b/static/icons/060074D1.png deleted file mode 100755 index 48d66fd7..00000000 Binary files a/static/icons/060074D1.png and /dev/null differ diff --git a/static/icons/060074D2.png b/static/icons/060074D2.png deleted file mode 100755 index 3790ff6f..00000000 Binary files a/static/icons/060074D2.png and /dev/null differ diff --git a/static/icons/060074D3.png b/static/icons/060074D3.png deleted file mode 100755 index 384ca071..00000000 Binary files a/static/icons/060074D3.png and /dev/null differ diff --git a/static/icons/060074D4.png b/static/icons/060074D4.png deleted file mode 100755 index d0666624..00000000 Binary files a/static/icons/060074D4.png and /dev/null differ diff --git a/static/icons/060074D5.png b/static/icons/060074D5.png deleted file mode 100755 index 20359d4f..00000000 Binary files a/static/icons/060074D5.png and /dev/null differ diff --git a/static/icons/060074D6.png b/static/icons/060074D6.png deleted file mode 100755 index c78dc1a2..00000000 Binary files a/static/icons/060074D6.png and /dev/null differ diff --git a/static/icons/060074D7.png b/static/icons/060074D7.png deleted file mode 100755 index 1c4a3218..00000000 Binary files a/static/icons/060074D7.png and /dev/null differ diff --git a/static/icons/060074D8.png b/static/icons/060074D8.png deleted file mode 100755 index bf4e16ef..00000000 Binary files a/static/icons/060074D8.png and /dev/null differ diff --git a/static/icons/060074D9.png b/static/icons/060074D9.png deleted file mode 100755 index 548faf28..00000000 Binary files a/static/icons/060074D9.png and /dev/null differ diff --git a/static/icons/060074DA.png b/static/icons/060074DA.png deleted file mode 100755 index 0b8ba523..00000000 Binary files a/static/icons/060074DA.png and /dev/null differ diff --git a/static/icons/060074DB.png b/static/icons/060074DB.png deleted file mode 100755 index 79544edb..00000000 Binary files a/static/icons/060074DB.png and /dev/null differ diff --git a/static/icons/060074DC.png b/static/icons/060074DC.png deleted file mode 100755 index dafd98c0..00000000 Binary files a/static/icons/060074DC.png and /dev/null differ diff --git a/static/icons/060074DD.png b/static/icons/060074DD.png deleted file mode 100755 index 224555bd..00000000 Binary files a/static/icons/060074DD.png and /dev/null differ diff --git a/static/icons/060074DE.png b/static/icons/060074DE.png deleted file mode 100755 index 01c321f2..00000000 Binary files a/static/icons/060074DE.png and /dev/null differ diff --git a/static/icons/060074DF.png b/static/icons/060074DF.png deleted file mode 100755 index 76efb064..00000000 Binary files a/static/icons/060074DF.png and /dev/null differ diff --git a/static/icons/060074E0.png b/static/icons/060074E0.png deleted file mode 100755 index 9270fa76..00000000 Binary files a/static/icons/060074E0.png and /dev/null differ diff --git a/static/icons/060074E1.png b/static/icons/060074E1.png deleted file mode 100755 index f2dcf765..00000000 Binary files a/static/icons/060074E1.png and /dev/null differ diff --git a/static/icons/060074E2.png b/static/icons/060074E2.png deleted file mode 100755 index 7eb382f0..00000000 Binary files a/static/icons/060074E2.png and /dev/null differ diff --git a/static/icons/060074E3.png b/static/icons/060074E3.png deleted file mode 100755 index 57822ece..00000000 Binary files a/static/icons/060074E3.png and /dev/null differ diff --git a/static/icons/060074E4.png b/static/icons/060074E4.png deleted file mode 100755 index 8e231be1..00000000 Binary files a/static/icons/060074E4.png and /dev/null differ diff --git a/static/icons/060074E5.png b/static/icons/060074E5.png deleted file mode 100755 index 3b056705..00000000 Binary files a/static/icons/060074E5.png and /dev/null differ diff --git a/static/icons/060074E6.png b/static/icons/060074E6.png deleted file mode 100755 index 436a4b49..00000000 Binary files a/static/icons/060074E6.png and /dev/null differ diff --git a/static/icons/060074E7.png b/static/icons/060074E7.png deleted file mode 100755 index adca64f0..00000000 Binary files a/static/icons/060074E7.png and /dev/null differ diff --git a/static/icons/060074E8.png b/static/icons/060074E8.png deleted file mode 100755 index 923b88f3..00000000 Binary files a/static/icons/060074E8.png and /dev/null differ diff --git a/static/icons/060074E9.png b/static/icons/060074E9.png deleted file mode 100755 index 72941c8e..00000000 Binary files a/static/icons/060074E9.png and /dev/null differ diff --git a/static/icons/060074EA.png b/static/icons/060074EA.png deleted file mode 100755 index 6938f5fb..00000000 Binary files a/static/icons/060074EA.png and /dev/null differ diff --git a/static/icons/060074EC.png b/static/icons/060074EC.png deleted file mode 100755 index 89feced1..00000000 Binary files a/static/icons/060074EC.png and /dev/null differ diff --git a/static/icons/060074ED.png b/static/icons/060074ED.png deleted file mode 100755 index 056a6cf1..00000000 Binary files a/static/icons/060074ED.png and /dev/null differ diff --git a/static/icons/060074EE.png b/static/icons/060074EE.png deleted file mode 100755 index 74c3ead6..00000000 Binary files a/static/icons/060074EE.png and /dev/null differ diff --git a/static/icons/060074EF.png b/static/icons/060074EF.png deleted file mode 100755 index ad96e1d4..00000000 Binary files a/static/icons/060074EF.png and /dev/null differ diff --git a/static/icons/060074F0.png b/static/icons/060074F0.png deleted file mode 100755 index 8b372157..00000000 Binary files a/static/icons/060074F0.png and /dev/null differ diff --git a/static/icons/060074F1.png b/static/icons/060074F1.png deleted file mode 100755 index 256b8b4f..00000000 Binary files a/static/icons/060074F1.png and /dev/null differ diff --git a/static/icons/060074F2.png b/static/icons/060074F2.png deleted file mode 100755 index ba44e513..00000000 Binary files a/static/icons/060074F2.png and /dev/null differ diff --git a/static/icons/060074F3.png b/static/icons/060074F3.png deleted file mode 100755 index 0227e326..00000000 Binary files a/static/icons/060074F3.png and /dev/null differ diff --git a/static/icons/060074F4.png b/static/icons/060074F4.png deleted file mode 100755 index 6df732df..00000000 Binary files a/static/icons/060074F4.png and /dev/null differ diff --git a/static/icons/060074F5.png b/static/icons/060074F5.png deleted file mode 100755 index 931a52ca..00000000 Binary files a/static/icons/060074F5.png and /dev/null differ diff --git a/static/icons/060074F6.png b/static/icons/060074F6.png deleted file mode 100755 index c48da34d..00000000 Binary files a/static/icons/060074F6.png and /dev/null differ diff --git a/static/icons/060074F7.png b/static/icons/060074F7.png deleted file mode 100755 index 8d03b107..00000000 Binary files a/static/icons/060074F7.png and /dev/null differ diff --git a/static/icons/060074F8.png b/static/icons/060074F8.png deleted file mode 100755 index 26de178b..00000000 Binary files a/static/icons/060074F8.png and /dev/null differ diff --git a/static/icons/060074F9.png b/static/icons/060074F9.png deleted file mode 100755 index daa9572b..00000000 Binary files a/static/icons/060074F9.png and /dev/null differ diff --git a/static/icons/060074FA.png b/static/icons/060074FA.png deleted file mode 100755 index 2a57ee5f..00000000 Binary files a/static/icons/060074FA.png and /dev/null differ diff --git a/static/icons/060074FB.png b/static/icons/060074FB.png deleted file mode 100755 index 1d1cd0d7..00000000 Binary files a/static/icons/060074FB.png and /dev/null differ diff --git a/static/icons/060074FC.png b/static/icons/060074FC.png deleted file mode 100755 index 3e19009a..00000000 Binary files a/static/icons/060074FC.png and /dev/null differ diff --git a/static/icons/060074FD.png b/static/icons/060074FD.png deleted file mode 100755 index 468471df..00000000 Binary files a/static/icons/060074FD.png and /dev/null differ diff --git a/static/icons/060074FE.png b/static/icons/060074FE.png deleted file mode 100755 index 8b9457f7..00000000 Binary files a/static/icons/060074FE.png and /dev/null differ diff --git a/static/icons/060074FF.png b/static/icons/060074FF.png deleted file mode 100755 index 3cda34da..00000000 Binary files a/static/icons/060074FF.png and /dev/null differ diff --git a/static/icons/06007500.png b/static/icons/06007500.png deleted file mode 100755 index b7712f39..00000000 Binary files a/static/icons/06007500.png and /dev/null differ diff --git a/static/icons/06007501.png b/static/icons/06007501.png deleted file mode 100755 index ee53aaa8..00000000 Binary files a/static/icons/06007501.png and /dev/null differ diff --git a/static/icons/06007502.png b/static/icons/06007502.png deleted file mode 100755 index b8ea6f58..00000000 Binary files a/static/icons/06007502.png and /dev/null differ diff --git a/static/icons/06007503.png b/static/icons/06007503.png deleted file mode 100755 index 59037dc6..00000000 Binary files a/static/icons/06007503.png and /dev/null differ diff --git a/static/icons/06007504.png b/static/icons/06007504.png deleted file mode 100755 index 2903d26a..00000000 Binary files a/static/icons/06007504.png and /dev/null differ diff --git a/static/icons/06007505.png b/static/icons/06007505.png deleted file mode 100755 index a846c172..00000000 Binary files a/static/icons/06007505.png and /dev/null differ diff --git a/static/icons/06007506.png b/static/icons/06007506.png deleted file mode 100755 index 10003f6e..00000000 Binary files a/static/icons/06007506.png and /dev/null differ diff --git a/static/icons/06007507.png b/static/icons/06007507.png deleted file mode 100755 index 4c52c52b..00000000 Binary files a/static/icons/06007507.png and /dev/null differ diff --git a/static/icons/06007508.png b/static/icons/06007508.png deleted file mode 100755 index 19fc7504..00000000 Binary files a/static/icons/06007508.png and /dev/null differ diff --git a/static/icons/06007509.png b/static/icons/06007509.png deleted file mode 100755 index 1bba06dc..00000000 Binary files a/static/icons/06007509.png and /dev/null differ diff --git a/static/icons/0600750A.png b/static/icons/0600750A.png deleted file mode 100755 index e6b5d484..00000000 Binary files a/static/icons/0600750A.png and /dev/null differ diff --git a/static/icons/0600750B.png b/static/icons/0600750B.png deleted file mode 100755 index 59cf2b72..00000000 Binary files a/static/icons/0600750B.png and /dev/null differ diff --git a/static/icons/0600750C.png b/static/icons/0600750C.png deleted file mode 100755 index e5d53e21..00000000 Binary files a/static/icons/0600750C.png and /dev/null differ diff --git a/static/icons/0600750D.png b/static/icons/0600750D.png deleted file mode 100755 index ddb8e9de..00000000 Binary files a/static/icons/0600750D.png and /dev/null differ diff --git a/static/icons/0600750E.png b/static/icons/0600750E.png deleted file mode 100755 index 4addb797..00000000 Binary files a/static/icons/0600750E.png and /dev/null differ diff --git a/static/icons/0600750F.png b/static/icons/0600750F.png deleted file mode 100755 index 84b0a639..00000000 Binary files a/static/icons/0600750F.png and /dev/null differ diff --git a/static/icons/06007510.png b/static/icons/06007510.png deleted file mode 100755 index 6bb41aee..00000000 Binary files a/static/icons/06007510.png and /dev/null differ diff --git a/static/icons/06007511.png b/static/icons/06007511.png deleted file mode 100755 index a4b10138..00000000 Binary files a/static/icons/06007511.png and /dev/null differ diff --git a/static/icons/06007512.png b/static/icons/06007512.png deleted file mode 100755 index 5c5b19d4..00000000 Binary files a/static/icons/06007512.png and /dev/null differ diff --git a/static/icons/06007513.png b/static/icons/06007513.png deleted file mode 100755 index 3730376a..00000000 Binary files a/static/icons/06007513.png and /dev/null differ diff --git a/static/icons/06007514.png b/static/icons/06007514.png deleted file mode 100755 index 5b77d629..00000000 Binary files a/static/icons/06007514.png and /dev/null differ diff --git a/static/icons/06007515.png b/static/icons/06007515.png deleted file mode 100755 index 37377a1b..00000000 Binary files a/static/icons/06007515.png and /dev/null differ diff --git a/static/icons/06007516.png b/static/icons/06007516.png deleted file mode 100755 index 9ea8526b..00000000 Binary files a/static/icons/06007516.png and /dev/null differ diff --git a/static/icons/06007517.png b/static/icons/06007517.png deleted file mode 100755 index 1ae436fe..00000000 Binary files a/static/icons/06007517.png and /dev/null differ diff --git a/static/icons/06007518.png b/static/icons/06007518.png deleted file mode 100755 index c34a3c5f..00000000 Binary files a/static/icons/06007518.png and /dev/null differ diff --git a/static/icons/06007519.png b/static/icons/06007519.png deleted file mode 100755 index 0db9060d..00000000 Binary files a/static/icons/06007519.png and /dev/null differ diff --git a/static/icons/0600751A.png b/static/icons/0600751A.png deleted file mode 100755 index 3a2ecc83..00000000 Binary files a/static/icons/0600751A.png and /dev/null differ diff --git a/static/icons/0600751B.png b/static/icons/0600751B.png deleted file mode 100755 index ed00b93c..00000000 Binary files a/static/icons/0600751B.png and /dev/null differ diff --git a/static/icons/0600751C.png b/static/icons/0600751C.png deleted file mode 100755 index 2aa930e6..00000000 Binary files a/static/icons/0600751C.png and /dev/null differ diff --git a/static/icons/0600751D.png b/static/icons/0600751D.png deleted file mode 100755 index 004b1351..00000000 Binary files a/static/icons/0600751D.png and /dev/null differ diff --git a/static/icons/0600751E.png b/static/icons/0600751E.png deleted file mode 100755 index 554fbbf4..00000000 Binary files a/static/icons/0600751E.png and /dev/null differ diff --git a/static/icons/0600751F.png b/static/icons/0600751F.png deleted file mode 100755 index 47e86451..00000000 Binary files a/static/icons/0600751F.png and /dev/null differ diff --git a/static/icons/06007520.png b/static/icons/06007520.png deleted file mode 100755 index 3e3e4c2b..00000000 Binary files a/static/icons/06007520.png and /dev/null differ diff --git a/static/icons/06007522.png b/static/icons/06007522.png deleted file mode 100755 index 93676964..00000000 Binary files a/static/icons/06007522.png and /dev/null differ diff --git a/static/icons/06007523.png b/static/icons/06007523.png deleted file mode 100755 index 95e76efe..00000000 Binary files a/static/icons/06007523.png and /dev/null differ diff --git a/static/icons/06007524.png b/static/icons/06007524.png deleted file mode 100755 index bd4d6d79..00000000 Binary files a/static/icons/06007524.png and /dev/null differ diff --git a/static/icons/06007525.png b/static/icons/06007525.png deleted file mode 100755 index dd140335..00000000 Binary files a/static/icons/06007525.png and /dev/null differ diff --git a/static/icons/06007526.png b/static/icons/06007526.png deleted file mode 100755 index 31595b30..00000000 Binary files a/static/icons/06007526.png and /dev/null differ diff --git a/static/icons/06007527.png b/static/icons/06007527.png deleted file mode 100755 index 07da9c8a..00000000 Binary files a/static/icons/06007527.png and /dev/null differ diff --git a/static/icons/06007528.png b/static/icons/06007528.png deleted file mode 100755 index 47f76ab3..00000000 Binary files a/static/icons/06007528.png and /dev/null differ diff --git a/static/icons/0600752A.png b/static/icons/0600752A.png deleted file mode 100755 index c3d20f44..00000000 Binary files a/static/icons/0600752A.png and /dev/null differ diff --git a/static/icons/0600752B.png b/static/icons/0600752B.png deleted file mode 100755 index a3af48e7..00000000 Binary files a/static/icons/0600752B.png and /dev/null differ diff --git a/static/icons/0600752C.png b/static/icons/0600752C.png deleted file mode 100755 index 2f0a6e7d..00000000 Binary files a/static/icons/0600752C.png and /dev/null differ diff --git a/static/icons/0600752D.png b/static/icons/0600752D.png deleted file mode 100755 index af058ce9..00000000 Binary files a/static/icons/0600752D.png and /dev/null differ diff --git a/static/icons/0600752E.png b/static/icons/0600752E.png deleted file mode 100755 index d7a0b0c6..00000000 Binary files a/static/icons/0600752E.png and /dev/null differ diff --git a/static/icons/0600752F.png b/static/icons/0600752F.png deleted file mode 100755 index acf48f27..00000000 Binary files a/static/icons/0600752F.png and /dev/null differ diff --git a/static/icons/06007530.png b/static/icons/06007530.png deleted file mode 100755 index 224d73bf..00000000 Binary files a/static/icons/06007530.png and /dev/null differ diff --git a/static/icons/06007531.png b/static/icons/06007531.png deleted file mode 100755 index aa6ebcc7..00000000 Binary files a/static/icons/06007531.png and /dev/null differ diff --git a/static/icons/06007532.png b/static/icons/06007532.png deleted file mode 100755 index bdc3a17f..00000000 Binary files a/static/icons/06007532.png and /dev/null differ diff --git a/static/icons/06007533.png b/static/icons/06007533.png deleted file mode 100755 index 467b9d5e..00000000 Binary files a/static/icons/06007533.png and /dev/null differ diff --git a/static/icons/06007534.png b/static/icons/06007534.png deleted file mode 100755 index 37e30aa7..00000000 Binary files a/static/icons/06007534.png and /dev/null differ diff --git a/static/icons/06007535.png b/static/icons/06007535.png deleted file mode 100755 index 6ac69c4e..00000000 Binary files a/static/icons/06007535.png and /dev/null differ diff --git a/static/icons/06007536.png b/static/icons/06007536.png deleted file mode 100755 index 7619b76f..00000000 Binary files a/static/icons/06007536.png and /dev/null differ diff --git a/static/icons/06007537.png b/static/icons/06007537.png deleted file mode 100755 index 6a912973..00000000 Binary files a/static/icons/06007537.png and /dev/null differ diff --git a/static/icons/06007538.png b/static/icons/06007538.png deleted file mode 100755 index 37da3354..00000000 Binary files a/static/icons/06007538.png and /dev/null differ diff --git a/static/icons/06007539.png b/static/icons/06007539.png deleted file mode 100755 index c7d02bba..00000000 Binary files a/static/icons/06007539.png and /dev/null differ diff --git a/static/icons/0600753A.png b/static/icons/0600753A.png deleted file mode 100755 index 19622566..00000000 Binary files a/static/icons/0600753A.png and /dev/null differ diff --git a/static/icons/0600753B.png b/static/icons/0600753B.png deleted file mode 100755 index fca11813..00000000 Binary files a/static/icons/0600753B.png and /dev/null differ diff --git a/static/icons/0600753C.png b/static/icons/0600753C.png deleted file mode 100755 index 2263863f..00000000 Binary files a/static/icons/0600753C.png and /dev/null differ diff --git a/static/icons/0600753D.png b/static/icons/0600753D.png deleted file mode 100755 index 98643e3a..00000000 Binary files a/static/icons/0600753D.png and /dev/null differ diff --git a/static/icons/0600753F.png b/static/icons/0600753F.png deleted file mode 100755 index aef0ec7d..00000000 Binary files a/static/icons/0600753F.png and /dev/null differ diff --git a/static/icons/06007540.png b/static/icons/06007540.png deleted file mode 100755 index ed319888..00000000 Binary files a/static/icons/06007540.png and /dev/null differ diff --git a/static/icons/06007541.png b/static/icons/06007541.png deleted file mode 100755 index 7d3a4c4e..00000000 Binary files a/static/icons/06007541.png and /dev/null differ diff --git a/static/icons/06007542.png b/static/icons/06007542.png deleted file mode 100755 index 33e518b5..00000000 Binary files a/static/icons/06007542.png and /dev/null differ diff --git a/static/icons/06007543.png b/static/icons/06007543.png deleted file mode 100755 index 8d47e1a8..00000000 Binary files a/static/icons/06007543.png and /dev/null differ diff --git a/static/icons/06007544.png b/static/icons/06007544.png deleted file mode 100755 index 1cd17ece..00000000 Binary files a/static/icons/06007544.png and /dev/null differ diff --git a/static/icons/06007545.png b/static/icons/06007545.png deleted file mode 100755 index d566664a..00000000 Binary files a/static/icons/06007545.png and /dev/null differ diff --git a/static/icons/06007546.png b/static/icons/06007546.png deleted file mode 100755 index 04ac31ad..00000000 Binary files a/static/icons/06007546.png and /dev/null differ diff --git a/static/icons/06007547.png b/static/icons/06007547.png deleted file mode 100755 index 6068e0e2..00000000 Binary files a/static/icons/06007547.png and /dev/null differ diff --git a/static/icons/06007548.png b/static/icons/06007548.png deleted file mode 100755 index 2457364c..00000000 Binary files a/static/icons/06007548.png and /dev/null differ diff --git a/static/icons/06007549.png b/static/icons/06007549.png deleted file mode 100755 index de638da9..00000000 Binary files a/static/icons/06007549.png and /dev/null differ diff --git a/static/icons/0600754A.png b/static/icons/0600754A.png deleted file mode 100755 index cc1e5d39..00000000 Binary files a/static/icons/0600754A.png and /dev/null differ diff --git a/static/icons/0600754B.png b/static/icons/0600754B.png deleted file mode 100755 index bd818d0f..00000000 Binary files a/static/icons/0600754B.png and /dev/null differ diff --git a/static/icons/0600754C.png b/static/icons/0600754C.png deleted file mode 100755 index f5fc71fa..00000000 Binary files a/static/icons/0600754C.png and /dev/null differ diff --git a/static/icons/0600754D.png b/static/icons/0600754D.png deleted file mode 100755 index e2c45ed0..00000000 Binary files a/static/icons/0600754D.png and /dev/null differ diff --git a/static/icons/0600754E.png b/static/icons/0600754E.png deleted file mode 100755 index a63a703e..00000000 Binary files a/static/icons/0600754E.png and /dev/null differ diff --git a/static/icons/0600754F.png b/static/icons/0600754F.png deleted file mode 100755 index 6868c527..00000000 Binary files a/static/icons/0600754F.png and /dev/null differ diff --git a/static/icons/06007550.png b/static/icons/06007550.png deleted file mode 100755 index 6868c527..00000000 Binary files a/static/icons/06007550.png and /dev/null differ diff --git a/static/icons/06007551.png b/static/icons/06007551.png deleted file mode 100755 index 6c1df057..00000000 Binary files a/static/icons/06007551.png and /dev/null differ diff --git a/static/icons/06007552.png b/static/icons/06007552.png deleted file mode 100755 index 857aeaa8..00000000 Binary files a/static/icons/06007552.png and /dev/null differ diff --git a/static/icons/06007553.png b/static/icons/06007553.png deleted file mode 100755 index 9fb6c455..00000000 Binary files a/static/icons/06007553.png and /dev/null differ diff --git a/static/icons/06007554.png b/static/icons/06007554.png deleted file mode 100755 index 00d160c5..00000000 Binary files a/static/icons/06007554.png and /dev/null differ diff --git a/static/icons/06007555.png b/static/icons/06007555.png deleted file mode 100755 index d6390e31..00000000 Binary files a/static/icons/06007555.png and /dev/null differ diff --git a/static/icons/06007556.png b/static/icons/06007556.png deleted file mode 100755 index 07ce1d52..00000000 Binary files a/static/icons/06007556.png and /dev/null differ diff --git a/static/icons/06007557.png b/static/icons/06007557.png deleted file mode 100755 index fc332a21..00000000 Binary files a/static/icons/06007557.png and /dev/null differ diff --git a/static/icons/06007558.png b/static/icons/06007558.png deleted file mode 100755 index 520f9c8d..00000000 Binary files a/static/icons/06007558.png and /dev/null differ diff --git a/static/icons/06007559.png b/static/icons/06007559.png deleted file mode 100755 index b87950d4..00000000 Binary files a/static/icons/06007559.png and /dev/null differ diff --git a/static/icons/0600755A.png b/static/icons/0600755A.png deleted file mode 100755 index 8bf09bff..00000000 Binary files a/static/icons/0600755A.png and /dev/null differ diff --git a/static/icons/0600755B.png b/static/icons/0600755B.png deleted file mode 100755 index f338cc17..00000000 Binary files a/static/icons/0600755B.png and /dev/null differ diff --git a/static/icons/0600755C.png b/static/icons/0600755C.png deleted file mode 100755 index efd87a4d..00000000 Binary files a/static/icons/0600755C.png and /dev/null differ diff --git a/static/icons/0600755D.png b/static/icons/0600755D.png deleted file mode 100755 index 13ca3fb2..00000000 Binary files a/static/icons/0600755D.png and /dev/null differ diff --git a/static/icons/0600755E.png b/static/icons/0600755E.png deleted file mode 100755 index 9da5c58d..00000000 Binary files a/static/icons/0600755E.png and /dev/null differ diff --git a/static/icons/0600755F.png b/static/icons/0600755F.png deleted file mode 100755 index c34555df..00000000 Binary files a/static/icons/0600755F.png and /dev/null differ diff --git a/static/icons/06007560.png b/static/icons/06007560.png deleted file mode 100755 index 868187b6..00000000 Binary files a/static/icons/06007560.png and /dev/null differ diff --git a/static/icons/06007561.png b/static/icons/06007561.png deleted file mode 100755 index 366bed67..00000000 Binary files a/static/icons/06007561.png and /dev/null differ diff --git a/static/icons/06007562.png b/static/icons/06007562.png deleted file mode 100755 index 4e276d1a..00000000 Binary files a/static/icons/06007562.png and /dev/null differ diff --git a/static/icons/06007563.png b/static/icons/06007563.png deleted file mode 100755 index 0e4406bf..00000000 Binary files a/static/icons/06007563.png and /dev/null differ diff --git a/static/icons/06007564.png b/static/icons/06007564.png deleted file mode 100755 index 1fc4d45a..00000000 Binary files a/static/icons/06007564.png and /dev/null differ diff --git a/static/icons/06007566.png b/static/icons/06007566.png deleted file mode 100755 index 29ff1c08..00000000 Binary files a/static/icons/06007566.png and /dev/null differ diff --git a/static/icons/06007567.png b/static/icons/06007567.png deleted file mode 100755 index 7f38f8c1..00000000 Binary files a/static/icons/06007567.png and /dev/null differ diff --git a/static/icons/06007568.png b/static/icons/06007568.png deleted file mode 100755 index 744d914a..00000000 Binary files a/static/icons/06007568.png and /dev/null differ diff --git a/static/icons/06007569.png b/static/icons/06007569.png deleted file mode 100755 index 2d4a5196..00000000 Binary files a/static/icons/06007569.png and /dev/null differ diff --git a/static/icons/0600756A.png b/static/icons/0600756A.png deleted file mode 100755 index c3f6be22..00000000 Binary files a/static/icons/0600756A.png and /dev/null differ diff --git a/static/icons/0600756B.png b/static/icons/0600756B.png deleted file mode 100755 index 3cbadd24..00000000 Binary files a/static/icons/0600756B.png and /dev/null differ diff --git a/static/icons/0600756C.png b/static/icons/0600756C.png deleted file mode 100755 index 1574fbe9..00000000 Binary files a/static/icons/0600756C.png and /dev/null differ diff --git a/static/icons/0600756D.png b/static/icons/0600756D.png deleted file mode 100755 index 1bf94604..00000000 Binary files a/static/icons/0600756D.png and /dev/null differ diff --git a/static/icons/0600756E.png b/static/icons/0600756E.png deleted file mode 100755 index 1a2b6a3b..00000000 Binary files a/static/icons/0600756E.png and /dev/null differ diff --git a/static/icons/0600756F.png b/static/icons/0600756F.png deleted file mode 100755 index 5ab4cb99..00000000 Binary files a/static/icons/0600756F.png and /dev/null differ diff --git a/static/icons/06007570.png b/static/icons/06007570.png deleted file mode 100755 index ce7c7e0d..00000000 Binary files a/static/icons/06007570.png and /dev/null differ diff --git a/static/icons/06007571.png b/static/icons/06007571.png deleted file mode 100755 index a3a2895f..00000000 Binary files a/static/icons/06007571.png and /dev/null differ diff --git a/static/icons/06007572.png b/static/icons/06007572.png deleted file mode 100755 index 804a2664..00000000 Binary files a/static/icons/06007572.png and /dev/null differ diff --git a/static/icons/06007573.png b/static/icons/06007573.png deleted file mode 100755 index 4e2e725c..00000000 Binary files a/static/icons/06007573.png and /dev/null differ diff --git a/static/icons/06007574.png b/static/icons/06007574.png deleted file mode 100755 index d0c49368..00000000 Binary files a/static/icons/06007574.png and /dev/null differ diff --git a/static/icons/06007575.png b/static/icons/06007575.png deleted file mode 100755 index 24874859..00000000 Binary files a/static/icons/06007575.png and /dev/null differ diff --git a/static/icons/06007576.png b/static/icons/06007576.png deleted file mode 100755 index 82aba158..00000000 Binary files a/static/icons/06007576.png and /dev/null differ diff --git a/static/index.html b/static/index.html index 066658b7..94dc2ed3 100644 --- a/static/index.html +++ b/static/index.html @@ -1,130 +1,31 @@ - Dereth Tracker - - + - -
- - -
- - +
Dereth map -
-
-
- diff --git a/static/inventory.html b/static/inventory.html deleted file mode 100644 index d96f7c0e..00000000 --- a/static/inventory.html +++ /dev/null @@ -1,1027 +0,0 @@ - - - - - - Inventory Search - Dereth Tracker - - - - -
-

Inventory Search

- โ† Back -
- -
- -
-

Characters

-
- - -
-
- -
-
- -
-
- - -
-
Basic Search
- -
-
- - -
-
- - -
-
- -
- - - - - -
-
-
- - -
-
- - -
-
Item Stats
-
-
- - - - - -
-
- - - - - -
-
- -
-
- - - - - -
-
- - - - - -
-
- -
-
- - -
-
- - -
-
- - -
-
-
- - -
- -
-
Equipment Sets
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- - -
-
Legendary Cantrips
-
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
- - -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- - -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- - -
- - -
-
- - -
-
- - -
- - -
- - -
-
- - -
-
- - -
- - -
- - -
-
- - -
-
-
- - -
-
Legendary Wards
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- - -
-
Equipment Slots
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
- -
- - - - -
- - - - - - - - -
-
Enter search criteria above and click "Search Items" to find inventory items.
-
-
-
- - - - \ No newline at end of file diff --git a/static/inventory.js b/static/inventory.js deleted file mode 100644 index e77978fa..00000000 --- a/static/inventory.js +++ /dev/null @@ -1,833 +0,0 @@ -/** - * Inventory Search Application - * Dedicated JavaScript for the inventory search page - */ - -// Configuration - use main app proxy for inventory service -const API_BASE = window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1' - ? 'http://localhost:8766' // Local development - direct to inventory service - : `${window.location.origin}/inv`; // Production - through main app proxy - -// DOM Elements - will be set after DOM loads -let searchForm, clearBtn, searchResults; - -// Sorting state -let currentSort = { - field: 'name', - direction: 'asc' -}; - -// Store current search results for client-side sorting -let currentResultsData = null; - -// Pagination state -let currentPage = 1; -let itemsPerPage = 5000; // 5k items per page for good performance -let totalPages = 1; - -// Initialize the application -document.addEventListener('DOMContentLoaded', function() { - // Get DOM elements after DOM is loaded - searchForm = document.getElementById('inventorySearchForm'); - clearBtn = document.getElementById('clearBtn'); - searchResults = document.getElementById('searchResults'); - - - initializeEventListeners(); - loadCharacterOptions(); -}); - -/** - * Initialize all event listeners - */ -function initializeEventListeners() { - // Form submission - searchForm.addEventListener('submit', async (e) => { - e.preventDefault(); - await performSearch(true); // Reset to page 1 on new search - }); - - // Clear button - clearBtn.addEventListener('click', clearAllFields); - - // Slot filter change - document.getElementById('slotFilter').addEventListener('change', handleSlotFilterChange); - - // Set analysis buttons - document.getElementById('setAnalysisBtn').addEventListener('click', showSetAnalysis); - document.getElementById('backToSearch').addEventListener('click', showSearchSection); - document.getElementById('runSetAnalysis').addEventListener('click', performSetAnalysis); - - // Checkbox visual feedback for cantrips and equipment sets - document.querySelectorAll('.checkbox-item input[type="checkbox"]').forEach(checkbox => { - checkbox.addEventListener('change', handleCheckboxChange); - }); -} - -/** - * Load available characters for the checkbox list - */ -async function loadCharacterOptions() { - try { - // Use inventory service proxy endpoint for character list - const response = await fetch(`${window.location.origin}/inventory-characters`); - const data = await response.json(); - - if (data.characters && data.characters.length > 0) { - const characterList = document.getElementById('characterList'); - - // Sort characters by name - data.characters.sort((a, b) => a.character_name.localeCompare(b.character_name)); - - // Add character checkboxes - data.characters.forEach(char => { - const div = document.createElement('div'); - div.className = 'character-item'; - - const checkbox = document.createElement('input'); - checkbox.type = 'checkbox'; - checkbox.id = `char_${char.character_name}`; - checkbox.value = char.character_name; - checkbox.className = 'character-checkbox'; - checkbox.checked = true; // Check all by default - - const label = document.createElement('label'); - label.htmlFor = checkbox.id; - label.textContent = char.character_name; - - div.appendChild(checkbox); - div.appendChild(label); - characterList.appendChild(div); - }); - - // Set up event listeners for character selection - setupCharacterCheckboxes(); - } - } catch (error) { - console.warn('Could not load character list:', error); - } -} - -/** - * Setup character checkbox functionality - */ -function setupCharacterCheckboxes() { - const allCheckbox = document.getElementById('char_all'); - const characterCheckboxes = document.querySelectorAll('.character-checkbox'); - - // Handle "All Characters" checkbox - allCheckbox.addEventListener('change', function() { - characterCheckboxes.forEach(cb => { - cb.checked = this.checked; - }); - }); - - // Handle individual character checkboxes - characterCheckboxes.forEach(cb => { - cb.addEventListener('change', function() { - // If any individual checkbox is unchecked, uncheck "All" - if (!this.checked) { - allCheckbox.checked = false; - } else { - // If all individual checkboxes are checked, check "All" - const allChecked = Array.from(characterCheckboxes).every(checkbox => checkbox.checked); - allCheckbox.checked = allChecked; - } - }); - }); -} - -/** - * Handle checkbox change events for visual feedback - */ -function handleCheckboxChange(e) { - const item = e.target.closest('.checkbox-item'); - if (e.target.checked) { - item.classList.add('checked'); - } else { - item.classList.remove('checked'); - } -} - -/** - * Clear all form fields and checkboxes - */ -function clearAllFields() { - searchForm.reset(); - - // Reset character selection to "All" - document.getElementById('char_all').checked = true; - document.querySelectorAll('.character-checkbox').forEach(cb => { - cb.checked = true; - }); - - // Clear checkbox visual states - document.querySelectorAll('.checkbox-item').forEach(item => { - item.classList.remove('checked'); - }); - - // Reset equipment type to armor - document.getElementById('armorOnly').checked = true; - - // Reset slot filter - document.getElementById('slotFilter').value = ''; - - // Reset pagination - currentPage = 1; - totalPages = 1; - - // Reset results and clear stored data - currentResultsData = null; - searchResults.innerHTML = '
Enter search criteria above and click "Search Items" to find inventory items.
'; -} - -/** - * Handle slot filter changes - */ -function handleSlotFilterChange() { - // If we have current results, reapply filtering and sorting - if (currentResultsData) { - // Reset items to original unfiltered data - const originalData = JSON.parse(JSON.stringify(currentResultsData)); - - // Apply slot filtering - applySlotFilter(originalData); - - // Apply sorting - sortResults(originalData); - - // Display results - displayResults(originalData); - } -} - - -/** - * Perform the search based on form inputs - */ -async function performSearch(resetPage = false) { - // Reset to page 1 if this is a new search (not pagination) - if (resetPage) { - currentPage = 1; - } - - searchResults.innerHTML = '
๐Ÿ” Searching inventory...
'; - - try { - const params = buildSearchParameters(); - const searchUrl = `${API_BASE}/search/items?${params.toString()}`; - console.log('Search URL:', searchUrl); - - const response = await fetch(searchUrl); - const data = await response.json(); - - if (!response.ok) { - throw new Error(data.detail || 'Search failed'); - } - - // Store results for client-side re-sorting - currentResultsData = data; - - // Update pagination state - updatePaginationState(data); - - // Apply client-side slot filtering - applySlotFilter(data); - - // Display results (already sorted by server) - displayResults(data); - - } catch (error) { - console.error('Search error:', error); - searchResults.innerHTML = `
โŒ Search failed: ${error.message}
`; - } -} - -/** - * Build search parameters from form inputs - */ -function buildSearchParameters() { - const params = new URLSearchParams(); - - // Equipment type selection - const equipmentType = document.querySelector('input[name="equipmentType"]:checked').value; - if (equipmentType === 'armor') { - params.append('armor_only', 'true'); - } else if (equipmentType === 'jewelry') { - params.append('jewelry_only', 'true'); - } else if (equipmentType === 'shirt') { - params.append('shirt_only', 'true'); - } else if (equipmentType === 'pants') { - params.append('pants_only', 'true'); - } - // If 'all' is selected, don't add any type filter - - // Basic search parameters - handle character selection - const allCharactersChecked = document.getElementById('char_all').checked; - if (!allCharactersChecked) { - // Get selected characters - const selectedCharacters = Array.from(document.querySelectorAll('.character-checkbox:checked')) - .map(cb => cb.value); - - if (selectedCharacters.length === 1) { - // Single character selected - params.append('character', selectedCharacters[0]); - } else if (selectedCharacters.length > 1) { - // Multiple characters - use comma-separated list - params.append('characters', selectedCharacters.join(',')); - } else { - // No characters selected - search nothing - return { items: [], total_count: 0, page: 1, total_pages: 0 }; - } - } else { - // All characters selected - params.append('include_all_characters', 'true'); - } - addParam(params, 'text', 'searchText'); - addParam(params, 'material', 'searchMaterial'); - - const equipStatus = document.getElementById('searchEquipStatus').value; - if (equipStatus && equipStatus !== 'all') { - params.append('equipment_status', equipStatus); - } - - // Armor statistics parameters - addParam(params, 'min_armor', 'searchMinArmor'); - addParam(params, 'max_armor', 'searchMaxArmor'); - addParam(params, 'min_crit_damage_rating', 'searchMinCritDamage'); - addParam(params, 'max_crit_damage_rating', 'searchMaxCritDamage'); - addParam(params, 'min_damage_rating', 'searchMinDamageRating'); - addParam(params, 'max_damage_rating', 'searchMaxDamageRating'); - addParam(params, 'min_heal_boost_rating', 'searchMinHealBoost'); - addParam(params, 'max_heal_boost_rating', 'searchMaxHealBoost'); - addParam(params, 'min_vitality_rating', 'searchMinVitalityRating'); - addParam(params, 'min_damage_resist_rating', 'searchMinDamageResistRating'); - addParam(params, 'min_crit_damage_resist_rating', 'searchMinCritDamageResistRating'); - - // Requirements parameters - addParam(params, 'min_level', 'searchMinLevel'); - addParam(params, 'max_level', 'searchMaxLevel'); - addParam(params, 'min_workmanship', 'searchMinWorkmanship'); - addParam(params, 'max_workmanship', 'searchMaxWorkmanship'); - - // Value parameters - addParam(params, 'min_value', 'searchMinValue'); - addParam(params, 'max_value', 'searchMaxValue'); - addParam(params, 'max_burden', 'searchMaxBurden'); - - // Equipment set filters - const selectedEquipmentSets = getSelectedEquipmentSets(); - if (selectedEquipmentSets.length === 1) { - params.append('item_set', selectedEquipmentSets[0]); - } else if (selectedEquipmentSets.length > 1) { - params.append('item_sets', selectedEquipmentSets.join(',')); - } - - // Cantrip filters - const selectedCantrips = getSelectedCantrips(); - const selectedProtections = getSelectedProtections(); - const allSpells = [...selectedCantrips, ...selectedProtections]; - if (allSpells.length > 0) { - params.append('legendary_cantrips', allSpells.join(',')); - } - - // Equipment slot filters - const selectedSlots = getSelectedSlots(); - if (selectedSlots.length > 0) { - params.append('slot_names', selectedSlots.join(',')); - } - - // Pagination parameters - params.append('page', currentPage); - params.append('limit', itemsPerPage); - - // Sorting parameters - params.append('sort_by', currentSort.field); - params.append('sort_dir', currentSort.direction); - - return params; -} - -/** - * Helper function to add parameter if value exists - */ -function addParam(params, paramName, elementId) { - const value = document.getElementById(elementId)?.value?.trim(); - if (value) { - params.append(paramName, value); - } -} - -/** - * Get selected equipment sets - */ -function getSelectedEquipmentSets() { - const selectedSets = []; - document.querySelectorAll('#equipmentSets input[type="checkbox"]:checked').forEach(cb => { - selectedSets.push(cb.value); - }); - return selectedSets; -} - -/** - * Get selected legendary cantrips - */ -function getSelectedCantrips() { - const selectedCantrips = []; - document.querySelectorAll('#cantrips input[type="checkbox"]:checked').forEach(cb => { - selectedCantrips.push(cb.value); - }); - return selectedCantrips; -} - -/** - * Get selected protection spells - */ -function getSelectedProtections() { - const selectedProtections = []; - document.querySelectorAll('#protections input[type="checkbox"]:checked').forEach(cb => { - selectedProtections.push(cb.value); - }); - return selectedProtections; -} - -/** - * Get selected equipment slots from checkboxes - */ -function getSelectedSlots() { - const selectedSlots = []; - // Get armor slots - document.querySelectorAll('#armor-slots input[type="checkbox"]:checked').forEach(cb => { - selectedSlots.push(cb.value); - }); - // Get jewelry slots - document.querySelectorAll('#jewelry-slots input[type="checkbox"]:checked').forEach(cb => { - selectedSlots.push(cb.value); - }); - return selectedSlots; -} - -/** - * Display search results in the UI - */ -function displayResults(data) { - if (!data.items || data.items.length === 0) { - searchResults.innerHTML = '
No items found matching your search criteria.
'; - return; - } - - const getSortIcon = (field) => { - if (currentSort.field === field) { - return currentSort.direction === 'asc' ? ' โ–ฒ' : ' โ–ผ'; - } - return ''; - }; - - let html = ` -
- Found ${data.total_count} items - Showing all results -
- - - - - - - - - - - - - - - - - - - - - - `; - - data.items.forEach((item) => { - const armor = item.armor_level > 0 ? item.armor_level : '-'; - const critDmg = item.crit_damage_rating > 0 ? item.crit_damage_rating : '-'; - const dmgRating = item.damage_rating > 0 ? item.damage_rating : '-'; - const healBoostRating = item.heal_boost_rating > 0 ? item.heal_boost_rating : '-'; - const vitalityRating = item.vitality_rating > 0 ? item.vitality_rating : '-'; - const damageResistRating = item.damage_resist_rating > 0 ? item.damage_resist_rating : '-'; - const critDamageResistRating = item.crit_damage_resist_rating > 0 ? item.crit_damage_resist_rating : '-'; - const status = item.is_equipped ? 'โš”๏ธ Equipped' : '๐Ÿ“ฆ Inventory'; - const statusClass = item.is_equipped ? 'status-equipped' : 'status-inventory'; - - // Use the slot_name provided by the API instead of incorrect mapping - // Replace commas with line breaks for better display - const slot = item.slot_name ? item.slot_name.replace(/,\s*/g, '
') : 'Unknown'; - - // Coverage placeholder - will need to be added to backend later - // Replace commas with line breaks for better display - const coverage = item.coverage ? item.coverage.replace(/,\s*/g, '
') : '-'; - - // Format last updated timestamp - const lastUpdated = item.last_updated ? - new Date(item.last_updated).toLocaleString('sv-SE', { - timeZone: 'Europe/Stockholm', - month: 'short', - day: 'numeric', - hour: '2-digit', - minute: '2-digit', - hour12: false - }) : '-'; - - // Use the formatted name with material from the API - let displayName = item.name; - - // The API should already include material in the name, but use material_name if available - if (item.material_name && item.material_name !== '' && !item.name.toLowerCase().includes(item.material_name.toLowerCase())) { - displayName = `${item.material_name} ${item.name}`; - } - - // Format spells/cantrips list - let spellsDisplay = '-'; - if (item.spell_names && item.spell_names.length > 0) { - // Highlight legendary cantrips in a different color - const formattedSpells = item.spell_names.map(spell => { - if (spell.toLowerCase().includes('legendary')) { - return `${spell}`; - } else { - return `${spell}`; - } - }); - spellsDisplay = formattedSpells.join('
'); - } - - // Get item type for display - const itemType = item.item_type_name || '-'; - - // Format equipment set name - let setDisplay = '-'; - if (item.item_set) { - // Remove redundant "Set" prefix if present - setDisplay = item.item_set.replace(/^Set\s+/i, ''); - // Also handle if it ends with " Set" - setDisplay = setDisplay.replace(/\s+Set$/i, ''); - } - - html += ` - - - - - - - - - - - - - - - - - - `; - }); - - html += ` - -
Character${getSortIcon('character_name')}Item Name${getSortIcon('name')}Type${getSortIcon('item_type_name')}Slot${getSortIcon('slot_name')}Coverage${getSortIcon('coverage')}Armor${getSortIcon('armor')}Set${getSortIcon('item_set')}Spells/Cantrips${getSortIcon('spell_names')}Crit Dmg${getSortIcon('crit_damage_rating')}Dmg Rating${getSortIcon('damage_rating')}Heal Boost${getSortIcon('heal_boost_rating')}Vitality${getSortIcon('vitality_rating')}Dmg Resist${getSortIcon('damage_resist_rating')}Crit Dmg Resist${getSortIcon('crit_damage_resist_rating')}Last Updated${getSortIcon('last_updated')}
${item.character_name}${displayName}${itemType}${slot}${coverage}${armor}${setDisplay}${spellsDisplay}${critDmg}${dmgRating}${healBoostRating}${vitalityRating}${damageResistRating}${critDamageResistRating}${lastUpdated}
- `; - - // Add pagination controls if needed - if (totalPages > 1) { - const isFirstPage = currentPage === 1; - const isLastPage = currentPage === totalPages; - - html += ` -
- - - Page ${currentPage} of ${totalPages} (${data.total_count} total items) - - -
- `; - } - - searchResults.innerHTML = html; - - // Add click event listeners to sortable headers - document.querySelectorAll('.sortable').forEach(header => { - header.addEventListener('click', () => { - const sortField = header.getAttribute('data-sort'); - handleSort(sortField); - }); - }); -} -/** - * Apply client-side slot filtering - */ -function applySlotFilter(data) { - const selectedSlot = document.getElementById('slotFilter').value; - - if (!selectedSlot || !data.items) { - return; // No filter or no data - } - - // Filter items that can be equipped in the selected slot - data.items = data.items.filter(item => { - const slotName = item.slot_name || ''; - - // Check if the item's slot_name contains the selected slot - // This handles multi-slot items like "Left Ring, Right Ring" - return slotName.includes(selectedSlot); - }); - - // Update total count - data.total_count = data.items.length; -} - -/** - * Sort results client-side based on current sort settings - */ -function sortResults(data) { - if (!data.items || data.items.length === 0) return; - - const field = currentSort.field; - const direction = currentSort.direction; - - data.items.sort((a, b) => { - let aVal = a[field]; - let bVal = b[field]; - - // Handle null/undefined values - if (aVal == null && bVal == null) return 0; - if (aVal == null) return 1; - if (bVal == null) return -1; - - // Special handling for spell_names array - if (field === 'spell_names') { - // Convert arrays to strings for sorting - aVal = Array.isArray(aVal) ? aVal.join(', ').toLowerCase() : ''; - bVal = Array.isArray(bVal) ? bVal.join(', ').toLowerCase() : ''; - const result = aVal.localeCompare(bVal); - return direction === 'asc' ? result : -result; - } - - // Determine if we're sorting numbers or strings - const isNumeric = typeof aVal === 'number' || (!isNaN(aVal) && !isNaN(parseFloat(aVal))); - - if (isNumeric) { - // Numeric sorting - aVal = parseFloat(aVal) || 0; - bVal = parseFloat(bVal) || 0; - const result = aVal - bVal; - return direction === 'asc' ? result : -result; - } else { - // String sorting - aVal = String(aVal).toLowerCase(); - bVal = String(bVal).toLowerCase(); - const result = aVal.localeCompare(bVal); - return direction === 'asc' ? result : -result; - } - }); -} - -/** - * Handle column sorting - */ -function handleSort(field) { - // If clicking the same field, toggle direction - if (currentSort.field === field) { - currentSort.direction = currentSort.direction === 'asc' ? 'desc' : 'asc'; - } else { - // New field, default to ascending - currentSort.field = field; - currentSort.direction = 'asc'; - } - - // Reset to page 1 and perform new search with updated sort - currentPage = 1; - performSearch(); -} - -/** - * Show set analysis section - */ -function showSetAnalysis() { - document.getElementById('setAnalysisSection').style.display = 'block'; - document.getElementById('searchResults').style.display = 'none'; - searchForm.style.display = 'none'; -} - -/** - * Show search section - */ -function showSearchSection() { - document.getElementById('setAnalysisSection').style.display = 'none'; - document.getElementById('searchResults').style.display = 'block'; - searchForm.style.display = 'block'; -} - -/** - * Perform set combination analysis - */ -async function performSetAnalysis() { - const primarySet = document.getElementById('primarySetSelect').value; - const secondarySet = document.getElementById('secondarySetSelect').value; - const setAnalysisResults = document.getElementById('setAnalysisResults'); - - if (primarySet === secondarySet) { - setAnalysisResults.innerHTML = '
โŒ Primary and secondary sets must be different.
'; - return; - } - - setAnalysisResults.innerHTML = '
๐Ÿ” Analyzing set combinations...
'; - - try { - const params = new URLSearchParams(); - params.append('primary_set', primarySet); - params.append('secondary_set', secondarySet); - params.append('primary_count', '5'); - params.append('secondary_count', '4'); - - // Use selected characters or all characters - const allCharactersChecked = document.getElementById('char_all').checked; - if (allCharactersChecked) { - params.append('include_all_characters', 'true'); - } else { - const selectedCharacters = Array.from(document.querySelectorAll('.character-checkbox:checked')) - .map(cb => cb.value); - if (selectedCharacters.length > 0) { - params.append('characters', selectedCharacters.join(',')); - } else { - setAnalysisResults.innerHTML = '
โŒ Please select at least one character or check "All Characters".
'; - return; - } - } - - const analysisUrl = `${API_BASE}/analyze/sets?${params.toString()}`; - console.log('Set Analysis URL:', analysisUrl); - - const response = await fetch(analysisUrl); - const data = await response.json(); - - if (!response.ok) { - throw new Error(data.detail || 'Set analysis failed'); - } - - displaySetAnalysisResults(data); - - } catch (error) { - console.error('Set analysis error:', error); - setAnalysisResults.innerHTML = `
โŒ Set analysis failed: ${error.message}
`; - } -} - -/** - * Display set analysis results - */ -function displaySetAnalysisResults(data) { - const setAnalysisResults = document.getElementById('setAnalysisResults'); - - if (!data.character_analysis || data.character_analysis.length === 0) { - setAnalysisResults.innerHTML = '
No characters found with the selected sets.
'; - return; - } - - let html = ` -
- ${data.primary_set.name} (${data.primary_set.pieces_needed} pieces) + - ${data.secondary_set.name} (${data.secondary_set.pieces_needed} pieces)
- Found ${data.characters_can_build} of ${data.total_characters} characters who can build this combination -
- - - - - - - - - - - - - `; - - data.character_analysis.forEach((char) => { - const canBuild = char.can_build_combination; - const canBuildText = canBuild ? 'โœ… Yes' : 'โŒ No'; - const canBuildClass = canBuild ? 'status-equipped' : 'status-inventory'; - - const primaryStatus = `${char.primary_set_available}/${char.primary_set_needed}`; - const secondaryStatus = `${char.secondary_set_available}/${char.secondary_set_needed}`; - - // Format item lists - const primaryItems = char.primary_items.map(item => - `${item.name}${item.equipped ? ' โš”๏ธ' : ''}` - ).join('
') || '-'; - - const secondaryItems = char.secondary_items.map(item => - `${item.name}${item.equipped ? ' โš”๏ธ' : ''}` - ).join('
') || '-'; - - html += ` - - - - - - - - - `; - }); - - html += ` - -
CharacterCan Build?${data.primary_set.name}${data.secondary_set.name}Primary ItemsSecondary Items
${char.character_name}${canBuildText}${primaryStatus}${secondaryStatus}${primaryItems}${secondaryItems}
- `; - - setAnalysisResults.innerHTML = html; -} - -/** - * Update pagination state from API response - */ -function updatePaginationState(data) { - totalPages = data.total_pages || 1; - // Current page is already tracked in currentPage -} - -/** - * Go to a specific page - */ -function goToPage(page) { - if (page < 1 || page > totalPages || page === currentPage) { - return; - } - - currentPage = page; - performSearch(); -} - -/** - * Go to next page - */ -function nextPage() { - if (currentPage < totalPages) { - goToPage(currentPage + 1); - } -} - -/** - * Go to previous page - */ -function previousPage() { - if (currentPage > 1) { - goToPage(currentPage - 1); - } -} diff --git a/static/prismatic-taper-icon.png b/static/prismatic-taper-icon.png deleted file mode 100644 index 9c34b927..00000000 Binary files a/static/prismatic-taper-icon.png and /dev/null differ diff --git a/static/script.js b/static/script.js index b37fbecf..bfe94b72 100644 --- a/static/script.js +++ b/static/script.js @@ -1,27 +1,3 @@ -/* - * script.js - Frontend logic for Dereth Tracker Single-Page Application. - * Handles WebSocket communication, UI rendering of player lists, map display, - * and user interactions (filtering, sorting, chat, stats windows). - */ -/** - * script.js - Frontend controller for Dereth Tracker SPA - * - * Responsibilities: - * - Establish WebSocket connections to receive live telemetry and chat data - * - Fetch and render live player lists, trails, and map dots - * - Handle user interactions: filtering, sorting, selecting players - * - Manage dynamic UI components: chat windows, stats panels, tooltips - * - Provide smooth pan/zoom of map overlay using CSS transforms - * - * Structure: - * 1. DOM references and constant definitions - * 2. Color palette and assignment logic - * 3. Sorting and filtering setup - * 4. Utility functions (coordinate mapping, color hashing) - * 5. UI window creation (stats, chat) - * 6. Rendering functions for list and map - * 7. Event listeners for map interactions and WebSocket messages - */ /* ---------- DOM references --------------------------------------- */ const wrap = document.getElementById('mapContainer'); const group = document.getElementById('mapGroup'); @@ -31,269 +7,39 @@ const trailsContainer = document.getElementById('trails'); const list = document.getElementById('playerList'); const btnContainer = document.getElementById('sortButtons'); const tooltip = document.getElementById('tooltip'); -const coordinates = document.getElementById('coordinates'); -// Global drag system to prevent event listener accumulation -let currentDragWindow = null; -let dragStartX = 0, dragStartY = 0, dragStartLeft = 0, dragStartTop = 0; - -function makeDraggable(win, header) { - if (!window.__chatZ) window.__chatZ = 10000; - header.style.cursor = 'move'; - - const bringToFront = () => { - window.__chatZ += 1; - win.style.zIndex = window.__chatZ; - }; - - header.addEventListener('mousedown', e => { - if (e.target.closest('button')) return; - e.preventDefault(); - currentDragWindow = win; - bringToFront(); - dragStartX = e.clientX; - dragStartY = e.clientY; - dragStartLeft = win.offsetLeft; - dragStartTop = win.offsetTop; - document.body.classList.add('noselect'); - }); - - // Touch support - header.addEventListener('touchstart', e => { - if (e.touches.length !== 1 || e.target.closest('button')) return; - currentDragWindow = win; - bringToFront(); - const t = e.touches[0]; - dragStartX = t.clientX; - dragStartY = t.clientY; - dragStartLeft = win.offsetLeft; - dragStartTop = win.offsetTop; - }); -} - -// Global mouse handlers (only added once) -window.addEventListener('mousemove', e => { - if (!currentDragWindow) return; - const dx = e.clientX - dragStartX; - const dy = e.clientY - dragStartY; - currentDragWindow.style.left = `${dragStartLeft + dx}px`; - currentDragWindow.style.top = `${dragStartTop + dy}px`; -}); - -window.addEventListener('mouseup', () => { - if (currentDragWindow) { - currentDragWindow = null; - document.body.classList.remove('noselect'); - } -}); - -window.addEventListener('touchmove', e => { - if (!currentDragWindow || e.touches.length !== 1) return; - const t = e.touches[0]; - const dx = t.clientX - dragStartX; - const dy = t.clientY - dragStartY; - currentDragWindow.style.left = `${dragStartLeft + dx}px`; - currentDragWindow.style.top = `${dragStartTop + dy}px`; -}); - -window.addEventListener('touchend', () => { - currentDragWindow = null; -}); -// Filter input for player names (starts-with filter) -let currentFilter = ''; -const filterInput = document.getElementById('playerFilter'); -if (filterInput) { - filterInput.addEventListener('input', e => { - currentFilter = e.target.value.toLowerCase().trim(); - renderList(); - }); -} - -// WebSocket for chat and commands -let socket; -// Keep track of open chat windows: character_name -> DOM element -const chatWindows = {}; -// Keep track of open stats windows: character_name -> DOM element -const statsWindows = {}; -// Keep track of open inventory windows: character_name -> DOM element -const inventoryWindows = {}; - -/** - * ---------- Application Constants ----------------------------- - * Defines key parameters for map rendering, data polling, and UI limits. - * - * MAX_Z: Maximum altitude difference considered (filter out outliers by Z) - * FOCUS_ZOOM: Zoom level when focusing on a selected character - * POLL_MS: Millisecond interval to fetch live player data and trails - * MAP_BOUNDS: World coordinate bounds for the game map (used for projection) - * API_BASE: Prefix for AJAX endpoints (set when behind a proxy) - * MAX_CHAT_LINES: Max number of lines per chat window to cap memory usage - * CHAT_COLOR_MAP: Color mapping for in-game chat channels by channel code - */ /* ---------- constants ------------------------------------------- */ -const MAX_Z = 20; +const MAX_Z = 10; const FOCUS_ZOOM = 3; // zoom level when you click a name const POLL_MS = 2000; -// UtilityBelt's more accurate coordinate bounds -const MAP_BOUNDS = { - west: -102.1, - east: 102.1, - north: 102.1, - south: -102.1 +const MAP_BOUNDS = { + west : -102.04, + east : 102.19, + north: 102.16, + south: -102.00 }; -// Base path for tracker API endpoints; prefix API calls with '/api' when served behind a proxy -// If serving APIs at root, leave empty -const API_BASE = ''; -// Maximum number of lines to retain in each chat window scrollback -const MAX_CHAT_LINES = 1000; -// Map numeric chat color codes to CSS hex colors -const CHAT_COLOR_MAP = { - 0: '#00FF00', // Broadcast - 2: '#FFFFFF', // Speech - 3: '#FFD700', // Tell - 4: '#CCCC00', // OutgoingTell - 5: '#FF00FF', // System - 6: '#FF0000', // Combat - 7: '#00CCFF', // Magic - 8: '#DDDDDD', // Channel - 9: '#FF9999', // ChannelSend - 10: '#FFFF33', // Social - 11: '#CCFF33', // SocialSend - 12: '#FFFFFF', // Emote - 13: '#00FFFF', // Advancement - 14: '#66CCFF', // Abuse - 15: '#FF0000', // Help - 16: '#33FF00', // Appraisal - 17: '#0099FF', // Spellcasting - 18: '#FF6600', // Allegiance - 19: '#CC66FF', // Fellowship - 20: '#00FF00', // WorldBroadcast - 21: '#FF0000', // CombatEnemy - 22: '#FF33CC', // CombatSelf - 23: '#00CC00', // Recall - 24: '#00FF00', // Craft - 25: '#00FF66', // Salvaging - 27: '#FFFFFF', // General - 28: '#33FF33', // Trade - 29: '#CCCCCC', // LFG - 30: '#CC00CC', // Roleplay - 31: '#FFFF00' // AdminTell -}; - -/* ---------- Heat Map Globals ---------- */ -let heatmapCanvas, heatmapCtx; -let heatmapEnabled = false; -let heatmapData = null; -let heatTimeout = null; -const HEAT_PADDING = 50; // px beyond viewport to still draw -const HEAT_THROTTLE = 16; // ~60 fps - -/* ---------- Portal Map Globals ---------- */ -let portalEnabled = false; -let portalData = null; -let portalContainer = null; - -/** - * ---------- Player Color Assignment ---------------------------- - * Uses a predefined accessible color palette for player dots to ensure - * high contrast and colorblind-friendly display. Once the palette - * is exhausted, falls back to a deterministic hash-to-hue function. - */ -/* ---------- player/dot color assignment ------------------------- */ -// A base palette of distinct, color-blind-friendly colors -const PALETTE = [ - // Original colorblind-friendly base palette - '#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', - '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf', - - // Extended high-contrast colors - '#ff4444', '#44ff44', '#4444ff', '#ffff44', '#ff44ff', - '#44ffff', '#ff8844', '#88ff44', '#4488ff', '#ff4488', - - // Darker variants - '#cc3333', '#33cc33', '#3333cc', '#cccc33', '#cc33cc', - '#33cccc', '#cc6633', '#66cc33', '#3366cc', '#cc3366', - - // Brighter variants - '#ff6666', '#66ff66', '#6666ff', '#ffff66', '#ff66ff', - '#66ffff', '#ffaa66', '#aaff66', '#66aaff', '#ff66aa', - - // Additional distinct colors - '#990099', '#009900', '#000099', '#990000', '#009999', - '#999900', '#aa5500', '#55aa00', '#0055aa', '#aa0055', - - // Light pastels for contrast - '#ffaaaa', '#aaffaa', '#aaaaff', '#ffffaa', '#ffaaff', - '#aaffff', '#ffccaa', '#ccffaa', '#aaccff', '#ffaacc' -]; -// Map from character name to assigned color -const colorMap = {}; -// Next index to pick from PALETTE -let nextPaletteIndex = 0; -/** - * Assigns or returns a consistent color for a given name. - * Uses a fixed palette first, then falls back to hue hashing. - */ -function getColorFor(name) { - if (colorMap[name]) { - return colorMap[name]; - } - let color; - if (nextPaletteIndex < PALETTE.length) { - color = PALETTE[nextPaletteIndex++]; - } else { - // Fallback: hash to HSL hue - color = hue(name); - } - colorMap[name] = color; - return color; -} - -/* - * ---------- Sort Configuration ------------------------------- - * Defines available sort criteria for the active player list: - * - name: alphabetical ascending - * - kph: kills per hour descending - * - kills: total kills descending - * - rares: rare events found during current session descending - * Each option includes a label for UI display and a comparator function. - */ /* ---------- sort configuration ---------------------------------- */ const sortOptions = [ { value: "name", - label: "Name", + label: "Name โ†‘", comparator: (a, b) => a.character_name.localeCompare(b.character_name) }, { value: "kph", - label: "KPH", + label: "KPH โ†“", comparator: (a, b) => b.kills_per_hour - a.kills_per_hour }, { value: "kills", - label: "S.Kills", + label: "Kills โ†“", comparator: (a, b) => b.kills - a.kills }, { value: "rares", - label: "S.Rares", - comparator: (a, b) => (b.session_rares || 0) - (a.session_rares || 0) - }, - { - value: "total_kills", - label: "T.Kills", - comparator: (a, b) => (b.total_kills || 0) - (a.total_kills || 0) - }, - { - value: "kpr", - label: "KPR", - comparator: (a, b) => { - const aKpr = (a.total_rares || 0) > 0 ? (a.total_kills || 0) / (a.total_rares || 0) : Infinity; - const bKpr = (b.total_rares || 0) > 0 ? (b.total_kills || 0) / (b.total_rares || 0) : Infinity; - return aKpr - bKpr; // Ascending - lower KPR is better (more efficient rare finding) - } + label: "Rares โ†“", + comparator: (a, b) => (b.rares_found || 0) - (a.rares_found || 0) } ]; @@ -345,753 +91,6 @@ function worldToPx(ew, ns) { return { x, y }; } -function pxToWorld(x, y) { - // Convert screen coordinates to map image coordinates - const mapX = (x - offX) / scale; - const mapY = (y - offY) / scale; - - // Convert map image coordinates to world coordinates - const ew = MAP_BOUNDS.west + (mapX / imgW) * (MAP_BOUNDS.east - MAP_BOUNDS.west); - const ns = MAP_BOUNDS.north - (mapY / imgH) * (MAP_BOUNDS.north - MAP_BOUNDS.south); - - return { ew, ns }; -} - -/* ---------- Heat Map Functions ---------- */ - -function initHeatMap() { - heatmapCanvas = document.getElementById('heatmapCanvas'); - if (!heatmapCanvas) { - console.error('Heat map canvas not found'); - return; - } - - heatmapCtx = heatmapCanvas.getContext('2d'); - - const toggle = document.getElementById('heatmapToggle'); - if (toggle) { - toggle.addEventListener('change', e => { - heatmapEnabled = e.target.checked; - if (heatmapEnabled) { - fetchHeatmapData(); - } else { - clearHeatmap(); - } - }); - } - - window.addEventListener('resize', debounce(() => { - if (heatmapEnabled && heatmapData) { - renderHeatmap(); - } - }, 250)); -} - -async function fetchHeatmapData() { - try { - const response = await fetch(`${API_BASE}/spawns/heatmap?hours=24&limit=50000`); - if (!response.ok) { - throw new Error(`Heat map API error: ${response.status}`); - } - - const data = await response.json(); - heatmapData = data.spawn_points; // [{ew, ns, intensity}] - console.log(`Loaded ${heatmapData.length} heat map points from last ${data.hours_window} hours`); - renderHeatmap(); - } catch (err) { - console.error('Failed to fetch heat map data:', err); - } -} - -function renderHeatmap() { - if (!heatmapEnabled || !heatmapData || !heatmapCanvas || !imgW || !imgH) { - return; - } - - // Set canvas size to match map dimensions (1:1 DPI) - heatmapCanvas.width = imgW; - heatmapCanvas.height = imgH; - heatmapCtx.clearRect(0, 0, imgW, imgH); - - // Current visible map rect in px for viewport culling - const vw = wrap.clientWidth; - const vh = wrap.clientHeight; - const viewL = -offX / scale; - const viewT = -offY / scale; - const viewR = viewL + vw / scale; - const viewB = viewT + vh / scale; - - // Render heat map points with viewport culling - for (const point of heatmapData) { - const { x, y } = worldToPx(point.ew, point.ns); - - // Skip points outside visible area (with padding for smooth edges) - if (x < viewL - HEAT_PADDING || x > viewR + HEAT_PADDING || - y < viewT - HEAT_PADDING || y > viewB + HEAT_PADDING) { - continue; - } - - // Smaller, more precise spots to clearly show individual spawn locations - const radius = Math.max(5, Math.min(12, 5 + Math.sqrt(point.intensity * 0.5))); - - // Sharp gradient with distinct boundaries between spawn points - const gradient = heatmapCtx.createRadialGradient(x, y, 0, x, y, radius); - gradient.addColorStop(0, `rgba(255, 0, 0, ${Math.min(0.9, point.intensity / 40)})`); // Bright red center - gradient.addColorStop(0.6, `rgba(255, 100, 0, ${Math.min(0.4, point.intensity / 120)})`); // Quick fade to orange - gradient.addColorStop(1, 'rgba(255, 150, 0, 0)'); - - heatmapCtx.fillStyle = gradient; - heatmapCtx.fillRect(x - radius, y - radius, radius * 2, radius * 2); - } -} - -function clearHeatmap() { - if (heatmapCtx && heatmapCanvas) { - heatmapCtx.clearRect(0, 0, heatmapCanvas.width, heatmapCanvas.height); - } -} - -/* ---------- Portal Map Functions ---------- */ -function initPortalMap() { - portalContainer = document.getElementById('portals'); - if (!portalContainer) { - console.error('Portal container not found'); - return; - } - - const toggle = document.getElementById('portalToggle'); - if (toggle) { - toggle.addEventListener('change', e => { - portalEnabled = e.target.checked; - if (portalEnabled) { - fetchPortalData(); - } else { - clearPortals(); - } - }); - } -} - -async function fetchPortalData() { - try { - const response = await fetch(`${API_BASE}/portals`); - if (!response.ok) { - throw new Error(`Portal API error: ${response.status}`); - } - - const data = await response.json(); - portalData = data.portals; // [{portal_name, coordinates: {ns, ew, z}, discovered_by, discovered_at}] - console.log(`Loaded ${portalData.length} portals from last hour`); - renderPortals(); - } catch (err) { - console.error('Failed to fetch portal data:', err); - } -} - -function parseCoordinate(coord) { - // Handle both formats: - // String format: "42.3N", "15.7S", "33.7E", "28.2W" - // Numeric format: "-96.9330958" (already signed) - - // Check if it's already a number - if (typeof coord === 'number') { - return coord; - } - - // Check if it's a numeric string - const numericValue = parseFloat(coord); - if (!isNaN(numericValue) && coord.match(/^-?\d+\.?\d*$/)) { - return numericValue; - } - - // Parse string format like "42.3N" - const match = coord.match(/^([0-9.]+)([NSEW])$/); - if (!match) return 0; - - const value = parseFloat(match[1]); - const direction = match[2]; - - if (direction === 'S' || direction === 'W') { - return -value; - } - return value; -} - -function renderPortals() { - if (!portalEnabled || !portalData || !portalContainer || !imgW || !imgH) { - return; - } - - // Clear existing portals - clearPortals(); - - for (const portal of portalData) { - // Extract coordinates from new API format - const ns = portal.coordinates.ns; - const ew = portal.coordinates.ew; - - // Convert to pixel coordinates - const { x, y } = worldToPx(ew, ns); - - // Create portal icon - const icon = document.createElement('div'); - icon.className = 'portal-icon'; - icon.style.left = `${x}px`; - icon.style.top = `${y}px`; - icon.title = `${portal.portal_name} (discovered by ${portal.discovered_by})`; - - portalContainer.appendChild(icon); - } - - console.log(`Rendered ${portalData.length} portal icons`); -} - -function clearPortals() { - if (portalContainer) { - portalContainer.innerHTML = ''; - } -} - -function debounce(fn, ms) { - let timeout; - return (...args) => { - clearTimeout(timeout); - timeout = setTimeout(() => fn(...args), ms); - }; -} - -// Show or create a stats window for a character -function showStatsWindow(name) { - if (statsWindows[name]) { - const existing = statsWindows[name]; - // Toggle: close if already visible, open if hidden - if (existing.style.display === 'flex') { - existing.style.display = 'none'; - } else { - existing.style.display = 'flex'; - } - return; - } - const win = document.createElement('div'); - win.className = 'stats-window'; - win.dataset.character = name; - // Header (reuses chat-header styling) - const header = document.createElement('div'); - header.className = 'chat-header'; - const title = document.createElement('span'); - title.textContent = `Stats: ${name}`; - const closeBtn = document.createElement('button'); - closeBtn.className = 'chat-close-btn'; - closeBtn.textContent = 'ร—'; - closeBtn.addEventListener('click', () => { win.style.display = 'none'; }); - header.appendChild(title); - header.appendChild(closeBtn); - win.appendChild(header); - // Time period controls - const controls = document.createElement('div'); - controls.className = 'stats-controls'; - const timeRanges = [ - { label: '1H', value: 'now-1h' }, - { label: '6H', value: 'now-6h' }, - { label: '24H', value: 'now-24h' }, - { label: '7D', value: 'now-7d' } - ]; - timeRanges.forEach(range => { - const btn = document.createElement('button'); - btn.className = 'time-range-btn'; - btn.textContent = range.label; - if (range.value === 'now-24h') btn.classList.add('active'); - btn.addEventListener('click', () => { - controls.querySelectorAll('.time-range-btn').forEach(b => b.classList.remove('active')); - btn.classList.add('active'); - updateStatsTimeRange(content, name, range.value); - }); - controls.appendChild(btn); - }); - win.appendChild(controls); - - // Content container - const content = document.createElement('div'); - content.className = 'chat-messages'; - content.textContent = 'Loading stats...'; - win.appendChild(content); - document.body.appendChild(win); - statsWindows[name] = win; - // Load initial stats with default 24h range - updateStatsTimeRange(content, name, 'now-24h'); - // Enable dragging using the global drag system - makeDraggable(win, header); -} - -function updateStatsTimeRange(content, name, timeRange) { - content.innerHTML = ''; - const panels = [ - { title: 'Kills per Hour', id: 1 }, - { title: 'Memory (MB)', id: 2 }, - { title: 'CPU (%)', id: 3 }, - { title: 'Mem Handles', id: 4 } - ]; - panels.forEach(p => { - const iframe = document.createElement('iframe'); - iframe.src = - `/grafana/d-solo/dereth-tracker/dereth-tracker-dashboard` + - `?panelId=${p.id}` + - `&var-character=${encodeURIComponent(name)}` + - `&from=${timeRange}` + - `&to=now` + - `&theme=light`; - iframe.setAttribute('title', p.title); - iframe.width = '350'; - iframe.height = '200'; - iframe.frameBorder = '0'; - iframe.allowFullscreen = true; - content.appendChild(iframe); - }); -} - -// Show or create an inventory window for a character -function showInventoryWindow(name) { - if (inventoryWindows[name]) { - const existing = inventoryWindows[name]; - // Toggle: close if already visible, open if hidden - if (existing.style.display === 'flex') { - existing.style.display = 'none'; - } else { - existing.style.display = 'flex'; - } - return; - } - const win = document.createElement('div'); - win.className = 'inventory-window'; - win.dataset.character = name; - // Header (reuses chat-header styling) - const header = document.createElement('div'); - header.className = 'chat-header'; - const title = document.createElement('span'); - title.textContent = `Inventory: ${name}`; - const closeBtn = document.createElement('button'); - closeBtn.className = 'chat-close-btn'; - closeBtn.textContent = 'ร—'; - closeBtn.addEventListener('click', () => { win.style.display = 'none'; }); - header.appendChild(title); - header.appendChild(closeBtn); - win.appendChild(header); - // Loading message - const loading = document.createElement('div'); - loading.className = 'inventory-loading'; - loading.textContent = 'Loading inventory...'; - win.appendChild(loading); - - // Content container - const content = document.createElement('div'); - content.className = 'inventory-content'; - content.style.display = 'none'; - win.appendChild(content); - - // Fetch inventory data from main app (which will proxy to inventory service) - fetch(`${API_BASE}/inventory/${encodeURIComponent(name)}?limit=1000`) - .then(response => { - if (!response.ok) throw new Error(`HTTP ${response.status}`); - return response.json(); - }) - .then(data => { - loading.style.display = 'none'; - content.style.display = 'block'; - - // Create inventory grid - const grid = document.createElement('div'); - grid.className = 'inventory-grid'; - - // Render each item - data.items.forEach(item => { - - const slot = document.createElement('div'); - slot.className = 'inventory-slot'; - - // Create layered icon container - const iconContainer = document.createElement('div'); - iconContainer.className = 'item-icon-composite'; - - // Get base icon ID with portal.dat offset - const baseIconId = (item.icon + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - - // Check for overlay and underlay from enhanced format or legacy format - let overlayIconId = null; - let underlayIconId = null; - - // Enhanced format (inventory service) - check for proper icon overlay/underlay properties - if (item.icon_overlay_id && item.icon_overlay_id > 0) { - overlayIconId = (item.icon_overlay_id + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - - if (item.icon_underlay_id && item.icon_underlay_id > 0) { - underlayIconId = (item.icon_underlay_id + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - - // Fallback: Enhanced format (inventory service) - check spells object for decal info - if (!overlayIconId && !underlayIconId && item.spells && typeof item.spells === 'object') { - // Icon overlay (using the actual property names from the data) - // Only use valid icon IDs (must be > 100 to avoid invalid small IDs) - if (item.spells.spell_decal_218103838 && item.spells.spell_decal_218103838 > 100) { - overlayIconId = (item.spells.spell_decal_218103838 + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - - // Icon underlay - if (item.spells.spell_decal_218103848 && item.spells.spell_decal_218103848 > 100) { - underlayIconId = (item.spells.spell_decal_218103848 + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - } else if (item.item_data) { - // Legacy format - parse item_data - try { - const itemData = typeof item.item_data === 'string' ? JSON.parse(item.item_data) : item.item_data; - - if (itemData.IntValues) { - // Icon overlay (ID 218103849) - only use valid icon IDs - if (itemData.IntValues['218103849'] && itemData.IntValues['218103849'] > 100) { - overlayIconId = (itemData.IntValues['218103849'] + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - - // Icon underlay (ID 218103850) - only use valid icon IDs - if (itemData.IntValues['218103850'] && itemData.IntValues['218103850'] > 100) { - underlayIconId = (itemData.IntValues['218103850'] + 0x06000000).toString(16).toUpperCase().padStart(8, '0'); - } - } - } catch (e) { - console.warn('Failed to parse item data for', item.name); - } - } - - // Create underlay (bottom layer) - if (underlayIconId) { - const underlayImg = document.createElement('img'); - underlayImg.className = 'icon-underlay'; - underlayImg.src = `/icons/${underlayIconId}.png`; - underlayImg.alt = 'underlay'; - underlayImg.onerror = function() { this.style.display = 'none'; }; - iconContainer.appendChild(underlayImg); - } - - // Create base icon (middle layer) - const baseImg = document.createElement('img'); - baseImg.className = 'icon-base'; - baseImg.src = `/icons/${baseIconId}.png`; - baseImg.alt = item.name || 'Unknown Item'; - baseImg.onerror = function() { - // Final fallback - this.src = '/icons/06000133.png'; - }; - iconContainer.appendChild(baseImg); - - // Create overlay (top layer) - if (overlayIconId) { - const overlayImg = document.createElement('img'); - overlayImg.className = 'icon-overlay'; - overlayImg.src = `/icons/${overlayIconId}.png`; - overlayImg.alt = 'overlay'; - overlayImg.onerror = function() { this.style.display = 'none'; }; - iconContainer.appendChild(overlayImg); - } - - // Create tooltip data - slot.dataset.name = item.name || 'Unknown Item'; - slot.dataset.value = item.value || 0; - slot.dataset.burden = item.burden || 0; - - // Store enhanced data for tooltips - // All data now comes from inventory service (no more local fallback) - if (item.max_damage !== undefined || item.object_class_name !== undefined || item.spells !== undefined) { - // Inventory service provides clean, structured data with translations - // Only include properties that actually exist on the item - const enhancedData = {}; - - // Check all possible enhanced properties from inventory service - const possibleProps = [ - 'max_damage', 'armor_level', 'damage_bonus', 'attack_bonus', - 'wield_level', 'skill_level', 'lore_requirement', 'equip_skill', 'equip_skill_name', - 'material', 'material_name', 'material_id', 'imbue', 'item_set', 'tinks', - 'workmanship', 'workmanship_text', 'damage_rating', 'crit_rating', - 'heal_boost_rating', 'has_id_data', 'object_class_name', 'spells', - 'enhanced_properties', 'damage_range', 'damage_type', 'min_damage', - 'speed_text', 'speed_value', 'mana_display', 'spellcraft', 'current_mana', 'max_mana', - 'melee_defense_bonus', 'magic_defense_bonus', 'missile_defense_bonus', - 'elemental_damage_vs_monsters', 'mana_conversion_bonus', 'icon_overlay_id', 'icon_underlay_id' - ]; - - // Only add properties that exist and have meaningful values - possibleProps.forEach(prop => { - if (item.hasOwnProperty(prop) && item[prop] !== undefined && item[prop] !== null) { - enhancedData[prop] = item[prop]; - } - }); - - slot.dataset.enhancedData = JSON.stringify(enhancedData); - } else { - // No enhanced data available - slot.dataset.enhancedData = JSON.stringify({}); - } - - // Add tooltip on hover - slot.addEventListener('mouseenter', e => showInventoryTooltip(e, slot)); - slot.addEventListener('mousemove', e => showInventoryTooltip(e, slot)); - slot.addEventListener('mouseleave', hideInventoryTooltip); - - slot.appendChild(iconContainer); - grid.appendChild(slot); - }); - - content.appendChild(grid); - - // Add item count - const count = document.createElement('div'); - count.className = 'inventory-count'; - count.textContent = `${data.item_count} items`; - content.appendChild(count); - }) - .catch(err => { - loading.textContent = `Failed to load inventory: ${err.message}`; - console.error('Inventory fetch failed:', err); - }); - - document.body.appendChild(win); - inventoryWindows[name] = win; - - // Enable dragging using the global drag system - makeDraggable(win, header); -} - -// Inventory tooltip functions -let inventoryTooltip = null; - -function showInventoryTooltip(e, slot) { - if (!inventoryTooltip) { - inventoryTooltip = document.createElement('div'); - inventoryTooltip.className = 'inventory-tooltip'; - document.body.appendChild(inventoryTooltip); - } - - const name = slot.dataset.name; - const value = parseInt(slot.dataset.value) || 0; - const burden = parseInt(slot.dataset.burden) || 0; - - // Build enhanced tooltip - let tooltipHTML = `
${name}
`; - - // Basic stats - tooltipHTML += `
`; - tooltipHTML += `
Value: ${value.toLocaleString()}
`; - tooltipHTML += `
Burden: ${burden}
`; - - // Add workmanship right after basic stats for weapons/items - if (slot.dataset.enhancedData) { - try { - const enhanced = JSON.parse(slot.dataset.enhancedData); - if (enhanced.workmanship_text) { - tooltipHTML += `
Workmanship: ${enhanced.workmanship_text}
`; - } - } catch (e) { - // Ignore parsing errors for this section - } - } - - tooltipHTML += `
`; - - // Enhanced data from inventory service - if (slot.dataset.enhancedData) { - try { - const enhanced = JSON.parse(slot.dataset.enhancedData); - - // Only show enhanced sections if we have enhanced data - if (Object.keys(enhanced).length > 0) { - - // Helper function to check for valid values - const isValid = (val) => val !== undefined && val !== null && val !== -1 && val !== -1.0; - - // Weapon-specific stats section (for weapons) - if (enhanced.damage_range || enhanced.speed_text || enhanced.equip_skill_name) { - tooltipHTML += `
`; - - // Skill requirement - if (enhanced.equip_skill_name) { - tooltipHTML += `
Skill: ${enhanced.equip_skill_name}
`; - } - - // Damage with type - if (enhanced.damage_range && enhanced.damage_type) { - const damageText = enhanced.damage_type !== 'Physical' ? - `${enhanced.damage_range}, ${enhanced.damage_type}` : - enhanced.damage_range; - tooltipHTML += `
Damage: ${damageText}
`; - } - - // Speed - if (enhanced.speed_text) { - tooltipHTML += `
Speed: ${enhanced.speed_text}
`; - } - - // Attack and defense bonuses (as percentages) - if (isValid(enhanced.attack_bonus)) { - const attackPercent = ((enhanced.attack_bonus - 1) * 100).toFixed(1); - if (attackPercent !== "0.0") { - tooltipHTML += `
Bonus to Attack Skill: ${attackPercent > 0 ? '+' : ''}${attackPercent}%
`; - } - } - - // Defense bonuses - if (enhanced.melee_defense_bonus && isValid(enhanced.melee_defense_bonus)) { - const defensePercent = ((enhanced.melee_defense_bonus - 1) * 100).toFixed(1); - if (defensePercent !== "0.0") { - tooltipHTML += `
Bonus to Melee Defense: ${defensePercent > 0 ? '+' : ''}${defensePercent}%
`; - } - } - - // Magic defense bonus - if (enhanced.magic_defense_bonus && isValid(enhanced.magic_defense_bonus)) { - const magicDefensePercent = ((enhanced.magic_defense_bonus - 1) * 100).toFixed(1); - if (magicDefensePercent !== "0.0") { - tooltipHTML += `
Bonus to Magic Defense: ${magicDefensePercent > 0 ? '+' : ''}${magicDefensePercent}%
`; - } - } - - // Elemental damage vs monsters - if (enhanced.elemental_damage_vs_monsters && isValid(enhanced.elemental_damage_vs_monsters)) { - const elementalPercent = ((enhanced.elemental_damage_vs_monsters - 1) * 100).toFixed(1); - if (elementalPercent !== "0.0") { - tooltipHTML += `
Elemental Damage vs Monsters: ${elementalPercent > 0 ? '+' : ''}${elementalPercent}%
`; - } - } - - tooltipHTML += `
`; - } - - // Traditional combat stats section (for non-weapons or additional stats) - const combatProps = []; - if (isValid(enhanced.armor_level)) combatProps.push(`Armor Level: ${enhanced.armor_level}`); - if (!enhanced.damage_range && isValid(enhanced.max_damage)) combatProps.push(`Max Damage: ${enhanced.max_damage}`); - if (!enhanced.attack_bonus && isValid(enhanced.damage_bonus)) combatProps.push(`Damage Bonus: ${enhanced.damage_bonus.toFixed(1)}`); - - if (combatProps.length > 0) { - tooltipHTML += `
Combat Stats
`; - combatProps.forEach(prop => { - tooltipHTML += `
${prop}
`; - }); - tooltipHTML += `
`; - } - - // Requirements section - const reqProps = []; - if (isValid(enhanced.wield_level)) reqProps.push(`Level Required: ${enhanced.wield_level}`); - if (isValid(enhanced.skill_level)) reqProps.push(`Skill Level: ${enhanced.skill_level}`); - if (enhanced.equip_skill_name) reqProps.push(`Skill: ${enhanced.equip_skill_name}`); - if (isValid(enhanced.lore_requirement)) reqProps.push(`Lore: ${enhanced.lore_requirement}`); - - if (reqProps.length > 0) { - tooltipHTML += `
Requirements
`; - reqProps.forEach(prop => { - tooltipHTML += `
${prop}
`; - }); - tooltipHTML += `
`; - } - - // Enhancement section - const enhanceProps = []; - if (enhanced.material_name) enhanceProps.push(`Material: ${enhanced.material_name}`); - if (enhanced.imbue) enhanceProps.push(`Imbue: ${enhanced.imbue}`); - if (enhanced.item_set) enhanceProps.push(`Set: ${enhanced.item_set}`); - if (isValid(enhanced.tinks)) enhanceProps.push(`Tinks: ${enhanced.tinks}`); - // Use workmanship_text if available, otherwise numeric value - if (enhanced.workmanship_text) { - enhanceProps.push(`Workmanship: ${enhanced.workmanship_text}`); - } else if (isValid(enhanced.workmanship)) { - enhanceProps.push(`Workmanship: ${enhanced.workmanship.toFixed(1)}`); - } - - if (enhanceProps.length > 0) { - tooltipHTML += `
Enhancements
`; - enhanceProps.forEach(prop => { - tooltipHTML += `
${prop}
`; - }); - tooltipHTML += `
`; - } - - // Ratings section - const ratingProps = []; - if (isValid(enhanced.damage_rating)) ratingProps.push(`Damage Rating: ${enhanced.damage_rating}`); - if (isValid(enhanced.crit_rating)) ratingProps.push(`Crit Rating: ${enhanced.crit_rating}`); - if (isValid(enhanced.heal_boost_rating)) ratingProps.push(`Heal Boost: ${enhanced.heal_boost_rating}`); - - if (ratingProps.length > 0) { - tooltipHTML += `
Ratings
`; - ratingProps.forEach(prop => { - tooltipHTML += `
${prop}
`; - }); - tooltipHTML += `
`; - } - - // Spells section (condensed list) - if (enhanced.spells && enhanced.spells.spells && enhanced.spells.spells.length > 0) { - const spellNames = enhanced.spells.spells.map(spell => spell.name).join(', '); - tooltipHTML += `
`; - tooltipHTML += `
Spells: ${spellNames}
`; - tooltipHTML += `
`; - } - - // Mana and Spellcraft section - if (enhanced.mana_display || enhanced.spellcraft) { - tooltipHTML += `
`; - if (enhanced.spellcraft) { - tooltipHTML += `
Spellcraft: ${enhanced.spellcraft}
`; - } - if (enhanced.mana_display) { - tooltipHTML += `
Mana: ${enhanced.mana_display}
`; - } - tooltipHTML += `
`; - } - - // Detailed Spell Descriptions section - if (enhanced.spells && enhanced.spells.spells && enhanced.spells.spells.length > 0) { - tooltipHTML += `
Spell Descriptions
`; - enhanced.spells.spells.forEach(spell => { - tooltipHTML += `
`; - tooltipHTML += `
${spell.name}
`; - if (spell.description) { - tooltipHTML += `
${spell.description}
`; - } - tooltipHTML += `
`; - }); - tooltipHTML += `
`; - } - - // Object class info - if (enhanced.object_class_name) { - tooltipHTML += `
`; - tooltipHTML += `
Type: ${enhanced.object_class_name}
`; - tooltipHTML += `
`; - } - - } // End of enhanced data check - - } catch (e) { - console.warn('Failed to parse enhanced tooltip data', e); - } - } - - inventoryTooltip.innerHTML = tooltipHTML; - - // Position tooltip near cursor - const x = e.clientX + 10; - const y = e.clientY + 10; - inventoryTooltip.style.left = `${x}px`; - inventoryTooltip.style.top = `${y}px`; - inventoryTooltip.style.display = 'block'; -} - -function hideInventoryTooltip() { - if (inventoryTooltip) { - inventoryTooltip.style.display = 'none'; - } -} - - const applyTransform = () => group.style.transform = `translate(${offX}px,${offY}px) scale(${scale})`; @@ -1108,14 +107,6 @@ function clampPan() { function updateView() { clampPan(); applyTransform(); - - // Throttled heat map re-rendering during pan/zoom - if (heatmapEnabled && heatmapData && !heatTimeout) { - heatTimeout = setTimeout(() => { - renderHeatmap(); - heatTimeout = null; - }, HEAT_THROTTLE); - } } function fitToWindow() { @@ -1141,8 +132,8 @@ function hideTooltip() { async function pollLive() { try { const [liveRes, trailsRes] = await Promise.all([ - fetch(`${API_BASE}/live/`), - fetch(`${API_BASE}/trails/?seconds=600`), + fetch('/live/'), + fetch('/trails/?seconds=600'), ]); const { players } = await liveRes.json(); const { trails } = await trailsRes.json(); @@ -1154,106 +145,10 @@ async function pollLive() { } } -async function pollTotalRares() { - try { - const response = await fetch(`${API_BASE}/total-rares/`); - const data = await response.json(); - updateTotalRaresDisplay(data); - } catch (e) { - console.error('Total rares fetch failed:', e); - } -} - -function updateTotalRaresDisplay(data) { - const countElement = document.getElementById('totalRaresCount'); - if (countElement && data.all_time !== undefined && data.today !== undefined) { - const allTimeFormatted = data.all_time.toLocaleString(); - const todayFormatted = data.today.toLocaleString(); - countElement.textContent = `${allTimeFormatted} (Today: ${todayFormatted})`; - } -} - -async function pollServerHealth() { - try { - const response = await fetch(`${API_BASE}/server-health`); - const data = await response.json(); - updateServerStatusDisplay(data); - } catch (e) { - console.error('Server health fetch failed:', e); - updateServerStatusDisplay({ status: 'error' }); - } -} - -function updateServerStatusDisplay(data) { - const statusDot = document.getElementById('statusDot'); - const statusText = document.getElementById('statusText'); - const playerCount = document.getElementById('playerCount'); - const latencyMs = document.getElementById('latencyMs'); - const uptime = document.getElementById('uptime'); - const lastRestart = document.getElementById('lastRestart'); - - if (!statusDot || !statusText) return; - - // Update status indicator - const status = data.status || 'unknown'; - statusDot.className = `status-dot status-${status}`; - statusText.textContent = status.charAt(0).toUpperCase() + status.slice(1); - - // Update player count - if (playerCount) { - playerCount.textContent = data.player_count !== null && data.player_count !== undefined ? data.player_count : '-'; - } - - // Update latency - if (latencyMs) { - latencyMs.textContent = data.latency_ms ? Math.round(data.latency_ms) : '-'; - } - - // Update uptime - if (uptime) { - uptime.textContent = data.uptime || '-'; - } - - // Update last restart with Stockholm timezone (24h format, no year) - if (lastRestart) { - if (data.last_restart) { - const restartDate = new Date(data.last_restart); - const formattedDate = restartDate.toLocaleString('sv-SE', { - timeZone: 'Europe/Stockholm', - month: '2-digit', - day: '2-digit', - hour: '2-digit', - minute: '2-digit', - hour12: false - }); - lastRestart.textContent = formattedDate; - } else { - lastRestart.textContent = 'Unknown'; - } - } -} - -function handleServerStatusUpdate(msg) { - // Handle real-time server status updates via WebSocket - if (msg.status === 'up' && msg.message) { - // Show notification for server coming back online - console.log(`Server Status: ${msg.message}`); - } - - // Trigger an immediate server health poll to refresh the display - pollServerHealth(); -} - function startPolling() { if (pollID !== null) return; pollLive(); - pollTotalRares(); // Initial fetch - pollServerHealth(); // Initial server health check pollID = setInterval(pollLive, POLL_MS); - // Poll total rares every 5 minutes (300,000 ms) - setInterval(pollTotalRares, 300000); - // Poll server health every 30 seconds (30,000 ms) - setInterval(pollServerHealth, 30000); } img.onload = () => { @@ -1267,28 +162,11 @@ img.onload = () => { } fitToWindow(); startPolling(); - initWebSocket(); - initHeatMap(); - initPortalMap(); }; -// Ensure server health polling starts regardless of image loading -document.addEventListener('DOMContentLoaded', () => { - // Start server health polling immediately on DOM ready - pollServerHealth(); -}); - /* ---------- rendering sorted list & dots ------------------------ */ -/** - * Filter and sort the currentPlayers, then render them. - */ function renderList() { - // Filter by name prefix - const filtered = currentPlayers.filter(p => - p.character_name.toLowerCase().startsWith(currentFilter) - ); - // Sort filtered list - const sorted = filtered.slice().sort(currentSort.comparator); + const sorted = [...currentPlayers].sort(currentSort.comparator); render(sorted); } @@ -1296,43 +174,6 @@ function render(players) { dots.innerHTML = ''; list.innerHTML = ''; - // Update header with active player count - const header = document.getElementById('activePlayersHeader'); - if (header) { - header.textContent = `Active Mosswart Enjoyers (${players.length})`; - } - - // Calculate and update server KPH - const totalKPH = players.reduce((sum, p) => sum + (p.kills_per_hour || 0), 0); - const kphElement = document.getElementById('serverKphCount'); - if (kphElement) { - // Format with commas and one decimal place for EPIC display - const formattedKPH = totalKPH.toLocaleString('en-US', { - minimumFractionDigits: 1, - maximumFractionDigits: 1 - }); - kphElement.textContent = formattedKPH; - - // Add extra epic effect for high KPH - const container = document.getElementById('serverKphCounter'); - if (container) { - if (totalKPH > 5000) { - container.classList.add('ultra-epic'); - } else { - container.classList.remove('ultra-epic'); - } - } - } - - // Calculate and update total kills - const totalKills = players.reduce((sum, p) => sum + (p.total_kills || 0), 0); - const killsElement = document.getElementById('totalKillsCount'); - if (killsElement) { - // Format with commas for readability - const formattedKills = totalKills.toLocaleString(); - killsElement.textContent = formattedKills; - } - players.forEach(p => { const { x, y } = worldToPx(p.ew, p.ns); @@ -1341,7 +182,7 @@ function render(players) { dot.className = 'dot'; dot.style.left = `${x}px`; dot.style.top = `${y}px`; - dot.style.background = getColorFor(p.character_name); + dot.style.background = hue(p.character_name); @@ -1358,69 +199,22 @@ function render(players) { dots.appendChild(dot); //sidebar const li = document.createElement('li'); - const color = getColorFor(p.character_name); + const color = hue(p.character_name); li.style.borderLeftColor = color; li.className = 'player-item'; - // Calculate KPR (Kills Per Rare) - const totalKills = p.total_kills || 0; - const totalRares = p.total_rares || 0; - const kpr = totalRares > 0 ? Math.round(totalKills / totalRares) : 'โˆž'; - li.innerHTML = ` - ${p.character_name}${createVitaeIndicator(p.character_name)} ${loc(p.ns, p.ew)} - ${createVitalsHTML(p.character_name)} + ${p.character_name} + ${loc(p.ns, p.ew)} ${p.kills} - ${p.total_kills || 0} ${p.kills_per_hour} - ${p.session_rares}/${p.total_rares} - ${kpr} + ${p.rares_found} ${p.vt_state} ${p.onlinetime} - ${p.deaths}/${p.total_deaths || 0} - ${p.prismatic_taper_count || 0} + ${p.deaths} `; - - // Color the metastate pill according to its value - const metaSpan = li.querySelector('.stat.meta'); - if (metaSpan) { - const goodStates = ['default', 'default2', 'hunt', 'combat']; - const state = (p.vt_state || '').toString().toLowerCase(); - if (goodStates.includes(state)) { - metaSpan.classList.add('green'); - } else { - metaSpan.classList.add('red'); - } - } li.addEventListener('click', () => selectPlayer(p, x, y)); if (p.character_name === selected) li.classList.add('selected'); - // Chat button - const chatBtn = document.createElement('button'); - chatBtn.className = 'chat-btn'; - chatBtn.textContent = 'Chat'; - chatBtn.addEventListener('click', e => { - e.stopPropagation(); - showChatWindow(p.character_name); - }); - li.appendChild(chatBtn); - // Stats button - const statsBtn = document.createElement('button'); - statsBtn.className = 'stats-btn'; - statsBtn.textContent = 'Stats'; - statsBtn.addEventListener('click', e => { - e.stopPropagation(); - showStatsWindow(p.character_name); - }); - li.appendChild(statsBtn); - // Inventory button - const inventoryBtn = document.createElement('button'); - inventoryBtn.className = 'inventory-btn'; - inventoryBtn.textContent = 'Inventory'; - inventoryBtn.addEventListener('click', e => { - e.stopPropagation(); - showInventoryWindow(p.character_name); - }); - li.appendChild(inventoryBtn); list.appendChild(li); }); } @@ -1440,8 +234,7 @@ function renderTrails(trailData) { }).join(' '); const poly = document.createElementNS('http://www.w3.org/2000/svg', 'polyline'); poly.setAttribute('points', points); - // Use the same color as the player dot for consistency - poly.setAttribute('stroke', getColorFor(name)); + poly.setAttribute('stroke', hue(name)); poly.setAttribute('fill', 'none'); poly.setAttribute('class', 'trail-path'); trailsContainer.appendChild(poly); @@ -1460,126 +253,6 @@ function selectPlayer(p, x, y) { renderList(); // keep sorted + highlight } -/* - * ---------- Chat & Command WebSocket Handlers ------------------ - * Maintains a persistent WebSocket connection to the /ws/live endpoint - * for receiving chat messages and sending user commands to plugin clients. - * Reconnects automatically on close and logs errors. - */ -// Initialize WebSocket for chat and command streams -function initWebSocket() { - const protocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; - const wsUrl = `${protocol}//${location.host}${API_BASE}/ws/live`; - socket = new WebSocket(wsUrl); - socket.addEventListener('message', evt => { - let msg; - try { msg = JSON.parse(evt.data); } catch { return; } - if (msg.type === 'chat') { - appendChatMessage(msg); - } else if (msg.type === 'vitals') { - updateVitalsDisplay(msg); - } else if (msg.type === 'rare') { - triggerEpicRareNotification(msg.character_name, msg.name); - } else if (msg.type === 'server_status') { - handleServerStatusUpdate(msg); - } - }); - socket.addEventListener('close', () => setTimeout(initWebSocket, 2000)); - socket.addEventListener('error', e => console.error('WebSocket error:', e)); -} - -// Display or create a chat window for a character -function showChatWindow(name) { - if (chatWindows[name]) { - const existing = chatWindows[name]; - // Toggle: close if already visible, open if hidden - if (existing.style.display === 'flex') { - existing.style.display = 'none'; - } else { - existing.style.display = 'flex'; - // Bring to front when opening - if (!window.__chatZ) window.__chatZ = 10000; - window.__chatZ += 1; - existing.style.zIndex = window.__chatZ; - } - return; - } - const win = document.createElement('div'); - win.className = 'chat-window'; - win.dataset.character = name; - // Header - const header = document.createElement('div'); - header.className = 'chat-header'; - const title = document.createElement('span'); - title.textContent = `Chat: ${name}`; - const closeBtn = document.createElement('button'); - closeBtn.className = 'chat-close-btn'; - closeBtn.textContent = 'ร—'; - closeBtn.addEventListener('click', () => { win.style.display = 'none'; }); - header.appendChild(title); - header.appendChild(closeBtn); - win.appendChild(header); - // Messages container - const msgs = document.createElement('div'); - msgs.className = 'chat-messages'; - win.appendChild(msgs); - // Input form - const form = document.createElement('form'); - form.className = 'chat-form'; - const input = document.createElement('input'); - input.type = 'text'; - input.className = 'chat-input'; - input.placeholder = 'Enter chat...'; - form.appendChild(input); - form.addEventListener('submit', e => { - e.preventDefault(); - const text = input.value.trim(); - if (!text) return; - // Send command envelope: player_name and command only - socket.send(JSON.stringify({ player_name: name, command: text })); - input.value = ''; - }); - win.appendChild(form); - document.body.appendChild(win); - chatWindows[name] = win; - - // Enable dragging using the global drag system - makeDraggable(win, header); -} - -// Append a chat message to the correct window -/** - * Append a chat message to the correct window, optionally coloring the text. - * msg: { type: 'chat', character_name, text, color? } - */ -function appendChatMessage(msg) { - const { character_name: name, text, color } = msg; - const win = chatWindows[name]; - if (!win) return; - const msgs = win.querySelector('.chat-messages'); - const p = document.createElement('div'); - if (color !== undefined) { - let c = color; - if (typeof c === 'number') { - // map numeric chat code to configured color, or fallback to raw hex - if (CHAT_COLOR_MAP.hasOwnProperty(c)) { - c = CHAT_COLOR_MAP[c]; - } else { - c = '#' + c.toString(16).padStart(6, '0'); - } - } - p.style.color = c; - } - p.textContent = text; - msgs.appendChild(p); - // Enforce max number of lines in scrollback - while (msgs.children.length > MAX_CHAT_LINES) { - msgs.removeChild(msgs.firstChild); - } - // Scroll to bottom - msgs.scrollTop = msgs.scrollHeight; -} - /* ---------- pan & zoom handlers -------------------------------- */ wrap.addEventListener('wheel', e => { e.preventDefault(); @@ -1627,374 +300,3 @@ wrap.addEventListener('touchmove', e => { wrap.addEventListener('touchend', () => { dragging = false; }); - -/* ---------- coordinate display on hover ---------------------------- */ -wrap.addEventListener('mousemove', e => { - if (!imgW) return; - - const r = wrap.getBoundingClientRect(); - const x = e.clientX - r.left; - const y = e.clientY - r.top; - - const { ew, ns } = pxToWorld(x, y); - - // Display coordinates using the same format as the existing loc function - coordinates.textContent = loc(ns, ew); - coordinates.style.left = `${x + 10}px`; - coordinates.style.top = `${y + 10}px`; - coordinates.style.display = 'block'; -}); - -wrap.addEventListener('mouseleave', () => { - coordinates.style.display = 'none'; -}); - -/* ---------- vitals display functions ----------------------------- */ -// Store vitals data per character -const characterVitals = {}; - -function updateVitalsDisplay(vitalsMsg) { - // Store the vitals data for this character - characterVitals[vitalsMsg.character_name] = { - health_percentage: vitalsMsg.health_percentage, - stamina_percentage: vitalsMsg.stamina_percentage, - mana_percentage: vitalsMsg.mana_percentage, - vitae: vitalsMsg.vitae - }; - - // Re-render the player list to update vitals in the UI - renderList(); -} - -function createVitalsHTML(characterName) { - const vitals = characterVitals[characterName]; - if (!vitals) { - return ''; // No vitals data available - } - - return ` -
-
-
-
-
-
-
-
-
-
-
- `; -} - -function createVitaeIndicator(characterName) { - const vitals = characterVitals[characterName]; - if (!vitals || !vitals.vitae || vitals.vitae >= 100) { - return ''; // No vitae penalty - } - - return `โšฐ๏ธ ${vitals.vitae}%`; -} - -function getVitalClass(percentage) { - if (percentage <= 25) { - return 'critical-vital'; - } else if (percentage <= 50) { - return 'low-vital'; - } - return ''; -} - -/* ---------- epic rare notification system ------------------------ */ -// Track previous rare count to detect increases -let lastRareCount = 0; -let notificationQueue = []; -let isShowingNotification = false; - -function triggerEpicRareNotification(characterName, rareName) { - // Add to queue - notificationQueue.push({ characterName, rareName }); - - // Process queue if not already showing a notification - if (!isShowingNotification) { - processNotificationQueue(); - } - - // Trigger fireworks immediately - createFireworks(); - - // Highlight the player in the list - highlightRareFinder(characterName); -} - -function processNotificationQueue() { - if (notificationQueue.length === 0) { - isShowingNotification = false; - return; - } - - isShowingNotification = true; - const notification = notificationQueue.shift(); - - // Create notification element - const container = document.getElementById('rareNotifications'); - const notifEl = document.createElement('div'); - notifEl.className = 'rare-notification'; - notifEl.innerHTML = ` -
๐ŸŽ† LEGENDARY RARE! ๐ŸŽ†
-
${notification.rareName}
-
found by
-
โš”๏ธ ${notification.characterName} โš”๏ธ
- `; - - container.appendChild(notifEl); - - // Remove notification after 6 seconds and process next - setTimeout(() => { - notifEl.style.animation = 'notification-slide-out 0.5s ease-in forwards'; - setTimeout(() => { - notifEl.remove(); - processNotificationQueue(); - }, 500); - }, 6000); -} - -// Add slide out animation -const style = document.createElement('style'); -style.textContent = ` - @keyframes notification-slide-out { - to { - transform: translateY(-100px); - opacity: 0; - } - } -`; -document.head.appendChild(style); - -function createFireworks() { - const container = document.getElementById('fireworksContainer'); - const rareCounter = document.getElementById('totalRaresCounter'); - const rect = rareCounter.getBoundingClientRect(); - - // Create 30 particles - const particleCount = 30; - const colors = ['particle-gold', 'particle-red', 'particle-orange', 'particle-purple', 'particle-blue']; - - for (let i = 0; i < particleCount; i++) { - const particle = document.createElement('div'); - particle.className = `firework-particle ${colors[Math.floor(Math.random() * colors.length)]}`; - - // Start position at rare counter - particle.style.left = `${rect.left + rect.width / 2}px`; - particle.style.top = `${rect.top + rect.height / 2}px`; - - // Random explosion direction - const angle = (Math.PI * 2 * i) / particleCount + (Math.random() - 0.5) * 0.5; - const velocity = 100 + Math.random() * 200; - const dx = Math.cos(angle) * velocity; - const dy = Math.sin(angle) * velocity - 50; // Slight upward bias - - // Create custom animation for this particle - const animName = `particle-${Date.now()}-${i}`; - const keyframes = ` - @keyframes ${animName} { - 0% { - transform: translate(0, 0) scale(1); - opacity: 1; - } - 100% { - transform: translate(${dx}px, ${dy + 200}px) scale(0); - opacity: 0; - } - } - `; - - const styleEl = document.createElement('style'); - styleEl.textContent = keyframes; - document.head.appendChild(styleEl); - - particle.style.animation = `${animName} 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards`; - - container.appendChild(particle); - - // Clean up particle and animation after completion - setTimeout(() => { - particle.remove(); - styleEl.remove(); - }, 2000); - } -} - -function highlightRareFinder(characterName) { - // Find the player in the list - const playerItems = document.querySelectorAll('#playerList li'); - playerItems.forEach(item => { - const nameSpan = item.querySelector('.player-name'); - if (nameSpan && nameSpan.textContent.includes(characterName)) { - item.classList.add('rare-finder-glow'); - // Remove glow after 5 seconds - setTimeout(() => { - item.classList.remove('rare-finder-glow'); - }, 5000); - } - }); -} - -// Update total rares display to trigger fireworks on increase -const originalUpdateTotalRaresDisplay = updateTotalRaresDisplay; -updateTotalRaresDisplay = function(data) { - originalUpdateTotalRaresDisplay(data); - - // Check if total increased - const newTotal = data.all_time || 0; - if (newTotal > lastRareCount && lastRareCount > 0) { - // Don't trigger on initial load - createFireworks(); - - // Check for milestones when count increases - if (newTotal > 0 && newTotal % 100 === 0) { - triggerMilestoneCelebration(newTotal); - } - } - lastRareCount = newTotal; -} - -function triggerMilestoneCelebration(rareNumber) { - console.log(`๐Ÿ† MILESTONE: Rare #${rareNumber}! ๐Ÿ†`); - - // Create full-screen milestone overlay - const overlay = document.createElement('div'); - overlay.className = 'milestone-overlay'; - - overlay.innerHTML = ` -
-
#${rareNumber}
-
๐Ÿ† EPIC MILESTONE! ๐Ÿ†
-
Server Achievement Unlocked
-
- `; - - document.body.appendChild(overlay); - - // Add screen shake effect - document.body.classList.add('screen-shake'); - - // Create massive firework explosion - createMilestoneFireworks(); - - // Remove milestone overlay after 5 seconds - setTimeout(() => { - overlay.style.animation = 'milestone-fade-in 0.5s ease-out reverse'; - document.body.classList.remove('screen-shake'); - setTimeout(() => { - overlay.remove(); - }, 500); - }, 5000); -} - -function createMilestoneFireworks() { - const container = document.getElementById('fireworksContainer'); - - // Create multiple bursts across the screen - const burstCount = 5; - const particlesPerBurst = 50; - const colors = ['#ffd700', '#ff6600', '#ff0044', '#cc00ff', '#00ccff', '#00ff00']; - - for (let burst = 0; burst < burstCount; burst++) { - setTimeout(() => { - // Random position for each burst - const x = Math.random() * window.innerWidth; - const y = Math.random() * (window.innerHeight * 0.7) + (window.innerHeight * 0.15); - - for (let i = 0; i < particlesPerBurst; i++) { - const particle = document.createElement('div'); - particle.className = 'milestone-particle'; - particle.style.background = colors[Math.floor(Math.random() * colors.length)]; - particle.style.boxShadow = `0 0 12px ${particle.style.background}`; - - // Start position - particle.style.left = `${x}px`; - particle.style.top = `${y}px`; - - // Random explosion direction - const angle = (Math.PI * 2 * i) / particlesPerBurst + (Math.random() - 0.5) * 0.8; - const velocity = 200 + Math.random() * 300; - const dx = Math.cos(angle) * velocity; - const dy = Math.sin(angle) * velocity - 100; // Upward bias - - // Create custom animation - const animName = `milestone-particle-${Date.now()}-${burst}-${i}`; - const keyframes = ` - @keyframes ${animName} { - 0% { - transform: translate(0, 0) scale(1); - opacity: 1; - } - 100% { - transform: translate(${dx}px, ${dy + 400}px) scale(0); - opacity: 0; - } - } - `; - - const styleEl = document.createElement('style'); - styleEl.textContent = keyframes; - document.head.appendChild(styleEl); - - particle.style.animation = `${animName} 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards`; - - container.appendChild(particle); - - // Clean up - setTimeout(() => { - particle.remove(); - styleEl.remove(); - }, 3000); - } - }, burst * 200); // Stagger bursts - } -} - -/* ==================== INVENTORY SEARCH FUNCTIONALITY ==================== */ - -/** - * Opens the dedicated inventory search page in a new browser tab. - */ -function openInventorySearch() { - // Open the dedicated inventory search page in a new tab - window.open('/inventory.html', '_blank'); -} - -/** - * Opens the Suitbuilder interface in a new browser tab. - */ -function openSuitbuilder() { - // Open the Suitbuilder page in a new tab - window.open('/suitbuilder.html', '_blank'); -} - -/** - * Opens the Player Debug interface in a new browser tab. - */ -function openPlayerDebug() { - // Open the Player Debug page in a new tab - window.open('/debug.html', '_blank'); -} - -/** - * Opens the Quest Status interface in a new browser tab. - */ -function openQuestStatus() { - // Open the Quest Status page in a new tab - window.open('/quest-status.html', '_blank'); -} - -/** - * Opens the Player Dashboard interface in a new browser tab. - */ -function openPlayerDashboard() { - // Open the Player Dashboard page in a new tab - window.open('/player-dashboard.html', '_blank'); -} - - diff --git a/static/style-ac.css b/static/style-ac.css deleted file mode 100644 index 7d30d4cf..00000000 --- a/static/style-ac.css +++ /dev/null @@ -1,731 +0,0 @@ -/* - * style-ac.css - Asheron's Call themed styles for Dereth Tracker - * - * Recreates the classic AC UI with stone textures, beveled edges, - * golden accents, and medieval fantasy aesthetics. - */ - -/* CSS Custom Properties for AC theme colors and sizing */ -:root { - --sidebar-width: 340px; - - /* AC Color Palette */ - --ac-black: #0a0a0a; - --ac-dark-stone: #1a1a1a; - --ac-medium-stone: #2a2a2a; - --ac-light-stone: #3a3a3a; - --ac-border-dark: #000; - --ac-border-light: #4a4a4a; - --ac-gold: #d4af37; - --ac-gold-bright: #ffd700; - --ac-gold-dark: #b8941f; - --ac-green: #00ff00; - --ac-cyan: #00ffff; - --ac-text: #e0e0e0; - --ac-text-dim: #a0a0a0; - - /* Backgrounds */ - --bg-main: var(--ac-black); - --bg-side: var(--ac-dark-stone); - --card: var(--ac-medium-stone); - --card-hov: var(--ac-light-stone); - --text: var(--ac-text); - --accent: var(--ac-gold); -} - -/* Placeholder text in chat input */ -.chat-input::placeholder { - color: var(--ac-text-dim); - opacity: 0.7; -} - -html { - margin: 0; - height: 100%; - width: 100%; -} - -body { - margin: 0; - height: 100%; - display: flex; - overflow: hidden; - font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; - background: var(--bg-main); - color: var(--text); - background-image: - repeating-linear-gradient( - 45deg, - transparent, - transparent 10px, - rgba(255, 255, 255, 0.01) 10px, - rgba(255, 255, 255, 0.01) 20px - ); -} - -/* AC-style stone textured panels with beveled edges */ -.ac-panel { - background: linear-gradient(135deg, var(--ac-medium-stone) 0%, var(--ac-dark-stone) 100%); - border: 2px solid var(--ac-border-dark); - box-shadow: - inset 2px 2px 3px rgba(255, 255, 255, 0.1), - inset -2px -2px 3px rgba(0, 0, 0, 0.5), - 0 2px 5px rgba(0, 0, 0, 0.8); - border-radius: 0; -} - -/* Sort buttons - AC style */ -.sort-buttons { - display: flex; - gap: 3px; - margin: 12px 16px 8px; - padding: 8px; - background: var(--ac-dark-stone); - border: 1px solid var(--ac-border-dark); - box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5); -} - -.sort-buttons .btn { - flex: 1; - padding: 5px 8px; - background: linear-gradient(180deg, var(--ac-light-stone) 0%, var(--ac-medium-stone) 100%); - color: var(--ac-text-dim); - border: 1px solid var(--ac-border-dark); - border-radius: 2px; - text-align: center; - cursor: pointer; - user-select: none; - font-size: 0.75rem; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 0.5px; - transition: all 0.15s; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.1); -} - -.sort-buttons .btn:hover { - background: linear-gradient(180deg, var(--ac-light-stone) 0%, var(--ac-light-stone) 100%); - color: var(--ac-gold-bright); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.2), - 0 0 5px rgba(212, 175, 55, 0.3); -} - -.sort-buttons .btn:active { - box-shadow: - inset 2px 2px 3px rgba(0, 0, 0, 0.7), - inset -1px -1px 2px rgba(255, 255, 255, 0.1); -} - -.sort-buttons .btn.active { - background: linear-gradient(180deg, var(--ac-gold) 0%, var(--ac-gold-dark) 100%); - color: var(--ac-black); - border-color: var(--ac-gold-dark); - font-weight: 700; - position: relative; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.3), - 0 0 10px rgba(212, 175, 55, 0.5); -} - -.sort-buttons .btn.active:hover { - background: linear-gradient(180deg, var(--ac-gold-bright) 0%, var(--ac-gold) 100%); - color: var(--ac-black); -} - -/* Sort direction indicators */ -.sort-buttons .btn.active::after { - content: ''; - position: absolute; - top: 3px; - right: 3px; - width: 0; - height: 0; - border-left: 3px solid transparent; - border-right: 3px solid transparent; -} - -/* Most sorts are descending (down arrow) */ -.sort-buttons .btn.active::after { - border-top: 4px solid var(--ac-black); -} - -/* Name and KPR are ascending (up arrow) */ -.sort-buttons .btn.active[data-value="name"]::after, -.sort-buttons .btn.active[data-value="kpr"]::after { - border-top: none; - border-bottom: 4px solid var(--ac-black); -} - -/* Sidebar - AC stone panel style */ -#sidebar { - width: var(--sidebar-width); - scrollbar-width: thin; - scrollbar-color: var(--ac-gold-dark) var(--ac-dark-stone); - background: linear-gradient(180deg, var(--ac-dark-stone) 0%, var(--ac-black) 100%); - border-right: 3px solid var(--ac-border-dark); - box-shadow: - inset -2px 0 5px rgba(0, 0, 0, 0.5), - 2px 0 5px rgba(0, 0, 0, 0.8); - box-sizing: border-box; - padding: 18px 16px; - overflow-y: auto; -} - -#sidebar h2 { - margin: 8px 0 12px; - font-size: 1.25rem; - color: var(--ac-gold); - text-shadow: - 2px 2px 3px rgba(0, 0, 0, 0.8), - 0 0 10px rgba(212, 175, 55, 0.3); - font-weight: 700; - text-transform: uppercase; - letter-spacing: 1px; -} - -#playerList { - list-style: none; - margin: 0; - padding: 0; -} - -/* Filter input - AC style */ -.player-filter { - width: 100%; - padding: 6px 10px; - margin-bottom: 12px; - background: var(--ac-dark-stone); - color: var(--ac-gold); - border: 2px solid var(--ac-border-dark); - border-radius: 2px; - font-size: 0.9rem; - box-sizing: border-box; - box-shadow: - inset 2px 2px 3px rgba(0, 0, 0, 0.5), - inset -1px -1px 2px rgba(255, 255, 255, 0.05); - font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; -} - -.player-filter:focus { - outline: none; - border-color: var(--ac-gold-dark); - box-shadow: - inset 2px 2px 3px rgba(0, 0, 0, 0.5), - 0 0 5px rgba(212, 175, 55, 0.5); -} - -/* Map container */ -#mapContainer { - flex: 1; - position: relative; - overflow: hidden; - background: var(--bg-main); - box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8); -} - -/* Player list items - AC stone panels */ -#playerList li { - display: grid; - grid-template-columns: 1fr auto auto auto auto auto; - grid-template-rows: auto auto auto auto; - grid-template-areas: - "name name name name name name" - "kills totalkills kph kph kph kph" - "rares kpr meta meta meta meta" - "onlinetime deaths tapers tapers tapers tapers"; - gap: 4px 8px; - margin: 6px 0; - padding: 10px 12px; - background: linear-gradient(135deg, var(--ac-medium-stone) 0%, var(--ac-dark-stone) 100%); - border: 2px solid var(--ac-border-dark); - border-left: 4px solid var(--ac-gold-dark); - transition: all 0.2s; - box-shadow: - 1px 1px 3px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.05); -} - -/* Grid assignments */ -.player-name { - grid-area: name; - font-weight: 700; - color: var(--ac-gold); - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); -} -.coordinates-inline { - font-size: 0.75rem; - color: var(--ac-text-dim); - font-weight: 400; - margin-left: 8px; -} - -.stat.kills { grid-area: kills; } -.stat.total-kills { grid-area: totalkills; } -.stat.kph { grid-area: kph; } -.stat.rares { grid-area: rares; } -.stat.kpr { grid-area: kpr; } -.stat.meta { grid-area: meta; } -.stat.onlinetime { grid-area: onlinetime; } -.stat.deaths { grid-area: deaths; } -.stat.tapers { grid-area: tapers; } - -/* Stat pills - AC style */ -#playerList li .stat { - background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%); - padding: 4px 8px; - border-radius: 2px; - display: inline-block; - font-size: 0.75rem; - white-space: nowrap; - color: var(--ac-text); - border: 1px solid rgba(0, 0, 0, 0.5); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.3), - inset 1px 1px 1px rgba(255, 255, 255, 0.05); -} - -/* Icons & suffixes */ -.stat.kills::before { content: "โš”๏ธ "; } -.stat.total-kills::before { content: "๐Ÿ† "; } -.stat.kph::after { content: " KPH"; font-size:0.7em; color: var(--ac-text-dim); } -.stat.rares::before { content: "๐Ÿ’Ž "; } -.stat.rares::after { content: " Rares"; font-size:0.7em; color: var(--ac-text-dim); } -.stat.kpr::before { content: "๐Ÿ“Š "; } -.stat.kpr::after { content: " KPR"; font-size:0.7em; color: var(--ac-text-dim); } - -/* Metastate pills */ -#playerList li .stat.meta { - background: linear-gradient(180deg, var(--ac-gold) 0%, var(--ac-gold-dark) 100%); - color: var(--ac-black); - border-color: var(--ac-gold-dark); -} - -#playerList li .stat.meta.green { - background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%); - color: var(--ac-black); - border-color: #16a34a; -} - -#playerList li .stat.meta.red { - background: linear-gradient(180deg, #f87171 0%, #ef4444 100%); - color: #fff; - border-color: #dc2626; -} - -/* Chat/Stats/Inventory buttons - AC style */ -.chat-btn, .stats-btn, .inventory-btn { - margin-top: 4px; - margin-right: 4px; - padding: 3px 8px; - background: linear-gradient(180deg, var(--ac-gold) 0%, var(--ac-gold-dark) 100%); - color: var(--ac-black); - border: 1px solid var(--ac-gold-dark); - border-radius: 2px; - font-size: 0.75rem; - font-weight: 600; - cursor: pointer; - text-transform: uppercase; - letter-spacing: 0.5px; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 1px rgba(255, 255, 255, 0.3); - transition: all 0.15s; -} - -.chat-btn:hover, .stats-btn:hover, .inventory-btn:hover { - background: linear-gradient(180deg, var(--ac-gold-bright) 0%, var(--ac-gold) 100%); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 1px rgba(255, 255, 255, 0.4), - 0 0 5px rgba(212, 175, 55, 0.5); -} - -/* Windows - AC stone panel style */ -.chat-window, .stats-window, .inventory-window { - position: absolute; - top: 10px; - left: calc(var(--sidebar-width) + 10px); - width: 760px; - height: 300px; - background: linear-gradient(135deg, var(--ac-medium-stone) 0%, var(--ac-dark-stone) 100%); - border: 3px solid var(--ac-border-dark); - display: flex; - flex-direction: column; - z-index: 10000; - box-shadow: - 0 5px 20px rgba(0, 0, 0, 0.8), - inset 2px 2px 3px rgba(255, 255, 255, 0.05); - border-radius: 2px; -} - -.chat-header { - display: flex; - justify-content: space-between; - align-items: center; - padding: 10px 15px; - background: linear-gradient(180deg, var(--ac-light-stone) 0%, var(--ac-medium-stone) 100%); - border-bottom: 2px solid var(--ac-border-dark); - color: var(--ac-gold); - font-weight: 700; - text-transform: uppercase; - letter-spacing: 1px; - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); - box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5); -} - -.chat-close-btn { - background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%); - color: #fff; - border: 1px solid #991b1b; - border-radius: 2px; - padding: 2px 8px; - font-size: 1rem; - cursor: pointer; - font-weight: 700; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 1px rgba(255, 255, 255, 0.3); -} - -.chat-close-btn:hover { - background: linear-gradient(180deg, #f87171 0%, #ef4444 100%); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 1px rgba(255, 255, 255, 0.4), - 0 0 5px rgba(239, 68, 68, 0.5); -} - -.chat-messages { - flex: 1; - padding: 10px 15px; - overflow-y: auto; - background: rgba(0, 0, 0, 0.3); - color: var(--ac-green); - font-family: "Courier New", Courier, monospace; - font-size: 0.9rem; - line-height: 1.4; - box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5); -} - -.chat-messages::-webkit-scrollbar { - width: 10px; -} - -.chat-messages::-webkit-scrollbar-track { - background: var(--ac-dark-stone); - box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5); -} - -.chat-messages::-webkit-scrollbar-thumb { - background: var(--ac-gold-dark); - border-radius: 2px; - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); -} - -.chat-form { - display: flex; - padding: 10px 15px; - background: var(--ac-dark-stone); - border-top: 2px solid var(--ac-border-dark); - box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.5); -} - -.chat-input { - flex: 1; - padding: 6px 10px; - background: rgba(0, 0, 0, 0.5); - color: var(--ac-green); - border: 2px solid var(--ac-border-dark); - border-radius: 2px; - font-family: "Courier New", Courier, monospace; - font-size: 0.9rem; - box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.5); -} - -.chat-input:focus { - outline: none; - border-color: var(--ac-gold-dark); - box-shadow: - inset 2px 2px 3px rgba(0, 0, 0, 0.5), - 0 0 5px rgba(212, 175, 55, 0.3); -} - -/* Map elements */ -#mapGroup { - transform-origin: top left; - position: relative; -} - -#map { - display: block; - user-select: none; - -webkit-user-drag: none; - filter: brightness(0.9) contrast(1.1); -} - -.dot { - position: absolute; - width: 10px; - height: 10px; - border-radius: 50%; - transform: translate(-50%, -50%); - pointer-events: auto; - cursor: pointer; - z-index: 10; - box-shadow: - 0 0 5px rgba(0, 0, 0, 0.8), - 0 0 10px currentColor; - border: 1px solid rgba(0, 0, 0, 0.5); -} - -.dot.highlight { - animation: pulse 2s infinite; - z-index: 20; -} - -@keyframes pulse { - 0% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px currentColor; } - 50% { box-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px currentColor, 0 0 30px currentColor; } - 100% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px currentColor; } -} - -/* Tooltip - AC style */ -.tooltip { - position: absolute; - display: none; - background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%); - color: var(--ac-gold); - padding: 6px 10px; - border: 2px solid var(--ac-gold-dark); - border-radius: 2px; - font-size: 0.8rem; - pointer-events: none; - white-space: nowrap; - z-index: 1000; - box-shadow: - 0 2px 10px rgba(0, 0, 0, 0.8), - inset 1px 1px 2px rgba(255, 255, 255, 0.1); - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); -} - -/* Coordinate display - AC style */ -.coordinates { - position: absolute; - display: none; - background: linear-gradient(135deg, rgba(0, 50, 100, 0.95) 0%, rgba(0, 30, 60, 0.95) 100%); - color: var(--ac-cyan); - padding: 4px 8px; - border: 2px solid rgba(0, 100, 150, 0.8); - border-radius: 2px; - font-size: 0.75rem; - font-family: "Courier New", Courier, monospace; - font-weight: 700; - pointer-events: none; - white-space: nowrap; - z-index: 999; - box-shadow: - 0 2px 8px rgba(0, 0, 0, 0.8), - inset 1px 1px 2px rgba(255, 255, 255, 0.1); - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); -} - -/* Hover states */ -#playerList li:hover { - background: linear-gradient(135deg, var(--ac-light-stone) 0%, var(--ac-medium-stone) 100%); - border-left-color: var(--ac-gold-bright); - box-shadow: - 2px 2px 5px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.1), - 0 0 10px rgba(212, 175, 55, 0.2); -} - -#playerList li.selected { - background: linear-gradient(135deg, var(--ac-gold-dark) 0%, var(--ac-medium-stone) 100%); - border-left-color: var(--ac-gold-bright); - box-shadow: - 2px 2px 5px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.2), - 0 0 15px rgba(212, 175, 55, 0.3); -} - -/* Trail paths */ -#trails { - position: absolute; - top: 0; - left: 0; - pointer-events: none; - opacity: 0.7; -} - -.trail-path { - stroke-width: 2; - stroke-opacity: 0.8; - filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8)); -} - -/* Stats window specific */ -.stats-window { - height: auto; -} - -.stats-window .chat-messages { - display: grid; - grid-template-columns: repeat(2, 1fr); - grid-auto-rows: auto; - gap: 10px; - padding: 10px; - overflow: visible; - background: var(--ac-dark-stone); - color: var(--ac-text); -} - -.stats-window iframe { - width: 350px; - height: 200px; - border: 2px solid var(--ac-border-dark); - box-shadow: - inset 2px 2px 3px rgba(0, 0, 0, 0.5), - 1px 1px 2px rgba(0, 0, 0, 0.3); - background: var(--ac-black); -} - -/* Stats time controls - AC style */ -.stats-controls { - display: flex; - gap: 8px; - padding: 10px 15px; - background: var(--ac-medium-stone); - border-bottom: 2px solid var(--ac-border-dark); - box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5); -} - -.time-range-btn { - padding: 6px 12px; - background: linear-gradient(180deg, var(--ac-light-stone) 0%, var(--ac-medium-stone) 100%); - color: var(--ac-text-dim); - border: 1px solid var(--ac-border-dark); - border-radius: 2px; - font-size: 0.85rem; - font-weight: 600; - cursor: pointer; - transition: all 0.2s; - text-transform: uppercase; - letter-spacing: 0.5px; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.1); -} - -.time-range-btn:hover { - background: linear-gradient(180deg, var(--ac-light-stone) 0%, var(--ac-light-stone) 100%); - color: var(--ac-gold); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.2), - 0 0 5px rgba(212, 175, 55, 0.2); -} - -.time-range-btn.active { - background: linear-gradient(180deg, var(--ac-gold) 0%, var(--ac-gold-dark) 100%); - color: var(--ac-black); - border-color: var(--ac-gold-dark); - font-weight: 700; - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 2px rgba(255, 255, 255, 0.3), - 0 0 10px rgba(212, 175, 55, 0.4); -} - -/* Inventory window */ -.inventory-content { - flex: 1; - padding: 15px; - background: var(--ac-dark-stone); - color: var(--ac-text); - overflow-y: auto; - box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5); -} - -.inventory-placeholder { - display: flex; - align-items: center; - justify-content: center; - height: 100%; - font-size: 1.1rem; - color: var(--ac-text-dim); - font-style: italic; - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); -} - -.stat.onlinetime::before { content: "๐Ÿ•‘ "; } -.stat.deaths::before { content: "๐Ÿ’€ "; } -.stat.tapers::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - background-image: url('prismatic-taper-icon.png'); - background-size: contain; - background-repeat: no-repeat; - margin-right: 4px; - vertical-align: text-bottom; -} - -/* Disable text selection during drag */ -.noselect { - user-select: none !important; -} - -/* Custom scrollbar for sidebar */ -#sidebar::-webkit-scrollbar { - width: 12px; -} - -#sidebar::-webkit-scrollbar-track { - background: var(--ac-dark-stone); - box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.5); -} - -#sidebar::-webkit-scrollbar-thumb { - background: linear-gradient(180deg, var(--ac-gold) 0%, var(--ac-gold-dark) 100%); - border-radius: 2px; - border: 1px solid var(--ac-gold-dark); - box-shadow: - 1px 1px 2px rgba(0, 0, 0, 0.5), - inset 1px 1px 1px rgba(255, 255, 255, 0.3); -} - -#sidebar::-webkit-scrollbar-thumb:hover { - background: linear-gradient(180deg, var(--ac-gold-bright) 0%, var(--ac-gold) 100%); -} - -/* Map container special effects */ -#mapContainer.dragging { - cursor: move; -} - -/* Additional hover effects */ -.player-item { - position: relative; - overflow: hidden; -} - -.player-item::before { - content: ''; - position: absolute; - top: 0; - left: -100%; - width: 100%; - height: 100%; - background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%); - transition: left 0.5s; -} - -.player-item:hover::before { - left: 100%; -} \ No newline at end of file diff --git a/static/style.css b/static/style.css index 1ef49873..b6a7286d 100644 --- a/static/style.css +++ b/static/style.css @@ -1,12 +1,5 @@ -/* - * style.css - Core styles for Dereth Tracker Single-Page Application - * - * Defines CSS variables for theming, layout rules for sidebar and map, - * interactive element styling (buttons, inputs), and responsive considerations. - */ -/* CSS Custom Properties for theme colors and sizing */ :root { - --sidebar-width: 340px; + --sidebar-width: 280px; --bg-main: #111; --bg-side: #1a1a1a; --card: #222; @@ -14,15 +7,6 @@ --text: #eee; --accent: #88f; } -/* - * style.css - Styling for Dereth Tracker SPA frontend. - * Defines layout, theming variables, and component styles (sidebar, map, controls). - */ -/* Placeholder text in chat input should be white */ -.chat-input::placeholder { - color: #fff; - opacity: 0.7; -} html { margin: 0; @@ -38,74 +22,30 @@ body { font-family: "Segoe UI", sans-serif; background: var(--bg-main); color: var(--text); - position: relative; } +/* ---------- sort buttons --------------------------------------- */ .sort-buttons { - /* Container for sorting controls; uses flex layout to distribute buttons equally */ display: flex; - gap: 2px; + gap: 4px; margin: 12px 16px 8px; } .sort-buttons .btn { - /* Compact styling for sort buttons to fit 6 options */ flex: 1; - padding: 4px 6px; - background: #333; - color: #ccc; - border: 1px solid #666; - border-radius: 3px; + padding: 6px 8px; + background: #222; + color: #eee; + border: 1px solid #555; + border-radius: 4px; text-align: center; cursor: pointer; user-select: none; - font-size: 0.75rem; - font-weight: 500; - transition: all 0.15s; - min-width: 0; - white-space: nowrap; - overflow: hidden; + font-size: 0.9rem; } -.sort-buttons .btn:hover { - background: #444; - color: #fff; - border-color: #777; -} - .sort-buttons .btn.active { - /* Active sort button highlighted with accent color */ background: var(--accent); color: #111; border-color: var(--accent); - position: relative; -} - -.sort-buttons .btn.active:hover { - background: var(--accent); - color: #111; -} - -/* Sort direction indicators */ -.sort-buttons .btn.active::after { - content: ''; - position: absolute; - top: 2px; - right: 2px; - width: 0; - height: 0; - border-left: 3px solid transparent; - border-right: 3px solid transparent; -} - -/* Most sorts are descending (down arrow) */ -.sort-buttons .btn.active::after { - border-top: 4px solid #111; -} - -/* Name and KPR are ascending (up arrow) */ -.sort-buttons .btn.active[data-value="name"]::after, -.sort-buttons .btn.active[data-value="kpr"]::after { - border-top: none; - border-bottom: 4px solid #111; } /* ---------- sidebar --------------------------------------------- */ @@ -123,213 +63,11 @@ body { font-size: 1.25rem; color: var(--accent); } - -.total-rares-counter { - margin: 0 0 12px 0; - padding: 8px 12px; - background: linear-gradient(135deg, #2a2a2a, #1a1a1a); - border: 1px solid #444; - border-radius: 6px; - font-size: 0.95rem; - font-weight: 600; - color: #ffd700; - text-align: center; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); -} - -.total-rares-counter #totalRaresCount { - color: #fff; - margin-left: 4px; -} - -.server-kph-counter { - margin: 0 0 12px 0; - padding: 9px 12px; - background: linear-gradient(135deg, #2a2a44, #1a1a33); - border: 2px solid #4466aa; - border-radius: 6px; - font-size: 1rem; - font-weight: 600; - color: #aaccff; - text-align: center; - box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4); - position: relative; - animation: kph-border-glow 4s ease-in-out infinite; -} - -@keyframes kph-border-glow { - 0%, 100% { border-color: #4466aa; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4); } - 50% { border-color: #6688cc; box-shadow: 0 3px 12px rgba(102, 136, 204, 0.3); } -} - -.server-kph-counter #serverKphCount { - color: #fff; - margin-left: 4px; - font-size: 1.1rem; - font-weight: 700; - text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); - animation: kph-pulse 3s ease-in-out infinite; -} - -@keyframes kph-pulse { - 0%, 100% { transform: scale(1); } - 50% { transform: scale(1.02); } -} - -/* ULTRA MODE for KPH > 5000 */ -.server-kph-counter.ultra-epic { - background: linear-gradient(135deg, #6644ff, #4422cc, #6644ff); - background-size: 200% 200%; - animation: kph-border-glow 4s ease-in-out infinite, ultra-background 3s ease-in-out infinite; - border-color: #8866ff; - color: #eeeeff; - box-shadow: 0 4px 12px rgba(102, 68, 255, 0.5); -} - -@keyframes ultra-background { - 0% { background-position: 0% 50%; } - 50% { background-position: 100% 50%; } - 100% { background-position: 0% 50%; } -} - -.server-kph-counter.ultra-epic #serverKphCount { - font-size: 1.3rem; - color: #ffffff; - text-shadow: 0 0 12px rgba(255, 255, 255, 0.7); - animation: kph-pulse 3s ease-in-out infinite, ultra-glow 2s ease-in-out infinite alternate; -} - -@keyframes ultra-glow { - from { text-shadow: 0 0 12px rgba(255, 255, 255, 0.7); } - to { text-shadow: 0 0 18px rgba(255, 255, 255, 0.9), 0 0 25px rgba(136, 102, 255, 0.5); } -} - -/* Server Status Styling */ -.server-status-container { - margin: 0 0 16px 0; - padding: 12px; - background: linear-gradient(135deg, #2a4a2a, #1a3a1a); - border: 2px solid #44aa44; - border-radius: 8px; - box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4); -} - -.server-status-container h3 { - margin: 0 0 10px 0; - font-size: 1.1rem; - color: #aaffaa; - text-align: center; - font-weight: 600; -} - -.status-indicator { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 8px; - font-weight: 600; - font-size: 1rem; -} - -.status-dot { - width: 12px; - height: 12px; - border-radius: 50%; - margin-right: 8px; - box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); -} - -.status-dot.status-up { - background-color: #44ff44; - box-shadow: 0 0 8px rgba(68, 255, 68, 0.6); - animation: status-pulse-up 2s ease-in-out infinite; -} - -.status-dot.status-down { - background-color: #ff4444; - box-shadow: 0 0 8px rgba(255, 68, 68, 0.6); - animation: status-pulse-down 2s ease-in-out infinite; -} - -.status-dot.status-unknown, -.status-dot.status-error { - background-color: #ffaa44; - box-shadow: 0 0 8px rgba(255, 170, 68, 0.6); -} - -@keyframes status-pulse-up { - 0%, 100% { - box-shadow: 0 0 8px rgba(68, 255, 68, 0.6); - } - 50% { - box-shadow: 0 0 16px rgba(68, 255, 68, 0.9); - } -} - -@keyframes status-pulse-down { - 0%, 100% { - box-shadow: 0 0 8px rgba(255, 68, 68, 0.6); - } - 50% { - box-shadow: 0 0 16px rgba(255, 68, 68, 0.9); - } -} - -.status-details { - font-size: 0.85rem; - color: #ccc; - line-height: 1.6; - display: grid; - grid-template-columns: 1fr 1fr; - gap: 8px 16px; -} - -.status-details div { - display: flex; - align-items: center; - white-space: nowrap; -} - -.status-details span { - color: #fff; - font-weight: 500; - margin-left: 6px; -} - -.total-kills-counter { - margin: 0 0 12px 0; - padding: 8px 12px; - background: linear-gradient(135deg, #2a2a2a, #1a1a1a); - border: 1px solid #555; - border-radius: 6px; - font-size: 0.95rem; - font-weight: 600; - color: #ff6666; - text-align: center; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); -} - -.total-kills-counter #totalKillsCount { - color: #fff; - margin-left: 4px; -} #playerList { list-style: none; margin: 0; padding: 0; } -/* Filter input in sidebar for player list */ -.player-filter { - width: 100%; - padding: 6px 8px; - margin-bottom: 12px; - background: var(--card); - color: var(--text); - border: 1px solid #555; - border-radius: 4px; - font-size: 0.9rem; - box-sizing: border-box; -} #playerList li { margin: 4px 0; padding: 6px 8px; @@ -410,22 +148,6 @@ body { white-space: nowrap; z-index: 1000; } - -/* ---------- coordinate display ---------------------------------- */ -.coordinates { - position: absolute; - display: none; - background: rgba(0, 50, 100, 0.9); - color: #fff; - padding: 3px 6px; - border-radius: 3px; - font-size: 0.75rem; - font-family: monospace; - pointer-events: none; - white-space: nowrap; - z-index: 999; - border: 1px solid rgba(100, 150, 200, 0.5); -} /* make each row a flex container */ /* 2-column flex layout for each player row */ /* make each row a flex container */ @@ -433,38 +155,32 @@ body { /* make each player row into a 3ร—2 grid */ #playerList li { display: grid; - grid-template-columns: 1fr auto auto auto auto auto; - grid-template-rows: auto auto auto auto auto; + grid-template-columns: 1fr auto; + grid-template-rows: auto auto auto auto; grid-template-areas: - "name name name name name name" - "vitals vitals vitals vitals vitals vitals" - "kills totalkills kph kph kph kph" - "rares kpr meta meta meta meta" - "onlinetime deaths tapers tapers tapers tapers"; + "name loc" + "kills kph" + "rares meta" + "onlinetime deaths"; gap: 4px 8px; margin: 6px 0; padding: 8px 10px; background: var(--card); border-left: 4px solid transparent; - transition: none; + transition: background 0.15s; font-size: 0.85rem; } /* assign each span into its grid cell */ .player-name { grid-area: name; font-weight: 600; color: var(--text); } -.coordinates-inline { font-size: 0.75rem; color: #aaa; font-weight: 400; margin-left: 8px; } +.player-loc { grid-area: loc; font-size: 0.75rem; color: #aaa; } .stat.kills { grid-area: kills; } -.stat.total-kills { grid-area: totalkills; } .stat.kph { grid-area: kph; } .stat.rares { grid-area: rares; } -.stat.kpr { grid-area: kpr; } .stat.meta { grid-area: meta; } .stat.onlinetime { grid-area: onlinetime; } .stat.deaths { grid-area: deaths; } -.stat.tapers { grid-area: tapers; } - -.player-vitals { grid-area: vitals; } /* pill styling */ #playerList li .stat { @@ -478,123 +194,15 @@ body { } /* icons & suffixes */ -.stat.kills::before { content: "โš”๏ธ "; } -.stat.total-kills::before { content: "๐Ÿ† "; } -.stat.kph::after { content: " KPH"; font-size:0.7em; color:#aaa; } -.stat.rares::before { content: "๐Ÿ’Ž "; } -.stat.rares::after { content: " Rares"; font-size:0.7em; color:#aaa; } -.stat.kpr::before { content: "๐Ÿ“Š "; } -.stat.kpr::after { content: " KPR"; font-size:0.7em; color:#aaa; } -/* metastate pill colors are assigned dynamically: green for โ€œgoodโ€ states, red otherwise */ -#playerList li .stat.meta { - /* fallback */ +.stat.kills::before { content: "โš”๏ธ "; } +.stat.kph::after { content: " KPH"; font-size:0.7em; color:#aaa; } +.stat.rares::after { content: " Rares"; font-size:0.7em; color:#aaa; } +.stat.meta { background: var(--accent); color: #111; } - -#playerList li .stat.meta.green { - background: #2ecc71; /* pleasant green */ - color: #111; -} - -#playerList li .stat.meta.red { - background: #e74c3c; /* vivid red */ - color: #fff; -} - -/* ---------- chat window styling ------------------------------- */ -.chat-btn, .stats-btn, .inventory-btn { - margin-top: 4px; - padding: 2px 6px; - background: var(--accent); - color: #111; - border: none; - border-radius: 3px; - font-size: 0.75rem; - cursor: pointer; -} - -.chat-window, .stats-window, .inventory-window { - position: absolute; - top: 10px; - /* position window to start just right of the sidebar */ - left: calc(var(--sidebar-width) + 10px); - /* increase default size for better usability */ - width: 760px; /* increased width for larger terminal area */ - height: 300px; - background: var(--card); - border: 1px solid #555; - display: flex; - flex-direction: column; - z-index: 10000; -} - -.chat-header { - display: flex; - justify-content: space-between; - align-items: center; - background: var(--accent); - padding: 4px; - color: #111; - cursor: move; /* indicates the header is draggable */ -} - -.chat-close-btn { - background: transparent; - border: none; - font-size: 1.2rem; - line-height: 1; - cursor: pointer; -} - -.chat-messages { - flex: 1; - overflow-y: auto; - padding: 4px; - font-size: 0.85rem; - color: #fff; - /* reserve space so messages aren't hidden behind the input */ - padding-bottom: 40px; -} - -.chat-form { - display: flex; - border-top: 1px solid #333; - /* fix input area to the bottom of the chat window */ - position: absolute; - left: 0; - right: 0; - bottom: 0; - background: #333; - z-index: 10; -} - -.chat-input { - flex: 1; - padding: 4px 6px; - border: none; - background: #333; - color: #fff; - outline: none; -} - -/* Prevent text selection while dragging chat windows */ -body.noselect, body.noselect * { - user-select: none !important; -} .stat.onlinetime::before { content: "๐Ÿ•‘ "} .stat.deaths::before { content: "๐Ÿ’€ "} -.stat.tapers::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - background-image: url('prismatic-taper-icon.png'); - background-size: contain; - background-repeat: no-repeat; - margin-right: 4px; - vertical-align: text-bottom; -} /* hover & selected states */ #playerList li:hover { background: var(--card-hov); } @@ -606,30 +214,6 @@ body.noselect, body.noselect * { left: 0; pointer-events: none; } - -#portals { - position: absolute; - top: 0; - left: 0; - pointer-events: none; -} - -.portal-icon { - position: absolute; - width: 6px; - height: 6px; - font-size: 6px; - line-height: 1; - transform: translate(-50%, -50%); - z-index: 50; - opacity: 0.9; - text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); -} - -.portal-icon::before { - content: '๐ŸŒ€'; - display: block; -} .trail-path { fill: none; stroke-width: 2px; @@ -637,917 +221,3 @@ body.noselect, body.noselect * { stroke-linecap: round; stroke-linejoin: round; } -/* -------------------------------------------------------- */ -/* Stats window: 2ร—2 iframe grid and flexible height */ -.stats-window { - /* allow height to expand to fit two rows of panels */ - height: auto; -} -.stats-window .chat-messages { - display: grid; - grid-template-columns: repeat(2, 1fr); - grid-auto-rows: auto; - gap: 10px; - padding: 10px; - overflow: visible; - background: #f7f7f7; - color: #000; -} -.stats-window iframe { - width: 350px; - height: 200px; - border: none; -} - -/* ---------- stats window time controls --------------------------- */ -.stats-controls { - display: flex; - gap: 8px; - padding: 10px 15px; - background: #333; - border-bottom: 1px solid #555; -} - -.time-range-btn { - padding: 6px 12px; - background: #444; - color: #ccc; - border: 1px solid #666; - border-radius: 4px; - font-size: 0.85rem; - cursor: pointer; - transition: all 0.2s; -} - -.time-range-btn:hover { - background: #555; - color: #fff; -} - -.time-range-btn.active { - background: var(--accent); - color: #111; - border-color: var(--accent); -} - -/* ---------- inventory window styling ----------------------------- */ -.inventory-content { - flex: 1; - padding: 15px; - background: var(--card); - color: var(--text); - overflow-y: auto; -} - -.inventory-placeholder { - display: flex; - align-items: center; - justify-content: center; - height: 100%; - font-size: 1.1rem; - color: #888; - font-style: italic; -} - -/* Inventory window specific styles */ -.inventory-window { - position: fixed; - top: 100px; - left: 400px; - width: 600px; - height: 500px; - background: var(--card); - border: 1px solid #555; - border-radius: 8px; - display: flex; - flex-direction: column; - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); - z-index: 1000; -} - -.inventory-loading { - display: flex; - align-items: center; - justify-content: center; - height: 100%; - font-size: 1.1rem; - color: #888; -} - -/* Inventory grid layout - matches AC original */ -.inventory-grid { - display: grid; - grid-template-columns: repeat(8, 36px); - gap: 0px; - padding: 8px; - background: - linear-gradient(90deg, #333 1px, transparent 1px), - linear-gradient(180deg, #333 1px, transparent 1px), - #111; - background-size: 36px 36px; - max-height: 450px; - overflow-y: auto; - border: 1px solid #444; -} - -/* Individual inventory slots - no borders like AC original */ -.inventory-slot { - width: 36px; - height: 36px; - background: transparent; - border: none; - border-radius: 0; - display: flex; - align-items: center; - justify-content: center; - cursor: pointer; - transition: background 0.1s ease; - padding: 0; - margin: 0; -} - -.inventory-slot:hover { - background: rgba(136, 136, 255, 0.3); -} - -.inventory-icon { - width: 36px; - height: 36px; - object-fit: contain; - image-rendering: pixelated; - /* Improve icon appearance - make background match slot */ - border: none; - outline: none; - background: #1a1a1a; - border-radius: 2px; -} - -/* Icon compositing for overlays/underlays - matches AC original */ -.item-icon-composite { - position: relative; - width: 36px; - height: 36px; - display: block; - background: transparent; - padding: 0; - margin: 0; -} - -.icon-underlay, -.icon-base, -.icon-overlay { - position: absolute; - top: 0; - left: 0; - width: 36px; - height: 36px; - border: none; - outline: none; - background: transparent; - padding: 0; - margin: 0; -} - -.icon-underlay { - z-index: 1; -} - -.icon-base { - z-index: 2; -} - -.icon-overlay { - z-index: 3; -} - -/* Item count */ -.inventory-count { - text-align: center; - padding: 10px; - color: #888; - font-size: 0.9rem; -} - -/* Inventory tooltip */ -.inventory-tooltip { - position: fixed; - background: rgba(0, 0, 0, 0.95); - border: 1px solid #555; - border-radius: 4px; - padding: 10px; - pointer-events: none; - z-index: 20000; - display: none; - min-width: 200px; - max-width: 350px; - font-size: 0.9rem; -} - -.tooltip-name { - font-weight: bold; - color: var(--accent); - margin-bottom: 8px; - font-size: 1rem; -} - -.tooltip-section { - margin-bottom: 6px; -} - -.tooltip-section-title { - font-weight: bold; - color: #ffd700; - margin-bottom: 3px; - font-size: 0.85rem; - text-transform: uppercase; -} - -.tooltip-stats { - display: flex; - flex-direction: column; - gap: 3px; - font-size: 0.9rem; -} - -.tooltip-stat, -.tooltip-requirement, -.tooltip-property { - color: #ddd; - font-size: 0.85rem; - margin-left: 8px; -} - -.tooltip-requirement { - color: #ffaa00; -} - -.tooltip-property { - color: #88ff88; -} - -.tooltip-string { - color: #add8e6; - font-size: 0.8rem; - margin-left: 8px; -} - -.tooltip-spell { - color: #dda0dd; - font-size: 0.8rem; - margin-left: 8px; - margin-bottom: 2px; -} - -.spell-name { - color: #4a90e2; - font-weight: 500; -} - -.spell-school { - font-size: 11px; - color: #888; - font-style: italic; -} - -.tooltip-info { - color: #f0e68c; - font-size: 0.8rem; - margin-left: 8px; -} - -.tooltip-description { - color: #ccc; - font-style: italic; - margin-top: 8px; - padding-top: 8px; - border-top: 1px solid #444; -} - -.tooltip-value { - color: #4CAF50; -} - -.tooltip-burden { - color: #FFC107; -} - -.tooltip-source { - font-size: 10px; - color: #888; - margin-top: 4px; - text-align: center; -} - -/* ---------- inline vitals bars ---------------------------------- */ -.player-vitals { - grid-column: 1 / -1; - margin: 2px 0 4px 0; - display: flex; - flex-direction: column; - gap: 2px; -} - -.vital-bar-inline { - height: 5px; - background: #222; - border-radius: 3px; - overflow: hidden; - position: relative; -} - -.vitae-indicator { - font-size: 0.75rem; - color: #ff6666; - margin-left: 8px; - font-weight: 500; -} - -.vital-fill { - height: 100%; - transition: width 0.3s ease-out; - border-radius: 2px; -} - -.vital-fill.health { - background: linear-gradient(90deg, #ff4444, #ff6666); -} - -.vital-fill.stamina { - background: linear-gradient(90deg, #ffaa00, #ffcc44); -} - -.vital-fill.mana { - background: linear-gradient(90deg, #4488ff, #66aaff); -} - -/* Pulsing effects for low vitals */ -.vital-bar-inline.low-vital { - animation: pulse-bar-low 2s ease-in-out infinite; -} - -.vital-bar-inline.critical-vital { - animation: pulse-bar-critical 1s ease-in-out infinite; -} - -@keyframes pulse-bar-low { - 0%, 100% { background: #222; } - 50% { background: #332200; } -} - -@keyframes pulse-bar-critical { - 0%, 100% { background: #222; } - 50% { background: #440000; } -} - -/* ---------- epic rare notifications ------------------------------ */ -.rare-notifications { - position: fixed; - top: 20px; - left: 50%; - transform: translateX(-50%); - z-index: 10001; - pointer-events: none; -} - -.rare-notification { - background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700); - border: 3px solid #ff6600; - border-radius: 12px; - padding: 20px 30px; - margin-bottom: 10px; - text-align: center; - box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5); - animation: notification-slide-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), - epic-glow 2s ease-in-out infinite; - position: relative; - overflow: hidden; -} - -@keyframes notification-slide-in { - from { - transform: translateY(-100px); - opacity: 0; - } - to { - transform: translateY(0); - opacity: 1; - } -} - -@keyframes epic-glow { - 0%, 100% { - box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5); - } - 50% { - box-shadow: 0 8px 48px rgba(255, 215, 0, 0.8); - } -} - -.rare-notification-title { - font-size: 1.2rem; - font-weight: 800; - color: #ff0044; - text-transform: uppercase; - margin-bottom: 8px; - text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); - animation: epic-text-pulse 1s ease-in-out infinite; -} - -@keyframes epic-text-pulse { - 0%, 100% { transform: scale(1); } - 50% { transform: scale(1.05); } -} - -.rare-notification-mob { - font-size: 1.5rem; - font-weight: 700; - color: #1a0033; - margin-bottom: 4px; - text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); -} - -.rare-notification-finder { - font-size: 1rem; - color: #333; - font-style: italic; - margin-bottom: 4px; -} - -.rare-notification-character { - font-size: 1.3rem; - font-weight: 700; - color: #ff0044; - text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); -} - -/* Shine effect overlay */ -.rare-notification::before { - content: ''; - position: absolute; - top: -50%; - left: -50%; - width: 200%; - height: 200%; - background: linear-gradient(45deg, - transparent 30%, - rgba(255, 255, 255, 0.5) 50%, - transparent 70% - ); - transform: rotate(45deg); - animation: notification-shine 3s infinite; -} - -@keyframes notification-shine { - 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } - 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } -} - -/* ---------- fireworks particles ---------------------------------- */ -.fireworks-container { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; - z-index: 9999; -} - -.firework-particle { - position: absolute; - width: 6px; - height: 6px; - border-radius: 50%; - pointer-events: none; - animation: firework-fly 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; -} - -@keyframes firework-fly { - 0% { - transform: translate(0, 0) scale(1); - opacity: 1; - } - 100% { - opacity: 0; - } -} - -/* Different particle colors */ -.particle-gold { background: #ffd700; box-shadow: 0 0 6px #ffd700; } -.particle-red { background: #ff4444; box-shadow: 0 0 6px #ff4444; } -.particle-orange { background: #ff8800; box-shadow: 0 0 6px #ff8800; } -.particle-purple { background: #cc00ff; box-shadow: 0 0 6px #cc00ff; } -.particle-blue { background: #00ccff; box-shadow: 0 0 6px #00ccff; } - -/* Character glow effect in player list */ -.player-item.rare-finder-glow { - animation: rare-finder-highlight 5s ease-in-out; - border-left-color: #ffd700 !important; - border-left-width: 6px !important; -} - -@keyframes rare-finder-highlight { - 0%, 100% { - background: var(--card); - box-shadow: none; - } - 50% { - background: rgba(255, 215, 0, 0.2); - box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); - } -} - -/* ---------- milestone celebration overlay ------------------------ */ -.milestone-overlay { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.3), rgba(0, 0, 0, 0.8)); - z-index: 20000; - display: flex; - align-items: center; - justify-content: center; - animation: milestone-fade-in 0.5s ease-out; -} - -@keyframes milestone-fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } -} - -.milestone-content { - text-align: center; - animation: milestone-zoom 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); -} - -@keyframes milestone-zoom { - from { - transform: scale(0); - } - to { - transform: scale(1); - } -} - -.milestone-number { - font-size: 8rem; - font-weight: 900; - color: #ffd700; - text-shadow: - 0 0 30px #ffd700, - 0 0 60px #ff6600, - 0 0 90px #ff0044, - 0 0 120px #ff0044; - margin-bottom: 20px; - animation: milestone-pulse 1s ease-in-out infinite alternate; -} - -@keyframes milestone-pulse { - from { - transform: scale(1); - text-shadow: - 0 0 30px #ffd700, - 0 0 60px #ff6600, - 0 0 90px #ff0044, - 0 0 120px #ff0044; - } - to { - transform: scale(1.1); - text-shadow: - 0 0 40px #ffd700, - 0 0 80px #ff6600, - 0 0 120px #ff0044, - 0 0 160px #ff0044; - } -} - -.milestone-text { - font-size: 3rem; - font-weight: 700; - color: #fff; - text-transform: uppercase; - letter-spacing: 0.2em; - text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); - animation: milestone-text-glow 2s ease-in-out infinite; -} - -@keyframes milestone-text-glow { - 0%, 100% { - opacity: 0.8; - } - 50% { - opacity: 1; - } -} - -.milestone-subtitle { - font-size: 1.5rem; - color: #ffcc00; - margin-top: 20px; - font-style: italic; - animation: milestone-subtitle-slide 1s ease-out; -} - -@keyframes milestone-subtitle-slide { - from { - transform: translateY(50px); - opacity: 0; - } - to { - transform: translateY(0); - opacity: 1; - } -} - -/* Milestone firework burst - larger particles */ -.milestone-particle { - position: absolute; - width: 12px; - height: 12px; - border-radius: 50%; - pointer-events: none; - background: #ffd700; - box-shadow: 0 0 12px #ffd700; -} - -/* Screen shake effect */ -@keyframes screen-shake { - 0%, 100% { transform: translate(0, 0); } - 10% { transform: translate(-5px, -5px); } - 20% { transform: translate(5px, -5px); } - 30% { transform: translate(-5px, 5px); } - 40% { transform: translate(5px, 5px); } - 50% { transform: translate(-3px, -3px); } - 60% { transform: translate(3px, -3px); } - 70% { transform: translate(-3px, 3px); } - 80% { transform: translate(3px, 3px); } - 90% { transform: translate(-1px, -1px); } -} - -.screen-shake { - animation: screen-shake 0.5s ease-in-out; -} - -/* ---------- Heat Map Canvas Layer ---------- */ -#heatmapCanvas { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; - opacity: 0.85; - mix-blend-mode: screen; /* Additive blending for nice heat map effect */ -} - -/* Trails and dots use default positioning - no changes needed for layering */ - -/* Heat map toggle styling */ -.heatmap-toggle { - margin: 0 0 12px; - padding: 6px 12px; - background: var(--card); - border: 1px solid var(--accent); - border-radius: 4px; - font-size: 0.9rem; -} - -.heatmap-toggle input { - margin-right: 8px; - cursor: pointer; -} - -.heatmap-toggle label { - cursor: pointer; - user-select: none; -} - -.portal-toggle { - margin: 0 0 12px; - padding: 6px 12px; - background: var(--card); - border: 1px solid #9c4aff; - border-radius: 4px; - font-size: 0.9rem; -} - -.portal-toggle input { - margin-right: 8px; - cursor: pointer; -} - -.portal-toggle label { - cursor: pointer; - user-select: none; -} - -/* Inventory search link styling */ -.inventory-search-link { - margin: 0 0 12px; - padding: 8px 12px; - background: var(--card); - border: 1px solid #4a9eff; - border-radius: 4px; - text-align: center; -} - -.inventory-search-link a { - color: #4a9eff; - text-decoration: none; - font-size: 0.9rem; - font-weight: 500; - display: block; - cursor: pointer; - user-select: none; - transition: all 0.2s ease; -} - -.inventory-search-link a:hover { - color: #fff; - background: rgba(74, 158, 255, 0.1); - border-radius: 2px; - padding: 2px 4px; - margin: -2px -4px; -} - -.suitbuilder-link { - margin: 0 0 12px; - padding: 8px 12px; - background: var(--card); - border: 1px solid #ff6b4a; - border-radius: 4px; - text-align: center; -} - -.suitbuilder-link a { - color: #ff6b4a; - text-decoration: none; - font-size: 0.9rem; - font-weight: 500; - display: block; - cursor: pointer; - user-select: none; - transition: all 0.2s ease; -} - -.suitbuilder-link a:hover { - color: #fff; - background: rgba(255, 107, 74, 0.1); - border-radius: 2px; - padding: 2px 4px; - margin: -2px -4px; -} - -.debug-link { - margin: 0 0 12px; - padding: 8px 12px; - background: var(--card); - border: 1px solid #4aff6b; - border-radius: 4px; - text-align: center; -} - -.debug-link a { - color: #4aff6b; - text-decoration: none; - font-size: 0.9rem; - font-weight: 500; - display: block; - cursor: pointer; - user-select: none; - transition: all 0.2s ease; -} - -.debug-link a:hover { - color: #fff; - background: rgba(74, 255, 107, 0.1); - border-radius: 2px; - padding: 2px 4px; - margin: -2px -4px; -} - -.quest-status-link { - margin: 0 0 12px; - padding: 8px 12px; - background: var(--card); - border: 1px solid #ffab4a; - border-radius: 4px; - text-align: center; -} - -.quest-status-link a { - color: #ffab4a; - text-decoration: none; - font-size: 0.9rem; - font-weight: 500; - display: block; - cursor: pointer; - user-select: none; - transition: all 0.2s ease; -} - -.quest-status-link a:hover { - color: #fff; - background: rgba(255, 171, 74, 0.1); - border-radius: 2px; - padding: 2px 4px; - margin: -2px -4px; -} - -.player-dashboard-link { - margin: 0 0 12px; - padding: 8px 12px; - background: var(--card); - border: 1px solid #88f; - border-radius: 4px; - text-align: center; -} - -.player-dashboard-link a { - color: #88f; - text-decoration: none; - font-size: 0.9rem; - font-weight: 500; - display: block; - cursor: pointer; - user-select: none; - transition: all 0.2s ease; -} - -.player-dashboard-link a:hover { - color: #fff; - background: rgba(136, 136, 255, 0.1); - border-radius: 2px; - padding: 2px 4px; - margin: -2px -4px; -} - -/* Sortable column styles for inventory tables */ -.sortable { - cursor: pointer; - user-select: none; - position: relative; - padding-right: 20px \!important; -} - -.sortable:hover { - background-color: rgba(255, 255, 255, 0.1); -} - -.results-table { - width: 100%; - border-collapse: collapse; - margin-top: 10px; -} - -.results-table th, -.results-table td { - padding: 8px 12px; - border-bottom: 1px solid #333; - text-align: left; -} - -.results-table th { - background-color: #222; - font-weight: bold; - color: #eee; -} - -.results-table tr:hover { - background-color: rgba(255, 255, 255, 0.05); -} - -.text-right { - text-align: right \!important; -} - -.results-info { - margin-bottom: 10px; - color: #ccc; - font-size: 14px; -} - -/* Spell/Cantrip column styling */ -.spells-cell { - font-size: 10px; - line-height: 1.2; - max-width: 200px; - word-wrap: break-word; - vertical-align: top; -} - -.legendary-cantrip { - color: #ffd700; - font-weight: bold; -} - -.regular-spell { - color: #88ccff; -} - diff --git a/static/suitbuilder.css b/static/suitbuilder.css deleted file mode 100644 index 3fe8a8d0..00000000 --- a/static/suitbuilder.css +++ /dev/null @@ -1,879 +0,0 @@ -/* Suitbuilder CSS - Three-Panel Layout with Equipment Slots */ - -* { - box-sizing: border-box; - margin: 0; - padding: 0; -} - -body { - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - background-color: #f5f5f5; - color: #333; - line-height: 1.4; -} - -.suitbuilder-container { - min-height: 100vh; - display: flex; - flex-direction: column; -} - -/* Header */ -.suitbuilder-header { - background: linear-gradient(135deg, #1e3a8a, #3b82f6); - color: white; - padding: 1rem 2rem; - text-align: center; - box-shadow: 0 2px 4px rgba(0,0,0,0.1); -} - -.suitbuilder-header h1 { - font-size: 2rem; - margin-bottom: 0.5rem; -} - -.suitbuilder-header p { - font-size: 1.1rem; - opacity: 0.9; -} - -/* Main Content - Three Panel Layout */ -.main-content { - display: flex; - flex: 1; - min-height: calc(100vh - 120px); - gap: 1px; -} - -/* Panel Base Styles */ -.characters-panel, -.constraints-panel, -.slots-panel { - background: white; - display: flex; - flex-direction: column; - overflow-y: auto; -} - -.characters-panel { - flex: 0 0 15%; - min-width: 200px; - border-right: 1px solid #e5e7eb; -} - -.constraints-panel { - flex: 0 0 55%; - border-right: 1px solid #e5e7eb; -} - -.slots-panel { - flex: 0 0 30%; - min-width: 350px; -} - -/* Panel Headers */ -.panel-header { - background: #f8fafc; - padding: 1rem; - border-bottom: 1px solid #e5e7eb; - position: sticky; - top: 0; - z-index: 10; -} - -.panel-header h3 { - font-size: 1.2rem; - color: #1f2937; - margin: 0; -} - -.results-count { - font-size: 0.9rem; - color: #6b7280; - font-weight: normal; -} - -/* Character Selection Panel */ -.character-selection { - padding: 1rem; -} - -.character-list { - margin-top: 0.5rem; - max-height: calc(100vh - 250px); - overflow-y: auto; -} - -.checkbox-item { - display: flex; - align-items: center; - margin-bottom: 0.5rem; - padding: 0.25rem; - border-radius: 4px; - transition: background-color 0.2s; -} - -.checkbox-item:hover { - background-color: #f3f4f6; -} - -.checkbox-item input[type="checkbox"] { - margin-right: 0.5rem; - transform: scale(1.1); -} - -.checkbox-item label { - cursor: pointer; - flex: 1; - font-size: 0.9rem; -} - -/* Constraints Panel */ -.constraints-form { - padding: 1rem; - border-bottom: 1px solid #e5e7eb; -} - -.constraint-section { - margin-bottom: 1.5rem; - padding: 1rem; - background: #f9fafb; - border-radius: 6px; - border: 1px solid #e5e7eb; -} - -.constraint-section h4 { - font-size: 1rem; - color: #374151; - margin-bottom: 0.75rem; - border-bottom: 1px solid #d1d5db; - padding-bottom: 0.5rem; -} - -.filter-row { - display: flex; - gap: 1rem; - flex-wrap: wrap; - align-items: center; -} - -.filter-group { - display: flex; - align-items: center; - gap: 0.5rem; - flex: 1; - min-width: 200px; -} - -.filter-group label { - font-size: 0.9rem; - font-weight: 500; - color: #374151; - min-width: 80px; -} - -.filter-group input[type="number"] { - width: 70px; - padding: 0.375rem; - border: 1px solid #d1d5db; - border-radius: 4px; - font-size: 0.9rem; -} - -.filter-group select { - flex: 1; - padding: 0.375rem; - border: 1px solid #d1d5db; - border-radius: 4px; - font-size: 0.9rem; - background: white; -} - -/* Cantrips Grid */ -.cantrips-grid { - display: grid; - grid-template-columns: repeat(3, 1fr); - gap: 0.5rem; -} - -.cantrips-grid .checkbox-item { - margin-bottom: 0.25rem; -} - -/* Action Buttons */ -.action-buttons { - display: flex; - gap: 1rem; - margin-top: 1rem; - padding-top: 1rem; - border-top: 1px solid #e5e7eb; -} - -.btn { - padding: 0.75rem 1.5rem; - border: none; - border-radius: 6px; - font-size: 0.9rem; - font-weight: 500; - cursor: pointer; - transition: all 0.2s; - text-decoration: none; - display: inline-block; - text-align: center; -} - -.btn-primary { - background: #3b82f6; - color: white; -} - -.btn-primary:hover { - background: #2563eb; -} - -.btn-secondary { - background: #6b7280; - color: white; -} - -.btn-secondary:hover { - background: #4b5563; -} - -/* Results Section */ -.results-section { - flex: 1; - display: flex; - flex-direction: column; -} - -.suit-results { - flex: 1; - padding: 1rem; - overflow-y: auto; -} - -.no-results { - text-align: center; - color: #6b7280; - font-style: italic; - padding: 2rem; - background: #f9fafb; - border-radius: 6px; - border: 1px dashed #d1d5db; -} - -.suit-item { - background: white; - border: 1px solid #e5e7eb; - border-radius: 6px; - margin-bottom: 1rem; - padding: 1rem; - cursor: pointer; - transition: all 0.2s; -} - -.suit-item:hover { - border-color: #3b82f6; - box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1); -} - -.suit-item.selected { - border-color: #3b82f6; - background: #eff6ff; -} - -.suit-header { - display: flex; - justify-content: between; - align-items: center; - margin-bottom: 0.75rem; -} - -.suit-score { - font-size: 1.1rem; - font-weight: 600; -} - -.suit-score.excellent { color: #059669; } -.suit-score.good { color: #3b82f6; } -.suit-score.fair { color: #f59e0b; } -.suit-score.poor { color: #ef4444; } - -.suit-items { - font-size: 0.9rem; - line-height: 1.5; -} - -.suit-item-entry { - margin-bottom: 0.25rem; - display: flex; - align-items: center; - gap: 0.5rem; -} - -.item-character { - font-weight: 600; - color: #1f2937; -} - -.item-name { - color: #374151; -} - -.item-properties { - color: #6b7280; - font-size: 0.8rem; -} - -.need-reducing { - background: #fef2f2; - color: #dc2626; - padding: 0.125rem 0.375rem; - border-radius: 4px; - font-size: 0.7rem; - font-weight: 500; - border: 1px solid #fecaca; -} - -/* Constraint Analysis Display */ -.missing-items { - background: #fef2f2; - color: #dc2626; - padding: 0.5rem 0.75rem; - border-radius: 6px; - font-size: 0.85rem; - font-weight: 500; - margin-top: 0.75rem; - border: 1px solid #fecaca; - line-height: 1.4; -} - -.missing-items:before { - content: "โš ๏ธ Missing: "; - font-weight: 600; -} - -.suit-notes { - background: #f0f9ff; - color: #1e40af; - padding: 0.5rem 0.75rem; - border-radius: 6px; - font-size: 0.85rem; - font-weight: 500; - margin-top: 0.5rem; - border: 1px solid #bfdbfe; - line-height: 1.4; -} - -.suit-notes:before { - content: "โœ“ "; - font-weight: 600; - color: #059669; -} - -/* Equipment Slots Panel */ -.slots-panel { - padding: 1rem; -} - -.slot-category { - margin-bottom: 2rem; -} - -.slot-category h4 { - font-size: 1rem; - color: #374151; - margin-bottom: 1rem; - padding-bottom: 0.5rem; - border-bottom: 1px solid #e5e7eb; -} - -/* Slots Grid */ -.slots-grid { - display: grid; - gap: 0.75rem; - margin-bottom: 1rem; -} - -.armor-slots { - grid-template-columns: repeat(3, 1fr); -} - -.jewelry-slots { - grid-template-columns: repeat(3, 1fr); -} - -.clothing-slots { - grid-template-columns: repeat(2, 1fr); -} - -/* Individual Slot Items */ -.slot-item { - background: white; - border: 2px solid #e5e7eb; - border-radius: 6px; - padding: 0.75rem; - min-height: 120px; - display: flex; - flex-direction: column; - transition: all 0.2s; - position: relative; -} - -.slot-item:hover { - border-color: #d1d5db; -} - -.slot-item.locked { - border-color: #dc2626; - background: #fef2f2; -} - -.slot-item.populated { - border-color: #059669; - background: #f0fdf4; -} - -.slot-header { - font-size: 0.8rem; - font-weight: 600; - color: #6b7280; - margin-bottom: 0.5rem; - text-align: center; -} - -.slot-content { - flex: 1; - display: flex; - flex-direction: column; - justify-content: center; - text-align: center; - font-size: 0.8rem; -} - -.empty-slot { - color: #9ca3af; - font-style: italic; -} - -.slot-item-name { - font-weight: 500; - color: #1f2937; - margin-bottom: 0.25rem; - line-height: 1.2; -} - -.slot-item-character { - font-size: 0.7rem; - color: #6b7280; - margin-bottom: 0.25rem; -} - -.slot-item-properties { - font-size: 0.65rem; - color: #9ca3af; - line-height: 1.1; -} - -.slot-controls { - position: absolute; - top: 0.25rem; - right: 0.25rem; -} - -.lock-btn { - background: none; - border: none; - font-size: 0.8rem; - cursor: pointer; - padding: 0.25rem; - border-radius: 3px; - opacity: 0.5; - transition: all 0.2s; -} - -.lock-btn:hover { - opacity: 1; - background: #f3f4f6; -} - -.lock-btn.locked { - opacity: 1; - background: #fef2f2; -} - -/* Slot Controls Section */ -.slot-controls-section { - padding-top: 1rem; - border-top: 1px solid #e5e7eb; - display: flex; - gap: 0.5rem; - flex-wrap: wrap; -} - -.slot-controls-section .btn { - font-size: 0.8rem; - padding: 0.5rem 1rem; - flex: 1; - min-width: 100px; -} - -/* Loading States */ -.loading { - display: flex; - align-items: center; - justify-content: center; - padding: 2rem; - font-style: italic; - color: #6b7280; -} - -.loading::before { - content: "๐Ÿ” "; - margin-right: 0.5rem; -} - -/* Error States */ -.error { - background: #fef2f2; - color: #dc2626; - padding: 1rem; - border-radius: 6px; - border: 1px solid #fecaca; - margin: 1rem 0; -} - -/* Responsive Design */ -@media (max-width: 1200px) { - .main-content { - flex-direction: column; - } - - .characters-panel, - .constraints-panel, - .slots-panel { - flex: none; - min-height: auto; - } - - .slots-grid { - grid-template-columns: repeat(2, 1fr); - } -} - -@media (max-width: 768px) { - .suitbuilder-header h1 { - font-size: 1.5rem; - } - - .filter-row { - flex-direction: column; - align-items: stretch; - } - - .filter-group { - min-width: auto; - } - - .cantrips-grid { - grid-template-columns: repeat(2, 1fr); - } - - .slots-grid { - grid-template-columns: 1fr; - } -} - -/* Suit Results Styling */ -.suit-stats { - padding: 8px 12px; - background: #444; - border-bottom: 1px solid #555; - margin-bottom: 8px; -} - -.suit-stats-line { - font-size: 12px; - color: #ccc; - font-weight: 500; -} - -.suit-notes { - margin-top: 8px; - padding: 6px; - background: #e8f5e8; - border-radius: 3px; - font-size: 11px; - color: #2d5016; - border-left: 3px solid #4caf50; -} - -.missing-items { - margin-top: 8px; - padding: 6px; - background: #ffeaea; - border-radius: 3px; - font-size: 11px; - color: #c62828; - border-left: 3px solid #f44336; -} - -.no-items { - color: #999; - font-style: italic; - text-align: center; - padding: 20px; -} - -.suit-item-entry { - margin-bottom: 4px; - font-size: 12px; -} - -.item-character { - color: #666; - font-weight: 500; -} - -.item-name { - color: #333; - font-weight: bold; -} - -.item-properties { - color: #888; - font-size: 11px; -} - -.need-reducing { - color: #ff6b35; - font-weight: bold; - font-size: 10px; - background: #fff3e0; - padding: 1px 4px; - border-radius: 2px; - margin-left: 4px; -} - -/* Ratings display */ -.item-ratings { - color: #0066cc; - font-size: 11px; - font-weight: 600; - background: #e6f3ff; - padding: 1px 4px; - border-radius: 2px; - margin-left: 4px; -} - -/* Empty slot styling */ -.suit-item-entry.empty-slot { - opacity: 0.6; - background: #f8f9fa; - border-left: 3px solid #dee2e6; - padding-left: 8px; -} - -.empty-slot-text { - color: #6c757d; - font-style: italic; - font-size: 11px; -} - -/* New Column-Based Table Layout */ -.suit-items-table { - width: 100%; - font-size: 12px; - margin-top: 8px; -} - -.suit-items-header { - display: grid; - grid-template-columns: 80px 120px 250px 140px 250px 60px 120px; - gap: 8px; - background: #2c3e50; - color: white; - padding: 8px 4px; - font-weight: 600; - font-size: 11px; - border-radius: 4px 4px 0 0; -} - -.suit-items-header > div { - color: white !important; - opacity: 1 !important; -} - -.suit-items-body { - background: #f8f9fa; - border: 1px solid #dee2e6; - border-top: none; - border-radius: 0 0 4px 4px; -} - -.suit-item-row { - display: grid; - grid-template-columns: 80px 120px 250px 140px 250px 60px 120px; - gap: 8px; - padding: 6px 4px; - border-bottom: 1px solid #e9ecef; - align-items: center; - min-height: 24px; -} - -.suit-item-row:last-child { - border-bottom: none; -} - -.suit-item-row:nth-child(even) { - background: #ffffff; -} - -.suit-item-row.empty-slot { - opacity: 0.5; - color: #6c757d; - font-style: italic; -} - -/* Column styling */ -.col-slot { - font-weight: 600; - color: #495057; -} - -.col-character { - color: #666; - font-weight: 500; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.col-item { - color: #333; - font-weight: bold; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.col-set { - font-weight: 600; - font-size: 11px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.suit-items-body .col-set { - color: #1f2937; - background: #f3f4f6; - padding: 2px 4px; - border-radius: 3px; -} - -.col-spells { - color: #7c3aed; - font-size: 11px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.col-armor { - color: #059669; - font-weight: 600; - text-align: center; -} - -.col-ratings { - color: #0066cc; - font-size: 11px; - font-weight: 600; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.need-reducing { - color: #dc2626; - font-weight: bold; - margin-left: 2px; -} - -/* Responsive adjustments for table */ -@media (max-width: 1200px) { - .suit-items-header, - .suit-item-row { - grid-template-columns: 70px 100px 200px 120px 200px 50px 100px; - gap: 6px; - font-size: 11px; - } -} - -@media (max-width: 900px) { - .suit-items-header, - .suit-item-row { - grid-template-columns: 60px 80px 150px 100px 150px 40px 80px; - gap: 4px; - font-size: 10px; - } - - .col-spells, - .col-ratings { - font-size: 10px; - } -} - -/* Progressive Search Styles */ -.search-progress { - margin-top: 15px; - padding: 10px; - background: #f8f9fa; - border-radius: 6px; - border: 1px solid #e9ecef; -} - -.progress-stats { - font-family: 'Courier New', monospace; - font-size: 13px; - color: #495057; - margin-bottom: 10px; -} - -.stop-search-btn { - background: #dc3545; - color: white; - border: none; - padding: 6px 12px; - border-radius: 4px; - cursor: pointer; - font-size: 12px; - font-weight: bold; - transition: background-color 0.2s; -} - -.stop-search-btn:hover { - background: #c82333; -} - -.stop-search-btn:active { - background: #bd2130; -} - -#streamingResults { - margin-top: 15px; -} - -/* Enhance loading messages */ -.loading { - padding: 20px; - text-align: center; - background: #e3f2fd; - border: 1px solid #bbdefb; - border-radius: 6px; - color: #1976d2; - font-weight: 500; -} \ No newline at end of file diff --git a/static/suitbuilder.html b/static/suitbuilder.html deleted file mode 100644 index 55d69b26..00000000 --- a/static/suitbuilder.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - Suitbuilder - Dereth Tracker - - - -
- -
-

๐Ÿ›ก๏ธ Suitbuilder

-

Multi-Character Loadout Optimizer

-
- - -
- -
-
-

Characters

-
-
-
- - -
-
- -
-
-
- - -
- -
-
-

Constraints

-
- - -
-

Rating Requirements

-
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
-
- - -
-

Equipment Status

-
-
- - -
-
- - -
-
-
- - -
-

Equipment Sets

-
-
- - -
-
- - -
-
-
- - -
-

Legendary Cantrips

-
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
- - -
-
- - -
-
-
- - -
-

Legendary Wards

-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- - -
- - -
-
- - -
-
-

Suit Results

- -
-
-
Configure constraints above and click "Search Suits" to find optimal loadouts.
-
-
-
- - -
-
-

Equipment Slots

-
- - -
-

Armor (9 slots)

-
-
-
Head
-
- Empty -
-
- -
-
-
-
Chest
-
- Empty -
-
- -
-
-
-
Upper Arms
-
- Empty -
-
- -
-
-
-
Lower Arms
-
- Empty -
-
- -
-
-
-
Hands
-
- Empty -
-
- -
-
-
-
Abdomen
-
- Empty -
-
- -
-
-
-
Upper Legs
-
- Empty -
-
- -
-
-
-
Lower Legs
-
- Empty -
-
- -
-
-
-
Feet
-
- Empty -
-
- -
-
-
-
- - -
-

Jewelry (6 slots)

-
-
-
Neck
-
- Empty -
-
- -
-
-
-
Left Ring
-
- Empty -
-
- -
-
-
-
Right Ring
-
- Empty -
-
- -
-
-
-
Left Wrist
-
- Empty -
-
- -
-
-
-
Right Wrist
-
- Empty -
-
- -
-
-
-
Trinket
-
- Empty -
-
- -
-
-
-
- - -
-

Clothing (2 slots)

-
-
-
Shirt
-
- Empty -
-
- -
-
-
-
Pants
-
- Empty -
-
- -
-
-
-
- - -
- - - -
-
-
-
- - - - \ No newline at end of file diff --git a/static/suitbuilder.js b/static/suitbuilder.js deleted file mode 100644 index 47a9a842..00000000 --- a/static/suitbuilder.js +++ /dev/null @@ -1,1269 +0,0 @@ -// Suitbuilder JavaScript - Constraint Solver Frontend Logic -console.log('Suitbuilder.js loaded - VERSION: SCORE_ORDERING_AND_CANCELLATION_FIX_v3'); - -// Configuration -const API_BASE = '/inv/suitbuilder'; -let currentSuits = []; -let lockedSlots = new Set(); -let selectedSuit = null; -let currentSearchController = null; // AbortController for current search - -// Initialize when page loads -document.addEventListener('DOMContentLoaded', function() { - initializeSuitbuilder(); -}); - -/** - * Initialize all suitbuilder functionality - */ -function initializeSuitbuilder() { - loadCharacters(); - setupEventListeners(); - setupSlotInteractions(); -} - -/** - * Load available characters for selection - */ -async function loadCharacters() { - try { - const response = await fetch(`${API_BASE}/characters`); - if (!response.ok) { - throw new Error('Failed to load characters'); - } - - const data = await response.json(); - displayCharacters(data.characters); - } catch (error) { - console.error('Error loading characters:', error); - document.getElementById('characterList').innerHTML = - '
Failed to load characters
'; - } -} - -/** - * Display characters in the selection panel - */ -function displayCharacters(characters) { - const characterList = document.getElementById('characterList'); - - if (!characters || characters.length === 0) { - characterList.innerHTML = '
No characters found
'; - return; - } - - let html = ''; - characters.forEach(character => { - // Sanitize character name for HTML ID (replace special chars with underscores) - const safeId = character.replace(/[^a-zA-Z0-9]/g, '_'); - html += ` -
- - -
- `; - }); - - characterList.innerHTML = html; - - // Setup character checkbox interactions - setupCharacterCheckboxes(); -} - -/** - * Setup character checkbox interactions - */ -function setupCharacterCheckboxes() { - const allCheckbox = document.getElementById('char_all'); - const characterCheckboxes = document.querySelectorAll('.character-checkbox:not([value="all"])'); - - // "All Characters" checkbox toggle - allCheckbox.addEventListener('change', function() { - characterCheckboxes.forEach(cb => { - cb.checked = this.checked; - }); - }); - - // Individual character checkbox changes - characterCheckboxes.forEach(cb => { - cb.addEventListener('change', function() { - // Update "All Characters" checkbox state - const checkedCount = Array.from(characterCheckboxes).filter(cb => cb.checked).length; - allCheckbox.checked = checkedCount === characterCheckboxes.length; - allCheckbox.indeterminate = checkedCount > 0 && checkedCount < characterCheckboxes.length; - }); - }); -} - -/** - * Setup all event listeners - */ -function setupEventListeners() { - // Main action buttons - document.getElementById('searchSuits').addEventListener('click', performSuitSearch); - document.getElementById('clearAll').addEventListener('click', clearAllConstraints); - - // Slot control buttons - document.getElementById('lockSelectedSlots').addEventListener('click', lockSelectedSlots); - document.getElementById('clearAllLocks').addEventListener('click', clearAllLocks); - document.getElementById('resetSlotView').addEventListener('click', resetSlotView); -} - -/** - * Setup slot interaction functionality - */ -function setupSlotInteractions() { - // Lock button interactions - document.querySelectorAll('.lock-btn').forEach(btn => { - btn.addEventListener('click', function() { - const slot = this.dataset.slot; - toggleSlotLock(slot); - }); - }); - - // Slot item click interactions - document.querySelectorAll('.slot-item').forEach(item => { - item.addEventListener('click', function() { - const slot = this.dataset.slot; - handleSlotClick(slot); - }); - }); -} - -/** - * Perform suit search with current constraints using streaming results - */ -async function performSuitSearch() { - const constraints = gatherConstraints(); - - if (!validateConstraints(constraints)) { - return; - } - - const resultsDiv = document.getElementById('suitResults'); - const countSpan = document.getElementById('resultsCount'); - - // Reset current suits and UI - currentSuits = []; - resultsDiv.innerHTML = ` -
- ๐Ÿ” Searching for optimal suits... -
-
- Found: 0 suits | - Checked: 0 combinations | - Time: 0.0s -
- -
-
-
- `; - countSpan.textContent = ''; - - try { - await streamOptimalSuits(constraints); - } catch (error) { - // Don't show error for user-cancelled searches - if (error.name === 'AbortError') { - console.log('Search cancelled by user'); - } else { - console.error('Suit search error:', error); - resultsDiv.innerHTML = `
โŒ Suit search failed: ${error.message}
`; - countSpan.textContent = ''; - } - } -} - -/** - * Gather all current constraints from the form - */ -function gatherConstraints() { - // Get selected characters - const selectedCharacters = Array.from(document.querySelectorAll('.character-checkbox:checked:not([value="all"])')) - .map(cb => cb.value); - - // Get rating constraints - const constraints = { - characters: selectedCharacters, - min_armor: document.getElementById('minArmor').value || null, - max_armor: document.getElementById('maxArmor').value || null, - min_crit_damage: document.getElementById('minCritDmg').value || null, - max_crit_damage: document.getElementById('maxCritDmg').value || null, - min_damage_rating: document.getElementById('minDmgRating').value || null, - max_damage_rating: document.getElementById('maxDmgRating').value || null, - - // Equipment status - include_equipped: document.getElementById('includeEquipped').checked, - include_inventory: document.getElementById('includeInventory').checked, - - // Equipment sets - primary_set: document.getElementById('primarySet').value || null, - secondary_set: document.getElementById('secondarySet').value || null, - - // Legendary cantrips (from cantrips-grid only) - legendary_cantrips: Array.from(document.querySelectorAll('.cantrips-grid input:checked')) - .map(cb => cb.value) - .filter(value => value.includes('Legendary')), - - // Legendary wards (separate section) - protection_spells: Array.from(document.querySelectorAll('#protection_flame, #protection_frost, #protection_acid, #protection_storm, #protection_slashing, #protection_piercing, #protection_bludgeoning, #protection_armor')) - .filter(cb => cb.checked) - .map(cb => cb.value), - - // Locked slots - locked_slots: Array.from(lockedSlots) - }; - - return constraints; -} - -/** - * Validate constraints before search - */ -function validateConstraints(constraints) { - if (!constraints.characters || constraints.characters.length === 0) { - alert('Please select at least one character.'); - return false; - } - - if (!constraints.primary_set && !constraints.secondary_set && - constraints.legendary_cantrips.length === 0 && - constraints.protection_spells.length === 0 && - !constraints.min_armor && !constraints.min_crit_damage && !constraints.min_damage_rating) { - alert('Please specify at least one constraint (equipment sets, cantrips, legendary wards, or rating minimums).'); - return false; - } - - return true; -} - -/** - * Stream optimal suits using Server-Sent Events with progressive results - */ -async function streamOptimalSuits(constraints) { - // Prepare constraint data for POST request - const requestBody = { - characters: constraints.characters.length > 0 ? constraints.characters : [], - primary_set: constraints.primary_set ? parseInt(constraints.primary_set) : null, - secondary_set: constraints.secondary_set ? parseInt(constraints.secondary_set) : null, - required_spells: [ - ...constraints.legendary_cantrips, - ...constraints.protection_spells - ], - locked_items: {}, // TODO: implement locked items - include_equipped: constraints.include_equipped, - include_inventory: constraints.include_inventory, - min_armor: constraints.min_armor ? parseInt(constraints.min_armor) : null, - max_armor: constraints.max_armor ? parseInt(constraints.max_armor) : null, - min_crit_damage: constraints.min_crit_damage ? parseInt(constraints.min_crit_damage) : null, - max_crit_damage: constraints.max_crit_damage ? parseInt(constraints.max_crit_damage) : null, - min_damage_rating: constraints.min_damage_rating ? parseInt(constraints.min_damage_rating) : null, - max_damage_rating: constraints.max_damage_rating ? parseInt(constraints.max_damage_rating) : null, - max_results: 10, - search_timeout: 300 - }; - - console.log('Starting suit search with constraints:', requestBody); - - // Cancel any existing search - if (currentSearchController) { - currentSearchController.abort(); - } - - // Create new AbortController for this search - currentSearchController = new AbortController(); - - // Use fetch with streaming response instead of EventSource for POST support - const response = await fetch(`${API_BASE}/search`, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify(requestBody), - signal: currentSearchController.signal // Add abort signal - }); - - if (!response.ok) { - throw new Error(`Search failed: ${response.statusText}`); - } - - const reader = response.body.getReader(); - const decoder = new TextDecoder(); - - return new Promise((resolve, reject) => { - let searchStopped = false; - let buffer = ''; - - async function readStream() { - try { - while (true) { - const { done, value } = await reader.read(); - - if (done) { - resolve(); - break; - } - - if (searchStopped) { - await reader.cancel(); - resolve(); - break; - } - - // Process SSE data - buffer += decoder.decode(value, { stream: true }); - const lines = buffer.split('\n'); - buffer = lines.pop() || ''; // Keep incomplete line in buffer - - let currentEventType = null; - - for (const line of lines) { - if (line.startsWith('event: ')) { - currentEventType = line.substring(7).trim(); - continue; - } - - if (line.startsWith('data: ')) { - const data = line.substring(6); - - try { - const eventData = JSON.parse(data); - - // Handle different event types based on the current event type - if (currentEventType === 'suit') { - handleSuitEvent(eventData); - } else if (currentEventType === 'progress') { - handleProgressEvent(eventData); - } else if (currentEventType === 'complete') { - handleCompleteEvent(eventData); - resolve(); - return; - } else if (currentEventType === 'error') { - handleErrorEvent(eventData); - reject(new Error(eventData.message || 'Search error')); - return; - } - - // Reset event type after processing - currentEventType = null; - - } catch (parseError) { - console.warn('Failed to parse SSE data:', data, 'Event type:', currentEventType); - } - } - } - } - } catch (error) { - // Don't treat abort as an error - if (error.name === 'AbortError') { - console.log('Search was aborted by user'); - resolve(); - } else { - reject(error); - } - } - } - - readStream(); - - // Event handlers - function handleSuitEvent(data) { - try { - console.log('NEW handleSuitEvent called with data:', data); - - // Transform backend suit format to frontend format - const transformedSuit = transformSuitData(data); - console.log('Transformed suit:', transformedSuit); - - // Insert suit in score-ordered position (highest score first) - const insertIndex = insertSuitInScoreOrder(transformedSuit); - console.log('Insert index returned:', insertIndex); - - // Insert DOM element at the correct position instead of regenerating everything - insertSuitDOMAtPosition(transformedSuit, insertIndex); - console.log('DOM insertion complete'); - - // Update count - document.getElementById('foundCount').textContent = currentSuits.length; - document.getElementById('resultsCount').textContent = `Found ${currentSuits.length} suit${currentSuits.length !== 1 ? 's' : ''}`; - - } catch (error) { - console.error('Error processing suit data:', error); - console.error('Stack trace:', error.stack); - } - } - - function handleProgressEvent(data) { - try { - document.getElementById('foundCount').textContent = data.found || currentSuits.length; - document.getElementById('checkedCount').textContent = data.evaluated || 0; - document.getElementById('elapsedTime').textContent = data.elapsed || '0.0'; - } catch (error) { - console.error('Error processing progress data:', error); - } - } - - function handleCompleteEvent(data) { - try { - // Hide loading indicator - const loadingDiv = document.querySelector('.loading'); - if (loadingDiv) { - loadingDiv.innerHTML = `โœ… Search complete! Found ${data.suits_found} suits in ${data.duration}s.`; - } - - // Update final results count - const countSpan = document.getElementById('resultsCount'); - if (countSpan) { - countSpan.textContent = `Found ${currentSuits.length} suit${currentSuits.length !== 1 ? 's' : ''}`; - } - - } catch (error) { - console.error('Error processing completion data:', error); - } - } - - function handleErrorEvent(data) { - try { - const loadingDiv = document.querySelector('.loading'); - if (loadingDiv) { - loadingDiv.innerHTML = `โŒ Search error: ${data.message}`; - } - } catch (error) { - console.error('Error processing error data:', error); - } - } - - // Add stop search functionality - const stopButton = document.getElementById('stopSearch'); - stopButton.addEventListener('click', () => { - searchStopped = true; - - // Actually abort the HTTP request - if (currentSearchController) { - currentSearchController.abort(); - currentSearchController = null; - } - - // Update UI to show search was stopped - const loadingDiv = document.querySelector('.loading'); - if (loadingDiv) { - loadingDiv.innerHTML = 'โน๏ธ Search stopped by user.'; - } - - // Update results count - const countSpan = document.getElementById('resultsCount'); - if (countSpan) { - countSpan.textContent = `Found ${currentSuits.length} suit${currentSuits.length !== 1 ? 's' : ''} (search stopped)`; - } - }); - }); -} - -/** - * Transform backend suit optimization response to frontend format - */ -function transformSuitsResponse(data) { - if (!data.suits || data.suits.length === 0) { - return []; - } - - return data.suits.map(suit => { - return transformSuitData(suit); - }); -} - -/** - * Transform individual suit data from backend to frontend format - */ -function transformSuitData(suit) { - return { - id: suit.id || currentSuits.length + 1, - score: Math.round(suit.score || 0), - items: suit.items || {}, - stats: suit.stats || {}, - missing: suit.missing || [], - notes: suit.notes || [], - alternatives: [], - primary_set: suit.stats?.primary_set || '', - primary_set_count: suit.stats?.primary_set_count || 0, - secondary_set: suit.stats?.secondary_set || '', - secondary_set_count: suit.stats?.secondary_set_count || 0, - total_armor: suit.stats?.total_armor || 0, - total_crit_damage: suit.stats?.total_crit_damage || 0, - total_damage_rating: suit.stats?.total_damage_rating || 0, - spell_coverage: suit.stats?.spell_coverage || 0 - }; -} - -/** - * Insert a suit into the currentSuits array in score-ordered position (highest first) - */ -function insertSuitInScoreOrder(suit) { - console.log(`Inserting suit with score ${suit.score}. Current suits:`, currentSuits.map(s => s.score)); - - // Find the correct position to insert the suit (highest score first) - let insertIndex = 0; - for (let i = 0; i < currentSuits.length; i++) { - if (suit.score > currentSuits[i].score) { - insertIndex = i; - break; - } - insertIndex = i + 1; - } - - // Insert the suit at the correct position - currentSuits.splice(insertIndex, 0, suit); - - console.log(`Inserted at index ${insertIndex}. New order:`, currentSuits.map(s => s.score)); - return insertIndex; -} - -/** - * Regenerate the entire results display to maintain proper score ordering - */ -function regenerateResultsDisplay() { - console.log('Regenerating display with suits:', currentSuits.map(s => `Score: ${s.score}, ID: ${s.id}`)); - - const streamingResults = document.getElementById('streamingResults'); - if (!streamingResults) return; - - // Clear existing results - streamingResults.innerHTML = ''; - - // Re-add all suits in their current (score-ordered) positions - currentSuits.forEach((suit, index) => { - const scoreClass = getScoreClass(suit.score); - const medal = index === 0 ? '๐Ÿฅ‡' : index === 1 ? '๐Ÿฅˆ' : index === 2 ? '๐Ÿฅ‰' : '๐Ÿ”ธ'; - - const suitHtml = ` -
-
-
- ${medal} Suit #${suit.id} (Score: ${suit.score}) -
-
-
- ${formatSuitStats(suit)} -
-
- ${formatSuitItems(suit.items)} - ${suit.missing && suit.missing.length > 0 ? `
Missing: ${suit.missing.join(', ')}
` : ''} - ${suit.notes && suit.notes.length > 0 ? `
${suit.notes.join(' โ€ข ')}
` : ''} -
-
- `; - - streamingResults.insertAdjacentHTML('beforeend', suitHtml); - }); - - // Re-add click handlers for all suits - document.querySelectorAll('.suit-item').forEach(item => { - item.addEventListener('click', function() { - const suitId = parseInt(this.dataset.suitId); - selectSuit(suitId); - }); - }); -} - -/** - * Insert a suit DOM element at the correct position and update all medal rankings - */ -function insertSuitDOMAtPosition(suit, insertIndex) { - console.log('insertSuitDOMAtPosition called with suit score:', suit.score, 'at index:', insertIndex); - - const streamingResults = document.getElementById('streamingResults'); - if (!streamingResults) { - console.error('streamingResults element not found!'); - return; - } - - console.log('Current DOM children count:', streamingResults.children.length); - - // Create the new suit HTML - const scoreClass = getScoreClass(suit.score); - const suitHtml = ` -
-
-
- ๐Ÿ”ธ Suit #${suit.id} (Score: ${suit.score}) -
-
-
- ${formatSuitStats(suit)} -
-
- ${formatSuitItems(suit.items)} - ${suit.missing && suit.missing.length > 0 ? `
Missing: ${suit.missing.join(', ')}
` : ''} - ${suit.notes && suit.notes.length > 0 ? `
${suit.notes.join(' โ€ข ')}
` : ''} -
-
- `; - - // Insert at the correct position - const existingSuits = streamingResults.children; - if (insertIndex >= existingSuits.length) { - // Insert at the end - streamingResults.insertAdjacentHTML('beforeend', suitHtml); - } else { - // Insert before the suit at insertIndex - existingSuits[insertIndex].insertAdjacentHTML('beforebegin', suitHtml); - } - - // Update all medal rankings after insertion - updateAllMedals(); - - // Add click handler for the new suit - const newSuitElement = streamingResults.children[insertIndex]; - newSuitElement.addEventListener('click', function() { - const suitId = parseInt(this.dataset.suitId); - selectSuit(suitId); - }); -} - -/** - * Update medal rankings for all displayed suits - */ -function updateAllMedals() { - const streamingResults = document.getElementById('streamingResults'); - if (!streamingResults) return; - - Array.from(streamingResults.children).forEach((suitElement, index) => { - const medal = index === 0 ? '๐Ÿฅ‡' : index === 1 ? '๐Ÿฅˆ' : index === 2 ? '๐Ÿฅ‰' : '๐Ÿ”ธ'; - const scoreElement = suitElement.querySelector('.suit-score'); - if (scoreElement) { - const scoreText = scoreElement.textContent; - // Replace the existing medal with the new one - scoreElement.textContent = scoreText.replace(/^[๐Ÿฅ‡๐Ÿฅˆ๐Ÿฅ‰๐Ÿ”ธ]\s*/, medal + ' '); - } - }); -} - -/** - * Generate suit combinations from available items - * This is a simplified algorithm - the full constraint solver will be more sophisticated - */ -function generateSuitCombinations(itemsBySlot, constraints) { - const suits = []; - - // For now, create a few example suits based on available items - // This will be replaced with the full constraint solver algorithm - - // Try to build suits with the best items from each slot - const armorSlots = ['Head', 'Chest', 'Upper Arms', 'Lower Arms', 'Hands', 'Abdomen', 'Upper Legs', 'Lower Legs', 'Feet']; - const jewelrySlots = ['Neck', 'Left Ring', 'Right Ring', 'Left Wrist', 'Right Wrist', 'Trinket']; - const clothingSlots = ['Shirt', 'Pants']; - - // Generate a few sample combinations - for (let i = 0; i < Math.min(5, 20); i++) { - const suit = { - id: i + 1, - score: Math.floor(Math.random() * 40) + 60, // Random score 60-100% - items: {}, - missing: [], - alternatives: [] - }; - - // Try to fill each slot with available items - [...armorSlots, ...jewelrySlots, ...clothingSlots].forEach(slot => { - const availableItems = itemsBySlot[slot]; - if (availableItems && availableItems.length > 0) { - // Pick the best item for this slot (simplified) - const bestItem = availableItems[Math.floor(Math.random() * Math.min(3, availableItems.length))]; - suit.items[slot] = bestItem; - } - }); - - // Calculate missing pieces based on set requirements - if (constraints.primary_set || constraints.secondary_set) { - suit.missing = calculateMissingPieces(suit.items, constraints); - } - - // Only include suits that have at least some items - if (Object.keys(suit.items).length > 0) { - suits.push(suit); - } - } - - // Sort by score (best first) - suits.sort((a, b) => b.score - a.score); - - return suits.slice(0, 10); // Return top 10 suits -} - -/** - * Calculate missing pieces for set requirements - */ -function calculateMissingPieces(suitItems, constraints) { - const missing = []; - - if (constraints.primary_set) { - const primaryItems = Object.values(suitItems).filter(item => - item.set_name && item.set_name.includes(getSetNameById(constraints.primary_set)) - ); - if (primaryItems.length < 5) { - missing.push(`${5 - primaryItems.length} more ${getSetNameById(constraints.primary_set)} pieces`); - } - } - - if (constraints.secondary_set) { - const secondaryItems = Object.values(suitItems).filter(item => - item.set_name && item.set_name.includes(getSetNameById(constraints.secondary_set)) - ); - if (secondaryItems.length < 4) { - missing.push(`${4 - secondaryItems.length} more ${getSetNameById(constraints.secondary_set)} pieces`); - } - } - - return missing; -} - -/** - * Get set name by ID - */ -function getSetNameById(setId) { - const setNames = { - '13': "Soldier's", - '14': "Adept's", - '15': "Archer's", - '16': "Defender's", - '19': "Hearty", - '20': "Dexterous", - '21': "Wise", - '22': "Swift", - '24': "Reinforced", - '26': "Flame Proof", - '29': "Lightning Proof", - '40': "Heroic Protector", - '41': "Heroic Destroyer", - '46': "Relic Alduressa", - '47': "Ancient Relic", - '48': "Noble Relic" - }; - return setNames[setId] || `Set ${setId}`; -} - -/** - * Display suit search results - */ -function displaySuitResults(suits) { - const resultsDiv = document.getElementById('suitResults'); - const countSpan = document.getElementById('resultsCount'); - - if (!suits || suits.length === 0) { - resultsDiv.innerHTML = '
No suits found matching your constraints. Try relaxing some requirements.
'; - countSpan.textContent = ''; - return; - } - - // Sort suits by score (highest first) before displaying - const sortedSuits = [...suits].sort((a, b) => b.score - a.score); - - countSpan.textContent = `Found ${sortedSuits.length} suit${sortedSuits.length !== 1 ? 's' : ''}`; - - let html = ''; - sortedSuits.forEach((suit, index) => { - const scoreClass = getScoreClass(suit.score); - const medal = index === 0 ? '๐Ÿฅ‡' : index === 1 ? '๐Ÿฅˆ' : index === 2 ? '๐Ÿฅ‰' : '๐Ÿ”ธ'; - - html += ` -
-
-
- ${medal} Suit #${suit.id} (Score: ${suit.score}%) -
-
-
- ${formatSuitStats(suit)} -
-
- ${formatSuitItems(suit.items)} - ${suit.missing && suit.missing.length > 0 ? `
Missing: ${suit.missing.join(', ')}
` : ''} - ${suit.notes && suit.notes.length > 0 ? `
${suit.notes.join(' โ€ข ')}
` : ''} -
-
- `; - }); - - resultsDiv.innerHTML = html; - - // Add click handlers for suit selection - document.querySelectorAll('.suit-item').forEach(item => { - item.addEventListener('click', function() { - const suitId = parseInt(this.dataset.suitId); - selectSuit(suitId); - }); - }); -} - -/** - * Get CSS class for score - */ -function getScoreClass(score) { - if (score >= 90) return 'excellent'; - if (score >= 75) return 'good'; - if (score >= 60) return 'fair'; - return 'poor'; -} - -/** - * Format suit items for display - shows ALL armor slots even if empty - */ -function formatSuitItems(items) { - console.log(`[DEBUG] formatSuitItems called with items:`, items); - - // Define all expected armor/equipment slots in logical order - const allSlots = [ - // Armor slots - 'Head', 'Chest', 'Upper Arms', 'Lower Arms', 'Hands', - 'Abdomen', 'Upper Legs', 'Lower Legs', 'Feet', - // Jewelry slots - 'Neck', 'Left Ring', 'Right Ring', 'Left Wrist', 'Right Wrist', 'Trinket', - // Clothing slots - 'Shirt', 'Pants' - ]; - - console.log(`[DEBUG] allSlots:`, allSlots); - - // Create table structure with header - let html = ` -
-
-
Slot
-
Character
-
Item
-
Set
-
Spells
-
Armor
-
Ratings
-
-
- `; - - allSlots.forEach(slot => { - const item = items ? items[slot] : null; - - // DEBUG: Log all slots and items - console.log(`[DEBUG] Processing slot '${slot}', item:`, item); - - if (item) { - // Item exists in this slot - const character = item.source_character || item.character_name || 'Unknown'; - const itemName = item.name || 'Unknown Item'; - - // Only show set names for armor items (not jewelry or clothing) - const armorSlots = ['Head', 'Chest', 'Upper Arms', 'Lower Arms', 'Hands', - 'Abdomen', 'Upper Legs', 'Lower Legs', 'Feet']; - const setName = (armorSlots.includes(slot) && item.set_name) ? item.set_name : '-'; - - const spells = formatItemSpells(item); - const armor = formatItemArmor(item); - const ratings = formatItemRatingsColumns(item); - const needsReducing = isMultiSlotItem(item) ? '*' : ''; - - html += ` -
-
${slot}
-
${character}
-
${itemName}${needsReducing}
-
${setName}
-
${spells}
-
${armor}
-
${ratings}
-
- `; - } else { - // Empty slot - html += ` -
-
${slot}
-
-
-
-
-
-
-
-
-
-
-
-
-
- `; - } - }); - - html += ` -
-
- `; - - return html; -} - -/** - * Format item spells for column display (focus on Legendary spells) - */ -function formatItemSpells(item) { - const spellArray = item.spells || item.spell_names || []; - if (!Array.isArray(spellArray) || spellArray.length === 0) { - return '-'; - } - - // Filter for important spells (Legendary, Epic) - const importantSpells = spellArray.filter(spell => - spell.includes('Legendary') || spell.includes('Epic') - ); - - if (importantSpells.length === 0) { - return `${spellArray.length} spells`; - } - - // Show up to 2 important spells, abbreviate the rest - const displaySpells = importantSpells.slice(0, 2); - let result = displaySpells.join(', '); - - if (importantSpells.length > 2) { - result += ` +${importantSpells.length - 2} more`; - } - - return result; -} - -/** - * Format item armor for column display - */ -function formatItemArmor(item) { - if (item.armor_level && item.armor_level > 0) { - return item.armor_level.toString(); - } - return '-'; -} - -/** - * Format item ratings for column display - */ -function formatItemRatingsColumns(item) { - const ratings = []; - - // Access ratings from the ratings object if available, fallback to direct properties - const itemRatings = item.ratings || item; - - // Helper function to get rating value, treating null/undefined/negative as 0 - function getRatingValue(value) { - if (value === null || value === undefined || value < 0) return 0; - return Math.round(value); // Round to nearest integer - } - - // Determine if this is clothing (shirts/pants) or armor - // Check item name patterns since ObjectClass 3 items (clothing) may appear in various slots - const itemName = item.name || ''; - const isClothing = itemName.toLowerCase().includes('shirt') || - itemName.toLowerCase().includes('pants') || - itemName.toLowerCase().includes('breeches') || - itemName.toLowerCase().includes('baggy') || - (item.slot === 'Shirt' || item.slot === 'Pants'); - - if (isClothing) { - // Clothing: Show DR and DRR - const damageRating = getRatingValue(itemRatings.damage_rating); - const damageResist = getRatingValue(itemRatings.damage_resist_rating); - - ratings.push(`DR${damageRating}`); - ratings.push(`DRR${damageResist}`); - } else { - // Armor: Show CD and CDR - const critDamage = getRatingValue(itemRatings.crit_damage_rating); - const critDamageResist = getRatingValue(itemRatings.crit_damage_resist_rating); - - ratings.push(`CD${critDamage}`); - ratings.push(`CDR${critDamageResist}`); - } - - return ratings.join(' '); -} - -/** - * Check if item is multi-slot and needs reducing - * Only armor items need reduction - jewelry can naturally go in multiple slots - */ -function isMultiSlotItem(item) { - if (!item.slot_name) return false; - - const slots = item.slot_name.split(',').map(s => s.trim()); - if (slots.length <= 1) return false; - - // Jewelry items that can go in multiple equivalent slots (normal behavior, no reduction needed) - const jewelryPatterns = [ - ['Left Ring', 'Right Ring'], - ['Left Wrist', 'Right Wrist'] - ]; - - // Check if this matches any jewelry pattern - for (const pattern of jewelryPatterns) { - if (pattern.length === slots.length && pattern.every(slot => slots.includes(slot))) { - return false; // This is jewelry, no reduction needed - } - } - - // If it has multiple slots and isn't jewelry, it's armor that needs reduction - return true; -} - -/** - * Format suit statistics for display - */ -function formatSuitStats(suit) { - if (!suit) return ''; - - const statParts = []; - - // Show set names with counts - if (suit.primary_set && suit.primary_set_count > 0) { - statParts.push(`${suit.primary_set}: ${suit.primary_set_count}/5`); - } - if (suit.secondary_set && suit.secondary_set_count > 0) { - statParts.push(`${suit.secondary_set}: ${suit.secondary_set_count}/4`); - } - - // Show total armor - if (suit.total_armor > 0) { - statParts.push(`Armor: ${suit.total_armor}`); - } - - // Show spell coverage - if (suit.spell_coverage > 0) { - statParts.push(`Spells: ${suit.spell_coverage}`); - } - - return statParts.length > 0 ? `
${statParts.join(' โ€ข ')}
` : ''; -} - -/** - * Format item properties for display - */ -function formatItemProperties(item) { - const properties = []; - - // Handle set name (backend sends item_set_name) - if (item.item_set_name) { - properties.push(item.item_set_name); - } else if (item.set_name) { - properties.push(item.set_name); - } - - // Handle spells (backend sends spells array) - const spellArray = item.spells || item.spell_names; - if (spellArray && Array.isArray(spellArray)) { - spellArray.forEach(spell => { - if (spell.includes('Legendary')) { - properties.push(spell); - } - }); - } - - if (item.crit_damage_rating > 0) { - properties.push(`Crit Dmg +${item.crit_damage_rating}`); - } - - if (item.damage_rating > 0) { - properties.push(`Dmg Rating +${item.damage_rating}`); - } - - if (item.heal_boost > 0) { - properties.push(`Heal Boost +${item.heal_boost}`); - } - - return properties.join(', '); -} - -/** - * Format item ratings for display (separate from properties) - */ -function formatItemRatings(item) { - const ratings = []; - - // Armor level - if (item.armor_level && item.armor_level > 0) { - ratings.push(`AL ${item.armor_level}`); - } - - // Damage ratings - if (item.crit_damage_rating && item.crit_damage_rating > 0) { - ratings.push(`CD +${item.crit_damage_rating}`); - } - - if (item.damage_rating && item.damage_rating > 0) { - ratings.push(`DR +${item.damage_rating}`); - } - - // Resist ratings - if (item.crit_damage_resist_rating && item.crit_damage_resist_rating > 0) { - ratings.push(`CDR +${item.crit_damage_resist_rating}`); - } - - if (item.damage_resist_rating && item.damage_resist_rating > 0) { - ratings.push(`DRR +${item.damage_resist_rating}`); - } - - // Other ratings - if (item.heal_boost_rating && item.heal_boost_rating > 0) { - ratings.push(`HB +${item.heal_boost_rating}`); - } - - if (item.vitality_rating && item.vitality_rating > 0) { - ratings.push(`VIT +${item.vitality_rating}`); - } - - return ratings.join(', '); -} - -/** - * Select a suit and populate the visual slots - */ -function selectSuit(suitId) { - const suit = currentSuits.find(s => s.id === suitId); - if (!suit) return; - - // Update visual selection - document.querySelectorAll('.suit-item').forEach(item => { - item.classList.remove('selected'); - }); - - document.querySelector(`[data-suit-id="${suitId}"]`).classList.add('selected'); - - // Populate visual slots - populateVisualSlots(suit.items); - selectedSuit = suit; -} - -/** - * Populate the visual equipment slots with suit items - */ -function populateVisualSlots(items) { - // Clear all slots first - document.querySelectorAll('.slot-content').forEach(slot => { - const slotName = slot.id.replace('slot_', '').replace('_', ' '); - slot.innerHTML = 'Empty'; - slot.parentElement.classList.remove('populated'); - }); - - // Populate with items - Object.entries(items).forEach(([slotName, item]) => { - const slotId = `slot_${slotName.replace(' ', '_')}`; - const slotElement = document.getElementById(slotId); - - if (slotElement) { - const needsReducing = isMultiSlotItem(item) ? 'Need Reducing' : ''; - - slotElement.innerHTML = ` -
${item.name}
-
${item.source_character || item.character_name || 'Unknown'}
-
${formatItemProperties(item)}
- ${needsReducing} - `; - slotElement.parentElement.classList.add('populated'); - } - }); -} - -/** - * Toggle lock state of a slot - */ -function toggleSlotLock(slotName) { - const slotElement = document.querySelector(`[data-slot="${slotName}"]`); - const lockBtn = slotElement.querySelector('.lock-btn'); - - if (lockedSlots.has(slotName)) { - lockedSlots.delete(slotName); - slotElement.classList.remove('locked'); - lockBtn.classList.remove('locked'); - } else { - lockedSlots.add(slotName); - slotElement.classList.add('locked'); - lockBtn.classList.add('locked'); - } -} - -/** - * Handle slot click events - */ -function handleSlotClick(slotName) { - // For now, just toggle lock state - // Later this could open item selection dialog - console.log(`Clicked slot: ${slotName}`); -} - -/** - * Lock currently selected slots - */ -function lockSelectedSlots() { - document.querySelectorAll('.slot-item.populated').forEach(slot => { - const slotName = slot.dataset.slot; - if (!lockedSlots.has(slotName)) { - toggleSlotLock(slotName); - } - }); -} - -/** - * Clear all slot locks - */ -function clearAllLocks() { - lockedSlots.clear(); - document.querySelectorAll('.slot-item').forEach(slot => { - slot.classList.remove('locked'); - slot.querySelector('.lock-btn').classList.remove('locked'); - }); -} - -/** - * Reset the slot view - */ -function resetSlotView() { - clearAllLocks(); - document.querySelectorAll('.slot-content').forEach(slot => { - const slotName = slot.id.replace('slot_', '').replace('_', ' '); - slot.innerHTML = 'Empty'; - slot.parentElement.classList.remove('populated'); - }); - selectedSuit = null; - - // Clear suit selection - document.querySelectorAll('.suit-item').forEach(item => { - item.classList.remove('selected'); - }); -} - -/** - * Clear all constraints and reset form - */ -function clearAllConstraints() { - // Clear all input fields - document.querySelectorAll('input[type="number"]').forEach(input => { - input.value = ''; - }); - - // Reset checkboxes - document.querySelectorAll('input[type="checkbox"]').forEach(cb => { - if (cb.id === 'char_all' || cb.id === 'includeEquipped' || cb.id === 'includeInventory') { - cb.checked = true; - } else { - cb.checked = false; - } - }); - - // Reset dropdowns - document.querySelectorAll('select').forEach(select => { - select.selectedIndex = 0; - }); - - // Reset character selection - document.querySelectorAll('.character-checkbox:not([value="all"])').forEach(cb => { - cb.checked = true; - }); - - // Clear results - document.getElementById('suitResults').innerHTML = - '
Configure constraints above and click "Search Suits" to find optimal loadouts.
'; - document.getElementById('resultsCount').textContent = ''; - - // Reset slots - resetSlotView(); -} \ No newline at end of file